Created
September 5, 2013 12:26
-
-
Save metakeule/6449433 to your computer and use it in GitHub Desktop.
set foreground and background colors in claws mail list view (and other apps that use GtkSCTree from an gtk2 theme,
stolen from http://crunchbang.org/forums/viewtopic.php?id=1821 setup your ~/.gtkrc-2.0 file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
style "claws-folder-view" { | |
fg[NORMAL] = "#ffffff" | |
fg[ACTIVE] = "#ffffff" | |
fg[INSENSITIVE] = "#D5DCE0" | |
fg[PRELIGHT] = "#ffffff" | |
fg[SELECTED] = "#ffffff" | |
bg[ACTIVE] = "#7CA4CF" | |
bg[NORMAL] = "#686B6D" | |
bg[INSENSITIVE] = "#686B6D" | |
bg[PRELIGHT] = "#686B6D" | |
bg[SELECTED] = "#7CA4CF" | |
base[NORMAL] = "#686B6D" | |
base[ACTIVE] = "#686B6D" | |
base[INSENSITIVE] = "#686B6D" | |
base[PRELIGHT] = "#686B6D" | |
base[SELECTED] = "#7CA4CF" | |
text[NORMAL] = "#ffffff" | |
text[ACTIVE] = "#ffffff" | |
text[INSENSITIVE] = "#D5DCE0" | |
text[PRELIGHT] = "#ffffff" | |
text[SELECTED] = "#ffffff" | |
} | |
widget_class "*GtkSCTree*" style "claws-folder-view" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment