diff options
author | Thanos Apollo <[email protected]> | 2022-10-07 17:29:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-10-07 17:29:48 +0300 |
commit | c0ce006a7d8fc09280348cbe1846f434cc747105 (patch) | |
tree | 314a415029c54f339b2fb577199b2d96814e7364 /.config/qutebrowser/themes/onedark.py | |
parent | 6a0a514b1f4f2bf39781ff635ea1785d802d9188 (diff) | |
parent | 8aa58682905a329ab919c725473d3f37ae536287 (diff) |
Merge branch 'master' of github.com:ThanosApollo/config
Diffstat (limited to '.config/qutebrowser/themes/onedark.py')
-rw-r--r-- | .config/qutebrowser/themes/onedark.py | 233 |
1 files changed, 113 insertions, 120 deletions
diff --git a/.config/qutebrowser/themes/onedark.py b/.config/qutebrowser/themes/onedark.py index ae8f0ea..9cf0ab3 100644 --- a/.config/qutebrowser/themes/onedark.py +++ b/.config/qutebrowser/themes/onedark.py @@ -1,307 +1,300 @@ -# credits to theova/base16-qutebrowser for the original template - -########## -# COLORS # -########## - -# base16 colors but with variable names that -# reflect what the color is mainly used for - -bg_default = "#282c34" # main shade darkest -bg_lighter = "#353b45" -bg_selection = "#3e4451" -# "#545862" -fg_disabled = "#565c64" -fg_default = "#abb2bf" -# "#b6bdca" -bg_lightest = "#c8ccd4" # main shade lightest -fg_error = "#e06c75" # red -# "#d19a66" # orange -bg_hint = "#e5c07b" # yellow -fg_matched_text = "#98c379" # green -bg_passthrough_mode = "#56b6c2" # teal -bg_insert_mode = "#61afef" # blue -bg_warning = "#c678dd" # purple -# "#be5046" # dark red - -############ -# SETTINGS # -############ +# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) +# Base16 qutebrowser template by theova +# OneDark scheme by Lalit Magant (http://github.com/tilal6991) + +base00 = "#282c34" +base01 = "#353b45" +base02 = "#3e4451" +base03 = "#545862" +base04 = "#565c64" +base05 = "#abb2bf" +base06 = "#b6bdca" +base07 = "#c8ccd4" +base08 = "#e06c75" +base09 = "#d19a66" +base0A = "#e5c07b" +base0B = "#98c379" +base0C = "#56b6c2" +base0D = "#61afef" +base0E = "#c678dd" +base0F = "#be5046" + +# set qutebrowser colors # 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. -c.colors.completion.fg = fg_default +c.colors.completion.fg = base05 # Background color of the completion widget for odd rows. -c.colors.completion.odd.bg = bg_lighter +c.colors.completion.odd.bg = base01 # Background color of the completion widget for even rows. -c.colors.completion.even.bg = bg_default +c.colors.completion.even.bg = base00 # Foreground color of completion widget category headers. -c.colors.completion.category.fg = bg_hint +c.colors.completion.category.fg = base0A # Background color of the completion widget category headers. -c.colors.completion.category.bg = bg_default +c.colors.completion.category.bg = base00 # Top border color of the completion widget category headers. -c.colors.completion.category.border.top = bg_default +c.colors.completion.category.border.top = base00 # Bottom border color of the completion widget category headers. -c.colors.completion.category.border.bottom = bg_default +c.colors.completion.category.border.bottom = base00 # Foreground color of the selected completion item. -c.colors.completion.item.selected.fg = fg_default +c.colors.completion.item.selected.fg = base05 # Background color of the selected completion item. -c.colors.completion.item.selected.bg = bg_selection +c.colors.completion.item.selected.bg = base02 # Top border color of the selected completion item. -c.colors.completion.item.selected.border.top = bg_selection +c.colors.completion.item.selected.border.top = base02 # Bottom border color of the selected completion item. -c.colors.completion.item.selected.border.bottom = bg_selection +c.colors.completion.item.selected.border.bottom = base02 # Foreground color of the matched text in the selected completion item. -c.colors.completion.item.selected.match.fg = fg_matched_text +c.colors.completion.item.selected.match.fg = base0B # Foreground color of the matched text in the completion. -c.colors.completion.match.fg = fg_matched_text +c.colors.completion.match.fg = base0B # Color of the scrollbar handle in the completion view. -c.colors.completion.scrollbar.fg = fg_default +c.colors.completion.scrollbar.fg = base05 # Color of the scrollbar in the completion view. -c.colors.completion.scrollbar.bg = bg_default +c.colors.completion.scrollbar.bg = base00 # Background color of disabled items in the context menu. -c.colors.contextmenu.disabled.bg = bg_lighter +c.colors.contextmenu.disabled.bg = base01 # Foreground color of disabled items in the context menu. -c.colors.contextmenu.disabled.fg = fg_disabled +c.colors.contextmenu.disabled.fg = base04 # Background color of the context menu. If set to null, the Qt default is used. -c.colors.contextmenu.menu.bg = bg_default +c.colors.contextmenu.menu.bg = base00 # Foreground color of the context menu. If set to null, the Qt default is used. -c.colors.contextmenu.menu.fg = fg_default +c.colors.contextmenu.menu.fg = base05 # Background color of the context menu’s selected item. If set to null, the Qt default is used. -c.colors.contextmenu.selected.bg = bg_selection +c.colors.contextmenu.selected.bg = base02 #Foreground color of the context menu’s selected item. If set to null, the Qt default is used. -c.colors.contextmenu.selected.fg = fg_default +c.colors.contextmenu.selected.fg = base05 # Background color for the download bar. -c.colors.downloads.bar.bg = bg_default +c.colors.downloads.bar.bg = base00 # Color gradient start for download text. -c.colors.downloads.start.fg = bg_default +c.colors.downloads.start.fg = base00 # Color gradient start for download backgrounds. -c.colors.downloads.start.bg = bg_insert_mode +c.colors.downloads.start.bg = base0D # Color gradient end for download text. -c.colors.downloads.stop.fg = bg_default +c.colors.downloads.stop.fg = base00 # Color gradient stop for download backgrounds. -c.colors.downloads.stop.bg = bg_passthrough_mode +c.colors.downloads.stop.bg = base0C # Foreground color for downloads with errors. -c.colors.downloads.error.fg = fg_error +c.colors.downloads.error.fg = base08 # Font color for hints. -c.colors.hints.fg = bg_default +c.colors.hints.fg = base00 # Background color for hints. Note that you can use a `rgba(...)` value # for transparency. -c.colors.hints.bg = bg_hint +c.colors.hints.bg = base0A # Font color for the matched part of hints. -c.colors.hints.match.fg = fg_default +c.colors.hints.match.fg = base05 # Text color for the keyhint widget. -c.colors.keyhint.fg = fg_default +c.colors.keyhint.fg = base05 # Highlight color for keys to complete the current keychain. -c.colors.keyhint.suffix.fg = fg_default +c.colors.keyhint.suffix.fg = base05 # Background color of the keyhint widget. -c.colors.keyhint.bg = bg_default +c.colors.keyhint.bg = base00 # Foreground color of an error message. -c.colors.messages.error.fg = bg_default +c.colors.messages.error.fg = base00 # Background color of an error message. -c.colors.messages.error.bg = fg_error +c.colors.messages.error.bg = base08 # Border color of an error message. -c.colors.messages.error.border = fg_error +c.colors.messages.error.border = base08 # Foreground color of a warning message. -c.colors.messages.warning.fg = bg_default +c.colors.messages.warning.fg = base00 # Background color of a warning message. -c.colors.messages.warning.bg = bg_warning +c.colors.messages.warning.bg = base0E # Border color of a warning message. -c.colors.messages.warning.border = bg_warning +c.colors.messages.warning.border = base0E # Foreground color of an info message. -c.colors.messages.info.fg = fg_default +c.colors.messages.info.fg = base05 # Background color of an info message. -c.colors.messages.info.bg = bg_default +c.colors.messages.info.bg = base00 # Border color of an info message. -c.colors.messages.info.border = bg_default +c.colors.messages.info.border = base00 # Foreground color for prompts. -c.colors.prompts.fg = fg_default +c.colors.prompts.fg = base05 # Border used around UI elements in prompts. -c.colors.prompts.border = bg_default +c.colors.prompts.border = base00 # Background color for prompts. -c.colors.prompts.bg = bg_default +c.colors.prompts.bg = base00 # Background color for the selected item in filename prompts. -c.colors.prompts.selected.bg = bg_selection +c.colors.prompts.selected.bg = base02 # Foreground color for the selected item in filename prompts. -c.colors.prompts.selected.fg = fg_default +c.colors.prompts.selected.fg = base05 # Foreground color of the statusbar. -c.colors.statusbar.normal.fg = fg_matched_text +c.colors.statusbar.normal.fg = base0B # Background color of the statusbar. -c.colors.statusbar.normal.bg = bg_default +c.colors.statusbar.normal.bg = base00 # Foreground color of the statusbar in insert mode. -c.colors.statusbar.insert.fg = bg_default +c.colors.statusbar.insert.fg = base00 # Background color of the statusbar in insert mode. -c.colors.statusbar.insert.bg = bg_insert_mode +c.colors.statusbar.insert.bg = base0D # Foreground color of the statusbar in passthrough mode. -c.colors.statusbar.passthrough.fg = bg_default +c.colors.statusbar.passthrough.fg = base00 # Background color of the statusbar in passthrough mode. -c.colors.statusbar.passthrough.bg = bg_passthrough_mode +c.colors.statusbar.passthrough.bg = base0C # Foreground color of the statusbar in private browsing mode. -c.colors.statusbar.private.fg = bg_default +c.colors.statusbar.private.fg = base00 # Background color of the statusbar in private browsing mode. -c.colors.statusbar.private.bg = bg_lighter +c.colors.statusbar.private.bg = base01 # Foreground color of the statusbar in command mode. -c.colors.statusbar.command.fg = fg_default +c.colors.statusbar.command.fg = base05 # Background color of the statusbar in command mode. -c.colors.statusbar.command.bg = bg_default +c.colors.statusbar.command.bg = base00 # Foreground color of the statusbar in private browsing + command mode. -c.colors.statusbar.command.private.fg = fg_default +c.colors.statusbar.command.private.fg = base05 # Background color of the statusbar in private browsing + command mode. -c.colors.statusbar.command.private.bg = bg_default +c.colors.statusbar.command.private.bg = base00 # Foreground color of the statusbar in caret mode. -c.colors.statusbar.caret.fg = bg_default +c.colors.statusbar.caret.fg = base00 # Background color of the statusbar in caret mode. -c.colors.statusbar.caret.bg = bg_warning +c.colors.statusbar.caret.bg = base0E # Foreground color of the statusbar in caret mode with a selection. -c.colors.statusbar.caret.selection.fg = bg_default +c.colors.statusbar.caret.selection.fg = base00 # Background color of the statusbar in caret mode with a selection. -c.colors.statusbar.caret.selection.bg = bg_insert_mode +c.colors.statusbar.caret.selection.bg = base0D # Background color of the progress bar. -c.colors.statusbar.progress.bg = bg_insert_mode +c.colors.statusbar.progress.bg = base0D # Default foreground color of the URL in the statusbar. -c.colors.statusbar.url.fg = fg_default +c.colors.statusbar.url.fg = base05 # Foreground color of the URL in the statusbar on error. -c.colors.statusbar.url.error.fg = fg_error +c.colors.statusbar.url.error.fg = base08 # Foreground color of the URL in the statusbar for hovered links. -c.colors.statusbar.url.hover.fg = fg_default +c.colors.statusbar.url.hover.fg = base05 # Foreground color of the URL in the statusbar on successful load # (http). -c.colors.statusbar.url.success.http.fg = bg_passthrough_mode +c.colors.statusbar.url.success.http.fg = base0C # Foreground color of the URL in the statusbar on successful load # (https). -c.colors.statusbar.url.success.https.fg = fg_matched_text +c.colors.statusbar.url.success.https.fg = base0B # Foreground color of the URL in the statusbar when there's a warning. -c.colors.statusbar.url.warn.fg = bg_warning +c.colors.statusbar.url.warn.fg = base0E # Background color of the tab bar. -c.colors.tabs.bar.bg = bg_default +c.colors.tabs.bar.bg = base00 # Color gradient start for the tab indicator. -c.colors.tabs.indicator.start = bg_insert_mode +c.colors.tabs.indicator.start = base0D # Color gradient end for the tab indicator. -c.colors.tabs.indicator.stop = bg_passthrough_mode +c.colors.tabs.indicator.stop = base0C # Color for the tab indicator on errors. -c.colors.tabs.indicator.error = fg_error +c.colors.tabs.indicator.error = base08 # Foreground color of unselected odd tabs. -c.colors.tabs.odd.fg = fg_default +c.colors.tabs.odd.fg = base05 # Background color of unselected odd tabs. -c.colors.tabs.odd.bg = bg_lighter +c.colors.tabs.odd.bg = base01 # Foreground color of unselected even tabs. -c.colors.tabs.even.fg = fg_default +c.colors.tabs.even.fg = base05 # Background color of unselected even tabs. -c.colors.tabs.even.bg = bg_default +c.colors.tabs.even.bg = base00 # Background color of pinned unselected even tabs. -c.colors.tabs.pinned.even.bg = bg_passthrough_mode +c.colors.tabs.pinned.even.bg = base0C # Foreground color of pinned unselected even tabs. -c.colors.tabs.pinned.even.fg = bg_lightest +c.colors.tabs.pinned.even.fg = base07 # Background color of pinned unselected odd tabs. -c.colors.tabs.pinned.odd.bg = fg_matched_text +c.colors.tabs.pinned.odd.bg = base0B # Foreground color of pinned unselected odd tabs. -c.colors.tabs.pinned.odd.fg = bg_lightest +c.colors.tabs.pinned.odd.fg = base07 # Background color of pinned selected even tabs. -c.colors.tabs.pinned.selected.even.bg = bg_selection +c.colors.tabs.pinned.selected.even.bg = base02 # Foreground color of pinned selected even tabs. -c.colors.tabs.pinned.selected.even.fg = fg_default +c.colors.tabs.pinned.selected.even.fg = base05 # Background color of pinned selected odd tabs. -c.colors.tabs.pinned.selected.odd.bg = bg_selection +c.colors.tabs.pinned.selected.odd.bg = base02 # Foreground color of pinned selected odd tabs. -c.colors.tabs.pinned.selected.odd.fg = fg_default +c.colors.tabs.pinned.selected.odd.fg = base05 # Foreground color of selected odd tabs. -c.colors.tabs.selected.odd.fg = fg_default +c.colors.tabs.selected.odd.fg = base05 # Background color of selected odd tabs. -c.colors.tabs.selected.odd.bg = bg_selection +c.colors.tabs.selected.odd.bg = base02 # Foreground color of selected even tabs. -c.colors.tabs.selected.even.fg = fg_default +c.colors.tabs.selected.even.fg = base05 # Background color of selected even tabs. -c.colors.tabs.selected.even.bg = bg_selection +c.colors.tabs.selected.even.bg = base02 # Background color for webpages if unset (or empty to use the theme's # color). -# c.colors.webpage.bg = bg_default +# c.colors.webpage.bg = base00 |