From 0fd069b7a577651ce9fa7cbbc6b9ccb4d3c408ed Mon Sep 17 00:00:00 2001 From: mryouse Date: Sun, 2 Aug 2020 01:57:57 +0000 Subject: added a color for '6' -- not common, but not uncommon --- sweepy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sweepy.py b/sweepy.py index 0a3f635..2f0e2ef 100755 --- a/sweepy.py +++ b/sweepy.py @@ -21,6 +21,7 @@ def generate_tiles(): tiles.append(Tile("3", "3", Ouija.COLORS["RED"], curses.A_BOLD)) tiles.append(Tile("4", "4", Ouija.COLORS["GREEN"], curses.A_BOLD)) tiles.append(Tile("5", "5", Ouija.COLORS["ORANGE"], curses.A_BOLD)) + tiles.append(Tile("6", "6", Ouija.COLORS["CYAN"], curses.A_BOLD)) tiles.append(Tile("!", "#", Ouija.COLORS["YELLOW"])) tiles.append(Tile("_", ".")) tiles.append(Tile("x", "x", Ouija.COLORS["BLACK_ON_YELLOW"])) -- cgit v1.2.3