diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-30 05:00:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 05:00:37 +0800 |
commit | 6122840241a47119b046b639e326cfead1ea3e10 (patch) | |
tree | f7a4790c5dbd2757da01468463699064f121a465 /packages/website/ts/utils | |
parent | c4dd9658e791a9f821ea3b6eb4326bcba53b081a (diff) | |
parent | 03b00ef8da0bafc464e14e5d8225b9a9514b19bd (diff) | |
download | dexon-0x-contracts-6122840241a47119b046b639e326cfead1ea3e10.tar.gz dexon-0x-contracts-6122840241a47119b046b639e326cfead1ea3e10.tar.zst dexon-0x-contracts-6122840241a47119b046b639e326cfead1ea3e10.zip |
Merge pull request #476 from 0xProject/feature/website/wallet-wrap
Implement ETH/WETH conversion and allowance toggle styling
Diffstat (limited to 'packages/website/ts/utils')
-rw-r--r-- | packages/website/ts/utils/mui_theme.ts | 10 | ||||
-rw-r--r-- | packages/website/ts/utils/wallet_item_styles.ts | 7 |
2 files changed, 10 insertions, 7 deletions
diff --git a/packages/website/ts/utils/mui_theme.ts b/packages/website/ts/utils/mui_theme.ts index 41bc2844b..d611f0895 100644 --- a/packages/website/ts/utils/mui_theme.ts +++ b/packages/website/ts/utils/mui_theme.ts @@ -9,9 +9,9 @@ export const muiTheme = getMuiTheme({ }, palette: { accent1Color: colors.lightBlueA700, - pickerHeaderColor: colors.lightBlue, - primary1Color: colors.lightBlue, - primary2Color: colors.lightBlue, + pickerHeaderColor: colors.mediumBlue, + primary1Color: colors.mediumBlue, + primary2Color: colors.mediumBlue, textColor: colors.grey700, }, datePicker: { @@ -29,8 +29,4 @@ export const muiTheme = getMuiTheme({ selectColor: colors.darkestGrey, selectTextColor: colors.darkestGrey, }, - toggle: { - thumbOnColor: colors.limeGreen, - trackOnColor: colors.lightGreen, - }, }); diff --git a/packages/website/ts/utils/wallet_item_styles.ts b/packages/website/ts/utils/wallet_item_styles.ts new file mode 100644 index 000000000..1ad304ce1 --- /dev/null +++ b/packages/website/ts/utils/wallet_item_styles.ts @@ -0,0 +1,7 @@ +import { colors, Styles } from '@0xproject/react-shared'; + +export const styles: Styles = { + focusedItem: { + backgroundColor: colors.walletFocusedItemBackground, + }, +}; |