spellr / culour

Print colored strings in curses windows easily
GNU General Public License v3.0
16 stars 2 forks source link

Support for all 8 curses colors #6

Closed frun36 closed 4 months ago

frun36 commented 4 months ago

Implemented support for all 8 curses colors, namely:

class TerminalColors(object):
    WHITE = '[97'
    CYAN = '[96'
    MAGENTA = '[95'
    BLUE = '[94'
    YELLOW = '[93'
    GREEN = '[92'
    RED = '[91'
    BLACK = '[90'
    END = '[0'

Updated test.py to test all colors.