mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
Various dependencies, including "golang.org/x/.." started to update the minimum required version,so we should follow suit for the next release. Note that the `//go:build` directives not necesserily have to be updated, but it's good to keep them in sync until we have a go.mod to control this. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
34 lines
801 B
Go
34 lines
801 B
Go
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
|
|
//go:build go1.24
|
|
|
|
package tui
|
|
|
|
import (
|
|
"github.com/morikuni/aec"
|
|
)
|
|
|
|
var (
|
|
ColorTitle = aec.NewBuilder(aec.DefaultF, aec.Bold).ANSI
|
|
ColorPrimary = aec.NewBuilder(aec.DefaultF, aec.Bold).ANSI
|
|
ColorSecondary = aec.DefaultF
|
|
ColorTertiary = aec.NewBuilder(aec.DefaultF, aec.Faint).ANSI
|
|
ColorLink = aec.NewBuilder(aec.LightCyanF, aec.Underline).ANSI
|
|
ColorWarning = aec.LightYellowF
|
|
ColorFlag = aec.NewBuilder(aec.Bold).ANSI
|
|
ColorNone = aec.ANSI(noColor{})
|
|
)
|
|
|
|
type noColor struct{}
|
|
|
|
func (a noColor) With(_ ...aec.ANSI) aec.ANSI {
|
|
return a
|
|
}
|
|
|
|
func (noColor) Apply(s string) string {
|
|
return s
|
|
}
|
|
|
|
func (noColor) String() string {
|
|
return ""
|
|
}
|