Made some logic changes to word intersection code
[getaclue.git] / crosswordpuzzlecreator.py
index 42d4fdd..4098cd3 100644 (file)
@@ -19,9 +19,9 @@ class CrosswordPuzzleCreator:
        # Black background white text
        BLACK_BG = '\033[40;1;37m'
        # white background black text
-       WHITE_BG = '\033[47;0;30m'
+       WHITE_BG = '\033[47;1;30m'
        # white background red text
-       REDWHITE_BG = '\033[47;0;31m'
+       REDWHITE_BG = '\033[47;1;31m'
        # disable colors
        ENDCOL = '\033[0m'