mirror of https://github.com/docker/compose.git
72 lines
1.2 KiB
Go
72 lines
1.2 KiB
Go
|
package ecs
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
var NAMES = []string{
|
||
|
"grey",
|
||
|
"red",
|
||
|
"green",
|
||
|
"yellow",
|
||
|
"blue",
|
||
|
"magenta",
|
||
|
"cyan",
|
||
|
"white",
|
||
|
}
|
||
|
|
||
|
var COLORS map[string]ColorFunc
|
||
|
|
||
|
// ColorFunc use ANSI codes to render colored text on console
|
||
|
type ColorFunc func(s string) string
|
||
|
|
||
|
var Monochrome = func(s string) string {
|
||
|
return s
|
||
|
}
|
||
|
|
||
|
func ansiColor(code, s string) string {
|
||
|
return fmt.Sprintf("%s%s%s", ansi(code), s, ansi("0"))
|
||
|
}
|
||
|
|
||
|
func ansi(code string) string {
|
||
|
return fmt.Sprintf("\033[%sm", code)
|
||
|
}
|
||
|
|
||
|
func makeColorFunc(code string) ColorFunc {
|
||
|
return func(s string) string {
|
||
|
return ansiColor(code, s)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var Rainbow = make(chan ColorFunc)
|
||
|
|
||
|
func init() {
|
||
|
COLORS = map[string]ColorFunc{}
|
||
|
for i, name := range NAMES {
|
||
|
COLORS[name] = makeColorFunc(strconv.Itoa(30 + i))
|
||
|
COLORS["intense_"+name] = makeColorFunc(strconv.Itoa(30+i) + ";1")
|
||
|
}
|
||
|
|
||
|
go func() {
|
||
|
i := 0
|
||
|
rainbow := []ColorFunc{
|
||
|
COLORS["cyan"],
|
||
|
COLORS["yellow"],
|
||
|
COLORS["green"],
|
||
|
COLORS["magenta"],
|
||
|
COLORS["blue"],
|
||
|
COLORS["intense_cyan"],
|
||
|
COLORS["intense_yellow"],
|
||
|
COLORS["intense_green"],
|
||
|
COLORS["intense_magenta"],
|
||
|
COLORS["intense_blue"],
|
||
|
}
|
||
|
|
||
|
for {
|
||
|
Rainbow <- rainbow[i]
|
||
|
i = (i + 1) % len(rainbow)
|
||
|
}
|
||
|
}()
|
||
|
}
|