From e27ed10928ea27eac62013d7273f9fff09544e73 Mon Sep 17 00:00:00 2001 From: George Sexton Date: Fri, 4 Apr 2025 15:21:55 -0600 Subject: [PATCH] Add Multi color parsing to types --- inky/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inky/types.go b/inky/types.go index 466d7c9..83f4535 100644 --- a/inky/types.go +++ b/inky/types.go @@ -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) }