From 170415bc402e902d42feb6574cc5ad6672a09cb4 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 22 May 2019 19:58:30 +0200 Subject: [PATCH] Improve qutebrowser configuration file Added * keybindings to hide/display tabbar * leader-key binding mimicking vim * darkmode/lightmode unified stylesheets in solarized theme * lazy tab restoration on loading sessions * tab closing/restoring with x/X --- .config/qutebrowser/config.py | 62 +- .config/qutebrowser/nordtheme.py | 336 ++++ .../stylesheets/solarized-dark.css | 1630 +++++++++++++++++ .../stylesheets/solarized-light.css | 1630 +++++++++++++++++ 4 files changed, 3652 insertions(+), 6 deletions(-) create mode 100644 .config/qutebrowser/nordtheme.py create mode 100644 .config/qutebrowser/stylesheets/solarized-dark.css create mode 100644 .config/qutebrowser/stylesheets/solarized-light.css diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index d28c487..79ccd94 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -1,10 +1,15 @@ +from qutebrowser.config.configfiles import ConfigAPI # noqa: F401 +from qutebrowser.config.config import ConfigContainer # noqa: F401 + +import os + # Autogenerated config.py # Documentation: # qute://help/configuring.html # qute://help/settings.html # Uncomment this to still load settings configured via autoconfig.yml -# config.load_autoconfig() +config.load_autoconfig() # Enable JavaScript. # Type: Bool @@ -20,15 +25,60 @@ config.set('content.javascript.enabled', True, 'qute://*/*') c.editor.command = ["alacritty", "-e", "nvim", "-f", "{file}"] -# ideas: -# have key to show/hide tab-bar -# TODO ideally this should toggle on one command, not require two different ones -config.bind('tt', 'set tabs.show switching') -config.bind('tT', 'set tabs.show always') +# LOOK +# ---- +# Tab-Bar # have tab bar on the right, not on the top c.tabs.position = "right" +c.tabs.width = "15%" + +# give the browser nice nord theme colors +config.source('nordtheme.py') + +# Status bar +# should be visible to prevent 'jumping' bug, see https://github.com/qutebrowser/qutebrowser/issues/2236 +# TODO think about implementing a simple toggle for the statusbar, like for the tabs +c.statusbar.hide = False + +# CSS +DARK_STYLESHEET = config.configdir / \ + "stylesheets/solarized-dark.css" +LIGHT_STYLESHEET = config.configdir / \ + "stylesheets/solarized-light.css" +if DARK_STYLESHEET.exists() and LIGHT_STYLESHEET.exists(): + css = [str(DARK_STYLESHEET), str(LIGHT_STYLESHEET)] + +# FUNCTION +# -------- + +# Prevents *all* tabs from being loaded on restore, only loads on activating them +c.session.lazy_restore = True + +# Binds +# 'Leader' key binding +leader = "" + +# toggles ('cycles') between tabs always showing, or only when switching between them +config.bind('tt', 'config-cycle -t tabs.show always switching') # bind mpv to play the current page/links, using a single instance which queues the next link passed config.bind('M', 'spawn umpv {url}') config.bind('m', 'hint links spawn umpv {hint-url}') + +# Let me close tabs more easily, and 'unclose' them with the same key +config.bind('x', 'tab-close', mode='normal') +config.bind('X', 'undo', mode='normal') + +# Use q for quitting a tab (mimicks vim buffer) - qa is used for exiting +c.aliases["q"] = "tab-close" +# if we save sessions with w, load sessions with e (again, mimicks vim) +c.aliases["e"] = "session-load" + +# set stylesheets for the browser to use +# leader - ss to remove all applied stylesheets +config.bind(leader + 'ss', 'set content.user_stylesheets ""') +# leader - sd for dark mode solarized +config.bind(leader + 'sd', 'set content.user_stylesheets ' + str(css[0]) ) +# leader - sl for light mode solarized +config.bind(leader + 'sl', 'set content.user_stylesheets ' + str(css[1]) ) diff --git a/.config/qutebrowser/nordtheme.py b/.config/qutebrowser/nordtheme.py new file mode 100644 index 0000000..9dd9064 --- /dev/null +++ b/.config/qutebrowser/nordtheme.py @@ -0,0 +1,336 @@ +nord = { + # Polar Night + 'nord0': '#2e3440', + 'nord1': '#3b4252', + 'nord2': '#434c5e', + 'nord3': '#4c566a', + # Snow Storm + 'nord4': '#d8dee9', + 'nord5': '#e5e9f0', + 'nord6': '#eceff4', + # Frost + 'nord7': '#8fbcbb', + 'nord8': '#88c0d0', + 'nord9': '#81a1c1', + 'nord10': '#5e81ac', + # Aurora + 'nord11': '#bf616a', + 'nord12': '#d08770', + 'nord13': '#ebcb8b', + 'nord14': '#a3be8c', + 'nord15': '#b48ead', +} + +## Background color of the completion widget category headers. +## Type: QssColor +c.colors.completion.category.bg = nord['nord0'] + +## Bottom border color of the completion widget category headers. +## Type: QssColor +c.colors.completion.category.border.bottom = nord['nord0'] + +## Top border color of the completion widget category headers. +## Type: QssColor +c.colors.completion.category.border.top = nord['nord0'] + +## Foreground color of completion widget category headers. +## Type: QtColor +c.colors.completion.category.fg = nord['nord5'] + +## Background color of the completion widget for even rows. +## Type: QssColor +c.colors.completion.even.bg = nord['nord1'] + +## Background color of the completion widget for odd rows. +## Type: QssColor +c.colors.completion.odd.bg = nord['nord1'] + +## Text color of the completion widget. +## Type: QtColor +c.colors.completion.fg = nord['nord4'] + +## Background color of the selected completion item. +## Type: QssColor +c.colors.completion.item.selected.bg = nord['nord3'] + +## Bottom border color of the selected completion item. +## Type: QssColor +c.colors.completion.item.selected.border.bottom = nord['nord3'] + +## Top border color of the completion widget category headers. +## Type: QssColor +c.colors.completion.item.selected.border.top = nord['nord3'] + +## Foreground color of the selected completion item. +## Type: QtColor +c.colors.completion.item.selected.fg = nord['nord6'] + +## Foreground color of the matched text in the completion. +## Type: QssColor +c.colors.completion.match.fg = nord['nord13'] + +## Color of the scrollbar in completion view +## Type: QssColor +c.colors.completion.scrollbar.bg = nord['nord1'] + +## Color of the scrollbar handle in completion view. +## Type: QssColor +c.colors.completion.scrollbar.fg = nord['nord5'] + +## Background color for the download bar. +## Type: QssColor +c.colors.downloads.bar.bg = nord['nord0'] + +## Background color for downloads with errors. +## Type: QtColor +c.colors.downloads.error.bg = nord['nord11'] + +## Foreground color for downloads with errors. +## Type: QtColor +c.colors.downloads.error.fg = nord['nord5'] + +## Color gradient stop for download backgrounds. +## Type: QtColor +c.colors.downloads.stop.bg = nord['nord15'] + +## 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 = 'none' + +## Background color for hints. Note that you can use a `rgba(...)` value +## for transparency. +## Type: QssColor +c.colors.hints.bg = nord['nord13'] + +## Font color for hints. +## Type: QssColor +c.colors.hints.fg = nord['nord0'] + +## Font color for the matched part of hints. +## Type: QssColor +c.colors.hints.match.fg = nord['nord10'] + +## Background color of the keyhint widget. +## Type: QssColor +c.colors.keyhint.bg = nord['nord1'] + +## Text color for the keyhint widget. +## Type: QssColor +c.colors.keyhint.fg = nord['nord5'] + +## Highlight color for keys to complete the current keychain. +## Type: QssColor +c.colors.keyhint.suffix.fg = nord['nord13'] + +## Background color of an error message. +## Type: QssColor +c.colors.messages.error.bg = nord['nord11'] + +## Border color of an error message. +## Type: QssColor +c.colors.messages.error.border = nord['nord11'] + +## Foreground color of an error message. +## Type: QssColor +c.colors.messages.error.fg = nord['nord5'] + +## Background color of an info message. +## Type: QssColor +c.colors.messages.info.bg = nord['nord8'] + +## Border color of an info message. +## Type: QssColor +c.colors.messages.info.border = nord['nord8'] + +## Foreground color an info message. +## Type: QssColor +c.colors.messages.info.fg = nord['nord5'] + +## Background color of a warning message. +## Type: QssColor +c.colors.messages.warning.bg = nord['nord12'] + +## Border color of a warning message. +## Type: QssColor +c.colors.messages.warning.border = nord['nord12'] + +## Foreground color a warning message. +## Type: QssColor +c.colors.messages.warning.fg = nord['nord5'] + +## Background color for prompts. +## Type: QssColor +c.colors.prompts.bg = nord['nord2'] + +# ## Border used around UI elements in prompts. +# ## Type: String +c.colors.prompts.border = '1px solid ' + nord['nord0'] + +## Foreground color for prompts. +## Type: QssColor +c.colors.prompts.fg = nord['nord5'] + +## Background color for the selected item in filename prompts. +## Type: QssColor +c.colors.prompts.selected.bg = nord['nord3'] + +## Background color of the statusbar in caret mode. +## Type: QssColor +c.colors.statusbar.caret.bg = nord['nord15'] + +## Foreground color of the statusbar in caret mode. +## Type: QssColor +c.colors.statusbar.caret.fg = nord['nord5'] + +## Background color of the statusbar in caret mode with a selection. +## Type: QssColor +c.colors.statusbar.caret.selection.bg = nord['nord15'] + +## Foreground color of the statusbar in caret mode with a selection. +## Type: QssColor +c.colors.statusbar.caret.selection.fg = nord['nord5'] + +## Background color of the statusbar in command mode. +## Type: QssColor +c.colors.statusbar.command.bg = nord['nord2'] + +## Foreground color of the statusbar in command mode. +## Type: QssColor +c.colors.statusbar.command.fg = nord['nord5'] + +## Background color of the statusbar in private browsing + command mode. +## Type: QssColor +c.colors.statusbar.command.private.bg = nord['nord2'] + +## Foreground color of the statusbar in private browsing + command mode. +## Type: QssColor +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'] + +## Foreground color of the statusbar in insert mode. +## Type: QssColor +c.colors.statusbar.insert.fg = nord['nord1'] + +## Background color of the statusbar. +## Type: QssColor +c.colors.statusbar.normal.bg = nord['nord0'] + +## Foreground color of the statusbar. +## Type: QssColor +c.colors.statusbar.normal.fg = nord['nord5'] + +## Background color of the statusbar in passthrough mode. +## Type: QssColor +c.colors.statusbar.passthrough.bg = nord['nord10'] + +## Foreground color of the statusbar in passthrough mode. +## Type: QssColor +c.colors.statusbar.passthrough.fg = nord['nord5'] + +## Background color of the statusbar in private browsing mode. +## Type: QssColor +c.colors.statusbar.private.bg = nord['nord3'] + +## Foreground color of the statusbar in private browsing mode. +## Type: QssColor +c.colors.statusbar.private.fg = nord['nord5'] + +## Background color of the progress bar. +## Type: QssColor +c.colors.statusbar.progress.bg = nord['nord5'] + +## Foreground color of the URL in the statusbar on error. +## Type: QssColor +c.colors.statusbar.url.error.fg = nord['nord11'] + +## Default foreground color of the URL in the statusbar. +## Type: QssColor +c.colors.statusbar.url.fg = nord['nord5'] + +## Foreground color of the URL in the statusbar for hovered links. +## Type: QssColor +c.colors.statusbar.url.hover.fg = nord['nord8'] + +## Foreground color of the URL in the statusbar on successful load +## (http). +## Type: QssColor +c.colors.statusbar.url.success.http.fg = nord['nord5'] + +## Foreground color of the URL in the statusbar on successful load +## (https). +## Type: QssColor +c.colors.statusbar.url.success.https.fg = nord['nord14'] + +## Foreground color of the URL in the statusbar when there's a warning. +## Type: QssColor +c.colors.statusbar.url.warn.fg = nord['nord12'] + +## Background color of the tab bar. +## Type: QtColor +c.colors.tabs.bar.bg = nord['nord3'] + +## Background color of unselected even tabs. +## Type: QtColor +c.colors.tabs.even.bg = nord['nord3'] + +## Foreground color of unselected even tabs. +## Type: QtColor +c.colors.tabs.even.fg = nord['nord5'] + +## Color for the tab indicator on errors. +## Type: QtColor +c.colors.tabs.indicator.error = nord['nord11'] + +## Color gradient start for the tab indicator. +## Type: QtColor +# c.colors.tabs.indicator.start = nord['violet'] + +## Color gradient end for the tab indicator. +## Type: QtColor +# c.colors.tabs.indicator.stop = nord['orange'] + +## 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 = 'none' + +## Background color of unselected odd tabs. +## Type: QtColor +c.colors.tabs.odd.bg = nord['nord3'] + +## Foreground color of unselected odd tabs. +## Type: QtColor +c.colors.tabs.odd.fg = nord['nord5'] + +# ## Background color of selected even tabs. +# ## Type: QtColor +c.colors.tabs.selected.even.bg = nord['nord0'] + +# ## Foreground color of selected even tabs. +# ## Type: QtColor +c.colors.tabs.selected.even.fg = nord['nord5'] + +# ## Background color of selected odd tabs. +# ## Type: QtColor +c.colors.tabs.selected.odd.bg = nord['nord0'] + +# ## Foreground color of selected odd tabs. +# ## Type: QtColor +c.colors.tabs.selected.odd.fg = nord['nord5'] + +## Background color for webpages if unset (or empty to use the theme's +## color) +## Type: QtColor +# c.colors.webpage.bg = 'white' diff --git a/.config/qutebrowser/stylesheets/solarized-dark.css b/.config/qutebrowser/stylesheets/solarized-dark.css new file mode 100644 index 0000000..c0c37a1 --- /dev/null +++ b/.config/qutebrowser/stylesheets/solarized-dark.css @@ -0,0 +1,1630 @@ +* { + border-color: #657b83 !important; +} +a { + color: #268bd2 !important; +} +a:visited { + color: #6c71c4 !important; +} +body { + background-color: #002b36 !important; + color: #839496 !important; +} +html { + background-color: #002b36 !important; +} +input, +textarea { + background-color: #073642 !important; + color: #839496 !important; +} +blockquote, +pre { + background-color: #073642 !important; + color: #839496 !important; +} +.post-actions { + background-color: #073642 !important; +} +.textarea-wrapper { + background-color: #002b36 !important; + color: #839496 !important; +} +.search--adv { + background-color: #073642 !important; +} +.search__autocomplete > .acp-wrap { + background-color: #002b36 !important; +} +.search__autocomplete > .acp-wrap > .acp--highlight { + background-color: #073642 !important; + color: #eee8d5 !important; +} +.search__autocomplete > .acp-wrap strong { + color: #eee8d5 !important; +} +.site-wrapper > #header_wrapper { + background-color: #002b36 !important; +} +.site-wrapper > #header_wrapper > #header { + background-color: #002b36 !important; +} +.search--header { + background-color: #073642 !important; +} +.zci { + background-color: #073642 !important; + color: #839496 !important; +} +.tile--info { + background-color: #002b36 !important; +} +.tile--info__expand { + background-color: #586e75 !important; +} +.tile--c { + background-color: #586e75 !important; + color: #eee8d5 !important; +} +.module__text { + color: #839496 !important; +} +.about-info-box__heading { + color: #93a1a1 !important; +} +.result.highlight { + background-color: #073642 !important; +} +.result__snippet { + color: #839496 !important; +} +.result__snippet b { + color: #93a1a1 !important; +} +.btn--top { + background-color: #073642 !important; + color: #839496 !important; +} +.btn--top:hover { + background-color: #586e75 !important; +} +.result--sep--hr:before { + background-color: #586e75 !important; +} +* { + border-color: #073642 !important; +} +.news .alert .pull-info { + background-color: #083c4a !important; +} +.link-gray-dark, +.text-gray-dark { + color: #839496 !important; +} +.bg-white { + background-color: #002b36 !important; +} +.border { + border-color: #657b83 !important; +} +.breadcrumb .repo-root.js-repo-root a { + color: #268bd2 !important; +} +.breadcrumb strong.final-path { + color: #839496 !important; +} +button.ajax-pagination-btn { + background-color: #073642 !important; + color: #93a1a1 !important; +} +button.ajax-pagination-btn:hover { + background-color: #586e75 !important; +} +.comment-reactions .btn-link { + color: #839496 !important; +} +.comment-reactions .user-has-reacted { + background-color: #073642 !important; +} +.text-gray-dark { + color: #839496 !important; +} +.contrib-number { + color: #93a1a1 !important; +} +.counter { + background-color: #094352 !important; + color: #93a1a1 !important; +} +.diffstat-bar { + color: #839496 !important; +} +.file-header { + background-color: #073642 !important; +} +.file-history-tease .participation { + background-color: #002b36 !important; + color: #839496 !important; +} +.file-history-tease .participation .quickstat strong { + color: #839496 !important; +} +.file-history-tease .participation a { + color: #586e75 !important; +} +.file-history-tease .author a { + color: #839496 !important; +} +.file-history-tease-header { + background-color: #073642 !important; +} +.file-info-divider { + background-color: #586e75 !important; +} +.file-wrap { + color: #839496 !important; +} +.file-wrap * { + background-color: transparent !important; +} +.filter-bar { + background-color: #083c4a !important; +} +a.filter-item, +.filter-item { + color: #839496 !important; +} +a.filter-item.selected, +.filter-item.selected { + background-color: #073642 !important; + color: #93a1a1 !important; +} +a.filter-item:hover, +.filter-item:hover { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.flash { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.gh-header-number { + color: #586e75 !important; +} +.ellipsis-expander, +.hidden-text-expander a { + background-color: #073642 !important; +} +.issue-meta { + color: #586e75 !important; +} +.issues-listing a { + color: #839496 !important; +} +.muted-link { + color: #839496 !important; +} +.new-user-avatar-cta { + background-color: #073642 !important; + border-color: #586e75 !important; + color: #93a1a1 !important; +} +.overall-summary { + border-color: #586e75 !important; +} +.pinned-repo-item.border { + border-color: #586e75 !important; +} +.progress-bar { + background-color: #586e75 !important; +} +.simple-box { + background-color: #073642 !important; +} +.social-count { + background-color: #073642 !important; + border-color: #586e75 !important; + color: #93a1a1 !important; +} +.scope-badge { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.stats-switcher-wrapper { + background-color: #002b36 !important; +} +.stats-switcher-wrapper .numbers-summary li a { + color: #839496 !important; +} +.table-list-header-toggle .btn-link { + color: #586e75 !important; +} +.table-list-header-toggle .btn-link.selected { + color: #839496 !important; +} +.text-emphasized { + color: #93a1a1 !important; +} +.text-diff-added { + color: #859900 !important; +} +.text-diff-deleted { + color: #dc322f !important; +} +.avatar, +.timeline-comment-avatar { + filter: opacity(50%); +} +.blob-code { + background-color: #002b36 !important; + color: #839496 !important; +} +.blob-code-addition { + background-color: rgba(232,255,77,0.1) !important; +} +.blob-code-addition .x { + background-color: #647300 !important; + color: #c1cacb !important; +} +.blob-code-deletion { + background-color: rgba(220,50,47,0.2) !important; +} +.blob-code-deletion .x { + background-color: #721513 !important; + color: #c1cacb !important; +} +.blob-code-hunk { + background-color: #073642 !important; + border-color: #586e75 !important; +} +.blob-code-inner { + color: #839496 !important; +} +.blob-num { + background-color: #002b36 !important; + color: #586e75 !important; +} +.file { + color: #839496 !important; +} +.form-control { + background-color: #073642 !important; + border-color: #586e75 !important; +} +.pl-c { + color: #586e75 !important; +} +.pl-c1 { + color: #268bd2 !important; +} +.pl-e { + color: #b58900 !important; +} +.pl-en { + color: #268bd2 !important; +} +.pl-k { + color: #859900 !important; + font-weight: bold !important; +} +.pl-pds { + color: #2aa198 !important; +} +.pl-s { + color: #2aa198 !important; +} +.pl-smi { + color: #839496 !important; +} +.pl-v { + color: #859900 !important; + font-weight: bold !important; +} +.border-bottom, +.border-top { + border-color: #073642 !important; +} +.boxed-group * { + border-color: #586e75 !important; +} +.boxed-group article { + background-color: #002b36 !important; + color: #839496 !important; +} +.boxed-group > h3 { + background-color: #094352 !important; + color: #93a1a1 !important; +} +.more-repos { + background-color: #094352 !important; + box-shadow: inset 0 1px 0 #586e75 !important; +} +.boxed-group-inner { + background-color: #002b36 !important; +} +.branch-action-body { + background-color: #073642 !important; + border-color: #586e75 !important; +} +.branch-action-body div { + border-color: #586e75 !important; +} +.branch-action-state-clean .branch-action-icon { + background-color: #859900 !important; +} +.branch-action-state-dirty .branch-action-icon, +.branch-action-state-unstable .branch-action-icon, +.branch-action-state-unknown .branch-action-icon { + background-color: #b58900 !important; + color: #fff !important; +} +.text-shadow-light, +.branch-group-name, +.branch-summary { + color: #839496 !important; + text-shadow: none !important; +} +.branch-a-b-count .meter { + background-color: #b58900 !important; +} +.more-branches, +.branch-group-heading, +.branch-infobar, +.branch-name { + border-color: #586e75 !important; + background-color: #073642 !important; +} +.State, +.State:visited { + color: #fff !important; +} +.State--red { + background-color: #dc322f !important; + color: #002b36 !important; +} +.State--green { + background-color: #859900 !important; + color: #002b36 !important; +} +.build-status-item { + background-color: #094352 !important; + color: #93a1a1 !important; +} +.build-status-item .build-status-details { + color: #268bd2 !important; +} +.capped-card h3 { + background-color: #094352 !important; +} +.capped-card h3 a { + color: #93a1a1 !important; +} +.capped-card-content { + background-color: #002b36 !important; +} +.capped-list th { + background-color: #083c4a !important; + color: #93a1a1 !important; +} +.capped-list tr:nth-child(2n) { + background-color: #073642 !important; +} +.commit, +.commit-meta, +.commit-icon .octicon, +.commit-group-title .octicon-git-commit { + background-color: #002b36 !important; +} +.commit *, +.commit-meta *, +.commit-icon .octicon *, +.commit-group-title .octicon-git-commit * { + border-color: #586e75 !important; +} +.commit-author { + color: #839496 !important; +} +.commit-author-section { + color: #839496 !important; +} +.commit-meta { + color: #586e75 !important; +} +.commit-meta .sha-block { + color: #586e75 !important; +} +.commit-meta .sha-block .sha { + color: #839496 !important; +} +.commit-ref, +code.commit-sha { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.commit-ref .user, +code.commit-sha .user { + color: #2aa198 !important; +} +.commit-branches *, +.commit-tease, +.commit-title { + background-color: rgba(190,255,255,0.2) !important; + border: none !important; +} +.commit-branches * *, +.commit-tease *, +.commit-title * { + color: #93a1a1 !important; +} +.commit-tease-contributors { + background-color: #073642 !important; +} +div.commit-branches, +div.commit.full-commit p.commit-title, +qul.branches-list { + background-color: #073642 !important; + color: #93a1a1 !important; +} +div.commit-branches *, +div.commit.full-commit p.commit-title *, +qul.branches-list * { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.commit-meta { + background-color: #073642 !important; + color: #839496 !important; +} +.commits-listing:before { + background-color: #073642 !important; +} +.full-commit { + background-color: #073642 !important; + border-color: #586e75 !important; +} +.full-commit * { + text-shadow: none !important; +} +.commit-desc pre { + background-color: transparent !important; + color: #839496 !important; +} +.commit.table-list-item { + border-color: #073642 !important; +} +.commit-meta.commit-author-section { + background-color: transparent !important; + color: #839496 !important; +} +.table-list-cell .commit-title { + background-color: transparent !important; + color: #839496 !important; +} +.completeness-indicator-success { + background-color: #859900 !important; +} +.completeness-indicator-problem { + background-color: #b58900 !important; + color: #fff !important; +} +.copyable-terminal { + background-color: #073642 !important; +} +.blankslate { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.comment-form-head.tabnav { + background-color: #002b36 !important; +} +.conversation-list-heading .inner { + background-color: #002b36 !important; +} +.discussion-item-closed .discussion-item-icon { + background-color: #dc322f !important; + color: #93a1a1 !important; +} +.discussion-item-icon { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.discussion-item-icon.octicon { + color: #93a1a1 !important; +} +.discussion-timeline:before { + background-color: #657b83 !important; +} +.discussion-timeline-actions { + background-color: #002b36 !important; +} +.drag-and-drop { + background-color: #073642 !important; +} +.new-discussion-timeline .closed-banner { + background-color: #657b83 !important; + border-color: #002b36 !important; +} +.timeline-comment { + background-color: #002b36 !important; + border-color: #586e75 !important; +} +.timeline-comment-header { + background-color: #073642 !important; +} +.timeline-comment-wrapper { + border-color: #002b36 !important; +} +.donut-chart > .pending { + fill: #b58900 !important; +} +.dropdown-divider { + background-color: #657b83 !important; +} +.dropdown-item { + color: #839496 !important; +} +.dropdown-item:hover { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.dropdown-menu { + background-color: #094352 !important; + color: #93a1a1 !important; + border-color: #657b83 !important; +} +.files * { + color: #839496 !important; +} +.files tbody tr { + border-color: #073642 !important; +} +.files tbody tr:nth-child(even) { + background-color: #00323f !important; +} +.files tbody tr:nth-child(odd) { + background-color: #002b36 !important; +} +.files tbody tr:hover * { + background-color: #094352 !important; +} +.btn { + background-image: linear-gradient(to bottom, #586e75, #073642) !important; + border-color: #586e75 !important; + color: #93a1a1 !important; +} +.btn-primary, +.issues-listing .btn-primary { + background-color: #859900 !important; + background-image: linear-gradient(#859900, #424d00) !important; + color: #000 !important; + filter: opacity(62.5%); +} +.entry-title a { + color: #268bd2 !important; +} +.Header { + background-color: #083c4a !important; + border-bottom-color: #586e75 !important; +} +.Header a { + color: #93a1a1 !important; +} +.lang { + color: #93a1a1 !important; +} +.reponav-item, +.pagehead-tabs-item { + background-color: #073642 !important; + border-color: transparent !important; + color: #839496 !important; +} +.reponav-item:visited, +.pagehead-tabs-item:visited { + color: #839496 !important; +} +.reponav-item.selected, +.pagehead-tabs-item.selected { + background-color: #002b36 !important; + border-color: #dc322f #094352 transparent !important; +} +.site-footer-links * { + color: #839496 !important; +} +.Box-row--focus-gray.navigation-focus { + background-color: #083c4a !important; + color: #93a1a1 !important; +} +.js-directory-link { + color: #268bd2 !important; +} +.js-site-search-form input, +.js-chromeless-input-container { + background-color: #002b36 !important; + border-color: #586e75 !important; +} +a.label { + color: #000 !important; + filter: opacity(75%); +} +.notifications-list a { + color: #839496 !important; +} +.notifications-list li { + background-color: #002b36 !important; +} +.octicon, +.octicon-repo { + color: #93a1a1 !important; +} +.octicon.type-icon-state-closed, +.octicon-repo.type-icon-state-closed { + color: rgba(255,54,43,0.65) !important; +} +.octicon.type-icon-state-merged, +.octicon-repo.type-icon-state-merged { + color: #6c71c4 !important; +} +.octicon.type-icon-state-open, +.octicon-repo.type-icon-state-open { + color: rgba(205,212,0,0.65) !important; +} +.octicon-alert { + color: #fff !important; +} +.octicon-x { + color: #dc322f !important; +} +.octicon-check { + color: #859900 !important; +} +.octicon-primitive-dot { + color: #b58900 !important; +} +.octicon-clippy { + color: #93a1a1 !important; +} +.octicon-git-pull-request, +.octicon-diff { + color: #fff !important; +} +.octicon-markdown { + color: #586e75 !important; +} +.orghead { + background-color: #073642 !important; + border-color: #657b83 !important; + border-bottom: 0px !important; + color: #93a1a1 !important; +} +.org-name { + color: #93a1a1 !important; +} +.pagehead.orghead { + background-color: #073642 !important; +} +.outline-box-highlighted { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.pagination .current { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.pagination .disabled { + background-color: #073642 !important; + color: #586e75 !important; +} +.pagination .disabled:hover { + background-color: #073642 !important; +} +.pagination .gap { + background-color: #073642 !important; + color: #586e75 !important; +} +.pagination a { + background-color: #073642 !important; + border-color: #002b36 !important; + color: #839496 !important; +} +.pagination a:hover { + background-color: #586e75 !important; + color: #002b36 !important; +} +.empty-cell, +.diffbar { + background-color: #002b36 !important; +} +.merge-status-item { + background-color: #094352 !important; +} +.merge-message { + background-color: #083c4a !important; +} +.pr-toolbar { + background-color: #002b36 !important; +} +.review-thread-reply { + background-color: #073642 !important; +} +.review-thread-reply .inline-comment-form { + background-color: #002b36 !important; +} +.octicon-git-merge { + color: #fff !important; +} +#readme .plain { + background-color: #002b36 !important; +} +.markdown-body, +.markdown-body table * { + background-color: #002b36 !important; + border-color: #657b83 !important; + color: #839496 !important; +} +.markdown-body a, +.markdown-body table * a { + color: #268bd2 !important; +} +.markdown-body code, +.markdown-body table * code, +.markdown-body pre, +.markdown-body table * pre { + background-color: #073642 !important; +} +.markdown-body hr, +.markdown-body table * hr { + background-color: #586e75 !important; +} +.markdown-body img, +.markdown-body table * img { + background-color: #002b36 !important; +} +.range-editor { + background-color: #073642 !important; +} +.compare-pr-placeholder { + background-color: #083c4a !important; +} +ul.comparison-list > li.title { + background-color: #094352 !important; +} +ul.comparison-list { + background-color: #083c4a !important; +} +.repository-description { + color: #839496 !important; +} +.repository-meta .edit-repository-meta label { + color: #839496 !important; +} +.pagehead.repohead { + background-color: #073642 !important; +} +.repository-content .RecentBranches { + background-color: #073642 !important; + border-color: #657b83 !important; +} +.repohead-details-container a { + color: #839496 !important; +} +.select-menu-modal { + border-color: #839496 !important; +} +.select-menu-modal * { + background-color: #002b36 !important; + color: #839496 !important; +} +.select-menu-header, +.select-menu-header * { + background-color: #073642 !important; + color: #93a1a1 !important; + text-shadow: none !important; +} +.select-menu-item:hover *, +.select-menu-item-icon:hover, +.select-menu-item.navigation-focus { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.select-menu-item.selected { + background-color: #586e75 !important; +} +.repository-sidebar { + background-color: #002b36 !important; +} +.thread-subscription-status { + background-color: #002b36 !important; +} +.sunken-menu { + background-image: linear-gradient(to right, #073642 0%, #002b36 8px) !important; + box-shadow: 1px 0px 0px #073642 inset; +} +.sunken-menu:before { + background-image: linear-gradient(#002b36, transparent) !important; +} +.sunken-menu:after { + background-image: linear-gradient(transparent, #002b36) !important; +} +.sunken-menu-item { + border-color: #002b36 !important; +} +.sunken-menu-item.selected { + background-color: #002b36 !important; + border-color: #094352 !important; + color: #93a1a1 !important; +} +.sunken-menu-item.selected:after { + background-color: #cb4b16 !important; +} +.sunken-menu-separator:before { + background-image: linear-gradient(to right, #073642 70%, #002b36 100%) !important; +} +.state { + color: #93a1a1 !important; +} +.state-closed { + background-color: #dc322f !important; +} +.state-open { + background-color: #859900 !important; +} +.subnav-item { + color: #839496 !important; +} +.subnav-item:hover { + background-color: #083c4a !important; +} +.subnav-item:visited { + color: #839496 !important; +} +.subnav-item.selected { + background-color: #073642 !important; +} +.subnav-links a:hover { + background-color: #073642 !important; +} +.subnav-search input { + border-color: #586e75 !important; +} +.right .tabnav-extra { + color: #586e75 !important; +} +a.tabnav-tab, +.tabnav-tab { + border-color: transparent !important; + color: #586e75 !important; +} +a.tabnav-tab.selected, +.tabnav-tab.selected { + background-color: #002b36 !important; + background-image: linear-gradient(#073642, #002b36) !important; + border-color: #657b83 !important; + color: #93a1a1 !important; +} +.table-list tr, +.table-list li { + background-color: #002b36 !important; +} +.table-list tr:hover, +.table-list li:hover { + background-color: #094352 !important; +} +.table-list-header { + background-color: #073642 !important; +} +.text-pending { + color: #b58900 !important; +} +.text-pending .octicon-primitive-dot { + color: #b58900 !important; +} +.text-red { + color: #dc322f !important; +} +.timeline-commits .commit-meta { + background-color: #002b36 !important; +} +.timeline-commits .commit-meta .commit-id { + color: #586e75 !important; +} +.topic-tag.topic-tag-link { + background-color: #073642 !important; + color: #839496 !important; +} +.underline-nav-item { + color: #839496 !important; +} +.underline-nav-item.selected { + border-bottom-color: #dc322f !important; + color: #839496 !important; +} +.user-profile-nav { + background-color: #073642 !important; + border-color: #657b83 !important; +} +.user-profile-sticky-bar:after { + background-color: #073642 !important; + border-color: #657b83 !important; +} +.graphs .area { + fill: #859900; +} +.summary-stats li .num { + color: #93a1a1 !important; +} +.viz { + background-color: #083c4a !important; +} +.facebox-popup { + color: #839496 !important; + background-color: #002b36 !important; +} +.facebox-popup .octicon { + color: #fff !important; +} +.facebox-popup .owner-select-target { + color: #839496 !important; + background-color: #073642 !important; +} +.facebox-popup .owner-select-target:hover { + background-color: #586e75 !important; +} +.sfbgg { + background-color: #073642 !important; +} +.sbib_a { + background: linear-gradient(to bottom, #073642, #002b36) !important; +} +input#lst-ib, +#sb_ifc0.sbib_b, +#gs_taif0 { + background: transparent !important; +} +#lst-ib, +.sbsb_a { + background-color: #002b36 !important; +} +.kpbb { + background-image: linear-gradient(to bottom, #59a9e1, #268bd2) !important; +} +#hdtbSum { + background-color: #002b36 !important; +} +#hdtbMenus.hdtb-td-o { + background-color: #002b36 !important; +} +#hdtb-tls.hdtb-tl { + background-image: linear-gradient(to bottom, #002b36, #073642) !important; +} +#hdtb-tls.hdtb-tl.hdtb-tl-sel { + background-image: linear-gradient(to bottom, #073642, #002b36) !important; +} +#abar_button_opt.ab_button { + background: linear-gradient(to bottom, #002b36, #073642) !important; +} +#appbar { + background-color: #002b36 !important; +} +cite { + color: #859900 !important; +} +.ab_dropdown { + background-color: #002b36 !important; +} +div.crp { + background-color: #002b36 !important; +} +#fbar { + background-color: #073642 !important; +} +table { + background-color: #002b36 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table, +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table { + background-color: #cb4b16 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a, +#hnmain > tbody:nth-child(1) > tr:nth-child(1) a { + color: #000 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2), +#hnmain > tbody:nth-child(1) > tr:nth-child(2) { + background-color: #002b36 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(2) { + background-color: #002b36 !important; +} +.title a { + color: #839496 !important; +} +.title a:visited { + color: #586e75 !important; +} +a.storylink { + color: #93a1a1 !important; + font-weight: bold; +} +.sitestr { + color: #268bd2 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) { + background-color: #002b36 !important; +} +#hnmain .comhead { + color: #93a1a1 !important; +} +#hnmain .c00 { + color: #839496 !important; +} +#hnmain a.hnuser { + color: #b58900 !important; +} +#hnmain span.age a { + color: #586e75 !important; +} +.cdd { + color: rgba(255,54,43,0.65) !important; +} +.comment i { + color: #586e75 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(4) { + background-color: #002b36 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) { + background-color: #cb4b16 !important; +} +tr.Even { + background-color: #073642 !important; +} +.BigQuote { + background-color: #073642 !important; + color: #cb4b16 !important; +} +.Cat1HL { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.Cat2HL { + background-color: #094352 !important; +} +.Cat3HL { + background-color: #083c4a !important; +} +.FeatureByline { + background-color: #073642 !important; + border: none !important; +} +.Headline { + background-color: #094352 !important; +} +.QuotedText { + color: #6c71c4 !important; +} +DIV.GAByline { + background-color: #073642 !important; + border: none !important; +} +table.OddEven tr:nth-child(even) { + background-color: #00323f !important; +} +table.OddEven tr:nth-child(odd) { + background-color: #002b36 !important; +} +DIV.CommentBox { + border-color: #073642 !important; +} +DIV.CommentBox P.CommentTitle { + background-color: #094352 !important; +} +#menu, +.topnav-container { + background-color: #073642 !important; +} +.navmenu ul { + background-color: #073642 !important; +} +body * { + border-color: #094352 !important; +} +#content { + background-color: #002b36 !important; + color: #839496 !important; +} +#mw-head, +#mw-panel { + background-color: #073642 !important; + color: #93a1a1 !important; +} +#mw-head div.portal, +#mw-panel div.portal { + background-image: none !important; +} +#mw-head { + background-color: #073642 !important; + background-image: linear-gradient(to bottom, #002b36, #073642) !important; +} +#mw-panel, +#p-logo { + background-image: linear-gradient(to right, #002b36, #073642) !important; +} +div.vectorTabs { + background-image: linear-gradient(to bottom, #002b36, #073642) !important; +} +div.vectorTabs ul { + background-image: linear-gradient(to bottom, #002b36, #073642) !important; +} +div.vectorTabs ul li { + background-color: #073642 !important; + background-image: none !important; + padding: 0px 1px 0px 1px !important; +} +div.vectorTabs span { + background-color: #073642 !important; + background-image: linear-gradient(to bottom, #002b36, #073642) !important; +} +div.vectorTabs li.selected, +div.vectorTabs li.selected span { + background-color: transparent !important; + background-image: linear-gradient(to bottom, #073642, #002b36) !important; +} +.mw-wiki-logo { + filter: opacity(50%); +} +div#simpleSearch #searchInput { + background-color: #002b36 !important; + padding: 0.05em 0px 0.2em 0.2em !important; +} +.ambox, +.infobox, +#toc, +#toctitle, +.toclevel-1 { + background-color: #073642 !important; + border-color: #094352 !important; + color: #93a1a1 !important; +} +.catlinks { + background-color: #073642 !important; + border-color: #094352 !important; + color: #93a1a1 !important; +} +.navbox { + background-color: #073642 !important; + border-color: #094352 !important; + color: #93a1a1 !important; +} +.navbox .th, +.navbox .navbox-title { + background-color: #094352 !important; +} +.navbox-abovebelow, +th.navbox-group, +.navbox-subgroup, +.navbox-title { + background-color: #083c4a !important; +} +.navbox-even { + background-color: #002b36 !important; +} +h1, +h2, +h3, +h4, +h5, +h6 { + border-color: #094352 !important; + color: #93a1a1 !important; +} +code { + background-color: #094352 !important; + border-color: #094352 !important; + color: #93a1a1 !important; +} +div.thumbinner { + background-color: #073642 !important; + border-color: #094352 !important; +} +img { + filter: opacity(75%); +} +img.thumbimage { + border-color: #094352 !important; +} +.mw-body .external { + opacity: 0.5 !important; +} +table.wikitable { + background-color: #002b36 !important; + border-color: #094352 !important; + color: #839496 !important; +} +table.wikitable > * > tr > th { + background-color: #073642 !important; +} +div#page div#header { + background-color: #002b36 !important; +} +div#page div#header a { + color: #6c71c4 !important; +} +.post { + background-color: #002b36 !important; +} +.post * { + overflow: auto !important; +} +.post h2 { + background-color: #073642 !important; +} +.post h2 a { + color: #93a1a1 !important; +} +.post div.entry { + background-color: #002b36 !important; + color: #839496 !important; +} +.post div.entry blockquote { + background-color: #073642 !important; +} +.post div.entry kbd { + background-color: #073642 !important; + border-color: #586e75 !important; + box-shadow: none !important; + color: #93a1a1 !important; + text-shadow: 0px 1px 0px #000 !important; +} +.post pre.mode-line { + overflow: visible !important; +} +#sr-header-area { + background-color: #073642 !important; +} +#sr-header-area .srdrop .selected { + color: #839496 !important; +} +#sr-header-area #sr-more-link { + background-color: #073642 !important; +} +.link.promotedlink.promoted { + background-color: #073642 !important; +} +.link .usertext .md { + background-color: #073642 !important; +} +.linkinfo { + background-color: #073642 !important; +} +.linklisting .odd { + background-color: #073642 !important; +} +.thing .title { + color: #839496 !important; +} +div.md { + color: #839496 !important; +} +body.comment { + background-color: #002b36 !important; +} +.commentarea > .usertext { + background-color: #002b36 !important; +} +.commentarea .menuarea { + background-color: #002b36 !important; +} +.comments-page .panestack-title { + background-color: #002b36 !important; +} +.listing-chooser { + background-color: #002b36 !important; +} +.listing-chooser .intro { + background-color: #586e75 !important; + color: #93a1a1 !important; +} +.listing-chooser .grippy { + background-color: #002b36 !important; +} +.listing-chooser .grippy:after { + border-right: none !important; +} +.listing-chooser li { + background-color: #073642 !important; +} +.listing-chooser li.selected { + background-color: #586e75 !important; + box-shadow: none; +} +.listing-chooser li a { + color: #839496 !important; +} +.listing-chooser li a .description { + color: #93a1a1 !important; +} +.titlebox { + background-color: #073642 !important; +} +.titlebox form.toggle { + background-color: #073642 !important; + color: #839496 !important; +} +.side .usertext-body .md { + background-color: #073642 !important; +} +.side { + background-color: #073642 !important; +} +.sidebox .spacer { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.tabmenu li a { + background-color: #073642 !important; +} +#header-bottom-right { + background-color: #073642 !important; +} +.morelink .nub { + background-color: #073642 !important; +} +* { + border-color: #657b83 !important; +} +a { + color: #268bd2 !important; +} +a:visited { + color: #6c71c4 !important; +} +body { + background-color: #002b36 !important; + color: #839496 !important; +} +html { + background-color: #002b36 !important; +} +input, +textarea { + background-color: #073642 !important; + color: #839496 !important; +} +tr:hover, +blockquote, +pre { + background-color: #073642 !important; + color: #839496 !important; +} +#toolMenu li { + background-color: #002b36 !important; +} +.navPanel, +.navIntraTool { + background-color: #002b36 !important; +} +.instruction, +.sakaiCopyrightInfo { + color: #839496 !important; +} +.listHier th { + background-color: #094352 !important; +} +ul.makeMenu { + background-color: #094352 !important; + border: 1px solid #094352 !important; +} +tr.external { + background-color: #094352 !important; +} +hr { + background-color: #094352 !important; + color: #094352 !important; +} +.bounty-indicator, +.bounty-indicator-tab { + background-color: #6c71c4 !important; +} +.bottom-notice { + background-color: #073642 !important; +} +.comments-link { + color: #859900 !important; +} +.page-numbers { + background-color: #859900 !important; + color: #eee8d5 !important; +} +.page-numbers.current { + background-color: #cb4b16 !important; + color: #002b36 !important; +} +.post-menu a { + color: #6c71c4 !important; +} +.question-status { + background-color: #073642 !important; +} +pre code { + background-color: #073642 !important; + color: #93a1a1 !important; +} +pre code .atn { + color: #268bd2 !important; +} +pre code .atv { + color: #2aa198 !important; +} +pre code .com { + color: #586e75 !important; +} +pre code .kwd { + color: #859900 !important; +} +pre code .lit { + color: #d33682 !important; +} +pre code .pln, +pre code .pun { + color: #839496 !important; +} +pre code .str { + color: #2aa198 !important; +} +pre code .tag { + color: #859900 !important; +} +pre code .typ { + color: #b58900 !important; +} +#footer { + background-color: #083c4a !important; + color: #839496 !important; +} +#footer #footer-sites th { + color: #93a1a1 !important; +} +.top-footer-links a { + color: #859900 !important; +} +.so-header { + background-color: #094352 !important; + color: #93a1a1 !important; +} +.so-header a { + color: #859900 !important; +} +.so-header .navigation .-list .-item :hover { + background-color: #859900 !important; + color: #fdf6e3 !important; +} +.topbar-dialog { + background-color: #002b36 !important; + box-shadow: #586e75 5px 5px 5px; +} +.topbar-dialog .current-site-container { + background-color: #002b36 !important; +} +.topbar-dialog .header { + background-color: #073642 !important; +} +.topbar-dialog .header a { + color: #93a1a1 !important; +} +.topbar-dialog .site-link { + color: #93a1a1 !important; +} +#header { + background-color: #094352 !important; +} +#question-header .question-hyperlink { + color: #93a1a1 !important; +} +#hlogo a { + filter: opacity(75%); +} +.new-post-activity { + background-color: #073642 !important; +} +.tagged-interesting { + background-color: #094352 !important; +} +div.answered-accepted { + background-color: #859900 !important; + color: #eee8d5 !important; +} +div.answered-accepted .mini-counts { + background-color: #859900 !important; + color: #eee8d5 !important; +} +.answered .mini-counts span { + color: #859900 !important; +} +.unanswered .mini-counts span { + color: #839496 !important; +} +#hot-network-questions a { + color: #2aa198 !important; +} +#hot-network-questions h4 a.js-gps-track { + color: #93a1a1 !important; +} +#sidebar .community-bulletin .bulletin-item-content a { + color: #93a1a1 !important; +} +#sidebar .module.community-bulletin { + background-color: #073642 !important; + color: #93a1a1 !important; +} +#sidebar .question-hyperlink { + color: #2aa198 !important; +} +.newuser { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.label-key { + color: #839496 !important; +} +.label-key b { + color: #93a1a1 !important; +} +#h-chat-link { + color: #93a1a1 !important; +} +.ad502-room { + background-color: #073642 !important; + box-shadow: #586e75 0px 1px 3px; + color: #93a1a1 !important; +} +#tabs a { + background-color: transparent !important; + background-image: linear-gradient(to bottom, #002b36, #073642); + color: #93a1a1 !important; +} +#tabs a.youarehere { + background-image: linear-gradient(to bottom, #cb4b16, #002b36); + color: #fdf6e3 !important; +} +.post-tag { + background-color: #586e75 !important; + color: #002b36 !important; +} +.post-tag::before { + background-color: #002b36 !important; +} +a.comment-user.owner { + background-color: #859900 !important; + color: #eee8d5 !important; +} +.post-signature { + background-color: #073642 !important; + color: #93a1a1 !important; +} +.post-signature a { + color: #2aa198 !important; +} +.post-signature.owner .user-info .user-details a { + color: #859900 !important; +} +.post-signature span.relativetime { + color: #93a1a1 !important; +} +.vote { + background-color: #073642 !important; +} +.vote .star-off { + filter: opacity(75%); +} +.vote .star-on { + filter: opacity(50%) !important; +} +.vote .vote-down-off, +.vote .vote-up-off { + filter: opacity(50%); +} +.answer-votes { + background-color: #586e75 !important; + color: #002b36 !important; +} diff --git a/.config/qutebrowser/stylesheets/solarized-light.css b/.config/qutebrowser/stylesheets/solarized-light.css new file mode 100644 index 0000000..003516b --- /dev/null +++ b/.config/qutebrowser/stylesheets/solarized-light.css @@ -0,0 +1,1630 @@ +* { + border-color: #839496 !important; +} +a { + color: #268bd2 !important; +} +a:visited { + color: #6c71c4 !important; +} +body { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +html { + background-color: #fdf6e3 !important; +} +input, +textarea { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +blockquote, +pre { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.post-actions { + background-color: #eee8d5 !important; +} +.textarea-wrapper { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.search--adv { + background-color: #eee8d5 !important; +} +.search__autocomplete > .acp-wrap { + background-color: #fdf6e3 !important; +} +.search__autocomplete > .acp-wrap > .acp--highlight { + background-color: #eee8d5 !important; + color: #073642 !important; +} +.search__autocomplete > .acp-wrap strong { + color: #073642 !important; +} +.site-wrapper > #header_wrapper { + background-color: #fdf6e3 !important; +} +.site-wrapper > #header_wrapper > #header { + background-color: #fdf6e3 !important; +} +.search--header { + background-color: #eee8d5 !important; +} +.zci { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.tile--info { + background-color: #fdf6e3 !important; +} +.tile--info__expand { + background-color: #93a1a1 !important; +} +.tile--c { + background-color: #93a1a1 !important; + color: #073642 !important; +} +.module__text { + color: #657b83 !important; +} +.about-info-box__heading { + color: #586e75 !important; +} +.result.highlight { + background-color: #eee8d5 !important; +} +.result__snippet { + color: #657b83 !important; +} +.result__snippet b { + color: #586e75 !important; +} +.btn--top { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.btn--top:hover { + background-color: #93a1a1 !important; +} +.result--sep--hr:before { + background-color: #93a1a1 !important; +} +* { + border-color: #eee8d5 !important; +} +.news .alert .pull-info { + background-color: #ebe4cf !important; +} +.link-gray-dark, +.text-gray-dark { + color: #657b83 !important; +} +.bg-white { + background-color: #fdf6e3 !important; +} +.border { + border-color: #839496 !important; +} +.breadcrumb .repo-root.js-repo-root a { + color: #268bd2 !important; +} +.breadcrumb strong.final-path { + color: #657b83 !important; +} +button.ajax-pagination-btn { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +button.ajax-pagination-btn:hover { + background-color: #93a1a1 !important; +} +.comment-reactions .btn-link { + color: #657b83 !important; +} +.comment-reactions .user-has-reacted { + background-color: #eee8d5 !important; +} +.text-gray-dark { + color: #657b83 !important; +} +.contrib-number { + color: #586e75 !important; +} +.counter { + background-color: #e9e1c8 !important; + color: #586e75 !important; +} +.diffstat-bar { + color: #657b83 !important; +} +.file-header { + background-color: #eee8d5 !important; +} +.file-history-tease .participation { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.file-history-tease .participation .quickstat strong { + color: #657b83 !important; +} +.file-history-tease .participation a { + color: #93a1a1 !important; +} +.file-history-tease .author a { + color: #657b83 !important; +} +.file-history-tease-header { + background-color: #eee8d5 !important; +} +.file-info-divider { + background-color: #93a1a1 !important; +} +.file-wrap { + color: #657b83 !important; +} +.file-wrap * { + background-color: transparent !important; +} +.filter-bar { + background-color: #ebe4cf !important; +} +a.filter-item, +.filter-item { + color: #657b83 !important; +} +a.filter-item.selected, +.filter-item.selected { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +a.filter-item:hover, +.filter-item:hover { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.flash { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.gh-header-number { + color: #93a1a1 !important; +} +.ellipsis-expander, +.hidden-text-expander a { + background-color: #eee8d5 !important; +} +.issue-meta { + color: #93a1a1 !important; +} +.issues-listing a { + color: #657b83 !important; +} +.muted-link { + color: #657b83 !important; +} +.new-user-avatar-cta { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; + color: #586e75 !important; +} +.overall-summary { + border-color: #93a1a1 !important; +} +.pinned-repo-item.border { + border-color: #93a1a1 !important; +} +.progress-bar { + background-color: #93a1a1 !important; +} +.simple-box { + background-color: #eee8d5 !important; +} +.social-count { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; + color: #586e75 !important; +} +.scope-badge { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.stats-switcher-wrapper { + background-color: #fdf6e3 !important; +} +.stats-switcher-wrapper .numbers-summary li a { + color: #657b83 !important; +} +.table-list-header-toggle .btn-link { + color: #93a1a1 !important; +} +.table-list-header-toggle .btn-link.selected { + color: #657b83 !important; +} +.text-emphasized { + color: #586e75 !important; +} +.text-diff-added { + color: #859900 !important; +} +.text-diff-deleted { + color: #dc322f !important; +} +.avatar, +.timeline-comment-avatar { + filter: opacity(50%); +} +.blob-code { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.blob-code-addition { + background-color: rgba(232,255,77,0.1) !important; +} +.blob-code-addition .x { + background-color: #647300 !important; + color: #b1bec2 !important; +} +.blob-code-deletion { + background-color: rgba(220,50,47,0.2) !important; +} +.blob-code-deletion .x { + background-color: #721513 !important; + color: #b1bec2 !important; +} +.blob-code-hunk { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; +} +.blob-code-inner { + color: #657b83 !important; +} +.blob-num { + background-color: #fdf6e3 !important; + color: #93a1a1 !important; +} +.file { + color: #657b83 !important; +} +.form-control { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; +} +.pl-c { + color: #93a1a1 !important; +} +.pl-c1 { + color: #268bd2 !important; +} +.pl-e { + color: #b58900 !important; +} +.pl-en { + color: #268bd2 !important; +} +.pl-k { + color: #859900 !important; + font-weight: bold !important; +} +.pl-pds { + color: #2aa198 !important; +} +.pl-s { + color: #2aa198 !important; +} +.pl-smi { + color: #657b83 !important; +} +.pl-v { + color: #859900 !important; + font-weight: bold !important; +} +.border-bottom, +.border-top { + border-color: #eee8d5 !important; +} +.boxed-group * { + border-color: #93a1a1 !important; +} +.boxed-group article { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.boxed-group > h3 { + background-color: #e9e1c8 !important; + color: #586e75 !important; +} +.more-repos { + background-color: #e9e1c8 !important; + box-shadow: inset 0 1px 0 #93a1a1 !important; +} +.boxed-group-inner { + background-color: #fdf6e3 !important; +} +.branch-action-body { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; +} +.branch-action-body div { + border-color: #93a1a1 !important; +} +.branch-action-state-clean .branch-action-icon { + background-color: #859900 !important; +} +.branch-action-state-dirty .branch-action-icon, +.branch-action-state-unstable .branch-action-icon, +.branch-action-state-unknown .branch-action-icon { + background-color: #b58900 !important; + color: #fff !important; +} +.text-shadow-light, +.branch-group-name, +.branch-summary { + color: #657b83 !important; + text-shadow: none !important; +} +.branch-a-b-count .meter { + background-color: #b58900 !important; +} +.more-branches, +.branch-group-heading, +.branch-infobar, +.branch-name { + border-color: #93a1a1 !important; + background-color: #eee8d5 !important; +} +.State, +.State:visited { + color: #fff !important; +} +.State--red { + background-color: #dc322f !important; + color: #fdf6e3 !important; +} +.State--green { + background-color: #859900 !important; + color: #fdf6e3 !important; +} +.build-status-item { + background-color: #e9e1c8 !important; + color: #586e75 !important; +} +.build-status-item .build-status-details { + color: #268bd2 !important; +} +.capped-card h3 { + background-color: #e9e1c8 !important; +} +.capped-card h3 a { + color: #586e75 !important; +} +.capped-card-content { + background-color: #fdf6e3 !important; +} +.capped-list th { + background-color: #ebe4cf !important; + color: #586e75 !important; +} +.capped-list tr:nth-child(2n) { + background-color: #eee8d5 !important; +} +.commit, +.commit-meta, +.commit-icon .octicon, +.commit-group-title .octicon-git-commit { + background-color: #fdf6e3 !important; +} +.commit *, +.commit-meta *, +.commit-icon .octicon *, +.commit-group-title .octicon-git-commit * { + border-color: #93a1a1 !important; +} +.commit-author { + color: #657b83 !important; +} +.commit-author-section { + color: #657b83 !important; +} +.commit-meta { + color: #93a1a1 !important; +} +.commit-meta .sha-block { + color: #93a1a1 !important; +} +.commit-meta .sha-block .sha { + color: #657b83 !important; +} +.commit-ref, +code.commit-sha { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.commit-ref .user, +code.commit-sha .user { + color: #2aa198 !important; +} +.commit-branches *, +.commit-tease, +.commit-title { + background-color: rgba(0,0,142,0.2) !important; + border: none !important; +} +.commit-branches * *, +.commit-tease *, +.commit-title * { + color: #586e75 !important; +} +.commit-tease-contributors { + background-color: #eee8d5 !important; +} +div.commit-branches, +div.commit.full-commit p.commit-title, +qul.branches-list { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +div.commit-branches *, +div.commit.full-commit p.commit-title *, +qul.branches-list * { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.commit-meta { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.commits-listing:before { + background-color: #eee8d5 !important; +} +.full-commit { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; +} +.full-commit * { + text-shadow: none !important; +} +.commit-desc pre { + background-color: transparent !important; + color: #657b83 !important; +} +.commit.table-list-item { + border-color: #eee8d5 !important; +} +.commit-meta.commit-author-section { + background-color: transparent !important; + color: #657b83 !important; +} +.table-list-cell .commit-title { + background-color: transparent !important; + color: #657b83 !important; +} +.completeness-indicator-success { + background-color: #859900 !important; +} +.completeness-indicator-problem { + background-color: #b58900 !important; + color: #fff !important; +} +.copyable-terminal { + background-color: #eee8d5 !important; +} +.blankslate { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.comment-form-head.tabnav { + background-color: #fdf6e3 !important; +} +.conversation-list-heading .inner { + background-color: #fdf6e3 !important; +} +.discussion-item-closed .discussion-item-icon { + background-color: #dc322f !important; + color: #586e75 !important; +} +.discussion-item-icon { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.discussion-item-icon.octicon { + color: #586e75 !important; +} +.discussion-timeline:before { + background-color: #839496 !important; +} +.discussion-timeline-actions { + background-color: #fdf6e3 !important; +} +.drag-and-drop { + background-color: #eee8d5 !important; +} +.new-discussion-timeline .closed-banner { + background-color: #839496 !important; + border-color: #fdf6e3 !important; +} +.timeline-comment { + background-color: #fdf6e3 !important; + border-color: #93a1a1 !important; +} +.timeline-comment-header { + background-color: #eee8d5 !important; +} +.timeline-comment-wrapper { + border-color: #fdf6e3 !important; +} +.donut-chart > .pending { + fill: #b58900 !important; +} +.dropdown-divider { + background-color: #839496 !important; +} +.dropdown-item { + color: #657b83 !important; +} +.dropdown-item:hover { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.dropdown-menu { + background-color: #e9e1c8 !important; + color: #586e75 !important; + border-color: #839496 !important; +} +.files * { + color: #657b83 !important; +} +.files tbody tr { + border-color: #eee8d5 !important; +} +.files tbody tr:nth-child(even) { + background-color: #fcf3da !important; +} +.files tbody tr:nth-child(odd) { + background-color: #fdf6e3 !important; +} +.files tbody tr:hover * { + background-color: #e9e1c8 !important; +} +.btn { + background-image: linear-gradient(to bottom, #eee8d5, #93a1a1) !important; + border-color: #93a1a1 !important; + color: #586e75 !important; +} +.btn-primary, +.issues-listing .btn-primary { + background-color: #859900 !important; + background-image: linear-gradient(#859900, #424d00) !important; + color: #000 !important; + filter: opacity(62.5%); +} +.entry-title a { + color: #268bd2 !important; +} +.Header { + background-color: #ebe4cf !important; + border-bottom-color: #93a1a1 !important; +} +.Header a { + color: #586e75 !important; +} +.lang { + color: #586e75 !important; +} +.reponav-item, +.pagehead-tabs-item { + background-color: #eee8d5 !important; + border-color: transparent !important; + color: #657b83 !important; +} +.reponav-item:visited, +.pagehead-tabs-item:visited { + color: #657b83 !important; +} +.reponav-item.selected, +.pagehead-tabs-item.selected { + background-color: #fdf6e3 !important; + border-color: #dc322f #e9e1c8 transparent !important; +} +.site-footer-links * { + color: #657b83 !important; +} +.Box-row--focus-gray.navigation-focus { + background-color: #ebe4cf !important; + color: #586e75 !important; +} +.js-directory-link { + color: #268bd2 !important; +} +.js-site-search-form input, +.js-chromeless-input-container { + background-color: #fdf6e3 !important; + border-color: #93a1a1 !important; +} +a.label { + color: #000 !important; + filter: opacity(75%); +} +.notifications-list a { + color: #657b83 !important; +} +.notifications-list li { + background-color: #fdf6e3 !important; +} +.octicon, +.octicon-repo { + color: #93a1a1 !important; +} +.octicon.type-icon-state-closed, +.octicon-repo.type-icon-state-closed { + color: rgba(202,0,0,0.65) !important; +} +.octicon.type-icon-state-merged, +.octicon-repo.type-icon-state-merged { + color: #6c71c4 !important; +} +.octicon.type-icon-state-open, +.octicon-repo.type-icon-state-open { + color: rgba(68,103,0,0.65) !important; +} +.octicon-alert { + color: #fff !important; +} +.octicon-x { + color: #dc322f !important; +} +.octicon-check { + color: #859900 !important; +} +.octicon-primitive-dot { + color: #b58900 !important; +} +.octicon-clippy { + color: #586e75 !important; +} +.octicon-git-pull-request, +.octicon-diff { + color: #fff !important; +} +.octicon-markdown { + color: #93a1a1 !important; +} +.orghead { + background-color: #eee8d5 !important; + border-color: #839496 !important; + border-bottom: 0px !important; + color: #586e75 !important; +} +.org-name { + color: #586e75 !important; +} +.pagehead.orghead { + background-color: #eee8d5 !important; +} +.outline-box-highlighted { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.pagination .current { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.pagination .disabled { + background-color: #eee8d5 !important; + color: #93a1a1 !important; +} +.pagination .disabled:hover { + background-color: #eee8d5 !important; +} +.pagination .gap { + background-color: #eee8d5 !important; + color: #93a1a1 !important; +} +.pagination a { + background-color: #eee8d5 !important; + border-color: #fdf6e3 !important; + color: #657b83 !important; +} +.pagination a:hover { + background-color: #93a1a1 !important; + color: #fdf6e3 !important; +} +.empty-cell, +.diffbar { + background-color: #fdf6e3 !important; +} +.merge-status-item { + background-color: #e9e1c8 !important; +} +.merge-message { + background-color: #ebe4cf !important; +} +.pr-toolbar { + background-color: #fdf6e3 !important; +} +.review-thread-reply { + background-color: #eee8d5 !important; +} +.review-thread-reply .inline-comment-form { + background-color: #fdf6e3 !important; +} +.octicon-git-merge { + color: #fff !important; +} +#readme .plain { + background-color: #fdf6e3 !important; +} +.markdown-body, +.markdown-body table * { + background-color: #fdf6e3 !important; + border-color: #839496 !important; + color: #657b83 !important; +} +.markdown-body a, +.markdown-body table * a { + color: #268bd2 !important; +} +.markdown-body code, +.markdown-body table * code, +.markdown-body pre, +.markdown-body table * pre { + background-color: #eee8d5 !important; +} +.markdown-body hr, +.markdown-body table * hr { + background-color: #93a1a1 !important; +} +.markdown-body img, +.markdown-body table * img { + background-color: #fdf6e3 !important; +} +.range-editor { + background-color: #eee8d5 !important; +} +.compare-pr-placeholder { + background-color: #ebe4cf !important; +} +ul.comparison-list > li.title { + background-color: #e9e1c8 !important; +} +ul.comparison-list { + background-color: #ebe4cf !important; +} +.repository-description { + color: #657b83 !important; +} +.repository-meta .edit-repository-meta label { + color: #657b83 !important; +} +.pagehead.repohead { + background-color: #eee8d5 !important; +} +.repository-content .RecentBranches { + background-color: #eee8d5 !important; + border-color: #839496 !important; +} +.repohead-details-container a { + color: #657b83 !important; +} +.select-menu-modal { + border-color: #657b83 !important; +} +.select-menu-modal * { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.select-menu-header, +.select-menu-header * { + background-color: #eee8d5 !important; + color: #586e75 !important; + text-shadow: none !important; +} +.select-menu-item:hover *, +.select-menu-item-icon:hover, +.select-menu-item.navigation-focus { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.select-menu-item.selected { + background-color: #93a1a1 !important; +} +.repository-sidebar { + background-color: #fdf6e3 !important; +} +.thread-subscription-status { + background-color: #fdf6e3 !important; +} +.sunken-menu { + background-image: linear-gradient(to right, #eee8d5 0%, #fdf6e3 8px) !important; + box-shadow: 1px 0px 0px #eee8d5 inset; +} +.sunken-menu:before { + background-image: linear-gradient(#fdf6e3, transparent) !important; +} +.sunken-menu:after { + background-image: linear-gradient(transparent, #fdf6e3) !important; +} +.sunken-menu-item { + border-color: #fdf6e3 !important; +} +.sunken-menu-item.selected { + background-color: #fdf6e3 !important; + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +.sunken-menu-item.selected:after { + background-color: #cb4b16 !important; +} +.sunken-menu-separator:before { + background-image: linear-gradient(to right, #eee8d5 70%, #fdf6e3 100%) !important; +} +.state { + color: #586e75 !important; +} +.state-closed { + background-color: #dc322f !important; +} +.state-open { + background-color: #859900 !important; +} +.subnav-item { + color: #657b83 !important; +} +.subnav-item:hover { + background-color: #ebe4cf !important; +} +.subnav-item:visited { + color: #657b83 !important; +} +.subnav-item.selected { + background-color: #eee8d5 !important; +} +.subnav-links a:hover { + background-color: #eee8d5 !important; +} +.subnav-search input { + border-color: #93a1a1 !important; +} +.right .tabnav-extra { + color: #93a1a1 !important; +} +a.tabnav-tab, +.tabnav-tab { + border-color: transparent !important; + color: #93a1a1 !important; +} +a.tabnav-tab.selected, +.tabnav-tab.selected { + background-color: #fdf6e3 !important; + background-image: linear-gradient(#eee8d5, #fdf6e3) !important; + border-color: #839496 !important; + color: #586e75 !important; +} +.table-list tr, +.table-list li { + background-color: #fdf6e3 !important; +} +.table-list tr:hover, +.table-list li:hover { + background-color: #e9e1c8 !important; +} +.table-list-header { + background-color: #eee8d5 !important; +} +.text-pending { + color: #b58900 !important; +} +.text-pending .octicon-primitive-dot { + color: #b58900 !important; +} +.text-red { + color: #dc322f !important; +} +.timeline-commits .commit-meta { + background-color: #fdf6e3 !important; +} +.timeline-commits .commit-meta .commit-id { + color: #93a1a1 !important; +} +.topic-tag.topic-tag-link { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.underline-nav-item { + color: #657b83 !important; +} +.underline-nav-item.selected { + border-bottom-color: #dc322f !important; + color: #657b83 !important; +} +.user-profile-nav { + background-color: #eee8d5 !important; + border-color: #839496 !important; +} +.user-profile-sticky-bar:after { + background-color: #eee8d5 !important; + border-color: #839496 !important; +} +.graphs .area { + fill: #859900; +} +.summary-stats li .num { + color: #586e75 !important; +} +.viz { + background-color: #ebe4cf !important; +} +.facebox-popup { + color: #657b83 !important; + background-color: #fdf6e3 !important; +} +.facebox-popup .octicon { + color: #fff !important; +} +.facebox-popup .owner-select-target { + color: #657b83 !important; + background-color: #eee8d5 !important; +} +.facebox-popup .owner-select-target:hover { + background-color: #93a1a1 !important; +} +.sfbgg { + background-color: #eee8d5 !important; +} +.sbib_a { + background: linear-gradient(to bottom, #eee8d5, #fdf6e3) !important; +} +input#lst-ib, +#sb_ifc0.sbib_b, +#gs_taif0 { + background: transparent !important; +} +#lst-ib, +.sbsb_a { + background-color: #fdf6e3 !important; +} +.kpbb { + background-image: linear-gradient(to bottom, #59a9e1, #268bd2) !important; +} +#hdtbSum { + background-color: #fdf6e3 !important; +} +#hdtbMenus.hdtb-td-o { + background-color: #fdf6e3 !important; +} +#hdtb-tls.hdtb-tl { + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +#hdtb-tls.hdtb-tl.hdtb-tl-sel { + background-image: linear-gradient(to bottom, #eee8d5, #fdf6e3) !important; +} +#abar_button_opt.ab_button { + background: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +#appbar { + background-color: #fdf6e3 !important; +} +cite { + color: #859900 !important; +} +.ab_dropdown { + background-color: #fdf6e3 !important; +} +div.crp { + background-color: #fdf6e3 !important; +} +#fbar { + background-color: #eee8d5 !important; +} +table { + background-color: #fdf6e3 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table, +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table { + background-color: #cb4b16 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a, +#hnmain > tbody:nth-child(1) > tr:nth-child(1) a { + color: #000 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2), +#hnmain > tbody:nth-child(1) > tr:nth-child(2) { + background-color: #fdf6e3 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(2) { + background-color: #fdf6e3 !important; +} +.title a { + color: #657b83 !important; +} +.title a:visited { + color: #93a1a1 !important; +} +a.storylink { + color: #586e75 !important; + font-weight: bold; +} +.sitestr { + color: #268bd2 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) { + background-color: #fdf6e3 !important; +} +#hnmain .comhead { + color: #586e75 !important; +} +#hnmain .c00 { + color: #657b83 !important; +} +#hnmain a.hnuser { + color: #b58900 !important; +} +#hnmain span.age a { + color: #93a1a1 !important; +} +.cdd { + color: rgba(202,0,0,0.65) !important; +} +.comment i { + color: #93a1a1 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(4) { + background-color: #fdf6e3 !important; +} +#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) { + background-color: #cb4b16 !important; +} +tr.Even { + background-color: #eee8d5 !important; +} +.BigQuote { + background-color: #eee8d5 !important; + color: #cb4b16 !important; +} +.Cat1HL { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.Cat2HL { + background-color: #e9e1c8 !important; +} +.Cat3HL { + background-color: #ebe4cf !important; +} +.FeatureByline { + background-color: #eee8d5 !important; + border: none !important; +} +.Headline { + background-color: #e9e1c8 !important; +} +.QuotedText { + color: #6c71c4 !important; +} +DIV.GAByline { + background-color: #eee8d5 !important; + border: none !important; +} +table.OddEven tr:nth-child(even) { + background-color: #fcf3da !important; +} +table.OddEven tr:nth-child(odd) { + background-color: #fdf6e3 !important; +} +DIV.CommentBox { + border-color: #eee8d5 !important; +} +DIV.CommentBox P.CommentTitle { + background-color: #e9e1c8 !important; +} +#menu, +.topnav-container { + background-color: #eee8d5 !important; +} +.navmenu ul { + background-color: #eee8d5 !important; +} +body * { + border-color: #e9e1c8 !important; +} +#content { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +#mw-head, +#mw-panel { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +#mw-head div.portal, +#mw-panel div.portal { + background-image: none !important; +} +#mw-head { + background-color: #eee8d5 !important; + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +#mw-panel, +#p-logo { + background-image: linear-gradient(to right, #fdf6e3, #eee8d5) !important; +} +div.vectorTabs { + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +div.vectorTabs ul { + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +div.vectorTabs ul li { + background-color: #eee8d5 !important; + background-image: none !important; + padding: 0px 1px 0px 1px !important; +} +div.vectorTabs span { + background-color: #eee8d5 !important; + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5) !important; +} +div.vectorTabs li.selected, +div.vectorTabs li.selected span { + background-color: transparent !important; + background-image: linear-gradient(to bottom, #eee8d5, #fdf6e3) !important; +} +.mw-wiki-logo { + filter: opacity(50%); +} +div#simpleSearch #searchInput { + background-color: #fdf6e3 !important; + padding: 0.05em 0px 0.2em 0.2em !important; +} +.ambox, +.infobox, +#toc, +#toctitle, +.toclevel-1 { + background-color: #eee8d5 !important; + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +.catlinks { + background-color: #eee8d5 !important; + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +.navbox { + background-color: #eee8d5 !important; + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +.navbox .th, +.navbox .navbox-title { + background-color: #e9e1c8 !important; +} +.navbox-abovebelow, +th.navbox-group, +.navbox-subgroup, +.navbox-title { + background-color: #ebe4cf !important; +} +.navbox-even { + background-color: #fdf6e3 !important; +} +h1, +h2, +h3, +h4, +h5, +h6 { + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +code { + background-color: #e9e1c8 !important; + border-color: #e9e1c8 !important; + color: #586e75 !important; +} +div.thumbinner { + background-color: #eee8d5 !important; + border-color: #e9e1c8 !important; +} +img { + filter: opacity(75%); +} +img.thumbimage { + border-color: #e9e1c8 !important; +} +.mw-body .external { + opacity: 0.5 !important; +} +table.wikitable { + background-color: #fdf6e3 !important; + border-color: #e9e1c8 !important; + color: #657b83 !important; +} +table.wikitable > * > tr > th { + background-color: #eee8d5 !important; +} +div#page div#header { + background-color: #fdf6e3 !important; +} +div#page div#header a { + color: #6c71c4 !important; +} +.post { + background-color: #fdf6e3 !important; +} +.post * { + overflow: auto !important; +} +.post h2 { + background-color: #eee8d5 !important; +} +.post h2 a { + color: #586e75 !important; +} +.post div.entry { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +.post div.entry blockquote { + background-color: #eee8d5 !important; +} +.post div.entry kbd { + background-color: #eee8d5 !important; + border-color: #93a1a1 !important; + box-shadow: none !important; + color: #586e75 !important; + text-shadow: 0px 1px 0px #000 !important; +} +.post pre.mode-line { + overflow: visible !important; +} +#sr-header-area { + background-color: #eee8d5 !important; +} +#sr-header-area .srdrop .selected { + color: #657b83 !important; +} +#sr-header-area #sr-more-link { + background-color: #eee8d5 !important; +} +.link.promotedlink.promoted { + background-color: #eee8d5 !important; +} +.link .usertext .md { + background-color: #eee8d5 !important; +} +.linkinfo { + background-color: #eee8d5 !important; +} +.linklisting .odd { + background-color: #eee8d5 !important; +} +.thing .title { + color: #657b83 !important; +} +div.md { + color: #657b83 !important; +} +body.comment { + background-color: #fdf6e3 !important; +} +.commentarea > .usertext { + background-color: #fdf6e3 !important; +} +.commentarea .menuarea { + background-color: #fdf6e3 !important; +} +.comments-page .panestack-title { + background-color: #fdf6e3 !important; +} +.listing-chooser { + background-color: #fdf6e3 !important; +} +.listing-chooser .intro { + background-color: #93a1a1 !important; + color: #586e75 !important; +} +.listing-chooser .grippy { + background-color: #fdf6e3 !important; +} +.listing-chooser .grippy:after { + border-right: none !important; +} +.listing-chooser li { + background-color: #eee8d5 !important; +} +.listing-chooser li.selected { + background-color: #93a1a1 !important; + box-shadow: none; +} +.listing-chooser li a { + color: #657b83 !important; +} +.listing-chooser li a .description { + color: #586e75 !important; +} +.titlebox { + background-color: #eee8d5 !important; +} +.titlebox form.toggle { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +.side .usertext-body .md { + background-color: #eee8d5 !important; +} +.side { + background-color: #eee8d5 !important; +} +.sidebox .spacer { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.tabmenu li a { + background-color: #eee8d5 !important; +} +#header-bottom-right { + background-color: #eee8d5 !important; +} +.morelink .nub { + background-color: #eee8d5 !important; +} +* { + border-color: #839496 !important; +} +a { + color: #268bd2 !important; +} +a:visited { + color: #6c71c4 !important; +} +body { + background-color: #fdf6e3 !important; + color: #657b83 !important; +} +html { + background-color: #fdf6e3 !important; +} +input, +textarea { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +tr:hover, +blockquote, +pre { + background-color: #eee8d5 !important; + color: #657b83 !important; +} +#toolMenu li { + background-color: #fdf6e3 !important; +} +.navPanel, +.navIntraTool { + background-color: #fdf6e3 !important; +} +.instruction, +.sakaiCopyrightInfo { + color: #657b83 !important; +} +.listHier th { + background-color: #e9e1c8 !important; +} +ul.makeMenu { + background-color: #e9e1c8 !important; + border: 1px solid #e9e1c8 !important; +} +tr.external { + background-color: #e9e1c8 !important; +} +hr { + background-color: #e9e1c8 !important; + color: #e9e1c8 !important; +} +.bounty-indicator, +.bounty-indicator-tab { + background-color: #6c71c4 !important; +} +.bottom-notice { + background-color: #eee8d5 !important; +} +.comments-link { + color: #859900 !important; +} +.page-numbers { + background-color: #859900 !important; + color: #073642 !important; +} +.page-numbers.current { + background-color: #cb4b16 !important; + color: #fdf6e3 !important; +} +.post-menu a { + color: #6c71c4 !important; +} +.question-status { + background-color: #eee8d5 !important; +} +pre code { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +pre code .atn { + color: #268bd2 !important; +} +pre code .atv { + color: #2aa198 !important; +} +pre code .com { + color: #93a1a1 !important; +} +pre code .kwd { + color: #859900 !important; +} +pre code .lit { + color: #d33682 !important; +} +pre code .pln, +pre code .pun { + color: #657b83 !important; +} +pre code .str { + color: #2aa198 !important; +} +pre code .tag { + color: #859900 !important; +} +pre code .typ { + color: #b58900 !important; +} +#footer { + background-color: #ebe4cf !important; + color: #657b83 !important; +} +#footer #footer-sites th { + color: #586e75 !important; +} +.top-footer-links a { + color: #859900 !important; +} +.so-header { + background-color: #e9e1c8 !important; + color: #586e75 !important; +} +.so-header a { + color: #859900 !important; +} +.so-header .navigation .-list .-item :hover { + background-color: #859900 !important; + color: #002b36 !important; +} +.topbar-dialog { + background-color: #fdf6e3 !important; + box-shadow: #93a1a1 5px 5px 5px; +} +.topbar-dialog .current-site-container { + background-color: #fdf6e3 !important; +} +.topbar-dialog .header { + background-color: #eee8d5 !important; +} +.topbar-dialog .header a { + color: #586e75 !important; +} +.topbar-dialog .site-link { + color: #586e75 !important; +} +#header { + background-color: #e9e1c8 !important; +} +#question-header .question-hyperlink { + color: #586e75 !important; +} +#hlogo a { + filter: opacity(75%); +} +.new-post-activity { + background-color: #eee8d5 !important; +} +.tagged-interesting { + background-color: #e9e1c8 !important; +} +div.answered-accepted { + background-color: #859900 !important; + color: #073642 !important; +} +div.answered-accepted .mini-counts { + background-color: #859900 !important; + color: #073642 !important; +} +.answered .mini-counts span { + color: #859900 !important; +} +.unanswered .mini-counts span { + color: #657b83 !important; +} +#hot-network-questions a { + color: #2aa198 !important; +} +#hot-network-questions h4 a.js-gps-track { + color: #586e75 !important; +} +#sidebar .community-bulletin .bulletin-item-content a { + color: #586e75 !important; +} +#sidebar .module.community-bulletin { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +#sidebar .question-hyperlink { + color: #2aa198 !important; +} +.newuser { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.label-key { + color: #657b83 !important; +} +.label-key b { + color: #586e75 !important; +} +#h-chat-link { + color: #586e75 !important; +} +.ad502-room { + background-color: #eee8d5 !important; + box-shadow: #93a1a1 0px 1px 3px; + color: #586e75 !important; +} +#tabs a { + background-color: transparent !important; + background-image: linear-gradient(to bottom, #fdf6e3, #eee8d5); + color: #586e75 !important; +} +#tabs a.youarehere { + background-image: linear-gradient(to bottom, #cb4b16, #fdf6e3); + color: #002b36 !important; +} +.post-tag { + background-color: #93a1a1 !important; + color: #fdf6e3 !important; +} +.post-tag::before { + background-color: #fdf6e3 !important; +} +a.comment-user.owner { + background-color: #859900 !important; + color: #073642 !important; +} +.post-signature { + background-color: #eee8d5 !important; + color: #586e75 !important; +} +.post-signature a { + color: #2aa198 !important; +} +.post-signature.owner .user-info .user-details a { + color: #859900 !important; +} +.post-signature span.relativetime { + color: #586e75 !important; +} +.vote { + background-color: #eee8d5 !important; +} +.vote .star-off { + filter: opacity(75%); +} +.vote .star-on { + filter: opacity(50%) !important; +} +.vote .vote-down-off, +.vote .vote-up-off { + filter: opacity(50%); +} +.answer-votes { + background-color: #93a1a1 !important; + color: #fdf6e3 !important; +}