我知道这是ANSI颜色序列,但这意味着什么?
BLUE = "\x1b[38;05;4m"
\x1b是逃逸(ASCII 27)
\x1b
38是什么?05是什么?什么是4m?
38
05
4m
名单上似乎没有这样的东西?
发布于 2015-02-12 02:38:11
啊,我明白了,维基百科有更完整的参考
38是Reserved for extended set foreground color
Reserved for extended set foreground color
05是next is the color index
next is the color index
4是color blue
4
color blue
https://stackoverflow.com/questions/28468270
相似问题