From cff070952887e473af085a2dfda87f046a8f3507 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 12 Dec 2010 16:48:26 +0000 Subject: More "NetSurfy" colours. Note treeview restyling is still in progress; this will change. svn path=/trunk/netsurf/; revision=11039 --- desktop/tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'desktop/tree.c') 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; -- cgit v1.2.3