diff --git a/ui/theme/handler.go b/ui/theme/handler.go index ceeb4e5..e580ae8 100644 --- a/ui/theme/handler.go +++ b/ui/theme/handler.go @@ -239,7 +239,7 @@ func parseThemeSetting(setting string) (tcell.Style, string, error) { default: color = tcell.GetColor(name) } - if color == 0 { + if color == 0 && name != "default" { return tcell.Style{}, "", fmt.Errorf("Invalid color '%s'", name) }