Files
numix-blue-gtk-theme/gtk-3.0/scss/_global.scss
T

77 lines
1.9 KiB
SCSS
Raw Normal View History

2015-01-24 00:24:03 +05:30
@import "functions";
2014-12-06 15:29:35 +05:30
// default color scheme
2015-05-31 21:50:35 +05:30
$bg_color: if($variant == "dark", #444, #eee);
2015-08-07 03:09:54 +05:30
$fg_color: if($variant == "dark", #ddd, #555);
2015-05-31 21:50:35 +05:30
$base_color: if($variant == "dark", #333, #fff);
$text_color: if($variant == "dark", #eee, #333);
$selected_bg_color: #f0544c;
$selected_fg_color: #fff;
2015-05-31 21:50:35 +05:30
$tooltip_bg_color: #444;
$tooltip_fg_color: #eee;
2014-07-06 01:24:53 +05:30
2014-12-06 15:29:35 +05:30
// dark colors
2015-05-31 21:50:35 +05:30
$dark_bg_color: #444;
$dark_fg_color: #eee;
2014-07-06 01:24:53 +05:30
2014-12-06 15:29:35 +05:30
// shadows
2014-07-06 01:24:53 +05:30
$dark_shadow: #000;
$light_shadow: #fff;
2015-08-07 04:40:35 +05:30
// white and black
$black: #000;
$white: #fff;
2014-12-06 15:29:35 +05:30
// misc colors used by gtk+
2015-05-31 21:50:35 +05:30
$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;
2014-07-06 01:24:53 +05:30
2014-11-13 23:45:48 +05:30
$toolbar_bg_color: $bg_color;
$toolbar_fg_color: $fg_color;
2014-07-06 01:24:53 +05:30
$titlebar_bg_color: $dark_bg_color;
$titlebar_fg_color: $dark_fg_color;
$menu_bg_color: $dark_bg_color;
$menu_fg_color: $dark_fg_color;
2015-05-31 21:50:35 +05:30
$menubar_bg_color: $bg_color;
$menubar_fg_color: $fg_color;
2014-11-13 23:45:48 +05:30
2014-12-20 02:48:47 +05:30
$panel_bg_color: $dark_bg_color;
$panel_fg_color: $dark_fg_color;
2014-12-13 18:23:59 +05:30
$osd_bg: $dark_bg_color;
2014-12-13 17:36:16 +05:30
$osd_fg: $dark_fg_color;
$lightdm_bg_color: $dark_bg_color;
$lightdm_fg_color: $dark_fg_color;
2015-01-24 00:24:03 +05:30
$wm_bg: $titlebar_bg_color;
2015-05-31 21:50:35 +05:30
$wm_border_focused: transparent;
$wm_border_unfocused: transparent;
2015-08-07 04:40:35 +05:30
$wm_title_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
$wm_title_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
$wm_icons_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
2015-01-24 00:24:03 +05:30
$wm_icons_focused_prelight: $selected_bg_color;
2015-08-07 04:40:35 +05:30
$wm_icons_focused_pressed: shade($selected_bg_color, .8);
$wm_icons_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
2015-01-24 00:24:03 +05:30
$wm_icons_unfocused_prelight: $selected_bg_color;
2015-08-07 04:40:35 +05:30
$wm_icons_unfocused_pressed: shade($selected_bg_color, .8);
2015-01-24 00:24:03 +05:30
2014-12-06 15:29:35 +05:30
// widget styles
2014-07-06 01:24:53 +05:30
$roundness: 2px;
2015-05-31 21:50:35 +05:30
$spacing: 5px;
2014-07-06 01:24:53 +05:30
$gradient: 0;
2015-05-31 21:50:35 +05:30
$contrast: .8;