diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-18 17:06:16 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-18 17:06:16 +0800 |
commit | 445ff1e28ee572236ec963a27bff227e859f685c (patch) | |
tree | 394f9ec709053d170e3c0438f1c2c127ad65896a /packages/website/ts/utils | |
parent | df9d3e3e16e5a00ea84369691c46a6e4a6a53049 (diff) | |
download | dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.gz dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.bz2 dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.lz dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.xz dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.zst dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.zip |
Standardize colors to always be in uppercase hex and consolidate material-ui greys
Diffstat (limited to 'packages/website/ts/utils')
-rw-r--r-- | packages/website/ts/utils/colors.ts | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/packages/website/ts/utils/colors.ts b/packages/website/ts/utils/colors.ts index c6a8547d1..886cfe64e 100644 --- a/packages/website/ts/utils/colors.ts +++ b/packages/website/ts/utils/colors.ts @@ -2,29 +2,27 @@ 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', + grayishPink: '#E6E5E5', + lightGrey: '#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', + darkestGray: '#272727', + dharmaDarkGray: '#252525', + lightBlue: '#60A4F4', darkBlue: '#4D5481', - lightPurple: '#a81ca6', + lightPurple: '#A81CA6', purple: '#690596', - red: '#e91751', + 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)', + orange: '#E69D00', + lightestGreen: '#89C774', + lightGreen: '#4DC55C', + limeGreen: '#66DE75', + green: '#4DA24B', + brightGreen: '#00C33E', }; |