Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 xterm.js 作为 Web 控制台。虽然它允许更改控制台颜色和背景,但我找不到任何方法来用不同的颜色编写每一行。这可能吗?
因此,虽然从 xterm.js 文档中有点不清楚,但在write或命令中使用混合颜色的方式是使用主题writeln配置中描述的 ANSI 颜色,例如:
write
writeln
terminal.writeln('\x1b[1;31m' + 'User:'+ '\x1b[37m' + 'my name');
将以红色和白色打印文本