Skip to content
/ color Public

🌈🌈🌈 The color library is used for outputting colored text in the console using ANSI escape sequences.

License

Notifications You must be signed in to change notification settings

go-labx/color

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

6 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

color

🌈🌈🌈 The color library is used for outputting colored text in the console using ANSI escape sequences.

Installation

go get github.com/go-labx/color

Usage

To use this color lib, import it in your Go code:

import "github.com/go-labx/color"

Here is an example of how to use color:

package main

import (
	"fmt"
	"github.com/go-labx/color"
)

func main() {
	fmt.Println(color.BlackString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.RedString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.GreenString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.YellowString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.BlueString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.MagentaString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.CyanString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
	fmt.Println(color.WhiteString("username = %s age = %d city = %s", "Jack", 20, "Hangzhou"))
}

API Documentation

For detailed API documentation and usage examples, please refer to the documentation.

Contributing

Contributions are welcome! Please see CONTRIBUTING for more information.

License

color is licensed under the MIT License. See LICENSE for more information.

About

🌈🌈🌈 The color library is used for outputting colored text in the console using ANSI escape sequences.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages