GTK 3.0 Fix colors(?)

svn path=/trunk/; revision=38604
This commit is contained in:
Anders Broman 2011-08-18 13:59:53 +00:00
parent 06d97d0a53
commit 34117d0d80
1 changed files with 5 additions and 5 deletions

View File

@ -84,12 +84,12 @@ static GtkWidget *welcome_hb = NULL;
static GtkWidget *header_lb = NULL;
/* Foreground colors are set using Pango markup */
#if GTK_CHECK_VERSION(3,0,0)
static GdkRGBA rgba_welcome_bg = { 0.901, 0.901, 0.901, 0.0 };
static GdkRGBA rgba_header_bar_bg = { 0.094, 0.360, 0.792, 0.0 };
static GdkRGBA rgba_topic_header_bg = { 0.003, 0.224, 0.745, 0.0 };
static GdkRGBA rgba_topic_content_bg = { 1, 1, 1, 0 };
static GdkRGBA rgba_welcome_bg = {0xe6e6/0xffff, 0xe6e6/0xffff, 0xe6e6/0xffff, 1.0 };
static GdkRGBA rgba_header_bar_bg = { 0x1818/0xffff, 0x5c5c/0xffff, 0xcaca/0xffff, 1.0 };
static GdkRGBA rgba_topic_header_bg = { 0x0101/0xffff, 0x3939/0xffff, xbebe/0xffff, 1.0 };
static GdkRGBA rgba_topic_content_bg = { 1, 1, 1, 1.0 };
static GdkRGBA rgba_topic_item_idle_bg;
static GdkRGBA rgba_topic_item_entered_bg = { 0.827, 0.847, 0.855, 0.0 };
static GdkRGBA rgba_topic_item_entered_bg = { 0xd3d30/0xffff, 0xd8d8/0xffff, 0xdada/0xffff, 1.0 };
#else
static GdkColor welcome_bg = { 0, 0xe6e6, 0xe6e6, 0xe6e6 };
static GdkColor header_bar_bg = { 0, 0x1818, 0x5c5c, 0xcaca };