diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 08:22:36 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 08:22:36 +0800 |
commit | d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e (patch) | |
tree | 0bd29c56d178c6a467eb9d84eaca0996b38c029e /packages/instant/src/style | |
parent | 0cfe5637c048091c9502d49c8526e17cefb1a525 (diff) | |
download | dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar.gz dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar.bz2 dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar.lz dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar.xz dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.tar.zst dexon-sol-tools-d9b7aa2e4ba088b4dda1b1d2956de5d267a0674e.zip |
Add faux order details section
Diffstat (limited to 'packages/instant/src/style')
-rw-r--r-- | packages/instant/src/style/theme.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/instant/src/style/theme.ts b/packages/instant/src/style/theme.ts index 02f890492..cf9da5378 100644 --- a/packages/instant/src/style/theme.ts +++ b/packages/instant/src/style/theme.ts @@ -8,6 +8,8 @@ export enum ColorOption { primaryColor = 'primaryColor', black = 'black', lightGrey = 'lightGrey', + grey = 'grey', + feintGrey = 'feintGrey', darkGrey = 'darkGrey', white = 'white', } @@ -16,6 +18,8 @@ export const theme: Theme = { primaryColor: '#512D80', black: 'black', lightGrey: '#999999', + grey: '#666666', + feintGrey: '#DEDEDE', darkGrey: '#333333', white: 'white', }; |