dotfiles

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

_colors.scss (2942B)


      1 @import "global";
      2 
      3 /* dark color scheme */
      4 @define-color dark_bg_color #{"" + $dark_bg_color};
      5 @define-color dark_fg_color #{"" + $dark_fg_color};
      6 
      7 /* colormap actually used by the theme, to be overridden in other css files */
      8 @define-color theme_bg_color #{"" + $bg_color};
      9 @define-color theme_fg_color #{"" + $fg_color};
     10 @define-color theme_base_color #{"" + $base_color};
     11 @define-color theme_text_color #{"" + $text_color};
     12 @define-color theme_selected_bg_color #{"" + $selected_bg_color};
     13 @define-color theme_selected_fg_color #{"" + $selected_fg_color};
     14 @define-color theme_tooltip_bg_color #{"" + $tooltip_bg_color};
     15 @define-color theme_tooltip_fg_color #{"" + $tooltip_fg_color};
     16 
     17 /* shadow effects */
     18 @define-color light_shadow #{"" + $light_shadow};
     19 @define-color dark_shadow #{"" + $dark_shadow};
     20 
     21 /* misc colors used by gtk+ */
     22 @define-color info_fg_color #{"" + $info_fg_color};
     23 @define-color info_bg_color #{"" + $info_bg_color};
     24 @define-color warning_fg_color #{"" + $warning_fg_color};
     25 @define-color warning_bg_color #{"" + $warning_bg_color};
     26 @define-color question_fg_color #{"" + $question_fg_color};
     27 @define-color question_bg_color #{"" + $question_bg_color};
     28 @define-color error_fg_color #{"" + $error_fg_color};
     29 @define-color error_bg_color #{"" + $error_bg_color};
     30 @define-color link_color #{"" + $link_color};
     31 @define-color success_color #{"" + $success_color};
     32 @define-color warning_color #{"" + $warning_color};
     33 @define-color error_color #{"" + $error_color};
     34 
     35 /* widget colors */
     36 @define-color titlebar_bg_color @dark_bg_color;
     37 @define-color titlebar_fg_color @dark_fg_color;
     38 @define-color menubar_bg_color @dark_bg_color;
     39 @define-color menubar_fg_color @dark_fg_color;
     40 @define-color toolbar_bg_color @theme_bg_color;
     41 @define-color toolbar_fg_color @theme_fg_color;
     42 @define-color menu_bg_color @dark_bg_color;
     43 @define-color menu_fg_color @dark_fg_color;
     44 @define-color panel_bg_color @dark_bg_color;
     45 @define-color panel_fg_color @dark_fg_color;
     46 
     47 /* osd */
     48 @define-color osd_bg #{"" + $osd_bg};
     49 @define-color osd_fg #{"" + $osd_fg};
     50 
     51 /* lightdm greeter colors */
     52 @define-color lightdm_bg_color #{"" + $lightdm_bg_color};
     53 @define-color lightdm_fg_color #{"" + $lightdm_fg_color};
     54 
     55 /* window manager colors */
     56 @define-color wm_bg #{"" + $wm_bg};
     57 @define-color wm_border_focused #{"" + $wm_border_focused};
     58 @define-color wm_border_unfocused #{"" + $wm_border_unfocused};
     59 @define-color wm_title_focused #{"" + $wm_title_focused};
     60 @define-color wm_title_unfocused #{"" + $wm_title_unfocused};
     61 @define-color wm_icons_focused #{"" + $wm_icons_focused};
     62 @define-color wm_icons_focused_prelight #{"" + $wm_icons_focused_prelight};
     63 @define-color wm_icons_focused_pressed #{"" + $wm_icons_unfocused_pressed};
     64 @define-color wm_icons_unfocused #{"" + $wm_icons_unfocused};
     65 @define-color wm_icons_unfocused_prelight #{"" + $wm_icons_unfocused_prelight};
     66 @define-color wm_icons_unfocused_pressed #{"" + $wm_icons_unfocused_pressed};