#gtk_color_scheme = "fg_color:#777\nbg_color:#222\nbase_color:#000\ntext_color:#777\nselected_bg_color:#222266\nselected_fg_color:#999\ntooltip_bg_color:#d7d7d7\ntooltip_fg_color:#000000\nscrollbar_bg_color:#555" gtk_color_scheme = "fg_color:#ccc\nbg_color:#222\nbase_color:#000\ntext_color:#ccc\nselected_bg_color:#222266\nselected_fg_color:#999\ntooltip_bg_color:#d7d7d7\ntooltip_fg_color:#000000\nscrollbar_bg_color:#555" style "default-style" { # modify the x/ythickness, used for spacing all over the place xthickness = 3 ythickness = 3 # one can set so called "style properties" GtkRange::slider-width = 15 # # set the background to a light grey # bg[NORMAL] = "#222" # # and the forground to black # fg[NORMAL] = "#ddd" # text[NORMAL] = "#ddd" # base[NORMAL] = "#000000" # ## light[NORMAL] = "#ff0000" ## dark[NORMAL] = "#00ff00" ## mid[NORMAL] = "#ff00ff" fg[NORMAL] = @fg_color fg[PRELIGHT] = shade (1.20, @fg_color) fg[SELECTED] = @selected_fg_color fg[ACTIVE] = shade (0.9, @fg_color) fg[INSENSITIVE] = shade (0.4, @fg_color) bg[NORMAL] = @bg_color bg[PRELIGHT] = shade (1.20, @bg_color) bg[SELECTED] = @selected_bg_color bg[INSENSITIVE] = @bg_color bg[ACTIVE] = shade (0.9, @bg_color) base[NORMAL] = @base_color base[PRELIGHT] = shade (1.20, @bg_color) base[ACTIVE] = shade (0.7, @selected_bg_color) base[SELECTED] = shade (0.9, @selected_bg_color) base[INSENSITIVE] = shade (0.40, @base_color) text[NORMAL] = @text_color text[PRELIGHT] = shade (1.20, @text_color) text[ACTIVE] = @selected_fg_color text[SELECTED] = @selected_fg_color text[INSENSITIVE] = shade (0.40, @text_color) } style "default-style-black-bg" = "default-style" { bg[NORMAL] = @base_color bg[PRELIGHT] = shade (1.20, @bg_color) bg[ACTIVE] = shade (0.7, @selected_bg_color) bg[SELECTED] = shade (0.9, @selected_bg_color) bg[INSENSITIVE] = shade (0.40, @base_color) } style "scrollbar" = "default" { bg[NORMAL] = @scrollbar_bg_color bg[PRELIGHT] = shade (1.20, @scrollbar_bg_color) bg[SELECTED] = @selected_bg_color bg[INSENSITIVE] = @scrollbar_bg_color bg[ACTIVE] = shade (0.9, @scrollbar_bg_color) } class "GtkWidget" style "default-style" class "GtkDrawingArea" style "default-style-black-bg" class "GtkScrollbar" style "scrollbar" class "GtkNotebook" style "scrollbar"