+# noqa: D100
+from qutebrowser.config.configfiles import ConfigAPI
+from qutebrowser.config.config import ConfigContainer
+
+c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
+config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
+
# https://github.com/Linuus/nord-qutebrowser
nord = {
## Background color of the statusbar in insert mode.
## Type: QssColor
-c.colors.statusbar.insert.bg = nord['nord14']
+c.colors.statusbar.insert.bg = nord['nord3']
## Foreground color of the statusbar in insert mode.
## Type: QssColor
-c.colors.statusbar.insert.fg = nord['nord1']
+c.colors.statusbar.insert.fg = nord['nord6']
## Background color of the statusbar.
## Type: QssColor
## Type: QtColor
c.colors.tabs.selected.odd.fg = nord['nord5']
+## Background color of tooltips. If set to null, the Qt default is used.
+## Type: QssColor
+c.colors.tooltip.bg = None
+
+## Foreground color of tooltips. If set to null, the Qt default is used.
+## Type: QssColor
+c.colors.tooltip.fg = None
+
## Background color for webpages if unset (or empty to use the theme's
## color).
## Type: QtColor