List of ANSI color escape sequences
在大多数终端上(当然,除了Windows的cmd.exe),可以使用
现在我要查找所有支持的颜色和选项的列表(如明亮和闪烁)。
因为支持它们的终端之间可能存在一些差异:我主要对那些由与xterm兼容的终端支持的序列感兴趣。
您要查找的ansi转义序列是select graphic rendition子集。所有这些都有表格
1 | \033[XXXm |
其中,
也就是说,在C语言中,将文本设为红色、粗体和下划线(我们将讨论下面的许多其他选项),您可以这样写:
1 | printf("\033[31;1;4mHello\033[0m"); |
在C++中你会使用
1 | std::cout<<"\033[31;1;4mHello\033[0m"; |
在python3中你会用到
1 | print("\033[31;1;4mHello\033[0m") |
在巴什你会用
1 | echo -e"\033[31;1;4mHello\033[0m" |
第一部分将文本变为红色(
如下表所述,您可以设置大量的文本属性,例如粗体、字体、下划线和C。(StackOverflow不允许您在答案中放置适当的表,这不是很愚蠢吗?)
字体效果1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | ╔══════════╦════════════════════════════════╦═════════════════════════════════════════════════════════════════════════╗ ║ Code ║ Effect ║ Note ║ ╠══════════╬════════════════════════════════╬═════════════════════════════════════════════════════════════════════════╣ ║ 0 ║ Reset / Normal ║ all attributes off ║ ║ 1 ║ Bold or increased intensity ║ ║ ║ 2 ║ Faint (decreased intensity) ║ Not widely supported. ║ ║ 3 ║ Italic ║ Not widely supported. Sometimes treated as inverse. ║ ║ 4 ║ Underline ║ ║ ║ 5 ║ Slow Blink ║ less than 150 per minute ║ ║ 6 ║ Rapid Blink ║ MS-DOS ANSI.SYS; 150+ per minute; not widely supported ║ ║ 7 ║ [[reverse video]] ║ swap foreground and background colors ║ ║ 8 ║ Conceal ║ Not widely supported. ║ ║ 9 ║ Crossed-out ║ Characters legible, but marked for deletion. Not widely supported. ║ ║ 10 ║ Primary(default) font ║ ║ ║ 11–19 ║ Alternate font ║ Select alternate font `n-10` ║ ║ 20 ║ Fraktur ║ hardly ever supported ║ ║ 21 ║ Bold off or Double Underline ║ Bold off not widely supported; double underline hardly ever supported. ║ ║ 22 ║ Normal color or intensity ║ Neither bold nor faint ║ ║ 23 ║ Not italic, not Fraktur ║ ║ ║ 24 ║ Underline off ║ Not singly or doubly underlined ║ ║ 25 ║ Blink off ║ ║ ║ 27 ║ Inverse off ║ ║ ║ 28 ║ Reveal ║ conceal off ║ ║ 29 ║ Not crossed out ║ ║ ║ 30–37 ║ Set foreground color ║ See color table below ║ ║ 38 ║ Set foreground color ║ Next arguments are `5;n` or `2;r;g;b`, see below ║ ║ 39 ║ Default foreground color ║ implementation defined (according to standard) ║ ║ 40–47 ║ Set background color ║ See color table below ║ ║ 48 ║ Set background color ║ Next arguments are `5;n` or `2;r;g;b`, see below ║ ║ 49 ║ Default background color ║ implementation defined (according to standard) ║ ║ 51 ║ Framed ║ ║ ║ 52 ║ Encircled ║ ║ ║ 53 ║ Overlined ║ ║ ║ 54 ║ Not framed or encircled ║ ║ ║ 55 ║ Not overlined ║ ║ ║ 60 ║ ideogram underline ║ hardly ever supported ║ ║ 61 ║ ideogram double underline ║ hardly ever supported ║ ║ 62 ║ ideogram overline ║ hardly ever supported ║ ║ 63 ║ ideogram double overline ║ hardly ever supported ║ ║ 64 ║ ideogram stress marking ║ hardly ever supported ║ ║ 65 ║ ideogram attributes off ║ reset the effects of all of 60-64 ║ ║ 90–97 ║ Set bright foreground color ║ aixterm (not in standard) ║ ║ 100–107 ║ Set bright background color ║ aixterm (not in standard) ║ ╚══════════╩════════════════════════════════╩═════════════════════════════════════════════════════════════════════════╝ |
2位颜色
你已经拿到了!
4位颜色实现终端颜色的标准从有限(4位)选项开始。下表列出了各种终端仿真器使用的背景色和前景色的RGB值:
使用上述方法,您可以在绿色背景上生成红色文本(但为什么呢?)使用:
1 | \033[31;42m |
11种颜色(插曲)
布伦特·柏林和保罗·凯在他们的《基本颜色术语:它们的普遍性和进化》一书中,使用从20种语言中收集的数据,从一系列语言家族中找出了11种可能的基本颜色类别:白色、黑色、红色、绿色、黄色、蓝色、棕色、紫色、粉色、橙色和灰色。
柏林和凯发现,在少于最大11种颜色类别的语言中,颜色遵循特定的进化模式。此模式如下:
这可能就是为什么故事贝奥武夫只包含黑色、白色和红色。这也可能是圣经不包含蓝色的原因。荷马的《奥德赛》包含了近200次的黑色和大约100次的白色。红色出现15次,黄色和绿色只出现10次。(此处提供更多信息)
不同语言之间的差异也很有趣:注意英语和汉语使用的不同颜色词的丰富性。然而,深入研究这些语言表明,每种语言都以不同的方式使用颜色。(更多信息)
一般来说,人类语言中颜色的命名、使用和分组都很吸引人。现在,回到节目上来。
8位(256)色技术先进,有256种预选颜色的表格,如下所示。
使用上面的这些,您可以使粉红色的文本像这样:
1 | \033[38;5;206m #That is, \033[38;5;<FG COLOR>m |
并使用
1 | \033[48;5;57m #That is, \033[48;5;<BG COLOR>m |
当然,你也可以把这些结合起来:
1 | \033[38;5;206;48;5;57m |
8位颜色的排列方式如下:
1 2 3 4 | 0x00-0x07: standard colors (same as the 4-bit colours) 0x08-0x0F: high intensity colors 0x10-0xE7: 6 × 6 × 6 cube (216 colors): 16 + 36 × r + 6 × g + b (0 ≤ r, g, b ≤ 5) 0xE8-0xFF: grayscale from black to white in 24 steps |
所有颜色
现在我们生活在未来,我们可以使用以下方法获得完整的RGB光谱:
1 2 | \033[38;2;<r>;<g>;m #Select RGB foreground color \033[48;2;<r>;<g>;m #Select RGB background color |
所以你可以用
1 | \033[38;2;255;82;197;48;2;155;106;0mHello |
这里列出了对"真彩色"终端的支持。
上面的大部分都是从维基百科的"ansi转义码"页面中提取的。
本页有一个很好的总结:
ANSI转义序列
怎么样:
ECMA-48-编码字符集的控制功能,第5版(1991年6月)定义颜色控制代码的标准,显然也受xterm支持。
SGR 38和48最初由ECMA-48保留,但几年后在ITU、IEC和ISO联合标准中得到了完善,该标准分为若干部分,其中(包括许多其他内容)记录了SGR 38/48直接颜色和索引颜色的控制序列:
- 信息技术:开放式文档结构(ODA)和交换格式:文档结构。T.412。国际电信联盟。
- 信息技术:开放文档体系结构(ODA)和交换格式:字符内容体系结构。T.416国际电信联盟。
- 信息技术:开放文档体系结构(ODA)和交换格式:字符内容体系结构。ISO/IEC 8613-6:1994。国际标准化组织。
在wikipedia页面的这个表中有一列用于xterm的ansi转义码
还有一些更有趣的信息和相关信息。
- http://wiki.bash-hacker.org/scripting/terminalcodes网站
- 网址:http://www.termsys.demon.co.uk/vtansi.htm
- http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
- http://www.tldp.org/howto/bash-prompt-howto/c327.html
- https://wiki.archlinux.org/index.php/color_bash_提示
它绝对与你的终端有关。VTE不支持闪烁,如果根据VTE使用
1 2 3 | #infocmp vt100 #infocmp xterm #infocmp vte |
例如:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # infocmp vte # Reconstructed via infocmp from file: /usr/share/terminfo/v/vte vte|VTE aka GNOME Terminal, am, bce, mir, msgr, xenl, colors#8, cols#80, it#8, lines#24, ncv#16, pairs#64, acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, bold=\E[1m, civis=\E[?25l, clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, enacs=\E)0, home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, il=\E[%p1%dL, il1=\E[L, ind=^J, invis=\E[8m, is2=\E[m\E[?7h\E[4l\E>\E7\E[r\E[?1;3;4;6l\E8, kDC=\E[3;2~, kEND=\E[1;2F, kHOM=\E[1;2H, kIC=\E[2;2~, kLFT=\E[1;2D, kNXT=\E[6;2~, kPRV=\E[5;2~, kRIT=\E[1;2C, kb2=\E[E, kbs=\177, kcbt=\E[Z, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kend=\EOF, kf1=\EOP, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[1;2P, kf14=\E[1;2Q, kf15=\E[1;2R, kf16=\E[1;2S, kf17=\E[15;2~, kf18=\E[17;2~, kf19=\E[18;2~, kf2=\EOQ, kf20=\E[19;2~, kf21=\E[20;2~, kf22=\E[21;2~, kf23=\E[23;2~, kf24=\E[24;2~, kf25=\E[1;5P, kf26=\E[1;5Q, kf27=\E[1;5R, kf28=\E[1;5S, kf29=\E[15;5~, kf3=\EOR, kf30=\E[17;5~, kf31=\E[18;5~, kf32=\E[19;5~, kf33=\E[20;5~, kf34=\E[21;5~, kf35=\E[23;5~, kf36=\E[24;5~, kf37=\E[1;6P, kf38=\E[1;6Q, kf39=\E[1;6R, kf4=\EOS, kf40=\E[1;6S, kf41=\E[15;6~, kf42=\E[17;6~, kf43=\E[18;6~, kf44=\E[19;6~, kf45=\E[20;6~, kf46=\E[21;6~, kf47=\E[23;6~, kf48=\E[24;6~, kf49=\E[1;3P, kf5=\E[15~, kf50=\E[1;3Q, kf51=\E[1;3R, kf52=\E[1;3S, kf53=\E[15;3~, kf54=\E[17;3~, kf55=\E[18;3~, kf56=\E[19;3~, kf57=\E[20;3~, kf58=\E[21;3~, kf59=\E[23;3~, kf6=\E[17~, kf60=\E[24;3~, kf61=\E[1;4P, kf62=\E[1;4Q, kf63=\E[1;4R, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~, khome=\EOH, kich1=\E[2~, kind=\E[1;2B, kmous=\E[M, knp=\E[6~, kpp=\E[5~, kri=\E[1;2A, kslt=\E[4~, meml=\El, memu=\Em, op=\E[39;49m, rc=\E8, rev=\E[7m, ri=\EM, ritm=\E[23m, rmacs=^O, rmam=\E[?7l, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, rs1=\Ec, rs2=\E7\E[r\E8\E[m\E[?7h\E[!p\E[?1;3;4;6l\E[4l\E>\E[?1000l\E[?25h, sc=\E7, setab=\E[4%p1%dm, setaf=\E[3%p1%dm, sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p5%t;2%;%?%p7%t;8%;%?%p1%p3%|%t;7%;m%?%p9%t\016%e\017%;, sgr0=\E[0m\017, sitm=\E[3m, smacs=^N, smam=\E[?7h, smcup=\E7\E[?47h, smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, u6=\E[%i%d;%dR, u7=\E[6n, u8=\E[?%[;0123456789]c, u9=\E[c, vpa=\E[%i%p1%dd, |