diff options
author | Enno Boland (tox) <tox@s01.de> | 2009-09-07 15:06:32 +0200 |
---|---|---|
committer | Enno Boland (tox) <tox@s01.de> | 2009-09-07 15:06:32 +0200 |
commit | 4cbfddf15907c96b55ac3381c9a402260a96ce9f (patch) | |
tree | 78789bbd10e2674428ecfb1fab32f621f9ce9c4f /config.def.h | |
parent | 151d29c5c308831aad930c2598655ab8c4adc024 (diff) | |
download | surf-4cbfddf15907c96b55ac3381c9a402260a96ce9f.tar.gz surf-4cbfddf15907c96b55ac3381c9a402260a96ce9f.tar.bz2 surf-4cbfddf15907c96b55ac3381c9a402260a96ce9f.zip |
using simple strings for colors in config.h
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index d0354a5..e9e811a 100644 --- a/config.def.h +++ b/config.def.h @@ -1,6 +1,6 @@ /* modifier 0 means no modifier */ -static GdkColor progress = { 65535,65535,0,0 }; -static GdkColor progress_trust = { 65535,0,65535,0 }; +static gchar *progress = "#FF0000"; +static gchar *progress_trust = "#00FF00"; #define MODKEY GDK_CONTROL_MASK static Key keys[] = { /* modifier keyval function arg Focus */ |