From 0d66647918c4d27001752ba8ba08dd1bcd954f0d Mon Sep 17 00:00:00 2001 From: Austin Anderson Date: Mon, 11 May 2015 22:35:44 -0400 Subject: [PATCH] Set extra foreground colors to match the default by default. --- qutebrowser/config/configdata.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 9327dd377..b4bfbd900 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -801,7 +801,7 @@ def data(readonly=False): "Foreground color of the statusbar."), ('statusbar.fg.error', - SettingValue(typ.QssColor(), 'white'), + SettingValue(typ.QssColor(), '${statusbar.fg}'), "Foreground color of the statusbar if there was an error."), ('statusbar.bg.error', @@ -809,7 +809,7 @@ def data(readonly=False): "Background color of the statusbar if there was an error."), ('statusbar.fg.warning', - SettingValue(typ.QssColor(), 'white'), + SettingValue(typ.QssColor(), '${statusbar.fg}'), "Foreground color of the statusbar if there is a warning."), ('statusbar.bg.warning', @@ -817,7 +817,7 @@ def data(readonly=False): "Background color of the statusbar if there is a warning."), ('statusbar.fg.prompt', - SettingValue(typ.QssColor(), 'white'), + SettingValue(typ.QssColor(), '${statusbar.fg}'), "Foreground color of the statusbar if there is a prompt."), ('statusbar.bg.prompt', @@ -825,7 +825,7 @@ def data(readonly=False): "Background color of the statusbar if there is a prompt."), ('statusbar.fg.insert', - SettingValue(typ.QssColor(), 'white'), + SettingValue(typ.QssColor(), '${statusbar.fg}'), "Foreground color of the statusbar in insert mode."), ('statusbar.bg.insert',