dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

_global.scss (1995B)


      1 // scss-lint:disable ColorVariable
      2 
      3 @import "functions";
      4 
      5 // default color scheme
      6 $bg_color: if($variant == "dark", #444, #eee);
      7 $fg_color: if($variant == "dark", #ddd, #555);
      8 $base_color: if($variant == "dark", #333, #fff);
      9 $text_color: if($variant == "dark", #eee, #333);
     10 $selected_bg_color: #f0544c;
     11 $selected_fg_color: #fff;
     12 $tooltip_bg_color: #444;
     13 $tooltip_fg_color: #eee;
     14 
     15 // dark colors
     16 $dark_bg_color: #444;
     17 $dark_fg_color: #eee;
     18 
     19 // shadows
     20 $dark_shadow: #000;
     21 $light_shadow: #fff;
     22 
     23 // white and black
     24 $black: #000;
     25 $white: #fff;
     26 
     27 // misc colors used by gtk+
     28 $info_fg_color: #fff;
     29 $info_bg_color: #03a9f4;
     30 $warning_fg_color: #fff;
     31 $warning_bg_color: #ef6c00;
     32 $question_fg_color: #fff;
     33 $question_bg_color: #673ab7;
     34 $error_fg_color: #fff;
     35 $error_bg_color: #f44336;
     36 $link_color: #3f51b5;
     37 $success_color: #4caf50;
     38 $warning_color: #ef6c00;
     39 $error_color: #f44336;
     40 
     41 $toolbar_bg_color: $bg_color;
     42 $toolbar_fg_color: $fg_color;
     43 
     44 $titlebar_bg_color: $dark_bg_color;
     45 $titlebar_fg_color: $dark_fg_color;
     46 
     47 $menu_bg_color: $dark_bg_color;
     48 $menu_fg_color: $dark_fg_color;
     49 
     50 $menubar_bg_color: $dark_bg_color;
     51 $menubar_fg_color: $dark_fg_color;
     52 
     53 $panel_bg_color: $dark_bg_color;
     54 $panel_fg_color: $dark_fg_color;
     55 
     56 $osd_bg: $dark_bg_color;
     57 $osd_fg: $dark_fg_color;
     58 
     59 $lightdm_bg_color: $dark_bg_color;
     60 $lightdm_fg_color: $dark_fg_color;
     61 
     62 $wm_bg: $titlebar_bg_color;
     63 $wm_border_focused: transparent;
     64 $wm_border_unfocused: transparent;
     65 $wm_title_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
     66 $wm_title_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
     67 $wm_icons_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
     68 $wm_icons_focused_prelight: $selected_bg_color;
     69 $wm_icons_focused_pressed: shade($selected_bg_color, .8);
     70 $wm_icons_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
     71 $wm_icons_unfocused_prelight: $selected_bg_color;
     72 $wm_icons_unfocused_pressed: shade($selected_bg_color, .8);
     73 
     74 // widget styles
     75 $roundness: 2px;
     76 $spacing: 5px;
     77 $gradient: 0;
     78 $contrast: .8;