diff options
| author | Ashley Cai <ashley.lcai@gmail.com> | 2021-07-15 12:37:31 -0700 |
|---|---|---|
| committer | Ashley Cai <ashley.lcai@gmail.com> | 2021-07-15 12:37:31 -0700 |
| commit | 1a1fc27a66c95c947dc8d2a812484f37586133cd (patch) | |
| tree | d4728f83e1af825f03917ecfa9442bd6b2cf6f2c /src/client/views/global | |
| parent | 4fe24111c6eafc58927fcca9d8c46a5b92cc4078 (diff) | |
Starting Color consistency
Diffstat (limited to 'src/client/views/global')
| -rw-r--r-- | src/client/views/global/globalCssVariables.scss | 18 | ||||
| -rw-r--r-- | src/client/views/global/globalEnums.tsx | 17 |
2 files changed, 19 insertions, 16 deletions
diff --git a/src/client/views/global/globalCssVariables.scss b/src/client/views/global/globalCssVariables.scss index 218bdbf3c..bdae3b9b1 100644 --- a/src/client/views/global/globalCssVariables.scss +++ b/src/client/views/global/globalCssVariables.scss @@ -3,19 +3,21 @@ $white: #ffffff; $light-gray:#dfdfdf; $medium-gray: #9F9F9F; +$dark-gray: #323232; +$black: #000000; -$lighter-alt-accent: rgb(207, 220, 240); -$darker-alt-accent: #b2cef8; +$light-blue: #BDDDF5; +$medium-blue: #4476F7; +$pink: "#E0217D"; +$yellow: "#F5D747"; + +$antimodemenu-height: 36px; -$dark-color: #111111; -$link-color: #add8e6; -$antimodemenu-height: 35px; // fonts $sans-serif: "Noto Sans", sans-serif; // $sans-serif: "Roboto Slab", sans-serif; -$serif: "Crimson Text", -serif; + // misc values $border-radius: 0.3em; // @@ -31,7 +33,7 @@ $docDecorations-zindex: 998; // then doc decorations appear over everything else $remoteCursors-zindex: 997; // ... not sure what level the remote cursors should go -- is this right? $COLLECTION_BORDER_WIDTH: 0; $SCHEMA_DIVIDER_WIDTH: 4; -$MINIMIZED_ICON_SIZE:25; +$MINIMIZED_ICON_SIZE:24; $MAX_ROW_HEIGHT: 44px; $DFLT_IMAGE_NATIVE_DIM: 900px; $MENU_PANEL_WIDTH: 60px; diff --git a/src/client/views/global/globalEnums.tsx b/src/client/views/global/globalEnums.tsx index 9d182ee0f..80558e1c1 100644 --- a/src/client/views/global/globalEnums.tsx +++ b/src/client/views/global/globalEnums.tsx @@ -1,12 +1,13 @@ export enum Colors { - DarkGray = "#111111", - MediumGray = "#9F9F9F", - LightGray = "#DFDFDF", - White = "#FFFFFF", - MediumBlue = "#4476F7", - LightBlue = "#BDDDF5", - Pink = "#E0217D", - Yellow = "#F5D747" + BLACK = "#000000", + DARK_GRAY = "#323232", + MEDIUM_GRAY = "#9F9F9F", + LIGHT_GRAY = "#DFDFDF", + WHITE = "#FFFFFF", + MEDIUM_BLUE = "#4476F7", + LIGHT_BLUE = "#BDDDF5", + PINK = "#E0217D", + YELLOW = "#F5D747" } export enum FontSizes { |
