Golang:color在终端上输出带颜色的文字
【摘要】
Color lets you use colorized outputs in terms of ANSI Escape Codes in Go (Golang). It has support for...
Color lets you use colorized outputs in terms of ANSI Escape Codes in Go (Golang). It has support for Windows too! The API can be used in several ways, pick one that suits you.
译文:Color 允许您根据Go(Golang)中的ANSI转义码使用着色输出。它也支持Windows!API可以多种方式使用,选择适合您的方式。
文档
安装
go get github.com/fatih/color
- 1
示例
// main.go
package main
import (
"github.com/fatih/color"
)
func main() {
// 直接使用,输出蓝色文字
color.Blue("hello: %s", "Tom")
// 实例化后使用
colorPrint := color.New()
colorPrint.Add(color.FgRed) // 红色文字
colorPrint.Add(color.Italic) // 倾斜
colorPrint.Add(color.BgGreen) // 绿色背景
colorPrint.Println("Hello World")
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
注意:直接运行没有效果,需要在终端使用命令行运行才能看到效果
$ go run main.go
- 1
输出结果
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/126759335
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)