Files
LingChair-V0/server_src/color.js
2024-07-10 23:12:00 +08:00

15 lines
243 B
JavaScript

/*
* ©2024 满月叶
* Github: MoonLeeeaf
* 控制台颜色辅助类
*/
module.exports = {
none: "\033[0m",
red: "\033[1;31m",
pink: "\033[1;35m",
green: "\033[1;32m",
yellow: "\033[1;33m",
blue: "\033[1;34m",
}