Consolidate all custom colors and material-ui colors into a colors module

This commit is contained in:
Fabio Berger
2017-12-18 09:15:12 +01:00
parent 98c01c2f80
commit df9d3e3e16
48 changed files with 169 additions and 226 deletions

View File

@@ -0,0 +1,30 @@
import {colors as materialUiColors} from 'material-ui/styles';
export const colors = {
...materialUiColors,
offWhite: 'rgb(245, 245, 245)',
beigeWhite: '#E4E4E4',
grayishPink: 'rgb(230, 229, 229)',
lightestGray: '#F0F0F0',
lightGray: '#BBBBBB',
gray: '#A5A5A5',
darkGray: '#818181',
darkerGray: '#393939',
heroGray: '#404040',
projectsGray: '#343333',
landingLinkGray: '#919191',
darkestGray: 'rgb(39, 39, 39)',
dharmaDarkGray: 'rgb(37, 37, 37)',
lightBlue: '#60a4f4',
darkBlue: '#4D5481',
lightPurple: '#a81ca6',
purple: '#690596',
red: '#e91751',
turquois: '#058789',
orange: '#e69d00',
lightestGreen: 'rgb(137, 199, 116)',
lightGreen: 'rgb(77, 197, 92)',
limeGreen: 'rgb(102, 222, 117)',
green: '#4da24b',
brightGreen: 'rgb(0, 195, 62)',
};

View File

@@ -26,7 +26,6 @@ export const constants = {
BITLY_ACCESS_TOKEN: 'ffc4c1a31e5143848fb7c523b39f91b9b213d208',
BITLY_ENDPOINT: 'https://api-ssl.bitly.com',
BLOG_URL: 'https://blog.0xproject.com/latest',
CUSTOM_BLUE: '#60a4f4',
DEFAULT_DERIVATION_PATH: `44'/60'/0'`,
ETHER_FAUCET_ENDPOINT: 'https://faucet.0xproject.com',
FEE_RECIPIENT_ADDRESS: '0x0000000000000000000000000000000000000000',