From dd6a18dc0d80640212f1af21593f5e5c59216a95 Mon Sep 17 00:00:00 2001 From: Karl Ove Hufthammer Date: Fri, 6 Feb 2004 21:54:22 +0000 Subject: [PATCH] - Some minor changes to the colours, so they all have different hues (for tinting) - Added exclamation marks to all colours --- src/colors.h | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/colors.h b/src/colors.h index 2a87d3c03..0a43ab455 100644 --- a/src/colors.h +++ b/src/colors.h @@ -45,13 +45,13 @@ int color_hexes[NUM_COLORS][3] = { {255, 128, 0}, /* Orange */ {255, 255, 0}, /* Yellow */ { 0, 255, 0}, /* Lime */ - { 0, 128, 0}, /* Green */ + { 0, 132, 64}, /* Green */ { 0, 255, 255}, /* Cyan */ { 0, 0, 255}, /* Blue */ - {128, 0, 128}, /* Purple */ + { 96, 0, 128}, /* Purple */ {255, 0, 255}, /* Fuchsia */ {128, 96, 0}, /* Brown */ - {128, 128, 128}, /* Grey */ + {128, 128, 128}, /* Gray */ {192, 192, 192} /* Silver */ }; @@ -59,19 +59,19 @@ int color_hexes[NUM_COLORS][3] = { /* Color names: */ char * color_names[NUM_COLORS] = { - gettext_noop("Black"), - gettext_noop("White"), - gettext_noop("Red"), - gettext_noop("Pink"), - gettext_noop("Orange"), - gettext_noop("Yellow"), - gettext_noop("Lime"), - gettext_noop("Green"), - gettext_noop("Cyan"), - gettext_noop("Blue"), - gettext_noop("Purple"), - gettext_noop("Fuchsia"), - gettext_noop("Brown"), - gettext_noop("Grey"), - gettext_noop("Silver") + gettext_noop("Black!"), + gettext_noop("White!"), + gettext_noop("Red!"), + gettext_noop("Pink!"), + gettext_noop("Orange!"), + gettext_noop("Yellow!"), + gettext_noop("Lime!"), + gettext_noop("Green!"), + gettext_noop("Cyan!"), + gettext_noop("Blue!"), + gettext_noop("Purple!"), + gettext_noop("Fuchsia!"), + gettext_noop("Brown!"), + gettext_noop("Gray!"), + gettext_noop("Silver!") };