From 91698f9a7026e4c41a7079614c527c09f45c31d6 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Thu, 31 Jan 2002 22:05:38 +0000 Subject: [PATCH] Install a Default RC file that sets the tooltips color to yellow. (#58542) Thu Jan 31 14:50:16 2002 Owen Taylor * 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. --- gtk/gtkrc.default | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gtk/gtkrc.default 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"