diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-01-31 22:05:38 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-01-31 22:05:38 +0000 |
commit | 91698f9a7026e4c41a7079614c527c09f45c31d6 (patch) | |
tree | f5776e38b5e160c6c9fa4965e3c721252c7f9b69 /gtk/gtkrc.default | |
parent | cb26587ff86340697343b0388694306fea769460 (diff) | |
download | gtk+-91698f9a7026e4c41a7079614c527c09f45c31d6.tar.gz |
Install a Default RC file that sets the tooltips color to yellow. (#58542)
Thu Jan 31 14:50:16 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.default gtk/Makefile.am: Install a Default
RC file that sets the tooltips color to yellow. (#58542)
* gtk/gtksettings.c (gtk_settings_class_init): make
the default theme "Default", not NULL.
Diffstat (limited to 'gtk/gtkrc.default')
-rw-r--r-- | gtk/gtkrc.default | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk/gtkrc.default b/gtk/gtkrc.default new file mode 100644 index 0000000000..9971dbd519 --- /dev/null +++ b/gtk/gtkrc.default @@ -0,0 +1,9 @@ +# +# This theme is the default theme if no other theme is selected. +# +style "gtk-default-tooltips-style" { + bg[NORMAL] = "#ffffc0" + fg[NORMAL] = "#000000" +} + +widget "gtk-tooltips" style "gtk-default-tooltips-style" |