From cd1d12e4110504a72088a1740cf938f94b99a299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rory=20O=E2=80=99Kane?= Date: Sat, 21 Apr 2012 16:50:14 -0300 Subject: [PATCH] Lightened red color in instructions Just changed Lightness in the color's HSL representation from 47% to 70%. Yes, now it is no longer the exact same color as the actual red square. But it's easier to read the red text against the black background of the instructions bubble, and it's still red enough to look like the square. Some possible alternatives to this: give .red a white background so you can use the original red color and and still read it keep this change, and also change the name of this class to .instructions-red so we don't confuse it with the red color of the end position square --- visual/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visual/main.css b/visual/main.css index 73a4a7e3..02f62e47 100644 --- a/visual/main.css +++ b/visual/main.css @@ -137,5 +137,5 @@ footer { } .red { - color: #e40; + color: #ff9166; }