diff options
author | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 15:37:14 +0800 |
---|---|---|
committer | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 15:37:14 +0800 |
commit | 561f441a5bfc4822b0974169605d089b4f687bf5 (patch) | |
tree | d0e2151e49b5337cfb2f71d0d8d987557ca89876 /packages/dev-tools-pages/ts/variables.tsx | |
parent | 30f7f83573c9254de336c3c2fc7297188d47af15 (diff) | |
download | dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.gz dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.bz2 dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.lz dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.xz dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.tar.zst dexon-sol-tools-561f441a5bfc4822b0974169605d089b4f687bf5.zip |
Implements color variables and updates components
Diffstat (limited to 'packages/dev-tools-pages/ts/variables.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/variables.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/variables.tsx b/packages/dev-tools-pages/ts/variables.tsx new file mode 100644 index 000000000..8590547df --- /dev/null +++ b/packages/dev-tools-pages/ts/variables.tsx @@ -0,0 +1,12 @@ +const variables = { + colors: { + black: '#000000', + white: '#FFFFFF', + lightGray: '#F1F4F5', + gray: '#F1F2F7', + darkGray: '#E9ECED', + blueGray: '#ECEFF9', + }, +}; + +export default variables; |