Start redesign

This commit is contained in:
Satyajit Sahoo
2015-05-31 21:50:35 +05:30
parent 7bdd234dd9
commit 3b736963fb
122 changed files with 538 additions and 397 deletions
+25 -25
View File
@@ -1,17 +1,17 @@
@import "functions";
// default color scheme
$bg_color: #eee;
$fg_color: #333;
$base_color: #fff;
$text_color: #333;
$selected_bg_color: #f06860;
$bg_color: if($variant == "dark", #444, #eee);
$fg_color: if($variant == "dark", #ccc, #555);
$base_color: if($variant == "dark", #333, #fff);
$text_color: if($variant == "dark", #eee, #333);
$selected_bg_color: #f0544c;
$selected_fg_color: #fff;
$tooltip_bg_color: #333;
$tooltip_bg_color: #444;
$tooltip_fg_color: #eee;
// dark colors
$dark_bg_color: #333;
$dark_bg_color: #444;
$dark_fg_color: #eee;
// shadows
@@ -19,18 +19,18 @@ $dark_shadow: #000;
$light_shadow: #fff;
// misc colors used by gtk+
$info_fg_color: #3986ac;
$info_bg_color: #d9edf7;
$warning_fg_color: #c09853;
$warning_bg_color: #fcf8e3;
$question_fg_color: #d64937;
$question_bg_color: #fce5d5;
$error_fg_color: #b94a48;
$error_bg_color: #f2dede;
$link_color: #fc6f5d;
$success_color: #53a93f;
$warning_color: #f57900;
$error_color: #cc0000;
$info_fg_color: #fff;
$info_bg_color: #03a9f4;
$warning_fg_color: #fff;
$warning_bg_color: #ef6c00;
$question_fg_color: #fff;
$question_bg_color: #673ab7;
$error_fg_color: #fff;
$error_bg_color: #f44336;
$link_color: #3f51b5;
$success_color: #4caf50;
$warning_color: #ef6c00;
$error_color: #f44336;
$toolbar_bg_color: $bg_color;
$toolbar_fg_color: $fg_color;
@@ -41,8 +41,8 @@ $titlebar_fg_color: $dark_fg_color;
$menu_bg_color: $dark_bg_color;
$menu_fg_color: $dark_fg_color;
$menubar_bg_color: $dark_bg_color;
$menubar_fg_color: $dark_fg_color;
$menubar_bg_color: $bg_color;
$menubar_fg_color: $fg_color;
$panel_bg_color: $dark_bg_color;
$panel_fg_color: $dark_fg_color;
@@ -54,8 +54,8 @@ $lightdm_bg_color: $dark_bg_color;
$lightdm_fg_color: $dark_fg_color;
$wm_bg: $titlebar_bg_color;
$wm_border_focused: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21);
$wm_border_unfocused: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.12);
$wm_border_focused: transparent;
$wm_border_unfocused: transparent;
$wm_title_focused: mix($titlebar_fg_color, $titlebar_bg_color, 0.1);
$wm_title_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, 0.4);
$wm_icons_focused: mix($titlebar_fg_color, $titlebar_bg_color, 0.1);
@@ -67,6 +67,6 @@ $wm_icons_unfocused_pressed: shade($selected_bg_color, 0.8);
// widget styles
$roundness: 2px;
$spacing: 4px;
$spacing: 5px;
$gradient: 0;
$contrast: .7;
$contrast: .8;