aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/style/colors.ts
blob: 4477629695d829c42161540b9c27265fad0395e8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                          

                   
                                           



                                              
                                                         

                                                 

                                                  

                                                          







                                 





                       
import { colors as sharedColors } from '@0x/react-shared';

const appColors = {
    walletBoxShadow: 'rgba(0, 0, 0, 0.05)',
    walletBorder: '#ededee',
    walletDefaultItemBackground: '#fbfbfc',
    walletFocusedItemBackground: '#f0f1f4',
    allowanceToggleShadow: 'rgba(0, 0, 0, 0)',
    wrapEtherConfirmationButton: sharedColors.mediumBlue,
    drawerMenuBackground: '#4a4a4a',
    menuItemDefaultSelectedBackground: '#424242',
    jobsPageBackground: sharedColors.grey50,
    jobsPageOpenPositionRow: sharedColors.grey100,
    metaMaskOrange: '#f68c24',
    metaMaskTransparentOrange: 'rgba(255, 248, 242, 0.8)',
    brandLight: '#00AE99',
    brandDark: '#003831',
    backgroundDark: '#111A19',
    backgroundBlack: '#000000',
    backgroundLight: '#F3F6F4',
    textDarkPrimary: '#000000',
    textDarkSecondary: '#5C5C5C',
    white: '#fff',
};

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