summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/options.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.go b/src/options.go
index ab5ae27a..797863cf 100644
--- a/src/options.go
+++ b/src/options.go
@@ -617,7 +617,7 @@ func parseTheme(defaultTheme *tui.ColorTheme, str string) *tui.ColorTheme {
case "16":
theme = dupeTheme(tui.Default16)
case "bw", "no":
- theme = nil
+ theme = tui.NoColorTheme()
default:
fail := func() {
errorExit("invalid color specification: " + str)