I can\'t get the terminal color palette to work with curses.
import curses def main(stdscr): curses.use_default_colors() for i in range(0,7): st
You can use the culour package by installing with:
culour
pip install culour
And then you can use it to print with color to curses:
culour.addstr(window, "colored string")