summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-12-12 16:48:26 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-12-12 16:48:26 +0000
commitcff070952887e473af085a2dfda87f046a8f3507 (patch)
tree14bff293a31e8220da47310f12206fd21f7e056d
parent55d9191bb57bbf86eb7844da04c64ce0a72fa360 (diff)
downloadnetsurf-cff070952887e473af085a2dfda87f046a8f3507.tar.gz
netsurf-cff070952887e473af085a2dfda87f046a8f3507.tar.bz2
More "NetSurfy" colours. Note treeview restyling is still in progress; this will change.
svn path=/trunk/netsurf/; revision=11039
-rw-r--r--desktop/tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/tree.c b/desktop/tree.c
index 1f20f4e23..04db9a9a5 100644
--- a/desktop/tree.c
+++ b/desktop/tree.c
@@ -51,7 +51,7 @@ static plot_font_style_t plot_fstyle = {
.size = 10 * FONT_SIZE_SCALE, /* 10pt. */
.weight = 400,
.flags = FONTF_NONE,
- .background = 0xFFFFFF, /* white */
+ .background = 0xFFCCBB, /* white */
.foreground = 0x000000 /* black */
};
@@ -67,13 +67,13 @@ static plot_font_style_t plot_fstyle_selected = {
/** plot style for treeview backgrounds. */
static plot_style_t plot_style_fill_tree_background = {
.fill_type = PLOT_OP_TYPE_SOLID,
- .fill_colour = 0xFFFFFF,
+ .fill_colour = 0xFFCCBB,
};
/** plot style for treeview lines. */
static plot_style_t plot_style_stroke_tree_furniture = {
.stroke_type = PLOT_OP_TYPE_SOLID,
- .stroke_colour = 0x999999,
+ .stroke_colour = 0x7C635B,
};
struct node;