aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/siteWrap.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve@0xproject.com>2018-12-19 05:19:32 +0800
committerGitHub <noreply@github.com>2018-12-19 05:19:32 +0800
commit59d7efa78af41a91617b5a1f253a0f7e17553dca (patch)
treedc15d2f052af0696bad5919197b6ed51aa4cc221 /packages/website/ts/@next/components/siteWrap.tsx
parent45d8b522f49829068b8ce6a3940b4dcef724041f (diff)
parent102b7154e0aadd2715159e9085389875ecf88a1f (diff)
downloaddexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar.gz
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar.bz2
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar.lz
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar.xz
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.tar.zst
dexon-sol-tools-59d7efa78af41a91617b5a1f253a0f7e17553dca.zip
Merge pull request #1456 from 0xProject/feature/website/0x-org-bb-fixes-rebase
[website] Bakken & Baeck 0x.org website fixes
Diffstat (limited to 'packages/website/ts/@next/components/siteWrap.tsx')
-rw-r--r--packages/website/ts/@next/components/siteWrap.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/siteWrap.tsx b/packages/website/ts/@next/components/siteWrap.tsx
index ad7691885..db91fe08a 100644
--- a/packages/website/ts/@next/components/siteWrap.tsx
+++ b/packages/website/ts/@next/components/siteWrap.tsx
@@ -24,6 +24,7 @@ export interface ThemeValuesInterface {
bgColor: string;
darkBgColor?: string;
lightBgColor: string;
+ introTextColor: string;
textColor: string;
paragraphColor: string;
linkColor: string;
@@ -48,6 +49,7 @@ const GLOBAL_THEMES: ThemeInterface = {
bgColor: '#000000',
darkBgColor: '#111A19',
lightBgColor: '#003831',
+ introTextColor: 'rgba(255, 255, 255, 0.75)',
textColor: '#FFFFFF',
paragraphColor: '#FFFFFF',
linkColor: colors.brandLight,
@@ -63,7 +65,9 @@ const GLOBAL_THEMES: ThemeInterface = {
},
light: {
bgColor: '#FFFFFF',
- lightBgColor: '#003831',
+ lightBgColor: '#F3F6F4',
+ darkBgColor: '#003831',
+ introTextColor: 'rgba(92, 92, 92, 0.87)',
textColor: '#000000',
paragraphColor: '#474747',
linkColor: colors.brandDark,
@@ -81,6 +85,7 @@ const GLOBAL_THEMES: ThemeInterface = {
gray: {
bgColor: '#e0e0e0',
lightBgColor: '#003831',
+ introTextColor: 'rgba(92, 92, 92, 0.87)',
textColor: '#000000',
paragraphColor: '#777777',
linkColor: colors.brandDark,