1 Star 0 Fork 0

Burning/gopackage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PrintColorMessage.go 699 Bytes
一键复制 编辑 原始数据 按行查看 历史
Burning 提交于 2024-12-12 14:29 +08:00 . 优化更新
package gops
import (
"fmt"
"github.com/fatih/color"
)
// 设置颜色
var blue = color.New(color.FgBlue, color.Bold).SprintFunc()
var yellow = color.New(color.FgYellow, color.Bold).SprintFunc()
var green = color.New(color.FgGreen, color.Bold).SprintFunc()
var red = color.New(color.FgRed, color.Bold).SprintFunc()
func PrintBlueMessage(message string) {
// 打印蓝色字体
fmt.Println(blue(message))
}
func PrintYellowMessage(message string) {
// 打印黄色字体
fmt.Println(yellow(message))
}
func PrintGreenMessage(message string) {
// 打印绿色字体
fmt.Println(green(message))
}
func PrintRedMessage(message string) {
// 打印红色字体
fmt.Println(red(message))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jie_python/gopackage.git
git@gitee.com:jie_python/gopackage.git
jie_python
gopackage
gopackage
v1.1.13

搜索帮助