2015-01-23 18:54:03 +00:00
|
|
|
@import "functions";
|
|
|
|
|
2014-12-06 09:59:35 +00:00
|
|
|
// default color scheme
|
2014-10-03 17:52:52 +00:00
|
|
|
$bg_color: #eee;
|
2014-12-14 12:22:13 +00:00
|
|
|
$fg_color: #333;
|
2014-10-03 17:52:52 +00:00
|
|
|
$base_color: #fff;
|
2014-12-14 12:22:13 +00:00
|
|
|
$text_color: #333;
|
2014-10-03 17:52:52 +00:00
|
|
|
$selected_bg_color: #f06860;
|
|
|
|
$selected_fg_color: #fff;
|
2014-12-14 12:22:13 +00:00
|
|
|
$tooltip_bg_color: #333;
|
2014-10-03 17:52:52 +00:00
|
|
|
$tooltip_fg_color: #eee;
|
2014-07-05 19:54:53 +00:00
|
|
|
|
2014-12-06 09:59:35 +00:00
|
|
|
// dark colors
|
2014-12-14 12:22:13 +00:00
|
|
|
$dark_bg_color: #333;
|
2014-10-03 17:52:52 +00:00
|
|
|
$dark_fg_color: #eee;
|
2014-07-05 19:54:53 +00:00
|
|
|
|
2014-12-06 09:59:35 +00:00
|
|
|
// shadows
|
2014-07-05 19:54:53 +00:00
|
|
|
$dark_shadow: #000;
|
|
|
|
$light_shadow: #fff;
|
|
|
|
|
2014-12-06 09:59:35 +00:00
|
|
|
// misc colors used by gtk+
|
2014-10-03 17:52:52 +00:00
|
|
|
$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;
|
2014-07-05 19:54:53 +00:00
|
|
|
$link_color: #fc6f5d;
|
|
|
|
$success_color: #53a93f;
|
|
|
|
$warning_color: #f57900;
|
|
|
|
$error_color: #cc0000;
|
|
|
|
|
2014-11-13 18:15:48 +00:00
|
|
|
$toolbar_bg_color: $bg_color;
|
|
|
|
$toolbar_fg_color: $fg_color;
|
|
|
|
|
2014-07-05 19:54:53 +00:00
|
|
|
$titlebar_bg_color: $dark_bg_color;
|
|
|
|
$titlebar_fg_color: $dark_fg_color;
|
|
|
|
|
|
|
|
$menu_bg_color: $dark_bg_color;
|
|
|
|
$menu_fg_color: $dark_fg_color;
|
|
|
|
|
2014-11-13 18:15:48 +00:00
|
|
|
$menubar_bg_color: $dark_bg_color;
|
|
|
|
$menubar_fg_color: $dark_fg_color;
|
|
|
|
|
2014-12-19 21:18:47 +00:00
|
|
|
$panel_bg_color: $dark_bg_color;
|
|
|
|
$panel_fg_color: $dark_fg_color;
|
|
|
|
|
2014-12-13 12:53:59 +00:00
|
|
|
$osd_bg: $dark_bg_color;
|
2014-12-13 12:06:16 +00:00
|
|
|
$osd_fg: $dark_fg_color;
|
|
|
|
|
|
|
|
$lightdm_bg_color: $dark_bg_color;
|
|
|
|
$lightdm_fg_color: $dark_fg_color;
|
|
|
|
|
2015-01-23 18:54:03 +00:00
|
|
|
$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_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);
|
|
|
|
$wm_icons_focused_prelight: $selected_bg_color;
|
|
|
|
$wm_icons_focused_pressed: shade($selected_bg_color, 0.8);
|
|
|
|
$wm_icons_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, 0.4);
|
|
|
|
$wm_icons_unfocused_prelight: $selected_bg_color;
|
|
|
|
$wm_icons_unfocused_pressed: shade($selected_bg_color, 0.8);
|
|
|
|
|
2014-12-06 09:59:35 +00:00
|
|
|
// widget styles
|
2014-07-05 19:54:53 +00:00
|
|
|
$roundness: 2px;
|
2015-01-23 18:54:03 +00:00
|
|
|
$spacing: 4px;
|
2014-07-05 19:54:53 +00:00
|
|
|
$gradient: 0;
|
2014-10-03 17:52:52 +00:00
|
|
|
$contrast: .7;
|