mirror of
https://github.com/LingChair/LingChair-V0.git
synced 2025-12-08 01:55:50 +08:00
14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
/*
|
|
* ©2024 满月叶
|
|
* Github: MoonLeeeaf
|
|
* 控制台颜色辅助类
|
|
*/
|
|
|
|
module.exports = {
|
|
none: "\033[0m",
|
|
red: "\033[1;31m",
|
|
green: "\033[1;32m",
|
|
yellow: "\033[1;33m",
|
|
blue: "\033[1;34m",
|
|
}
|