summaryrefslogtreecommitdiff
path: root/desktop/plot_style.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-24 13:32:35 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-24 13:32:35 +0000
commit840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473 (patch)
treea13540d69e0dffa1d0eb38024947b37dedf30f31 /desktop/plot_style.h
parent8cc6b55981e808576d32c37f374716015fafe55b (diff)
downloadnetsurf-840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473.tar.gz
netsurf-840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473.tar.bz2
History colours as constants r=jmb,vince
svn path=/trunk/netsurf/; revision=11478
Diffstat (limited to 'desktop/plot_style.h')
-rw-r--r--desktop/plot_style.h16
1 files changed, 16 insertions, 0 deletions
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