diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-03-02 14:04:26 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-03-02 14:04:26 -0300 |
commit | 94979889cf27e597b1ad4c84ec4ab08aa5c29a6a (patch) | |
tree | c837f3d336db18e2aa5154f52102c3e536fa90c0 /web-ui/app/scss | |
parent | 70487053d42f18c6c75cb9987ae4a5e9fc53e997 (diff) |
Extracting the color palette colors to variables
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/_colors.scss | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/web-ui/app/scss/_colors.scss b/web-ui/app/scss/_colors.scss index 23263e2e..da571405 100644 --- a/web-ui/app/scss/_colors.scss +++ b/web-ui/app/scss/_colors.scss @@ -1,14 +1,22 @@ +/* Pixelated Color Palette - don't change these! */ +$dark_slate_gray: #3E3A37; +$light_blue: #3DABC4; +$dark_blue: #178CA6; +$light_orange: #FF9C00; +$dark_orange: #FF7902; + + /* Side nav background color */ -$navigation_background: #3E3A37; +$navigation_background: $dark_slate_gray; /* Action buttons and links */ -$action_buttons: #3dabc4; +$action_buttons: $light_blue; /* Primary Highlight*/ -$primary_highlight: #FF9C00; +$primary_highlight: $light_orange; /* Logo color*/ -$logo_color: #FF9C00; +$logo_color: $light_orange; /* Unread count dialog bubble background color */ $secondary_callout: darken($primary_highlight, 5); |