| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /*
- Copyright 2020 Docker Compose CLI authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package ecs
- import (
- "fmt"
- "strconv"
- )
- var names = []string{
- "grey",
- "red",
- "green",
- "yellow",
- "blue",
- "magenta",
- "cyan",
- "white",
- }
- // colorFunc use ANSI codes to render colored text on console
- type colorFunc func(s string) string
- 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 loop = 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 {
- loop <- rainbow[i]
- i = (i + 1) % len(rainbow)
- }
- }()
- }
|