Add Multi color parsing to types

pull/106/head
George Sexton 1 year ago
parent 31fd033457
commit e27ed10928

@ -69,6 +69,8 @@ func (c *Color) Set(s string) error {
*c = Yellow
case "white":
*c = White
case "multi":
*c = Multi
default:
return fmt.Errorf("unknown color %q: expected either black, red, yellow or white", s)
}

Loading…
Cancel
Save