From 32bc2660d40cdc7f7153cbe49d7192afd4da9b5b Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Tue, 17 Dec 2024 09:34:20 +0100 Subject: [PATCH] Make default background color into a warmer green --- animation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animation.py b/animation.py index 0844503..86d5d23 100644 --- a/animation.py +++ b/animation.py @@ -238,7 +238,7 @@ class Hackertours(Steady): """ Base color yellow, with green wandering back and forth """ - def __init__(self, color, base=(255,255,0), looptime=4.0): + def __init__(self, color, base=(255,223,0), looptime=4.0): super(Hackertours, self).__init__(color) self.looptime = looptime self.base = base