talos-upgrade/pkg/palette/palette.go
2023-10-20 17:28:58 -04:00

24 lines
445 B
Go

package palette
const (
Background = "#202020"
Foreground = "#d0d0d0"
Black = "#000000"
Red = "#ee4a59"
Green = "#22ff22"
Yellow = "#f0df33"
Blue = "#7766ff"
Purple = "#cf55f0"
Cyan = "#33dbc3"
White = "#808080"
BrightBlack = "#666666"
BrightRed = "#ff4090"
BrightGreen = "#99ff99"
BrightYellow = "#f0af00"
BrightBlue = "#50afff"
BridgeViolet = "#af60af"
BridgeCyan = "#95c5ff"
BridgeWhite = "#ffffff"
)