From a8668b1ca3218f321c9039332f13cd7b9f9cd068 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Thu, 13 Jan 2005 14:18:42 +0000 Subject: [PATCH] In the USA, "sky blue" is common color name. Try the lightning bolt with it. --- src/colors.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/colors.h b/src/colors.h index 209d2dfa9..7bbe0e896 100644 --- a/src/colors.h +++ b/src/colors.h @@ -25,7 +25,7 @@ enum { COLOR_YELLOW, COLOR_LIGHTGREEN, COLOR_DARKGREEN, - COLOR_LIGHTBLUE, + COLOR_SKYBLUE, COLOR_BLUE, COLOR_LAVENDER, COLOR_PURPLE, @@ -49,7 +49,7 @@ const int color_hexes[NUM_COLORS][3] = { {255, 255, 0}, /* Yellow */ {160, 228, 128}, /* Light green */ { 33, 148, 70}, /* Dark green */ - {156, 200, 245}, /* Light blue */ + {138, 168, 205}, /* Sky blue */ { 50, 100, 255}, /* Blue */ {186, 157, 255}, /* Lavender */ {128, 0, 128}, /* Purple */ @@ -72,7 +72,7 @@ const char * const color_names[NUM_COLORS] = { gettext_noop("Yellow!"), gettext_noop("Light green!"), gettext_noop("Dark green!"), - gettext_noop("Light blue!"), + gettext_noop("Sky blue!"), gettext_noop("Blue!"), gettext_noop("Lavender!"), gettext_noop("Purple!"),