1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
# Sample .chamrc file
# This file uses standard GTK rc file syntax.
# Visit www.gtk.org for more info.
#
# sample.chamrc courtesy of Brand Huntsman.
pixmap_path "/usr/X11/include/X11/pixmaps:/usr/local/share/pixmaps"
############################################################################
style "window"
{
bg_pixmap[NORMAL] = "YellowMarble.xpm"
}
style "scale"
{
bg_pixmap[NORMAL] = "YellowMarble.xpm"
bg[PRELIGHT] = { 0.88, 0.82, 0.63 }
bg[ACTIVE] = { 0.78, 0.72, 0.53 }
}
style "color_wheel"
{
bg[NORMAL] = { 0.83, 0.77, 0.58 }
}
style "button"
{
bg[PRELIGHT] = { 0.88, 0.82, 0.63 }
fg[PRELIGHT] = { 0, 0, 1.0 }
bg[ACTIVE] = { 0.68, 0.62, 0.43 }
fg[ACTIVE] = { 1.0, 0, 0 }
bg[NORMAL] = { 0.78, 0.72, 0.53 }
fg[NORMAL] = { 0, 0, 0 }
bg[INSENSITIVE] = { 0.78, 0.72, 0.53 }
fg[INSENSITIVE] = { 0.50, 0.50, 0.50 }
}
style "scrollbar"
{
bg[NORMAL] = { 0.78, 0.72, 0.53 }
bg[ACTIVE] = { 0.78, 0.72, 0.53 }
bg[PRELIGHT] = { 0.88, 0.82, 0.63 }
}
style "dir_popup"
{
bg[NORMAL] = { 0.78, 0.72, 0.53 }
fg[NORMAL] = { 0, 0, 0 }
bg[ACTIVE] = { 0.88, 0.82, 0.63 }
bg[PRELIGHT] = { 0.88, 0.82, 0.63 }
fg[PRELIGHT] = { 0, 0, 1.0 }
}
style "label"
{
bg_pixmap[NORMAL] = "YellowMarble.xpm"
fg[NORMAL] = { 0, 0, 0 }
}
style "list"
{
fg[NORMAL] = { 0, 0, 0 }
bg[PRELIGHT] = { 0.88, 0.82, 0.63 }
bg_pixmap[NORMAL] = "YellowMarble.xpm"
}
style "entry"
{
bg[NORMAL] = { 0.88, 0.82, 0.63 }
fg[NORMAL] = { 0, 0, 0 }
}
###########################################################################
widget_class "GtkWindow" style "window"
widget_class "GtkDialog" style "window"
widget_class "GtkFileSelection" style "window"
widget_class "*Gtk*Scale" style "scale"
widget_class "*GtkButton*" style "button"
widget_class "*Gtk*Menu*" style "dir_popup"
widget_class "*GtkLabel" style "label"
widget_class "*Gtk*Scroll*" style "scrollbar"
widget_class "*GtkColorSelection" style "color_wheel"
widget_class "*GtkCList" style "list"
# couldn't find the text entry box widget name
# widget_class "*GtkHBox" style "entry"
|