This commit is contained in:
Kovid Goyal
2023-03-15 15:32:04 +05:30
parent da38cb3254
commit e2fda5d1c4
2 changed files with 15 additions and 1 deletions

View File

@@ -157,6 +157,20 @@ func ParseColor(color string) (RGBA, error) {
return RGBA{}, fmt.Errorf("Not a valid color name: %#v", color)
}
type NullableColor struct {
Color RGBA
IsNull bool
}
func ParseColorOrNone(color string) (NullableColor, error) {
raw := strings.TrimSpace(strings.ToLower(color))
if raw == "none" {
return NullableColor{IsNull: true}, nil
}
c, err := ParseColor(raw)
return NullableColor{Color: c}, err
}
var named_colors = map[string]uint8{
"black": 0, "red": 1, "green": 2, "yellow": 3, "blue": 4, "magenta": 5, "cyan": 6, "gray": 7, "white": 7,