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/pages/landing | |
parent | df9d3e3e16e5a00ea84369691c46a6e4a6a53049 (diff) | |
download | dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar.gz dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar.bz2 dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar.lz dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar.xz dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.tar.zst dexon-0x-contracts-445ff1e28ee572236ec963a27bff227e859f685c.zip |
Standardize colors to always be in uppercase hex and consolidate material-ui greys
Diffstat (limited to 'packages/website/ts/pages/landing')
-rw-r--r-- | packages/website/ts/pages/landing/landing.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/website/ts/pages/landing/landing.tsx b/packages/website/ts/pages/landing/landing.tsx index 56d021b8d..11d891e4f 100644 --- a/packages/website/ts/pages/landing/landing.tsx +++ b/packages/website/ts/pages/landing/landing.tsx @@ -287,7 +287,7 @@ export class Landing extends React.Component<LandingProps, LandingState> { }); const titleStyle: React.CSSProperties = { fontFamily: 'Roboto Mono', - color: colors.gray, + color: colors.grey, textTransform: 'uppercase', fontWeight: 300, letterSpacing: 3, @@ -329,7 +329,7 @@ export class Landing extends React.Component<LandingProps, LandingState> { return ( <div className="clearfix lg-py4 md-py4 sm-pb4 sm-pt2" - style={{backgroundColor: colors.offWhite}} + style={{backgroundColor: colors.grey100}} > <div className="mx-auto max-width-4 py4 clearfix"> {isSmallScreen && @@ -601,7 +601,7 @@ export class Landing extends React.Component<LandingProps, LandingState> { const boxStyle: React.CSSProperties = { maxWidth: 252, height: 386, - backgroundColor: colors.lightestGray, + backgroundColor: colors.lightGrey, borderRadius: 5, padding: '10px 24px 24px', }; @@ -705,14 +705,14 @@ export class Landing extends React.Component<LandingProps, LandingState> { const cases = _.map(useCases, (useCase: UseCase) => { const style = _.isUndefined(useCase.style) || isSmallScreen ? {} : useCase.style; const useCaseBoxStyle = { - color: colors.gray, + color: colors.grey, border: '1px solid #565656', borderRadius: 4, maxWidth: isSmallScreen ? 375 : 'none', ...style, }; const typeStyle: React.CSSProperties = { - color: colors.lightestGray, + color: colors.lightGrey, fontSize: 13, textTransform: 'uppercase', fontFamily: 'Roboto Mono', |