From 94979889cf27e597b1ad4c84ec4ab08aa5c29a6a Mon Sep 17 00:00:00 2001 From: Gabriel Albo Date: Mon, 2 Mar 2015 14:04:26 -0300 Subject: Extracting the color palette colors to variables --- web-ui/app/scss/_colors.scss | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'web-ui/app/scss') 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); -- cgit v1.2.3