From 5e1c061a522d7a7d0233193ff6184bcd50396242 Mon Sep 17 00:00:00 2001 From: Corollax Date: Mon, 6 Dec 2010 18:02:14 -0600 Subject: [PATCH] Bright green is bright. New green is less bright. But equally shiny. Shiny... --- gui/pygauge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/pygauge.py b/gui/pygauge.py index 63c677cb8..b61ba4e25 100644 --- a/gui/pygauge.py +++ b/gui/pygauge.py @@ -59,7 +59,7 @@ class PyGauge(wx.PyWindow): self._animValue = 0 self._animDirection = 0 - self.transitionsColors = [( (191, 191, 191, 255) , (128, 255, 0, 255) ), + self.transitionsColors = [( (191, 191, 191, 255) , (96, 191, 0, 255) ), ( (191, 167, 96, 255) , (255, 191, 0, 255) ), ( (255, 191, 0, 255) , (255, 128, 0, 255) ), ( (255, 128, 0, 255) , (255, 64, 64, 255) )]