cobalt/api/src/misc/console-text.js

17 lines
294 B
JavaScript
Raw Normal View History

function t(color, tt) {
2022-07-08 19:17:56 +01:00
return color + tt + "\x1b[0m"
}
2024-05-15 18:00:13 +01:00
2022-07-08 19:17:56 +01:00
export function Bright(tt) {
return t("\x1b[1m", tt)
}
export function Red(tt) {
return t("\x1b[31m", tt)
}
export function Green(tt) {
return t("\x1b[32m", tt)
}
export function Cyan(tt) {
return t("\x1b[36m", tt)
}