Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristhofer Travieso <cristhofert97@gmail.com>2013-09-03 21:58:08 (GMT)
committer Cristhofer Travieso <cristhofert97@gmail.com>2013-09-03 21:58:08 (GMT)
commit5eb787ef0bd0b0a35b9720f622cdd05f431b1b35 (patch)
tree3ec9db5f35d09ba24866abf0fb91667a79d7108e
parentb1f97369c7015c1c691724d41aea3aed9ee160f1 (diff)
Change the color from green to brown
Signed-off-by: Cristhofer Travieso <cristhofert97@gmail.com>
-rw-r--r--game.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/game.py b/game.py
index 470a2bd..c019d70 100644
--- a/game.py
+++ b/game.py
@@ -33,7 +33,8 @@ class Eventbox(Gtk.EventBox):
def __init__(self):
Gtk.EventBox.__init__(self)
- parse, color = Gdk.Color.parse('green')
+ #773525
+ parse, color = Gdk.Color.parse('#773525')
self.modify_bg(Gtk.StateType.NORMAL, color)
self.add(Box())