Skip to content

Instantly share code, notes, and snippets.

@heiner
Last active June 7, 2021 14:47
Show Gist options
  • Save heiner/f7b2c03159d93f4f2895a4533c74d0ca to your computer and use it in GitHub Desktop.
Save heiner/f7b2c03159d93f4f2895a4533c74d0ca to your computer and use it in GitHub Desktop.
BRIGHT = 8
def color(s, fg, bg):
return "\033[%d;3%d;4%dm%s\033[0m" % (
bool(fg & BRIGHT),
fg & ~BRIGHT,
bg & ~BRIGHT,
s,
)
for fg in range(16):
for bg in range(8):
print(color("Eric!", fg, bg), end="")
print("")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment