diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c93f4f2c5445f4db19f04cddccf14a1b55ada34
--- /dev/null
+++ b/qutebrowser/.config/qutebrowser/config.py
@@ -0,0 +1,558 @@
+# Autogenerated config.py
+#
+# NOTE: config.py is intended for advanced users who are comfortable
+# with manually migrating the config file on qutebrowser upgrades. If
+# you prefer, you can also configure qutebrowser using the
+# :set/:bind/:config-* commands without having to write a config.py
+# file.
+#
+# Documentation:
+# qute://help/configuring.html
+# qute://help/settings.html
+
+# Change the argument to True to still load settings configured via autoconfig.yml
+config.load_autoconfig(False)
+
+# Always restore open sites when qutebrowser is reopened. Without this
+# option set, `:wq` (`:quit --save`) needs to be used to save open tabs
+# (and restore them), while quitting qutebrowser in any other way will
+# not save/restore the session. By default, this will save to the
+# session which was last loaded. This behavior can be customized via the
+# `session.default_name` setting.
+# Type: Bool
+c.auto_save.session = True
+
+# Automatically start playing `<video>` elements.
+# Type: Bool
+c.content.autoplay = False
+
+# Which cookies to accept. With QtWebEngine, this setting also controls
+# other features with tracking capabilities similar to those of cookies;
+# including IndexedDB, DOM storage, filesystem API, service workers, and
+# AppCache. Note that with QtWebKit, only `all` and `never` are
+# supported as per-domain values. Setting `no-3rdparty` or `no-
+# unknown-3rdparty` per-domain on QtWebKit will have the same effect as
+# `all`. If this setting is used with URL patterns, the pattern gets
+# applied to the origin/first party URL of the page making the request,
+# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
+# from URLs, so URL patterns using paths will not match. With
+# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
+# you will typically need to set this setting for `example.com` when the
+# cookie is set on `somesubdomain.example.com` for it to work properly.
+# To debug issues with this setting, start qutebrowser with `--debug
+# --logfilter network --debug-flag log-cookies` which will show all
+# cookies being set.
+# Type: String
+# Valid values:
+# - all: Accept all cookies.
+# - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
+# - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
+# - never: Don't accept cookies at all.
+config.set('content.cookies.accept', 'all', 'chrome-devtools://*')
+
+# Which cookies to accept. With QtWebEngine, this setting also controls
+# other features with tracking capabilities similar to those of cookies;
+# including IndexedDB, DOM storage, filesystem API, service workers, and
+# AppCache. Note that with QtWebKit, only `all` and `never` are
+# supported as per-domain values. Setting `no-3rdparty` or `no-
+# unknown-3rdparty` per-domain on QtWebKit will have the same effect as
+# `all`. If this setting is used with URL patterns, the pattern gets
+# applied to the origin/first party URL of the page making the request,
+# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
+# from URLs, so URL patterns using paths will not match. With
+# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
+# you will typically need to set this setting for `example.com` when the
+# cookie is set on `somesubdomain.example.com` for it to work properly.
+# To debug issues with this setting, start qutebrowser with `--debug
+# --logfilter network --debug-flag log-cookies` which will show all
+# cookies being set.
+# Type: String
+# Valid values:
+# - all: Accept all cookies.
+# - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
+# - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
+# - never: Don't accept cookies at all.
+config.set('content.cookies.accept', 'all', 'devtools://*')
+
+# Allow websites to lock your mouse pointer.
+# Type: BoolAsk
+# Valid values:
+# - true
+# - false
+# - ask
+c.content.mouse_lock = 'ask'
+
+# Value to send in the `Accept-Language` header. Note that the value
+# read from JavaScript is always the global value.
+# Type: String
+config.set('content.headers.accept_language', '', 'https://matchmaker.krunker.io/*')
+
+# User agent to send. The following placeholders are defined: *
+# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
+# The underlying WebKit version (set to a fixed value with
+# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
+# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
+# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
+# QtWebEngine. * `{upstream_browser_version}`: The corresponding
+# Safari/Chrome version. * `{qutebrowser_version}`: The currently
+# running qutebrowser version. The default value is equal to the
+# unchanged user agent of QtWebKit/QtWebEngine. Note that the value
+# read from JavaScript is always the global value. With QtWebEngine
+# between 5.12 and 5.14 (inclusive), changing the value exposed to
+# JavaScript requires a restart.
+# Type: FormatString
+config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/')
+
+# User agent to send. The following placeholders are defined: *
+# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
+# The underlying WebKit version (set to a fixed value with
+# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
+# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
+# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
+# QtWebEngine. * `{upstream_browser_version}`: The corresponding
+# Safari/Chrome version. * `{qutebrowser_version}`: The currently
+# running qutebrowser version. The default value is equal to the
+# unchanged user agent of QtWebKit/QtWebEngine. Note that the value
+# read from JavaScript is always the global value. With QtWebEngine
+# between 5.12 and 5.14 (inclusive), changing the value exposed to
+# JavaScript requires a restart.
+# Type: FormatString
+config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version} Edg/{upstream_browser_version}', 'https://accounts.google.com/*')
+
+# User agent to send. The following placeholders are defined: *
+# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
+# The underlying WebKit version (set to a fixed value with
+# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
+# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
+# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
+# QtWebEngine. * `{upstream_browser_version}`: The corresponding
+# Safari/Chrome version. * `{qutebrowser_version}`: The currently
+# running qutebrowser version. The default value is equal to the
+# unchanged user agent of QtWebKit/QtWebEngine. Note that the value
+# read from JavaScript is always the global value. With QtWebEngine
+# between 5.12 and 5.14 (inclusive), changing the value exposed to
+# JavaScript requires a restart.
+# Type: FormatString
+config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
+
+# Load images automatically in web pages.
+# Type: Bool
+config.set('content.images', True, 'chrome-devtools://*')
+
+# Load images automatically in web pages.
+# Type: Bool
+config.set('content.images', True, 'devtools://*')
+
+# Enable JavaScript.
+# Type: Bool
+config.set('content.javascript.enabled', True, 'chrome-devtools://*')
+
+# Enable JavaScript.
+# Type: Bool
+config.set('content.javascript.enabled', True, 'devtools://*')
+
+# Enable JavaScript.
+# Type: Bool
+config.set('content.javascript.enabled', True, 'chrome://*/*')
+
+# Enable JavaScript.
+# Type: Bool
+config.set('content.javascript.enabled', True, 'qute://*/*')
+
+# Allow websites to record audio.
+# Type: BoolAsk
+# Valid values:
+# - true
+# - false
+# - ask
+c.content.media.audio_capture = 'ask'
+
+# Allow websites to record audio and video.
+# Type: BoolAsk
+# Valid values:
+# - true
+# - false
+# - ask
+c.content.media.audio_video_capture = 'ask'
+
+# Allow websites to record video.
+# Type: BoolAsk
+# Valid values:
+# - true
+# - false
+# - ask
+c.content.media.video_capture = 'ask'
+
+# List of user stylesheet filenames to use.
+# Type: List of File, or File
+c.content.user_stylesheets = '~/.config/qutebrowser/greasemonkey/all.css'
+
+# Automatically mute tabs. Note that if the `:tab-mute` command is used,
+# the mute status for the affected tab is now controlled manually, and
+# this setting doesn't have any effect.
+# Type: Bool
+c.content.mute = True
+
+# Duration (in milliseconds) to wait before removing finished downloads.
+# If set to -1, downloads are never removed.
+# Type: Int
+c.downloads.remove_finished = 1
+
+# CSS border value for hints.
+# Type: String
+c.hints.border = '1px solid #282a36'
+
+# Padding (in pixels) for the statusbar.
+# Type: Padding
+c.statusbar.padding = {'top': 3, 'right': 8, 'bottom': 3, 'left': 8}
+
+# Scaling factor for favicons in the tab bar. The tab size is unchanged,
+# so big favicons also require extra `tabs.padding`.
+# Type: Float
+c.tabs.favicons.scale = 1
+
+# Padding (in pixels) around text for tabs.
+# Type: Padding
+c.tabs.padding = {'top': 3, 'right': 6, 'bottom': 3, 'left': 6}
+
+# Width (in pixels) of the progress indicator (0 to disable).
+# Type: Int
+c.tabs.indicator.width = 1
+
+# Search engines which can be used via the address bar. Maps a search
+# engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}`
+# placeholder. The placeholder will be replaced by the search term, use
+# `{{` and `}}` for literal `{`/`}` braces. The following further
+# placeholds are defined to configure how special characters in the
+# search terms are replaced by safe characters (called 'quoting'): *
+# `{}` and `{semiquoted}` quote everything except slashes; this is the
+# most sensible choice for almost all search engines (for the search
+# term `slash/and&` this placeholder expands to `slash/and%26amp`).
+# * `{quoted}` quotes all characters (for `slash/and&` this
+# placeholder expands to `slash%2Fand%26amp`). * `{unquoted}` quotes
+# nothing (for `slash/and&` this placeholder expands to
+# `slash/and&`). * `{0}` means the same as `{}`, but can be used
+# multiple times. The search engine named `DEFAULT` is used when
+# `url.auto_search` is turned on and something else than a URL was
+# entered to be opened. Other search engines can be used by prepending
+# the search engine name to the search term, e.g. `:open google
+# qutebrowser`.
+# Type: Dict
+c.url.searchengines = {'DEFAULT': 'https://www.google.com.ar/search?q={}'}
+
+# Text color of the completion widget. May be a single color to use for
+# all columns or a list of three colors, one for each column.
+# Type: List of QtColor, or QtColor
+c.colors.completion.fg = '#f8f8f2'
+
+# Background color of the completion widget for odd rows.
+# Type: QssColor
+c.colors.completion.odd.bg = '#282a36'
+
+# Background color of the completion widget for even rows.
+# Type: QssColor
+c.colors.completion.even.bg = '#282a36'
+
+# Foreground color of completion widget category headers.
+# Type: QtColor
+c.colors.completion.category.fg = '#f8f8f2'
+
+# Background color of the completion widget category headers.
+# Type: QssColor
+c.colors.completion.category.bg = '#282a36'
+
+# Top border color of the completion widget category headers.
+# Type: QssColor
+c.colors.completion.category.border.top = '#282a36'
+
+# Bottom border color of the completion widget category headers.
+# Type: QssColor
+c.colors.completion.category.border.bottom = '#282a36'
+
+# Foreground color of the selected completion item.
+# Type: QtColor
+c.colors.completion.item.selected.fg = '#f8f8f2'
+
+# Background color of the selected completion item.
+# Type: QssColor
+c.colors.completion.item.selected.bg = '#44475a'
+
+# Top border color of the selected completion item.
+# Type: QssColor
+c.colors.completion.item.selected.border.top = '#44475a'
+
+# Bottom border color of the selected completion item.
+# Type: QssColor
+c.colors.completion.item.selected.border.bottom = '#44475a'
+
+# Foreground color of the matched text in the completion.
+# Type: QtColor
+c.colors.completion.match.fg = '#ffb86c'
+
+# Color of the scrollbar handle in the completion view.
+# Type: QssColor
+c.colors.completion.scrollbar.fg = '#f8f8f2'
+
+# Color of the scrollbar in the completion view.
+# Type: QssColor
+c.colors.completion.scrollbar.bg = '#282a36'
+
+# Background color for the download bar.
+# Type: QssColor
+c.colors.downloads.bar.bg = '#282a36'
+
+# Color gradient stop for download backgrounds.
+# Type: QtColor
+c.colors.downloads.stop.bg = '#282a36'
+
+# 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'
+
+# Foreground color for downloads with errors.
+# Type: QtColor
+c.colors.downloads.error.fg = '#ff5555'
+
+# Background color for downloads with errors.
+# Type: QtColor
+c.colors.downloads.error.bg = '#282a36'
+
+# Font color for hints.
+# Type: QssColor
+c.colors.hints.fg = '#bd93f9'
+
+# Background color for hints. Note that you can use a `rgba(...)` value
+# for transparency.
+# Type: QssColor
+c.colors.hints.bg = '#282a36'
+
+# Font color for the matched part of hints.
+# Type: QtColor
+c.colors.hints.match.fg = '#e0e0e0'
+
+# Text color for the keyhint widget.
+# Type: QssColor
+c.colors.keyhint.fg = '#bd93f9'
+
+# Highlight color for keys to complete the current keychain.
+# Type: QssColor
+c.colors.keyhint.suffix.fg = '#44475a'
+
+# Background color of the keyhint widget.
+# Type: QssColor
+c.colors.keyhint.bg = '#282a36'
+
+# Foreground color of an error message.
+# Type: QssColor
+c.colors.messages.error.fg = '#ff5555'
+
+# Background color of an error message.
+# Type: QssColor
+c.colors.messages.error.bg = '#282a36'
+
+# Border color of an error message.
+# Type: QssColor
+c.colors.messages.error.border = '#282a36'
+
+# Foreground color of a warning message.
+# Type: QssColor
+c.colors.messages.warning.fg = '#ff5555'
+
+# Background color of a warning message.
+# Type: QssColor
+c.colors.messages.warning.bg = '#282a36'
+
+# Border color of a warning message.
+# Type: QssColor
+c.colors.messages.warning.border = '#282a36'
+
+# Foreground color of an info message.
+# Type: QssColor
+c.colors.messages.info.fg = '#6272a4'
+
+# Background color of an info message.
+# Type: QssColor
+c.colors.messages.info.bg = '#282a36'
+
+# Border color of an info message.
+# Type: QssColor
+c.colors.messages.info.border = '#282a36'
+
+# Foreground color for prompts.
+# Type: QssColor
+c.colors.prompts.fg = '#8be9fd'
+
+# Border used around UI elements in prompts.
+# Type: String
+c.colors.prompts.border = '1px solid #282a36'
+
+# Background color for prompts.
+# Type: QssColor
+c.colors.prompts.bg = '#282a36'
+
+# Background color for the selected item in filename prompts.
+# Type: QssColor
+c.colors.prompts.selected.bg = '#44475a'
+
+# Foreground color of the statusbar.
+# Type: QssColor
+c.colors.statusbar.normal.fg = '#f8f8f2'
+
+# Background color of the statusbar.
+# Type: QssColor
+c.colors.statusbar.normal.bg = '#282a36'
+
+# Foreground color of the statusbar in insert mode.
+# Type: QssColor
+c.colors.statusbar.insert.fg = '#ffffff'
+
+# Background color of the statusbar in insert mode.
+# Type: QssColor
+c.colors.statusbar.insert.bg = '#177a32'
+
+# Foreground color of the statusbar in passthrough mode.
+# Type: QssColor
+c.colors.statusbar.passthrough.fg = '#ffb86c'
+
+# Background color of the statusbar in passthrough mode.
+# Type: QssColor
+c.colors.statusbar.passthrough.bg = '#282a36'
+
+# Foreground color of the statusbar in private browsing mode.
+# Type: QssColor
+c.colors.statusbar.private.fg = '#e0e0e0'
+
+# Background color of the statusbar in private browsing mode.
+# Type: QssColor
+c.colors.statusbar.private.bg = '#282a36'
+
+# Foreground color of the statusbar in command mode.
+# Type: QssColor
+c.colors.statusbar.command.fg = '#ff79c6'
+
+# Background color of the statusbar in command mode.
+# Type: QssColor
+c.colors.statusbar.command.bg = '#282a36'
+
+# Foreground color of the statusbar in private browsing + command mode.
+# Type: QssColor
+c.colors.statusbar.command.private.fg = '#e0e0e0'
+
+# Background color of the statusbar in private browsing + command mode.
+# Type: QssColor
+c.colors.statusbar.command.private.bg = '#282a36'
+
+# Foreground color of the statusbar in caret mode.
+# Type: QssColor
+c.colors.statusbar.caret.fg = '#ffb86c'
+
+# Background color of the statusbar in caret mode.
+# Type: QssColor
+c.colors.statusbar.caret.bg = '#282a36'
+
+# Foreground color of the statusbar in caret mode with a selection.
+# Type: QssColor
+c.colors.statusbar.caret.selection.fg = '#ffb86c'
+
+# Background color of the statusbar in caret mode with a selection.
+# Type: QssColor
+c.colors.statusbar.caret.selection.bg = '#282a36'
+
+# Background color of the progress bar.
+# Type: QssColor
+c.colors.statusbar.progress.bg = '#282a36'
+
+# Default foreground color of the URL in the statusbar.
+# Type: QssColor
+c.colors.statusbar.url.fg = '#f8f8f2'
+
+# Foreground color of the URL in the statusbar on error.
+# Type: QssColor
+c.colors.statusbar.url.error.fg = '#ff5555'
+
+# Foreground color of the URL in the statusbar for hovered links.
+# Type: QssColor
+c.colors.statusbar.url.hover.fg = '#8be9fd'
+
+# Foreground color of the URL in the statusbar on successful load
+# (http).
+# Type: QssColor
+c.colors.statusbar.url.success.http.fg = '#50fa7b'
+
+# Foreground color of the URL in the statusbar on successful load
+# (https).
+# Type: QssColor
+c.colors.statusbar.url.success.https.fg = '#50fa7b'
+
+# Foreground color of the URL in the statusbar when there's a warning.
+# Type: QssColor
+c.colors.statusbar.url.warn.fg = '#f1fa8c'
+
+# Background color of the tab bar.
+# Type: QssColor
+c.colors.tabs.bar.bg = '#44475a'
+
+# Color gradient start for the tab indicator.
+# Type: QtColor
+c.colors.tabs.indicator.start = '#ffb86c'
+
+# Color gradient end for the tab indicator.
+# Type: QtColor
+c.colors.tabs.indicator.stop = '#50fa7b'
+
+# Color for the tab indicator on errors.
+# Type: QtColor
+c.colors.tabs.indicator.error = '#ff5555'
+
+# 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'
+
+# Foreground color of unselected odd tabs.
+# Type: QtColor
+c.colors.tabs.odd.fg = '#f8f8f2'
+
+# Background color of unselected odd tabs.
+# Type: QtColor
+c.colors.tabs.odd.bg = '#44475a'
+
+# Foreground color of unselected even tabs.
+# Type: QtColor
+c.colors.tabs.even.fg = '#f8f8f2'
+
+# Background color of unselected even tabs.
+# Type: QtColor
+c.colors.tabs.even.bg = '#44475a'
+
+# Foreground color of selected odd tabs.
+# Type: QtColor
+c.colors.tabs.selected.odd.fg = '#f8f8f2'
+
+# Background color of selected odd tabs.
+# Type: QtColor
+c.colors.tabs.selected.odd.bg = '#282a36'
+
+# Foreground color of selected even tabs.
+# Type: QtColor
+c.colors.tabs.selected.even.fg = '#f8f8f2'
+
+# Background color of selected even tabs.
+# Type: QtColor
+c.colors.tabs.selected.even.bg = '#282a36'
+
+# Bindings for normal mode
+config.bind(',a', 'config-cycle content.user_stylesheets ~/.config/qutebrowser/greasemonkey/all.css ""')
+config.bind(',d', 'config-cycle content.user_stylesheets ~/.config/qutebrowser/greasemonkey/messenger.css ""')
+config.bind(',l', 'hint links spawn mpv --ytdl-format=133+140 {hint-url}')
+config.bind(',m', 'hint links spawn alacritty -e mpv --ytdl-format=140 {hint-url}')
+config.bind(',v', 'hint links spawn mpv {hint-url}')
diff --git a/qutebrowser/.config/qutebrowser/greasemonkey/all.css b/qutebrowser/.config/qutebrowser/greasemonkey/all.css
new file mode 100644
index 0000000000000000000000000000000000000000..6aae5bd991bc6b501dfb800e2ac3287ec1ccf02f
--- /dev/null
+++ b/qutebrowser/.config/qutebrowser/greasemonkey/all.css
@@ -0,0 +1,1715 @@
+.about-info-box__heading {
+ color: #6ab94e !important;
+}
+.result.highlight {
+ background-color: #3c3836 !important;
+}
+.result__snippet {
+ color: #f2f2f2 !important;
+}
+.result__snippet b {
+ color: #6ab94e !important;
+}
+.btn--top {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+.btn--top:hover {
+ background-color: #b8bb26 !important;
+}
+.result--sep--hr:before {
+ background-color: #b8bb26 !important;
+}
+* {
+ border-color: #3c3836 !important;
+}
+.news .alert .pull-info {
+ background-color: #403c3a !important;
+}
+.link-gray-dark,
+.text-gray-dark {
+ color: #f2f2f2 !important;
+}
+.bg-white {
+ background-color: #282828 !important;
+}
+.border {
+ border-color: #b98409 !important;
+}
+.breadcrumb .repo-root.js-repo-root a {
+ color: #458588 !important;
+}
+.breadcrumb strong.final-path {
+ color: #f2f2f2 !important;
+}
+button.ajax-pagination-btn {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+button.ajax-pagination-btn:hover {
+ background-color: #b8bb26 !important;
+}
+.comment-reactions .btn-link {
+ color: #f2f2f2 !important;
+}
+.comment-reactions .user-has-reacted {
+ background-color: #3c3836 !important;
+}
+.text-gray-dark {
+ color: #f2f2f2 !important;
+}
+.contrib-number {
+ color: #6ab94e !important;
+}
+.counter {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.diffstat-bar {
+ color: #f2f2f2 !important;
+}
+.file-header {
+ background-color: #3c3836 !important;
+}
+.file-history-tease .participation {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+.file-history-tease .participation .quickstat strong {
+ color: #f2f2f2 !important;
+}
+.file-history-tease .participation a {
+ color: #b8bb26 !important;
+}
+.file-history-tease .author a {
+ color: #f2f2f2 !important;
+}
+.file-history-tease-header {
+ background-color: #3c3836 !important;
+}
+.file-info-divider {
+ background-color: #b8bb26 !important;
+}
+.file-wrap {
+ color: #f2f2f2 !important;
+}
+.file-wrap * {
+ background-color: transparent !important;
+}
+.filter-bar {
+ background-color: #403c3a !important;
+}
+a.filter-item,
+.filter-item {
+ color: #f2f2f2 !important;
+}
+a.filter-item.selected,
+.filter-item.selected {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+a.filter-item:hover,
+.filter-item:hover {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.flash {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.gh-header {
+ background-color: #282828 !important;
+}
+.gh-header-number {
+ color: #b8bb26 !important;
+}
+.ellipsis-expander,
+.hidden-text-expander a {
+ background-color: #3c3836 !important;
+}
+.issue-meta {
+ color: #b8bb26 !important;
+}
+.issues-listing a {
+ color: #f2f2f2 !important;
+}
+.muted-link {
+ color: #f2f2f2 !important;
+}
+.new-user-avatar-cta {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.overall-summary {
+ border-color: #b8bb26 !important;
+}
+.pinned-repo-item.border {
+ border-color: #b8bb26 !important;
+}
+.progress-bar {
+ background-color: #b8bb26 !important;
+}
+.simple-box {
+ background-color: #3c3836 !important;
+}
+.social-count {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.scope-badge {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.stats-switcher-wrapper {
+ background-color: #282828 !important;
+}
+.stats-switcher-wrapper .numbers-summary li a {
+ color: #f2f2f2 !important;
+}
+.table-list-header-toggle .btn-link {
+ color: #b8bb26 !important;
+}
+.table-list-header-toggle .btn-link.selected {
+ color: #f2f2f2 !important;
+}
+.text-emphasized {
+ color: #6ab94e !important;
+}
+.text-diff-added {
+ color: #98971a !important;
+}
+.text-diff-deleted {
+ color: #cc241d !important;
+}
+.avatar,
+.timeline-comment-avatar {
+ filter: opacity(75%);
+}
+.blob-code {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+.blob-code-addition {
+ background-color: rgba(231,230,113,0.1) !important;
+}
+.blob-code-addition .x {
+ background-color: #727113 !important;
+ color: #2bc786 !important;
+}
+.blob-code-deletion {
+ background-color: rgba(204,36,29,0.2) !important;
+}
+.blob-code-deletion .x {
+ background-color: #66120f !important;
+ color: #2bc786 !important;
+}
+.blob-code-hunk {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+}
+.blob-code-inner {
+ color: #f2f2f2 !important;
+}
+.blob-num {
+ background-color: #282828 !important;
+ color: #b8bb26 !important;
+}
+.file {
+ color: #f2f2f2 !important;
+}
+.form-control {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+}
+.pl-c {
+ color: #b8bb26 !important;
+}
+.pl-c1 {
+ color: #458588 !important;
+}
+.pl-e {
+ color: #d79921 !important;
+}
+.pl-en {
+ color: #458588 !important;
+}
+.pl-k {
+ color: #98971a !important;
+ font-weight: bold !important;
+}
+.pl-pds {
+ color: #689d6a !important;
+}
+.pl-s {
+ color: #689d6a !important;
+}
+.pl-smi {
+ color: #f2f2f2 !important;
+}
+.pl-v {
+ color: #98971a !important;
+ font-weight: bold !important;
+}
+.pl-mi1 {
+ color: #98971a !important;
+ background-color: transparent !important;
+}
+.pl-md {
+ color: #cc241d !important;
+ background-color: transparent !important;
+}
+.border-bottom,
+.border-top {
+ border-color: #3c3836 !important;
+}
+.boxed-group * {
+ border-color: #b8bb26 !important;
+}
+.boxed-group article {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+.boxed-group > h3 {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.more-repos {
+ background-color: #44403e !important;
+ box-shadow: inset 0 1px 0 #b8bb26 !important;
+}
+.boxed-group-inner {
+ background-color: #282828 !important;
+}
+.branch-action-body {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+}
+.branch-action-body div {
+ border-color: #b8bb26 !important;
+}
+.branch-action-state-clean .branch-action-icon {
+ background-color: #98971a !important;
+}
+.branch-action-state-dirty .branch-action-icon,
+.branch-action-state-unstable .branch-action-icon,
+.branch-action-state-unknown .branch-action-icon {
+ background-color: #d79921 !important;
+ color: #fff !important;
+}
+.text-shadow-light,
+.branch-group-name,
+.branch-summary {
+ color: #f2f2f2 !important;
+ text-shadow: none !important;
+}
+.branch-a-b-count .meter {
+ background-color: #d79921 !important;
+}
+.more-branches,
+.branch-group-heading,
+.branch-infobar,
+.branch-name {
+ border-color: #b8bb26 !important;
+ background-color: #3c3836 !important;
+}
+.State,
+.State:visited {
+ color: #fff !important;
+}
+.State--red {
+ background-color: #cc241d !important;
+ color: #282828 !important;
+}
+.State--green {
+ background-color: #98971a !important;
+ color: #282828 !important;
+}
+.select-menu-filters {
+ background-color: #403c3a !important;
+ color: #6ab94e !important;
+}
+.js-select-menu-tab {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.select-menu-tabs a.selected,
+.select-menu-tab-nav.selected {
+ background-color: #b8bb26 !important;
+ color: #282828 !important;
+}
+.signed-commit-header {
+ background-color: #282828 !important;
+}
+.build-status-item {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.build-status-item .build-status-details {
+ color: #458588 !important;
+}
+.capped-card h3 {
+ background-color: #44403e !important;
+}
+.capped-card h3 a {
+ color: #6ab94e !important;
+}
+.capped-card-content {
+ background-color: #282828 !important;
+}
+.capped-list th {
+ background-color: #403c3a !important;
+ color: #6ab94e !important;
+}
+.capped-list tr:nth-child(2n) {
+ background-color: #3c3836 !important;
+}
+.commit,
+.commit-meta,
+.commit-icon .octicon,
+.commit-group-title .octicon-git-commit {
+ background-color: #282828 !important;
+}
+.commit *,
+.commit-meta *,
+.commit-icon .octicon *,
+.commit-group-title .octicon-git-commit * {
+ border-color: #b8bb26 !important;
+}
+.commit-author {
+ color: #f2f2f2 !important;
+}
+.commit-author-section {
+ color: #f2f2f2 !important;
+}
+.commit-meta {
+ color: #b8bb26 !important;
+}
+.commit-meta .sha-block {
+ color: #b8bb26 !important;
+}
+.commit-meta .sha-block .sha {
+ color: #f2f2f2 !important;
+}
+.commit-ref,
+code.commit-sha {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.commit-ref .user,
+code.commit-sha .user {
+ color: #689d6a !important;
+}
+.commit-branches *,
+.commit-tease,
+.commit-title {
+ background-color: rgba(185,255,255,0.2) !important;
+ border: none !important;
+}
+.commit-branches * *,
+.commit-tease *,
+.commit-title * {
+ color: #6ab94e !important;
+}
+.commit-tease-contributors {
+ background-color: #3c3836 !important;
+}
+div.commit-branches,
+div.commit.full-commit p.commit-title,
+qul.branches-list {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+div.commit-branches *,
+div.commit.full-commit p.commit-title *,
+qul.branches-list * {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.commit-meta {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+.commits-listing:before {
+ background-color: #3c3836 !important;
+}
+.full-commit {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+}
+.full-commit * {
+ text-shadow: none !important;
+}
+.commit-desc pre {
+ background-color: transparent !important;
+ color: #f2f2f2 !important;
+}
+.commit.table-list-item {
+ border-color: #3c3836 !important;
+}
+.commit-meta.commit-author-section {
+ background-color: transparent !important;
+ color: #f2f2f2 !important;
+}
+.table-list-cell .commit-title {
+ background-color: transparent !important;
+ color: #f2f2f2 !important;
+}
+.completeness-indicator-success {
+ background-color: #98971a !important;
+}
+.completeness-indicator-problem {
+ background-color: #d79921 !important;
+ color: #fff !important;
+}
+.copyable-terminal {
+ background-color: #3c3836 !important;
+}
+.blankslate {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.comment-form-head.tabnav {
+ background-color: #282828 !important;
+}
+.conversation-list-heading .inner {
+ background-color: #282828 !important;
+}
+.discussion-item-closed .discussion-item-icon {
+ background-color: #cc241d !important;
+ color: #6ab94e !important;
+}
+.discussion-item-icon {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.discussion-item-icon.octicon {
+ color: #6ab94e !important;
+}
+.discussion-item-entity,
+.discussion-item .renamed-was,
+.discussion-item .renamed-is {
+ color: #6ab94e !important;
+}
+.discussion-timeline:before {
+ background-color: #b98409 !important;
+}
+.discussion-timeline-actions {
+ background-color: #282828 !important;
+}
+.drag-and-drop {
+ background-color: #3c3836 !important;
+}
+.new-discussion-timeline .closed-banner {
+ background-color: #b98409 !important;
+ border-color: #282828 !important;
+}
+.timeline-comment {
+ background-color: #282828 !important;
+ border-color: #b8bb26 !important;
+}
+.timeline-comment-header {
+ background-color: #3c3836 !important;
+}
+.timeline-comment-wrapper {
+ border-color: #282828 !important;
+}
+.donut-chart > .pending {
+ fill: #d79921 !important;
+}
+.dropdown-divider {
+ background-color: #b98409 !important;
+}
+.dropdown-item {
+ color: #f2f2f2 !important;
+}
+.dropdown-item:hover {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.dropdown-menu {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+ border-color: #b98409 !important;
+}
+.files * {
+ color: #f2f2f2 !important;
+}
+.files tbody tr {
+ border-color: #3c3836 !important;
+}
+.files tbody tr:nth-child(even) {
+ background-color: #2c2c2c !important;
+}
+.files tbody tr:nth-child(odd) {
+ background-color: #282828 !important;
+}
+.files tbody tr:hover * {
+ background-color: #44403e !important;
+}
+.btn {
+ background-image: linear-gradient(to bottom, #b8bb26, #3c3836) !important;
+ border-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.btn:hover {
+ background-color: #403c3a !important;
+}
+.btn-primary,
+.issues-listing .btn-primary {
+ background-color: #98971a !important;
+ background-image: linear-gradient(#98971a, #4c4c0d) !important;
+ color: #000 !important;
+ filter: opacity(62.5%);
+}
+.entry-title a {
+ color: #458588 !important;
+}
+.Header {
+ background-color: #403c3a !important;
+ border-bottom-color: #b8bb26 !important;
+}
+.Header a {
+ color: #6ab94e !important;
+}
+.lang {
+ color: #6ab94e !important;
+}
+.reponav-item,
+.pagehead-tabs-item {
+ background-color: #3c3836 !important;
+ border-color: transparent !important;
+ color: #f2f2f2 !important;
+}
+.reponav-item:visited,
+.pagehead-tabs-item:visited {
+ color: #f2f2f2 !important;
+}
+.reponav-item.selected,
+.pagehead-tabs-item.selected {
+ background-color: #282828 !important;
+ border-color: #cc241d #44403e transparent !important;
+}
+.site-footer-links * {
+ color: #f2f2f2 !important;
+}
+.Box-row--focus-gray.navigation-focus {
+ background-color: #403c3a !important;
+ color: #6ab94e !important;
+}
+.js-directory-link {
+ color: #458588 !important;
+}
+.js-site-search-form input,
+.js-chromeless-input-container {
+ background-color: #282828 !important;
+ border-color: #b8bb26 !important;
+}
+a.label {
+ color: #000 !important;
+ filter: opacity(75%);
+}
+.notifications-list a {
+ color: #f2f2f2 !important;
+}
+.notifications-list li {
+ background-color: #282828 !important;
+}
+.octicon-repo {
+ color: #6ab94e !important;
+}
+.type-icon-state-closed {
+ color: rgba(255,34,23,0.65) !important;
+}
+.type-icon-state-merged {
+ color: #d53661 !important;
+}
+.type-icon-state-open {
+ color: rgba(212,211,18,0.65) !important;
+}
+.octicon-alert {
+ color: #fff !important;
+}
+.octicon-x {
+ color: #cc241d !important;
+}
+.octicon-check {
+ color: #98971a !important;
+}
+.octicon-primitive-dot {
+ color: #d79921 !important;
+}
+.octicon-clippy {
+ color: #6ab94e !important;
+}
+.octicon-diff {
+ color: #fff !important;
+}
+.octicon-markdown {
+ color: #b8bb26 !important;
+}
+.orghead {
+ background-color: #3c3836 !important;
+ border-color: #b98409 !important;
+ border-bottom: 0px !important;
+ color: #6ab94e !important;
+}
+.org-name {
+ color: #6ab94e !important;
+}
+.pagehead.orghead {
+ background-color: #3c3836 !important;
+}
+.outline-box-highlighted {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.pagination .current {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.pagination .disabled {
+ background-color: #3c3836 !important;
+ color: #b8bb26 !important;
+}
+.pagination .disabled:hover {
+ background-color: #3c3836 !important;
+}
+.pagination .gap {
+ background-color: #3c3836 !important;
+ color: #b8bb26 !important;
+}
+.pagination a {
+ background-color: #3c3836 !important;
+ border-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+.pagination a:hover {
+ background-color: #b8bb26 !important;
+ color: #282828 !important;
+}
+.empty-cell,
+.diffbar {
+ background-color: #282828 !important;
+}
+.merge-status-item {
+ background-color: #44403e !important;
+}
+.merge-message {
+ background-color: #403c3a !important;
+}
+.pr-toolbar {
+ background-color: #282828 !important;
+}
+.review-thread-reply {
+ background-color: #3c3836 !important;
+}
+.review-thread-reply .inline-comment-form {
+ background-color: #282828 !important;
+}
+.merged.octicon,
+.octicon-git-merge {
+ color: #d53661 !important;
+}
+.uploaded-files {
+ background-color: #282828 !important;
+}
+.upload-progress {
+ background-color: #3c3836 !important;
+ box-shadow: 1px 0px 0px #3c3836 inset;
+}
+#readme .plain {
+ background-color: #282828 !important;
+}
+.markdown-body,
+.markdown-body table * {
+ background-color: #282828 !important;
+ border-color: #b98409 !important;
+ color: #f2f2f2 !important;
+}
+.markdown-body a,
+.markdown-body table * a {
+ color: #458588 !important;
+}
+.markdown-body code,
+.markdown-body table * code,
+.markdown-body pre,
+.markdown-body table * pre {
+ background-color: #3c3836 !important;
+}
+.markdown-body hr,
+.markdown-body table * hr {
+ background-color: #b8bb26 !important;
+}
+.markdown-body img,
+.markdown-body table * img {
+ background-color: #282828 !important;
+}
+.task-list-item.hovered {
+ background-color: #3c3836 !important;
+}
+.range-editor {
+ background-color: #3c3836 !important;
+}
+.compare-pr-placeholder {
+ background-color: #403c3a !important;
+}
+ul.comparison-list > li.title {
+ background-color: #44403e !important;
+}
+ul.comparison-list {
+ background-color: #403c3a !important;
+}
+.repository-description {
+ color: #f2f2f2 !important;
+}
+.repository-meta .edit-repository-meta label {
+ color: #f2f2f2 !important;
+}
+.pagehead.repohead {
+ background-color: #3c3836 !important;
+}
+.repository-content .RecentBranches {
+ background-color: #3c3836 !important;
+ border-color: #b98409 !important;
+}
+.repohead-details-container a {
+ color: #f2f2f2 !important;
+}
+.select-menu-modal {
+ border-color: #f2f2f2 !important;
+}
+.select-menu-modal * {
+ color: #f2f2f2 !important;
+}
+.select-menu-header,
+.select-menu-header * {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+ text-shadow: none !important;
+}
+.select-menu-item {
+ background-color: #282828 !important;
+}
+.select-menu-item.navigation-focus,
+.select-menu-item.navigation-focus.selected,
+.select-menu-item.navigation-focus.select-menu-action,
+.select-menu-item-text.navigation-focus {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.repository-sidebar {
+ background-color: #282828 !important;
+}
+.thread-subscription-status {
+ background-color: #282828 !important;
+}
+.sunken-menu {
+ background-image: linear-gradient(to right, #3c3836 0%, #282828 8px) !important;
+ box-shadow: 1px 0px 0px #3c3836 inset;
+}
+.sunken-menu:before {
+ background-image: linear-gradient(#282828, transparent) !important;
+}
+.sunken-menu:after {
+ background-image: linear-gradient(transparent, #282828) !important;
+}
+.sunken-menu-item {
+ border-color: #282828 !important;
+}
+.sunken-menu-item.selected {
+ background-color: #282828 !important;
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.sunken-menu-item.selected:after {
+ background-color: #fb4934 !important;
+}
+.sunken-menu-separator:before {
+ background-image: linear-gradient(to right, #3c3836 70%, #282828 100%) !important;
+}
+.state {
+ color: #6ab94e !important;
+}
+.state-closed {
+ background-color: #cc241d !important;
+}
+.state-open {
+ background-color: #98971a !important;
+}
+.subnav-item {
+ color: #f2f2f2 !important;
+}
+.subnav-item:hover {
+ background-color: #403c3a !important;
+}
+.subnav-item:visited {
+ color: #f2f2f2 !important;
+}
+.subnav-item.selected {
+ background-color: #3c3836 !important;
+}
+.subnav-links a:hover {
+ background-color: #3c3836 !important;
+}
+.subnav-search input {
+ border-color: #b8bb26 !important;
+}
+.right .tabnav-extra {
+ color: #b8bb26 !important;
+}
+a.tabnav-tab,
+.tabnav-tab {
+ border-color: transparent !important;
+ color: #b8bb26 !important;
+}
+a.tabnav-tab.selected,
+.tabnav-tab.selected {
+ background-color: #282828 !important;
+ background-image: linear-gradient(#3c3836, #282828) !important;
+ border-color: #b98409 !important;
+ color: #6ab94e !important;
+}
+.table-list tr,
+.table-list li {
+ background-color: #282828 !important;
+}
+.table-list tr:hover,
+.table-list li:hover {
+ background-color: #44403e !important;
+}
+.table-list-header {
+ background-color: #3c3836 !important;
+}
+.text-pending {
+ color: #d79921 !important;
+}
+.text-pending .octicon-primitive-dot {
+ color: #d79921 !important;
+}
+.text-red {
+ color: #cc241d !important;
+}
+.timeline-commits .commit-meta {
+ background-color: #282828 !important;
+}
+.timeline-commits .commit-meta .commit-id {
+ color: #b8bb26 !important;
+}
+.topic-tag.topic-tag-link {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+.underline-nav-item {
+ color: #f2f2f2 !important;
+}
+.underline-nav-item.selected {
+ border-bottom-color: #cc241d !important;
+ color: #f2f2f2 !important;
+}
+.user-profile-nav {
+ background-color: #3c3836 !important;
+ border-color: #b98409 !important;
+}
+.user-profile-sticky-bar:after {
+ background-color: #3c3836 !important;
+ border-color: #b98409 !important;
+}
+.graphs .area {
+ fill: #98971a;
+}
+.summary-stats li .num {
+ color: #6ab94e !important;
+}
+.viz {
+ background-color: #403c3a !important;
+}
+.facebox-popup {
+ color: #f2f2f2 !important;
+ background-color: #282828 !important;
+}
+.facebox-popup .octicon {
+ color: #fff !important;
+}
+.facebox-popup .owner-select-target {
+ color: #f2f2f2 !important;
+ background-color: #3c3836 !important;
+}
+.facebox-popup .owner-select-target:hover {
+ background-color: #b8bb26 !important;
+}
+.suggester {
+ background-color: #44403e !important;
+}
+.suggester li.navigation-focus {
+ background-color: #b8bb26 !important;
+}
+.menu {
+ background-color: #3c3836 !important;
+}
+.menu-item.selected {
+ background-color: #44403e !important;
+}
+.menu-item:hover {
+ background-color: #b8bb26 !important;
+}
+.Box {
+ background-color: #282828 !important;
+}
+.Box-header {
+ background-color: #3c3836 !important;
+}
+svg > * text {
+ color: #f2f2f2 !important;
+ fill: #f2f2f2 !important;
+}
+.insertions {
+ color: #98971a !important;
+}
+.deletions {
+ color: #cc241d !important;
+}
+.sfbgg {
+ background-color: #3c3836 !important;
+}
+.sbib_a {
+ background: linear-gradient(to bottom, #3c3836, #282828) !important;
+}
+input#lst-ib,
+#sb_ifc0.sbib_b,
+#gs_taif0 {
+ background: transparent !important;
+}
+#lst-ib,
+.sbsb_a {
+ background-color: #282828 !important;
+}
+.kpbb {
+ background-image: linear-gradient(to bottom, #67afb2, #458588) !important;
+}
+#hdtbSum {
+ background-color: #282828 !important;
+}
+#hdtbMenus.hdtb-td-o {
+ background-color: #282828 !important;
+}
+#hdtb-tls.hdtb-tl {
+ background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+#hdtb-tls.hdtb-tl.hdtb-tl-sel {
+ background-image: linear-gradient(to bottom, #3c3836, #282828) !important;
+}
+#abar_button_opt.ab_button {
+ background: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+#appbar {
+ background-color: #282828 !important;
+}
+cite {
+ color: #98971a !important;
+}
+.ab_dropdown {
+ background-color: #282828 !important;
+}
+div.crp {
+ background-color: #282828 !important;
+}
+#fbar {
+ background-color: #3c3836 !important;
+}
+tr.Even {
+ background-color: #3c3836 !important;
+}
+.BigQuote {
+ background-color: #3c3836 !important;
+ color: #fb4934 !important;
+}
+.Cat1HL {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.Cat2HL {
+ background-color: #44403e !important;
+}
+.Cat3HL {
+ background-color: #403c3a !important;
+}
+.FeatureByline {
+ background-color: #3c3836 !important;
+ border: none !important;
+}
+.Headline {
+ background-color: #44403e !important;
+}
+.QuotedText {
+ color: #d53661 !important;
+}
+DIV.GAByline {
+ background-color: #3c3836 !important;
+ border: none !important;
+}
+table.OddEven tr:nth-child(even) {
+ background-color: #2c2c2c !important;
+}
+table.OddEven tr:nth-child(odd) {
+ background-color: #282828 !important;
+}
+DIV.CommentBox {
+ border-color: #3c3836 !important;
+}
+DIV.CommentBox P.CommentTitle {
+ background-color: #44403e !important;
+}
+#menu,
+.topnav-container {
+ background-color: #3c3836 !important;
+}
+.navmenu ul {
+ background-color: #3c3836 !important;
+}
+body * {
+ border-color: #44403e !important;
+}
+#content {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+#mw-head,
+#mw-panel {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+#mw-head div.portal,
+#mw-panel div.portal {
+ background-image: none !important;
+}
+#mw-head {
+ background-color: #3c3836 !important;
+ background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+#mw-panel,
+#p-logo {
+ background-image: linear-gradient(to right, #282828, #3c3836) !important;
+}
+div.vectorTabs {
+ background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+div.vectorTabs ul {
+ background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+div.vectorTabs ul li {
+ background-color: #3c3836 !important;
+ background-image: none !important;
+ padding: 0px 1px 0px 1px !important;
+}
+div.vectorTabs span {
+ background-color: #3c3836 !important;
+ background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
+}
+div.vectorTabs li.selected,
+div.vectorTabs li.selected span {
+ background-color: transparent !important;
+ background-image: linear-gradient(to bottom, #3c3836, #282828) !important;
+}
+.mw-wiki-logo {
+ filter: opacity(50%);
+}
+div#simpleSearch #searchInput {
+ background-color: #282828 !important;
+ padding: 0.05em 0px 0.2em 0.2em !important;
+}
+.ambox,
+.infobox,
+#toc,
+#toctitle,
+.toclevel-1 {
+ background-color: #3c3836 !important;
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.catlinks {
+ background-color: #3c3836 !important;
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.navbox {
+ background-color: #3c3836 !important;
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.navbox .th,
+.navbox .navbox-title {
+ background-color: #44403e !important;
+}
+.navbox-abovebelow,
+th.navbox-group,
+.navbox-subgroup,
+.navbox-title {
+ background-color: #403c3a !important;
+}
+.navbox-even {
+ background-color: #282828 !important;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+code {
+ background-color: #44403e !important;
+ border-color: #44403e !important;
+ color: #6ab94e !important;
+}
+div.thumbinner {
+ background-color: #3c3836 !important;
+ border-color: #44403e !important;
+}
+img {
+ filter: opacity(75%);
+}
+img.thumbimage {
+ border-color: #44403e !important;
+}
+.mw-body .external {
+ opacity: 0.5 !important;
+}
+table.wikitable {
+ background-color: #282828 !important;
+ border-color: #44403e !important;
+ color: #f2f2f2 !important;
+}
+table.wikitable > * > tr > th {
+ background-color: #3c3836 !important;
+}
+table {
+ background-color: #282828 !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: #fb4934 !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: #282828 !important;
+}
+#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
+ background-color: #282828 !important;
+}
+.title a {
+ color: #f2f2f2 !important;
+}
+.title a:visited {
+ color: #b8bb26 !important;
+}
+a.storylink {
+ color: #6ab94e !important;
+ font-weight: bold;
+}
+.sitestr {
+ color: #458588 !important;
+}
+#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
+ background-color: #282828 !important;
+}
+#hnmain .comhead {
+ color: #6ab94e !important;
+}
+#hnmain .c00 {
+ color: #f2f2f2 !important;
+}
+#hnmain a.hnuser {
+ color: #d79921 !important;
+}
+#hnmain span.age a {
+ color: #b8bb26 !important;
+}
+.cdd {
+ color: rgba(255,34,23,0.65) !important;
+}
+.comment i {
+ color: #d53661 !important;
+}
+#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
+ background-color: #282828 !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: #fb4934 !important;
+}
+div#page div#header {
+ background-color: #282828 !important;
+}
+div#page div#header a {
+ color: #d53661 !important;
+}
+.post {
+ background-color: #282828 !important;
+}
+.post * {
+ overflow: auto !important;
+}
+.post h2 {
+ background-color: #3c3836 !important;
+}
+.post h2 a {
+ color: #6ab94e !important;
+}
+.post div.entry {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+.post div.entry blockquote {
+ background-color: #3c3836 !important;
+}
+.post div.entry kbd {
+ background-color: #3c3836 !important;
+ border-color: #b8bb26 !important;
+ box-shadow: none !important;
+ color: #6ab94e !important;
+ text-shadow: 0px 1px 0px #000 !important;
+}
+.post pre.mode-line {
+ overflow: visible !important;
+}
+#sr-header-area {
+ background-color: #3c3836 !important;
+}
+#sr-header-area .srdrop .selected {
+ color: #f2f2f2 !important;
+}
+#sr-header-area #sr-more-link {
+ background-color: #3c3836 !important;
+}
+.link.promotedlink.promoted {
+ background-color: #3c3836 !important;
+}
+.link .usertext .md {
+ background-color: #3c3836 !important;
+}
+.linkinfo {
+ background-color: #3c3836 !important;
+}
+.linklisting .odd {
+ background-color: #3c3836 !important;
+}
+.thing .title {
+ color: #f2f2f2 !important;
+}
+div.md {
+ color: #f2f2f2 !important;
+}
+body.comment {
+ background-color: #282828 !important;
+}
+.commentarea > .usertext {
+ background-color: #282828 !important;
+}
+.commentarea .menuarea {
+ background-color: #282828 !important;
+}
+.comments-page .panestack-title {
+ background-color: #282828 !important;
+}
+.listing-chooser {
+ background-color: #282828 !important;
+}
+.listing-chooser .intro {
+ background-color: #b8bb26 !important;
+ color: #6ab94e !important;
+}
+.listing-chooser .grippy {
+ background-color: #282828 !important;
+}
+.listing-chooser .grippy:after {
+ border-right: none !important;
+}
+.listing-chooser li {
+ background-color: #3c3836 !important;
+}
+.listing-chooser li.selected {
+ background-color: #b8bb26 !important;
+ box-shadow: none;
+}
+.listing-chooser li a {
+ color: #f2f2f2 !important;
+}
+.listing-chooser li a .description {
+ color: #6ab94e !important;
+}
+.titlebox {
+ background-color: #3c3836 !important;
+}
+.titlebox form.toggle {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+.side .usertext-body .md {
+ background-color: #3c3836 !important;
+}
+.side {
+ background-color: #3c3836 !important;
+}
+.sidebox .spacer {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.tabmenu li a {
+ background-color: #3c3836 !important;
+}
+#header-bottom-right {
+ background-color: #3c3836 !important;
+}
+.morelink .nub {
+ background-color: #3c3836 !important;
+}
+* {
+ border-color: #b98409 !important;
+}
+a {
+ color: #458588 !important;
+}
+a:visited {
+ color: #d53661 !important;
+}
+body {
+ background-color: #282828 !important;
+ color: #f2f2f2 !important;
+}
+html {
+ background-color: #282828 !important;
+}
+input,
+textarea {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+tr:hover,
+blockquote,
+pre {
+ background-color: #3c3836 !important;
+ color: #f2f2f2 !important;
+}
+#toolMenu li {
+ background-color: #282828 !important;
+}
+.navPanel,
+.navIntraTool {
+ background-color: #282828 !important;
+}
+.instruction,
+.sakaiCopyrightInfo {
+ color: #f2f2f2 !important;
+}
+.listHier th {
+ background-color: #44403e !important;
+}
+ul.makeMenu {
+ background-color: #44403e !important;
+ border: 1px solid #44403e !important;
+}
+tr.external {
+ background-color: #44403e !important;
+}
+hr {
+ background-color: #44403e !important;
+ color: #44403e !important;
+}
+.bounty-indicator,
+.bounty-indicator-tab {
+ background-color: #d53661 !important;
+}
+.bottom-notice {
+ background-color: #3c3836 !important;
+}
+.comments-link {
+ color: #98971a !important;
+}
+.page-numbers {
+ background-color: #98971a !important;
+ color: #a89984 !important;
+}
+.page-numbers.current {
+ background-color: #fb4934 !important;
+ color: #282828 !important;
+}
+.post-menu a {
+ color: #d53661 !important;
+}
+.question-status {
+ background-color: #3c3836 !important;
+}
+.bg-black-050 {
+ background-color: transparent !important;
+}
+.val-info {
+ background-color: transparent !important;
+ color: #f2f2f2 !important;
+}
+.s-label {
+ color: #f2f2f2 !important;
+}
+pre code {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+pre code .atn {
+ color: #458588 !important;
+}
+pre code .atv {
+ color: #689d6a !important;
+}
+pre code .com {
+ color: #b8bb26 !important;
+}
+pre code .kwd {
+ color: #98971a !important;
+}
+pre code .lit {
+ color: #b16286 !important;
+}
+pre code .pln,
+pre code .pun {
+ color: #f2f2f2 !important;
+}
+pre code .str {
+ color: #689d6a !important;
+}
+pre code .tag {
+ color: #98971a !important;
+}
+pre code .typ {
+ color: #d79921 !important;
+}
+#footer {
+ background-color: #403c3a !important;
+ color: #f2f2f2 !important;
+}
+#footer #footer-sites th {
+ color: #6ab94e !important;
+}
+.top-footer-links a {
+ color: #98971a !important;
+}
+.so-header {
+ background-color: #44403e !important;
+ color: #6ab94e !important;
+}
+.so-header a {
+ color: #98971a !important;
+}
+.so-header .navigation .-list .-item :hover {
+ background-color: #98971a !important;
+ color: #ebdbb2 !important;
+}
+.topbar-dialog {
+ background-color: #282828 !important;
+ box-shadow: #b8bb26 5px 5px 5px;
+}
+.topbar-dialog .current-site-container {
+ background-color: #282828 !important;
+}
+.topbar-dialog .header {
+ background-color: #3c3836 !important;
+}
+.topbar-dialog .header a {
+ color: #6ab94e !important;
+}
+.topbar-dialog .site-link {
+ color: #6ab94e !important;
+}
+#header {
+ background-color: #44403e !important;
+}
+#question-header .question-hyperlink {
+ color: #6ab94e !important;
+}
+#hlogo a {
+ filter: opacity(75%);
+}
+.new-post-activity {
+ background-color: #3c3836 !important;
+}
+.tagged-interesting {
+ background-color: #44403e !important;
+}
+div.answered-accepted {
+ background-color: #98971a !important;
+ color: #a89984 !important;
+}
+div.answered-accepted .mini-counts {
+ background-color: #98971a !important;
+ color: #a89984 !important;
+}
+.answered .mini-counts span {
+ color: #98971a !important;
+}
+.unanswered .mini-counts span {
+ color: #f2f2f2 !important;
+}
+#hot-network-questions a {
+ color: #689d6a !important;
+}
+#hot-network-questions h4 a.js-gps-track {
+ color: #6ab94e !important;
+}
+#sidebar .community-bulletin .bulletin-item-content a {
+ color: #6ab94e !important;
+}
+#sidebar .module.community-bulletin {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+#sidebar .question-hyperlink {
+ color: #689d6a !important;
+}
+.newuser {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.label-key {
+ color: #f2f2f2 !important;
+}
+.label-key b {
+ color: #6ab94e !important;
+}
+#h-chat-link {
+ color: #6ab94e !important;
+}
+.ad502-room {
+ background-color: #3c3836 !important;
+ box-shadow: #b8bb26 0px 1px 3px;
+ color: #6ab94e !important;
+}
+#tabs a {
+ background-color: transparent !important;
+ background-image: linear-gradient(to bottom, #282828, #3c3836);
+ color: #6ab94e !important;
+}
+#tabs a.youarehere {
+ background-image: linear-gradient(to bottom, #fb4934, #282828);
+ color: #ebdbb2 !important;
+}
+.post-tag {
+ background-color: #b8bb26 !important;
+ color: #282828 !important;
+}
+.post-tag::before {
+ background-color: #282828 !important;
+}
+a.comment-user.owner {
+ background-color: #98971a !important;
+ color: #a89984 !important;
+}
+.post-signature {
+ background-color: #3c3836 !important;
+ color: #6ab94e !important;
+}
+.post-signature a {
+ color: #689d6a !important;
+}
+.post-signature.owner .user-info .user-details a {
+ color: #98971a !important;
+}
+.post-signature span.relativetime {
+ color: #6ab94e !important;
+}
+.vote {
+ background-color: #3c3836 !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: #b8bb26 !important;
+ color: #282828 !important;
+}
+
+:root, .__fb-light-mode {
+ --card-background: #1e1e1e;
+ --comment-background: #292929;
+ --card-background-flat: #292929;
+ --disabled-button-background: #373737;
+ --divider: #4d4d4d;
+ --hosted-view-selected-state: #1D2731;
+ --hover-overlay: rgba(255, 255, 255, 0.05);
+ --media-inner-border: rgba(255, 255, 255, 0.1);
+ --messenger-card-background: #1e1e1e;
+ --overlay-alpha-80: rgba(41, 41, 41, 0.8);
+ --popover-background: #1e1e1e;
+ --primary-icon: #cecece;
+ --primary-text: #cecece;
+ --scroll-thumb: #5d5d5d;
+ --secondary-button-background: #353535;
+ --secondary-icon: #636363;
+ --secondary-text: #636363;
+ --shadow-1: rgba(0, 0, 0, 0.3);
+ --shadow-2: rgba(0, 0, 0, 0.4);
+ --shadow-5: rgba(0, 0, 0, 0.7);
+ --shadow-8: rgba(0, 0, 0, 1);
+ --shadow-inset: rgba(000, 000, 000, 0.5);
+ --surface-background: #1e1e1e;
+ --wash: #373737;
+ --web-wash: #1e1e1e;
+}
+
+body {
+ color: #cecece;
+}
+
+/* Delivered icon on left*/
+.rq0escxv.l9j0dhe7.du4w35lb.j83agx80.cbu4d94t.pfnyh3mw.d2edcug0.hpfvmrgz.aovydwv3.p8cu3f6v.kb5gq1qc.taijpn5t.b0upgy8r path, .l9j0dhe7.swg4t2nn path, .a8c37x1j.ms05siws.hwsy1cff.b7h9ocf4 path {
+ fill: #cecece;
+}
+
+path[d="M0 36h36V0H0z"] {
+ fill: none !important;
+}
+
+/* Icons */
+path[d="M18 30c-6.627 0-12-5.372-12-12 0-6.627 5.373-12 12-12 6.628 0 12 5.373 12 12 0 6.628-5.372 12-12 12zm5.294-16.707l-7.296 7.295-3.254-3.252c-.352-.353-.919-.439-1.323-.148a1 1 0 00-.128 1.522l3.998 3.997a1 1 0 001.414 0l8.002-8.001a1 1 0 10-1.413-1.413z"] {
+ fill: #636363;
+}
+
+.sp_o5t_XtHjhxN_1_5x {
+ filter: invert(.8);
+}
+
+/* App download */
+.oajrlxb2.q2y6ezfg.gcieejh5.bn081pho.humdl8nn.izx4hr6d.rq0escxv.nhd2j8a9.j83agx80.p7hjln8o.kvgmc6g5.cxmmr5t8.oygrvhab.hcukyx3x.jb3vyjys.d1544ag0.qt6c0cv9.tw6a2znq.i1ao9s8h.esuyzwwr.f1sip0of.lzcic4wl.l9j0dhe7.abiwlrkh.p8dawk7l.beltcj47.p86d2i9g.aot14ch1.kzx2olss.cbu4d94t.taijpn5t.ni8dbmo4.stjgntxs.k4urcfbm.tv7at329 {
+ background: #1e1e1e;
+}
+
+.sn0e7ne5 {
+ box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 2px;
+}
+
+/* Middle header */
+.bafdgad4 {
+ box-shadow: 0 0 4px rgba(0,0,0,.7)
+}
+
+/* Pop-up close icon */
+.sp_GOPGoqMu6Pq_1_5x {
+ filter: invert(.8);
+}
+
+/* Feedback icons */
+.sp_BQbKIpOzOAx_1_5x, .sp_a51jIvPl6dA_1_5x {
+ filter: invert(.8);
+}
+
diff --git a/qutebrowser/.config/qutebrowser/greasemonkey/messenger.css b/qutebrowser/.config/qutebrowser/greasemonkey/messenger.css
new file mode 100644
index 0000000000000000000000000000000000000000..d4d26d3c31d27240aa72ff1f482b9614f8e9245f
--- /dev/null
+++ b/qutebrowser/.config/qutebrowser/greasemonkey/messenger.css
@@ -0,0 +1,73 @@
+:root, .__fb-light-mode {
+ --card-background: #222;
+ --comment-background: #292929;
+ --card-background-flat: #292929;
+ --disabled-button-background: #373737;
+ --divider: #4d4d4d;
+ --hosted-view-selected-state: #1D2731;
+ --hover-overlay: rgba(255, 255, 255, 0.05);
+ --media-inner-border: rgba(255, 255, 255, 0.1);
+ --messenger-card-background: #1e1e1e;
+ --overlay-alpha-80: rgba(41, 41, 41, 0.8);
+ --popover-background: #1e1e1e;
+ --primary-icon: #cecece;
+ --primary-text: #cecece;
+ --scroll-thumb: #5d5d5d;
+ --secondary-button-background: #353535;
+ --secondary-icon: #999;
+ --secondary-text: #999;
+ --shadow-1: rgba(0, 0, 0, 0.3);
+ --shadow-2: rgba(0, 0, 0, 0.4);
+ --shadow-5: rgba(0, 0, 0, 0.7);
+ --shadow-8: rgba(0, 0, 0, 1);
+ --shadow-inset: rgba(000, 000, 000, 0.5);
+ --surface-background: #1e1e1e;
+ --wash: #373737;
+ --web-wash: #1e1e1e;
+}
+
+body {
+ color: #000;
+}
+
+/* Delivered icon on left*/
+.rq0escxv.l9j0dhe7.du4w35lb.j83agx80.cbu4d94t.pfnyh3mw.d2edcug0.hpfvmrgz.aovydwv3.p8cu3f6v.kb5gq1qc.taijpn5t.b0upgy8r path, .l9j0dhe7.swg4t2nn path, .a8c37x1j.ms05siws.hwsy1cff.b7h9ocf4 path {
+ fill: #cecece;
+}
+
+path[d="M0 36h36V0H0z"] {
+ fill: none !important;
+}
+
+/* Icons */
+path[d="M18 30c-6.627 0-12-5.372-12-12 0-6.627 5.373-12 12-12 6.628 0 12 5.373 12 12 0 6.628-5.372 12-12 12zm5.294-16.707l-7.296 7.295-3.254-3.252c-.352-.353-.919-.439-1.323-.148a1 1 0 00-.128 1.522l3.998 3.997a1 1 0 001.414 0l8.002-8.001a1 1 0 10-1.413-1.413z"] {
+ fill: #999;
+}
+
+.sp_o5t_XtHjhxN_1_5x {
+ filter: invert(.8);
+}
+
+/* App download */
+.oajrlxb2.q2y6ezfg.gcieejh5.bn081pho.humdl8nn.izx4hr6d.rq0escxv.nhd2j8a9.j83agx80.p7hjln8o.kvgmc6g5.cxmmr5t8.oygrvhab.hcukyx3x.jb3vyjys.d1544ag0.qt6c0cv9.tw6a2znq.i1ao9s8h.esuyzwwr.f1sip0of.lzcic4wl.l9j0dhe7.abiwlrkh.p8dawk7l.beltcj47.p86d2i9g.aot14ch1.kzx2olss.cbu4d94t.taijpn5t.ni8dbmo4.stjgntxs.k4urcfbm.tv7at329 {
+ background: #1e1e1e;
+}
+
+.sn0e7ne5 {
+ box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 2px;
+}
+
+/* Middle header */
+.bafdgad4 {
+ box-shadow: 0 0 4px rgba(0,0,0,.7)
+}
+
+/* Pop-up close icon */
+.sp_GOPGoqMu6Pq_1_5x {
+ filter: invert(.8);
+}
+
+/* Feedback icons */
+.sp_BQbKIpOzOAx_1_5x, .sp_a51jIvPl6dA_1_5x {
+ filter: invert(.8);
+}
diff --git a/qutebrowser/.config/qutebrowser/qsettings/QtProject.conf b/qutebrowser/.config/qutebrowser/qsettings/QtProject.conf
new file mode 100644
index 0000000000000000000000000000000000000000..c5f1420bd111feecac47c32c1ddb29f2aeba46b0
--- /dev/null
+++ b/qutebrowser/.config/qutebrowser/qsettings/QtProject.conf
@@ -0,0 +1,8 @@
+[FileDialog]
+history=file:///home/michal/Media/Pictures
+lastVisited=file:///home/michal/Media/Pictures
+qtVersion=5.15.2
+shortcuts=file:, file:///home/michal
+sidebarWidth=98
+treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xec\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xff\0\0\0\x1\0\0\0\0\0\0\0?\0\0\0\x1\0\0\0\0\0\0\0@\0\0\0\x1\0\0\0\0\0\0\0n\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff)
+viewMode=Detail
diff --git a/qutebrowser/.config/qutebrowser/quickmarks b/qutebrowser/.config/qutebrowser/quickmarks
new file mode 100644
index 0000000000000000000000000000000000000000..824278da79179830e6eb5e25160bcf8901a892c8
--- /dev/null
+++ b/qutebrowser/.config/qutebrowser/quickmarks
@@ -0,0 +1,5 @@
+YT https://www.youtube.com/feed/subscriptions
+Translate https://www.diki.pl/
+Arch_Wiki https://wiki.archlinux.org/
+Github https://github.com/
+srht https://sr.ht/