aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/style/colors.ts
blob: 45be4fe7f812c623325a5455e967998458de028a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { colors as sharedColors } from '@0xproject/react-shared';

const appColors = {
    walletBoxShadow: 'rgba(0, 0, 0, 0.05)',
    walletBorder: '#ededee',
    walletDefaultItemBackground: '#fbfbfc',
    walletFocusedItemBackground: '#f0f1f4',
    allowanceToggleShadow: 'rgba(0, 0, 0, 0)',
    allowanceToggleOffTrack: '#adadad',
    allowanceToggleOnTrack: sharedColors.mediumBlue,
    wrapEtherConfirmationButton: sharedColors.mediumBlue,
    drawerMenuBackground: '#4a4a4a',
    menuItemDefaultSelectedBackground: '#424242',
    jobsPageBackground: sharedColors.grey50,
    jobsPageOpenPositionRow: sharedColors.grey100,
};

export const colors = {
    ...sharedColors,
    ...appColors,
};