颜色
使用 lua 的 print() 函数时向终端输出漂亮的颜色。 该模块还为您提供了有助于通过代码跟踪消息的额外信息。
在 print() 函数内部使用来关闭/打开文本格式和颜色。
##可用的颜色和格式:
###文本和背景颜色:
黑色的
红色的
绿色的
黄色的
蓝色的
品红
青色
白色的
###其他选项:
大胆的
强调
眨
逆
三振
例子:
-- Use lc to toggle different text formats and colors. Reset them with lc.off
local lc = require (“luaColors”)
print (lc. off .. lc. blue .. lc. bg . white .. “Hello Color World” .. lc. off );
-- Turns off previous form
2022-02-11 14:56:07
7KB
Lua
1