diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-02 19:36:21 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-02 19:36:21 +0100 |
commit | c37e071dc436030e4d7c2c6c3108670b501a81ce (patch) | |
tree | d956e717db531bbfa0b8ad26af6ae9e6bf7aa522 /x11-libs/gtk+/files/gtkrc | |
parent | ffb107be125d840b7d13ff0c9dfc1e271d7d59b5 (diff) |
x11-libs/gtk+ : import from gentoo tree, overwrite default settings
Diffstat (limited to 'x11-libs/gtk+/files/gtkrc')
-rw-r--r-- | x11-libs/gtk+/files/gtkrc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-libs/gtk+/files/gtkrc b/x11-libs/gtk+/files/gtkrc new file mode 100644 index 00000000..8d178343 --- /dev/null +++ b/x11-libs/gtk+/files/gtkrc @@ -0,0 +1,39 @@ +style "default" + +{ + font = "-*-lucida-medium-r-normal-*-*-100-*-*-*-*-*-*" +} + +style "button" = "default" + +{ + bg[PRELIGHT] = { 0.7, 0.7, 0.9 } +} + +style "treeitem" +{ +bg[ACTIVE] = { 0.7, 0.7, 0.9 } +} + +style "scrollbar" = "button" +{ + bg[ACTIVE] = {0.6, 0.6, 0.6 } +} + +style "status" { + bg[PRELIGHT] = { 0.3, 1.0, 0.3 } +} + +style "gtk-tooltips" { + bg[NORMAL] = "#ffff60" +} + +class "GtkWidget" style "default" +class "GtkButton" style "button" +class "GtkItem" style "button" +class "GtkProgressBar" style "status" +class "GtkScrollbar" style "scrollbar" +class "GtkTreeItem" style "treeitem" +widget "gtk-tooltips" style "gtk-tooltips" + + |