You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently std/terminal bright colors do not work as intended and do not show the correct color.
You can use ANSI codes to display them but it's a bit painful.
for i in0..7:
stdout.write"\x1b[38;5;", i, "mAA"
stdout.write"\x1b[0m\n"for i in8..15:
stdout.write"\x1b[38;5;", i, "mAA"
stdout.write"\x1b[0m\n"for i in0..7:
stdout.write"\x1b[48;5;", i, "m "
stdout.write"\x1b[0m\n"for i in8..15:
stdout.write"\x1b[48;5;", i, "m "
stdout.write"\x1b[0m\n"
I want colors to show the 16 ANSI colors of terminal.
I tried to add
fgBrightRed
in addition to the defaultfgRed
, but it's undeclared identifier.What is the name for the
base08
--base0F
?The text was updated successfully, but these errors were encountered: