Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Lee <joe@jotaro.com>2008-03-30 01:13:47 (GMT)
committer Joe Lee <joe@jotaro.com>2008-03-30 01:13:47 (GMT)
commit3fda75725e7eee5645eff921f185560c3eaed057 (patch)
treec75c7873cde185d87141d7ef1ee5c75fb505674a
parent1dbd487946830f3f0f328a118cb5df671d9d1ec8 (diff)
Modified block/background colors for better contrast in b/w mode.
-rw-r--r--color.py4
-rw-r--r--gridwidget.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/color.py b/color.py
index 8ea70b3..2169844 100644
--- a/color.py
+++ b/color.py
@@ -18,11 +18,11 @@
# Derived from Sugar list of colors.
colors = (
- (0.368627, 0.000000, 0.549020), # 5E008C
+ (0.498039, 0.000000, 0.749020), # 7F00BF
(0.901961, 0.000000, 0.039216), # E6000A
(0.000000, 0.917647, 0.066667), # 00EA11
(1.000000, 0.980392, 0.000000), # FFFA00
- (0.498039, 0.000000, 0.749020), # 7F00BF
+ (0.368627, 0.000000, 0.549020), # 5E008C
(1.000000, 0.560784, 0.000000), # FF8F00
(0.000000, 0.372549, 0.894118), # 005FE4
(0.603922, 0.321569, 0.000000), # 9A5200
diff --git a/gridwidget.py b/gridwidget.py
index ea2d6e6..ed28843 100644
--- a/gridwidget.py
+++ b/gridwidget.py
@@ -28,7 +28,7 @@ import random
import color
# Color of the background.
-_BG_COLOR = (0.5, 0.5, 0.7)
+_BG_COLOR = (0.35, 0.35, 0.7)
# Color of the selection border.
_SELECTED_COLOR = (1.0, 1.0, 1.0)