Skip to content

Instantly share code, notes, and snippets.

@metakeule
Created September 5, 2013 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metakeule/6449433 to your computer and use it in GitHub Desktop.
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
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