From 840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Mon, 24 Jan 2011 13:32:35 +0000 Subject: History colours as constants r=jmb,vince svn path=/trunk/netsurf/; revision=11478 --- desktop/plot_style.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'desktop/plot_style.h') diff --git a/desktop/plot_style.h b/desktop/plot_style.h index 1271e138b..e6229e256 100644 --- a/desktop/plot_style.h +++ b/desktop/plot_style.h @@ -156,4 +156,20 @@ extern plot_style_t *plot_style_stroke_lightwbasec; /* Default font style */ extern plot_font_style_t const * const plot_style_font; +#ifndef HISTORY_COLOUR_SELECTED +#define HISTORY_COLOUR_SELECTED 0xFF0000 +#endif + +#ifndef HISTORY_COLOUR_FOREGROUND +#define HISTORY_COLOUR_FOREGROUND 0x333333 +#endif + +#ifndef HISTORY_COLOUR_BACKGROUND +#define HISTORY_COLOUR_BACKGROUND 0xFFFFFF +#endif + +#ifndef HISTORY_COLOUR_LINES +#define HISTORY_COLOUR_LINES HISTORY_COLOUR_FOREGROUND +#endif + #endif -- cgit v1.2.3