summaryrefslogtreecommitdiffstats
path: root/gfx
diff options
context:
space:
mode:
Diffstat (limited to 'gfx')
-rw-r--r--gfx/gtk_util.cc1
-rw-r--r--gfx/gtk_util.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/gfx/gtk_util.cc b/gfx/gtk_util.cc
index 1f5b370..bbed191 100644
--- a/gfx/gtk_util.cc
+++ b/gfx/gtk_util.cc
@@ -25,6 +25,7 @@ void FreePixels(guchar* pixels, gpointer data) {
namespace gfx {
const GdkColor kGdkWhite = GDK_COLOR_RGB(0xff, 0xff, 0xff);
+const GdkColor kGdkGray = GDK_COLOR_RGB(0x7f, 0x7f, 0x7f);
const GdkColor kGdkBlack = GDK_COLOR_RGB(0x00, 0x00, 0x00);
const GdkColor kGdkGreen = GDK_COLOR_RGB(0x00, 0xff, 0x00);
diff --git a/gfx/gtk_util.h b/gfx/gtk_util.h
index cc1fa8a..5af37df 100644
--- a/gfx/gtk_util.h
+++ b/gfx/gtk_util.h
@@ -31,6 +31,7 @@ namespace gfx {
class Rect;
extern const GdkColor kGdkWhite;
+extern const GdkColor kGdkGray;
extern const GdkColor kGdkBlack;
extern const GdkColor kGdkGreen;