From: Samir Benmendil Date: Sat, 30 Jan 2021 16:06:09 +0000 (+0000) Subject: qutebrowser: delete colors from main config file X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/9159fa2e75f9d00d6e2836ab5efc6df3a7e94ae5 qutebrowser: delete colors from main config file --- diff --git a/qutebrowser/config.py b/qutebrowser/config.py index cc5764a..4b30831 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -79,408 +79,7 @@ c.auto_save.session = True ## Type: Dict # c.bindings.key_mappings = {'': '', '': '', '': '', '': '', '': '', '': '', '': '', '': '', '': ''} -## Background color of the completion widget category headers. -## Type: QssColor -# c.colors.completion.category.bg = 'qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)' - -## Bottom border color of the completion widget category headers. -## Type: QssColor -# c.colors.completion.category.border.bottom = 'black' - -## Top border color of the completion widget category headers. -## Type: QssColor -# c.colors.completion.category.border.top = 'black' - -## Foreground color of completion widget category headers. -## Type: QtColor -# c.colors.completion.category.fg = 'white' - -## Background color of the completion widget for even rows. -## Type: QssColor -# c.colors.completion.even.bg = '#333333' - -## Text color of the completion widget. May be a single color to use for -## all columns or a list of three colors, one for each column. -## Type: List of QtColor, or QtColor -# c.colors.completion.fg = ['white', 'white', 'white'] - -## Background color of the selected completion item. -## Type: QssColor -# c.colors.completion.item.selected.bg = '#e8c000' - -## Bottom border color of the selected completion item. -## Type: QssColor -# c.colors.completion.item.selected.border.bottom = '#bbbb00' - -## Top border color of the selected completion item. -## Type: QssColor -# c.colors.completion.item.selected.border.top = '#bbbb00' - -## Foreground color of the selected completion item. -## Type: QtColor -# c.colors.completion.item.selected.fg = 'black' - -## Foreground color of the matched text in the selected completion item. -## Type: QtColor -# c.colors.completion.item.selected.match.fg = '#ff4444' - -## Foreground color of the matched text in the completion. -## Type: QtColor -# c.colors.completion.match.fg = '#ff4444' - -## Background color of the completion widget for odd rows. -## Type: QssColor -# c.colors.completion.odd.bg = '#444444' - -## Color of the scrollbar in the completion view. -## Type: QssColor -# c.colors.completion.scrollbar.bg = '#333333' - -## Color of the scrollbar handle in the completion view. -## Type: QssColor -# c.colors.completion.scrollbar.fg = 'white' - -## Background color of disabled items in the context menu. If set to -## null, the Qt default is used. -## Type: QssColor -# c.colors.contextmenu.disabled.bg = None - -## Foreground color of disabled items in the context menu. If set to -## null, the Qt default is used. -## Type: QssColor -# c.colors.contextmenu.disabled.fg = None - -## Background color of the context menu. If set to null, the Qt default -## is used. -## Type: QssColor -# c.colors.contextmenu.menu.bg = None - -## Foreground color of the context menu. If set to null, the Qt default -## is used. -## Type: QssColor -# c.colors.contextmenu.menu.fg = None - -## Background color of the context menu's selected item. If set to null, -## the Qt default is used. -## Type: QssColor -# c.colors.contextmenu.selected.bg = None - -## Foreground color of the context menu's selected item. If set to null, -## the Qt default is used. -## Type: QssColor -# c.colors.contextmenu.selected.fg = None - -## Background color for the download bar. -## Type: QssColor -# c.colors.downloads.bar.bg = 'black' - -## Background color for downloads with errors. -## Type: QtColor -# c.colors.downloads.error.bg = 'red' - -## Foreground color for downloads with errors. -## Type: QtColor -# c.colors.downloads.error.fg = 'white' - -## Color gradient start for download backgrounds. -## Type: QtColor -# c.colors.downloads.start.bg = '#0000aa' - -## Color gradient start for download text. -## Type: QtColor -# c.colors.downloads.start.fg = 'white' - -## Color gradient stop for download backgrounds. -## Type: QtColor -# c.colors.downloads.stop.bg = '#00aa00' - -## Color gradient end for download text. -## Type: QtColor -# c.colors.downloads.stop.fg = 'white' - -## Color gradient interpolation system for download backgrounds. -## Type: ColorSystem -## Valid values: -## - rgb: Interpolate in the RGB color system. -## - hsv: Interpolate in the HSV color system. -## - hsl: Interpolate in the HSL color system. -## - none: Don't show a gradient. -# c.colors.downloads.system.bg = 'rgb' - -## Color gradient interpolation system for download text. -## Type: ColorSystem -## Valid values: -## - rgb: Interpolate in the RGB color system. -## - hsv: Interpolate in the HSV color system. -## - hsl: Interpolate in the HSL color system. -## - none: Don't show a gradient. -# c.colors.downloads.system.fg = 'rgb' - -## Background color for hints. Note that you can use a `rgba(...)` value -## for transparency. -## Type: QssColor -# 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))' - -## Font color for hints. -## Type: QssColor -# c.colors.hints.fg = 'black' - -## Font color for the matched part of hints. -## Type: QtColor -# c.colors.hints.match.fg = 'green' - -## Background color of the keyhint widget. -## Type: QssColor -# c.colors.keyhint.bg = 'rgba(0, 0, 0, 80%)' - -## Text color for the keyhint widget. -## Type: QssColor -# c.colors.keyhint.fg = '#FFFFFF' - -## Highlight color for keys to complete the current keychain. -## Type: QssColor -# c.colors.keyhint.suffix.fg = '#FFFF00' - -## Background color of an error message. -## Type: QssColor -# c.colors.messages.error.bg = 'red' - -## Border color of an error message. -## Type: QssColor -# c.colors.messages.error.border = '#bb0000' - -## Foreground color of an error message. -## Type: QssColor -# c.colors.messages.error.fg = 'white' - -## Background color of an info message. -## Type: QssColor -# c.colors.messages.info.bg = 'black' - -## Border color of an info message. -## Type: QssColor -# c.colors.messages.info.border = '#333333' - -## Foreground color of an info message. -## Type: QssColor -# c.colors.messages.info.fg = 'white' - -## Background color of a warning message. -## Type: QssColor -# c.colors.messages.warning.bg = 'darkorange' - -## Border color of a warning message. -## Type: QssColor -# c.colors.messages.warning.border = '#d47300' - -## Foreground color of a warning message. -## Type: QssColor -# c.colors.messages.warning.fg = 'white' - -## Background color for prompts. -## Type: QssColor -c.colors.prompts.bg = '#333333' - -## Border used around UI elements in prompts. -## Type: String -# c.colors.prompts.border = '1px solid gray' - -## Foreground color for prompts. -## Type: QssColor -# c.colors.prompts.fg = 'white' - -## Background color for the selected item in filename prompts. -## Type: QssColor -# c.colors.prompts.selected.bg = 'grey' - -## Background color of the statusbar in caret mode. -## Type: QssColor -# c.colors.statusbar.caret.bg = 'purple' - -## Foreground color of the statusbar in caret mode. -## Type: QssColor -# c.colors.statusbar.caret.fg = 'white' - -## Background color of the statusbar in caret mode with a selection. -## Type: QssColor -# c.colors.statusbar.caret.selection.bg = '#a12dff' - -## Foreground color of the statusbar in caret mode with a selection. -## Type: QssColor -# c.colors.statusbar.caret.selection.fg = 'white' - -## Background color of the statusbar in command mode. -## Type: QssColor -# c.colors.statusbar.command.bg = 'black' - -## Foreground color of the statusbar in command mode. -## Type: QssColor -# c.colors.statusbar.command.fg = 'white' - -## Background color of the statusbar in private browsing + command mode. -## Type: QssColor -# c.colors.statusbar.command.private.bg = 'darkslategray' - -## Foreground color of the statusbar in private browsing + command mode. -## Type: QssColor -# c.colors.statusbar.command.private.fg = 'white' - -## Background color of the statusbar in insert mode. -## Type: QssColor -# c.colors.statusbar.insert.bg = 'darkgreen' - -## Foreground color of the statusbar in insert mode. -## Type: QssColor -# c.colors.statusbar.insert.fg = 'white' - -## Background color of the statusbar. -## Type: QssColor -# c.colors.statusbar.normal.bg = 'black' - -## Foreground color of the statusbar. -## Type: QssColor -# c.colors.statusbar.normal.fg = 'white' - -## Background color of the statusbar in passthrough mode. -## Type: QssColor -# c.colors.statusbar.passthrough.bg = 'darkblue' - -## Foreground color of the statusbar in passthrough mode. -## Type: QssColor -# c.colors.statusbar.passthrough.fg = 'white' - -## Background color of the statusbar in private browsing mode. -## Type: QssColor -# c.colors.statusbar.private.bg = '#666666' - -## Foreground color of the statusbar in private browsing mode. -## Type: QssColor -# c.colors.statusbar.private.fg = 'white' - -## Background color of the progress bar. -## Type: QssColor -# c.colors.statusbar.progress.bg = 'white' - -## Foreground color of the URL in the statusbar on error. -## Type: QssColor -# c.colors.statusbar.url.error.fg = 'orange' - -## Default foreground color of the URL in the statusbar. -## Type: QssColor -# c.colors.statusbar.url.fg = 'white' - -## Foreground color of the URL in the statusbar for hovered links. -## Type: QssColor -# c.colors.statusbar.url.hover.fg = 'aqua' - -## Foreground color of the URL in the statusbar on successful load -## (http). -## Type: QssColor -# c.colors.statusbar.url.success.http.fg = 'white' - -## Foreground color of the URL in the statusbar on successful load -## (https). -## Type: QssColor -# c.colors.statusbar.url.success.https.fg = 'lime' - -## Foreground color of the URL in the statusbar when there's a warning. -## Type: QssColor -# c.colors.statusbar.url.warn.fg = 'yellow' - -## Background color of the tab bar. -## Type: QssColor -# c.colors.tabs.bar.bg = '#555555' - -## Background color of unselected even tabs. -## Type: QtColor -# c.colors.tabs.even.bg = 'darkgrey' - -## Foreground color of unselected even tabs. -## Type: QtColor -# c.colors.tabs.even.fg = 'white' - -## Color for the tab indicator on errors. -## Type: QtColor -# c.colors.tabs.indicator.error = '#ff0000' - -## Color gradient start for the tab indicator. -## Type: QtColor -# c.colors.tabs.indicator.start = '#0000aa' - -## Color gradient end for the tab indicator. -## Type: QtColor -# c.colors.tabs.indicator.stop = '#00aa00' - -## Color gradient interpolation system for the tab indicator. -## Type: ColorSystem -## Valid values: -## - rgb: Interpolate in the RGB color system. -## - hsv: Interpolate in the HSV color system. -## - hsl: Interpolate in the HSL color system. -## - none: Don't show a gradient. -# c.colors.tabs.indicator.system = 'rgb' - -## Background color of unselected odd tabs. -## Type: QtColor -# c.colors.tabs.odd.bg = 'grey' - -## Foreground color of unselected odd tabs. -## Type: QtColor -# c.colors.tabs.odd.fg = 'white' - -## Background color of pinned unselected even tabs. -## Type: QtColor -# c.colors.tabs.pinned.even.bg = 'darkseagreen' - -## Foreground color of pinned unselected even tabs. -## Type: QtColor -# c.colors.tabs.pinned.even.fg = 'white' - -## Background color of pinned unselected odd tabs. -## Type: QtColor -# c.colors.tabs.pinned.odd.bg = 'seagreen' - -## Foreground color of pinned unselected odd tabs. -## Type: QtColor -# c.colors.tabs.pinned.odd.fg = 'white' - -## Background color of pinned selected even tabs. -## Type: QtColor -# c.colors.tabs.pinned.selected.even.bg = 'black' - -## Foreground color of pinned selected even tabs. -## Type: QtColor -# c.colors.tabs.pinned.selected.even.fg = 'white' - -## Background color of pinned selected odd tabs. -## Type: QtColor -# c.colors.tabs.pinned.selected.odd.bg = 'black' - -## Foreground color of pinned selected odd tabs. -## Type: QtColor -# c.colors.tabs.pinned.selected.odd.fg = 'white' - -## Background color of selected even tabs. -## Type: QtColor -# c.colors.tabs.selected.even.bg = 'black' - -## Foreground color of selected even tabs. -## Type: QtColor -# c.colors.tabs.selected.even.fg = 'white' - -## Background color of selected odd tabs. -## Type: QtColor -# c.colors.tabs.selected.odd.bg = 'black' - -## Foreground color of selected odd tabs. -## Type: QtColor -# c.colors.tabs.selected.odd.fg = 'white' - -## Background color for webpages if unset (or empty to use the theme's -## color). -## Type: QtColor -# c.colors.webpage.bg = 'white' - +#TODO ## Which algorithm to use for modifying how colors are rendered with ## darkmode. The `lightness-cielab` value was added with QtWebEngine 5.14 ## and is treated like `lightness-hsl` with older QtWebEngine versions.