X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/ac6bd5bab5d9ea30d15b6c74b2ff4fd7ed0ffb13..fdd63454b51a35418ec23d3489cf20ae66a2299d:/qutebrowser/themes/nord-qutebrowser.py?ds=sidebyside diff --git a/qutebrowser/themes/nord-qutebrowser.py b/qutebrowser/themes/nord-qutebrowser.py index b7e0bdd..62a86d9 100644 --- a/qutebrowser/themes/nord-qutebrowser.py +++ b/qutebrowser/themes/nord-qutebrowser.py @@ -1,3 +1,10 @@ +# 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 = { @@ -163,6 +170,8 @@ c.colors.downloads.system.fg = "none" ## Background color for hints. Note that you can use a `rgba(...)` value ## for transparency. ## Type: QssColor +#TODO use gradient? +# c.colors.hints.bg = 'qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255, 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))' c.colors.hints.bg = nord['nord13'] ## Font color for hints. @@ -237,6 +246,10 @@ c.colors.prompts.fg = nord['nord5'] ## Type: QssColor c.colors.prompts.selected.bg = nord['nord3'] +## Foreground color for the selected item in filename prompts. +## Type: QssColor +c.colors.prompts.selected.fg = nord['nord5'] + ## Background color of the statusbar in caret mode. ## Type: QssColor c.colors.statusbar.caret.bg = nord['nord15'] @@ -271,11 +284,11 @@ c.colors.statusbar.command.private.fg = nord['nord5'] ## 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 @@ -420,6 +433,14 @@ c.colors.tabs.selected.odd.bg = nord['nord0'] ## 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