From 468a789dbc4b1928c035d8590895efc533520a27 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 24 Feb 2021 17:07:33 +0100 Subject: Updated file tree to match XDG base directory specification --- .alacritty.yml | 43 -- .bashrc | 33 - .gdbinit | 5 - .ghci | 1 - .gitconfig | 12 - .gitmodules | 4 +- .mailcap | 2 - .mbsyncrc | 19 - .moc/config | 690 ----------------- .moc/keymap | 192 ----- .moc/themes/solarized | 45 -- .muttrc | 57 -- .nanorc | 1 - .newsboat/config | 33 - .pluggins.vim | 47 -- .tmux.conf | 13 - .urlview | 1 - .vimrc | 308 -------- .xinitrc | 25 - .zprofile | 5 - .zsh_aliases | 149 ---- .zshrc | 120 --- Preferences.sublime-settings | 11 - applications/mutt.desktop | 4 - applications/newsboat.desktop | 4 - applications/sxiv.desktop | 4 - applications/zathura.desktop | 4 - bin/backlight-ctl | 23 - bin/battery-low-check | 5 - bin/bitwarden-dmenu | 8 - bin/cacharle-sync | 28 - bin/project-open | 53 -- bin/repo-client | 3 - bin/tag-music | 32 - bin/touchpad-toggle | 12 - config/alacritty/alacritty.yml | 43 ++ config/bash/bashrc | 33 + config/dunst/dunstrc | 414 ++++++++++ config/gdb/init | 5 + config/ghc/ghci.conf | 1 + config/git/config | 12 + config/isync/mbsyncrc | 19 + config/moc/config | 690 +++++++++++++++++ config/moc/keymap | 192 +++++ config/moc/themes/solarized | 45 ++ config/mutt/mailcap | 2 + config/mutt/muttrc | 57 ++ config/nano/nanorc | 1 + config/newsboat/config | 33 + config/pulseaudio-ctl/config | 25 + config/qutebrowser/config.py | 285 +++++++ config/redshift/redshift.conf | 14 + config/startx/xinitrc | 25 + config/sublime-text/Preferences.sublime-settings | 11 + config/tmux/tmux.conf | 13 + config/urlview/.urlview | 1 + config/vim/pluggins.vim | 47 ++ config/vim/vimrc | 315 ++++++++ config/xmonad/xmonad.hs | 76 ++ config/zathura/zathurarc | 3 + config/zsh/.zprofile | 46 ++ config/zsh/.zshrc | 80 ++ config/zsh/aliases.zsh | 149 ++++ dunst/dunstrc | 414 ---------- grep.vim | 23 - local/bin/backlight-ctl | 23 + local/bin/battery-low-check | 5 + local/bin/bitwarden-dmenu | 8 + local/bin/cacharle-sync | 28 + local/bin/music-dl | 34 + local/bin/music-dl.conf | 9 + local/bin/newsboat-reload | 8 + local/bin/project-open | 53 ++ local/bin/repo-client | 3 + local/bin/tag-music | 32 + local/bin/touchpad-toggle | 12 + local/share/applications/mutt.desktop | 4 + local/share/applications/newsboat.desktop | 4 + local/share/applications/sxiv.desktop | 4 + local/share/applications/zathura.desktop | 4 + local/share/mimeapps.list | 25 + local/share/mutt/solarized | 1 + mimeapps.list | 25 - mutt-colors-solarized | 1 - pulseaudio-ctl/config | 25 - qutebrowser/config.py | 285 ------- redshift.conf | 14 - slock/config.def.h | 12 - stylus.json | 915 ----------------------- xmonad.hs | 74 -- zathura/zathurarc | 3 - 91 files changed, 2896 insertions(+), 3785 deletions(-) delete mode 100644 .alacritty.yml delete mode 100644 .bashrc delete mode 100644 .gdbinit delete mode 100644 .ghci delete mode 100644 .gitconfig delete mode 100644 .mailcap delete mode 100644 .mbsyncrc delete mode 100644 .moc/config delete mode 100644 .moc/keymap delete mode 100644 .moc/themes/solarized delete mode 100644 .muttrc delete mode 100644 .nanorc delete mode 100644 .newsboat/config delete mode 100644 .pluggins.vim delete mode 100644 .tmux.conf delete mode 100644 .urlview delete mode 100644 .vimrc delete mode 100755 .xinitrc delete mode 100755 .zprofile delete mode 100644 .zsh_aliases delete mode 100644 .zshrc delete mode 100644 Preferences.sublime-settings delete mode 100644 applications/mutt.desktop delete mode 100644 applications/newsboat.desktop delete mode 100644 applications/sxiv.desktop delete mode 100644 applications/zathura.desktop delete mode 100755 bin/backlight-ctl delete mode 100755 bin/battery-low-check delete mode 100755 bin/bitwarden-dmenu delete mode 100755 bin/cacharle-sync delete mode 100755 bin/project-open delete mode 100755 bin/repo-client delete mode 100755 bin/tag-music delete mode 100755 bin/touchpad-toggle create mode 100644 config/alacritty/alacritty.yml create mode 100644 config/bash/bashrc create mode 100644 config/dunst/dunstrc create mode 100644 config/gdb/init create mode 100644 config/ghc/ghci.conf create mode 100644 config/git/config create mode 100644 config/isync/mbsyncrc create mode 100644 config/moc/config create mode 100644 config/moc/keymap create mode 100644 config/moc/themes/solarized create mode 100644 config/mutt/mailcap create mode 100644 config/mutt/muttrc create mode 100644 config/nano/nanorc create mode 100644 config/newsboat/config create mode 100644 config/pulseaudio-ctl/config create mode 100644 config/qutebrowser/config.py create mode 100644 config/redshift/redshift.conf create mode 100755 config/startx/xinitrc create mode 100644 config/sublime-text/Preferences.sublime-settings create mode 100644 config/tmux/tmux.conf create mode 100644 config/urlview/.urlview create mode 100644 config/vim/pluggins.vim create mode 100644 config/vim/vimrc create mode 100644 config/xmonad/xmonad.hs create mode 100644 config/zathura/zathurarc create mode 100755 config/zsh/.zprofile create mode 100644 config/zsh/.zshrc create mode 100644 config/zsh/aliases.zsh delete mode 100644 dunst/dunstrc delete mode 100644 grep.vim create mode 100755 local/bin/backlight-ctl create mode 100755 local/bin/battery-low-check create mode 100755 local/bin/bitwarden-dmenu create mode 100755 local/bin/cacharle-sync create mode 100755 local/bin/music-dl create mode 100644 local/bin/music-dl.conf create mode 100755 local/bin/newsboat-reload create mode 100755 local/bin/project-open create mode 100755 local/bin/repo-client create mode 100755 local/bin/tag-music create mode 100755 local/bin/touchpad-toggle create mode 100644 local/share/applications/mutt.desktop create mode 100644 local/share/applications/newsboat.desktop create mode 100644 local/share/applications/sxiv.desktop create mode 100644 local/share/applications/zathura.desktop create mode 100644 local/share/mimeapps.list create mode 160000 local/share/mutt/solarized delete mode 100644 mimeapps.list delete mode 160000 mutt-colors-solarized delete mode 100644 pulseaudio-ctl/config delete mode 100644 qutebrowser/config.py delete mode 100644 redshift.conf delete mode 100644 slock/config.def.h delete mode 100644 stylus.json delete mode 100644 xmonad.hs delete mode 100644 zathura/zathurarc diff --git a/.alacritty.yml b/.alacritty.yml deleted file mode 100644 index ddfce65..0000000 --- a/.alacritty.yml +++ /dev/null @@ -1,43 +0,0 @@ -############# -# alacritty # -############# - -# font -font: - size: 9 - normal: - family: Fira Code - - - offset: - x: 0 - y: 0 - -# colorscheme (Dracula) -colors: - # Default colors - primary: - background: '#282a36' - foreground: '#f8f8f2' - - # Normal colors - normal: - black: '#000000' - red: '#ff5555' - green: '#50fa7b' - yellow: '#f1fa8c' - blue: '#caa9fa' - magenta: '#ff79c6' - cyan: '#8be9fd' - white: '#bfbfbf' - - # Bright colors - bright: - black: '#575b70' - red: '#ff6e67' - green: '#5af78e' - yellow: '#f4f99d' - blue: '#caa9fa' - magenta: '#ff92d0' - cyan: '#9aedfe' - white: '#e6e6e6' diff --git a/.bashrc b/.bashrc deleted file mode 100644 index bc5b9ab..0000000 --- a/.bashrc +++ /dev/null @@ -1,33 +0,0 @@ -########### -# .bashrc # -########### - -alias ls='ls --color=auto' -alias grep='grep --color=auto' -alias ll='ls -l' -alias la='ls -A' -alias v='vim' - -# adding superuser bin to PATH -export PATH="/sbin:$PATH" - -# man with color -export LESS_TERMCAP_mb=$'\e[1;32m' -export LESS_TERMCAP_md=$'\e[1;32m' -export LESS_TERMCAP_me=$'\e[0m' -export LESS_TERMCAP_se=$'\e[0m' -export LESS_TERMCAP_so=$'\e[01;33m' -export LESS_TERMCAP_ue=$'\e[0m' -export LESS_TERMCAP_us=$'\e[1;4;31m' - -export PS1="\n\[$(tput bold)$(tput setaf 2)\]\w\n\[$(tput setaf 1)\]❯ \[$( tput sgr0)\]" - -# set XDG paths -export XDG_CONFIG_HOME="$HOME/.config/" -export XDG_DATA_HOME="$HOME/.data/" - -# vim key bindings -set -o vi - -# Added by c_formatter_42 -export PATH="$PATH:/home/charles/git/c_formatter_42" diff --git a/.gdbinit b/.gdbinit deleted file mode 100644 index 9d56111..0000000 --- a/.gdbinit +++ /dev/null @@ -1,5 +0,0 @@ -set disassembly-flavor intel -set print pretty on -set prompt \ngdb> -set confirm off -set listsize 25 diff --git a/.ghci b/.ghci deleted file mode 100644 index 31f559e..0000000 --- a/.ghci +++ /dev/null @@ -1 +0,0 @@ -:set prompt "λ " diff --git a/.gitconfig b/.gitconfig deleted file mode 100644 index bb4fef3..0000000 --- a/.gitconfig +++ /dev/null @@ -1,12 +0,0 @@ -[user] - name = Charles Cabergs - email = me@cacharle.xyz - signingkey = me@cacharle.xyz -[log] - decorate = full -[pull] - rebase = false -[merge] - tool = vimdiff -[commit] - gpgsign = true diff --git a/.gitmodules b/.gitmodules index 1335b96..6dfe029 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "mutt-colors-solarized"] - path = mutt-colors-solarized +[submodule "local/share/mutt/solarized"] + path = local/share/mutt/solarized url = https://github.com/altercation/mutt-colors-solarized diff --git a/.mailcap b/.mailcap deleted file mode 100644 index e00e02c..0000000 --- a/.mailcap +++ /dev/null @@ -1,2 +0,0 @@ -text/html; "$BROWSER" %s &: test=test -n "$DISPLAY"; needsterminal; -text/html; "$BROWSERCLI" -I %{charse} -T text/html; copiousoutput; diff --git a/.mbsyncrc b/.mbsyncrc deleted file mode 100644 index 649e823..0000000 --- a/.mbsyncrc +++ /dev/null @@ -1,19 +0,0 @@ -IMAPStore cacharle-remote -Host mail.cacharle.xyz -Port 993 -User me -SSLType IMAPS -CertificateFile /etc/ssl/certs/ca-certificates.crt - -MaildirStore cacharle-local -Path ~/Mail/cacharle/ -Inbox ~/Mail/cacharle/INBOX -Subfolders Verbatim - -Channel cacharle -Master :cacharle-remote: -Slave :cacharle-local: -Create Both -Expunge Both -Patterns * -SyncState * diff --git a/.moc/config b/.moc/config deleted file mode 100644 index 37af912..0000000 --- a/.moc/config +++ /dev/null @@ -1,690 +0,0 @@ -# This is a configuration file for the MOC player. It should be named -# 'config' and placed in the ~/.moc directory. As this file can specify -# commands which invoke other applications, MOC will refuse to start if it -# is not owned by either root or the current user, or if it is writable by -# anyone other than its owner. All options are given with their default -# values, and therefore commented. - -# Comments begin with '#'. -# You can use quotes and escape ('\') in parameters. -# -# You can have variable values substituted by enclosing the variable name -# as "${...}". (This only applies to the portion of the option following -# the '='.) Variables are substituted first from the environment then, -# if not found, from the configuration options. (Note that the value of -# a configuration option substituted is that which it has at the time the -# substitution variable is encountered.) If there is a naming conflict -# between an environment and configuration variable, you may be able to -# resolve it by using lowercase as the environment variable matches are -# case-sensitive whereas the configuration variables are not. -# -# You can also use the form "${...:-...}" where the value in the second -# position will be substituted if the variable name given in the first -# position is unset or null. -# -# So, for example: -# -# MusicDir = /music/${USER:-public} -# Fastdir1 = ${MusicDir}/mp3/rock -# Fastdir2 = ${MusicDir}/mp3/electronic -# Fastdir3 = ${MusicDir}/mp3/rap -# Fastdir4 = ${MusicDir}/mp3/etc -# -# Variable names are limited to those accepted by the BASH shell; that -# is, those comprising the upper- and lowercase ASCII characters, digits -# and the underscore. -# -# If you need to use the "${" sequence for any other purpose, write "$${" -# and it will be replaced by "${" and not treated as a substitution. -# -# Some options take lists of strings as their values. The strings are -# separated by colons. Additional strings can be appended to the list -# using "+=" in place of a plain "=" to assign the value. For an example, -# see the XTerms option. -# -# You can override any configuration option when you run MOC using the -# '-O' command line option: -# -# mocp -O AutoNext=no -O messagelingertime=1 -O XTerms+=xxt:xwt -# -# This command line option can be repeated as many times as needed and -# the configuration option name is not case sensitive. (Note that MOC -# does not perform variable substitution on the value of such overridden -# configuration options.) Most option values are set before the -# configuration file is processed (which allows the new values to be -# picked up by substitutions), however list-valued options are overridden -# afterwards (which gives the choice of whether the configured values are -# replaced or added to). - -# Remember that the client and server are separate processes and the -# server will retain the configuration values formed from the environment -# within which it was originally started. - -# Show file titles (title, author, album) instead of file names? -#ReadTags = yes - -# In which directory do you store your music files? If you specify it -# you will be able to jump straight to this directory with the '-m' -# parameter or the 'm' command. This can also point to a playlist. -# -# Example: MusicDir = "/home/joe/music" -# -MusicDir = ~/cacharle-sync/music - -# Start in the music directory by default? If set to 'no', start -# in the current directory by default. A single directory on -# the command line takes precedence. -StartInMusicDir = yes - -# How to sort? FileName is the option's only value for now. -#Sort = FileName - -# Show errors in the streams (for example, broken frames in MP3 files)? -#ShowStreamErrors = no - -# Ignore CRC errors in MP3 files? Most players do that, so the default -# value is 'yes'. -#MP3IgnoreCRCErrors = yes - -# Set playback toggles. -Repeat = no -Shuffle = no -AutoNext = yes - -# Default FormatString: -# -# %n - Track number -# %a - Artist -# %A - Album -# %t - Title -# %(X:TRUE:FALSE) - Ternary expression: if X exists, do TRUE, -# otherwise FALSE. The escape character must -# be doubled (i.e., '\\'). (See zshmisc -# documentation for more information.) -# -FormatString = "%t %A" - -# Input and output buffer sizes (in kilobytes). -#InputBuffer = 512 # Minimum value is 32KB -#OutputBuffer = 512 # Minimum value is 128KB - -# How much to fill the input buffer before playing (in kilobytes)? -# This can't be greater than the value of InputBuffer. While this has -# a positive effect for network streams, it also causes the broadcast -# audio to be delayed. -#Prebuffering = 64 - -# Use this HTTP proxy server for internet streams. If not set, the -# environment variables http_proxy and ALL_PROXY will be used if present. -# -# Format: HTTPProxy = PROXY_NAME:PORT -# -#HTTPProxy = - -# Sound driver - OSS, ALSA, JACK, SNDIO (on OpenBSD) or null (only for -# debugging). You can enter more than one driver as a colon-separated -# list. The first working driver will be used. -#SoundDriver = JACK:ALSA:OSS - -# Jack output settings. -#JackClientName = "moc" -#JackStartServer = no -#JackOutLeft = "system:playback_1" -#JackOutRight = "system:playback_2" - -# OSS output settings. -#OSSDevice = /dev/dsp -#OSSMixerDevice = /dev/mixer -#OSSMixerChannel1 = pcm # 'pcm', 'master' or 'speaker' -#OSSMixerChannel2 = master # 'pcm', 'master' or 'speaker' - -# ALSA output settings. If you need to dump the audio produced by MOC -# to a file for diagnostic purposes, the following setting of 'ALSADevice' -# should do that: -# -# ALSADevice=tee:hw,'/tmp/out.wav',wav -# -#ALSADevice = default -#ALSAMixer1 = PCM -#ALSAMixer2 = Master - -# Under some circumstances on 32-bit systems, audio played continously -# for long periods of time may begin to stutter. Setting this option to -# 'yes' will force MOC to avoid ALSA's dmix resampling and prevent this -# stutter. But it also has other implications: -# -# - You may experience unacceptably high CPU load. -# - ALSA's resampler plug-ins will not be used. -# - The resampling may be of lower quality than ALSA would provide. -# - You may need to try different "ResampleMethod" option settings. -# - The "ForceSampleRate" option may be ineffective. -# - If libsamplerate is not configured, many audios may be unplayable. -# -#ALSAStutterDefeat = no - -# Save software mixer state? -# If enabled, a file 'softmixer' will be created in '~/.moc/' storing the -# mixersetting set when the server is shut down. -# Note that there is a "hidden" 'Amplification' setting in that file. -# Amplification (0-200) is used to scale the mixer setting (0-100). This -# results in a higher signal amplitude but may also produce clipping. -#Softmixer_SaveState = yes - -# Save equalizer state? -# If enabled, a file 'equalizer' will be created in '~/.moc/' storing the -# equalizer settings when the server is shut down. -# Note that there is a "hidden" 'Mixin' setting in that file. -# Mixin (0.0-1.0) is used to determine how much of the original signal is -# used after equalizing. 0 means to only use the equalized sound, while 1 -# effectively disabled the mixer. The default is 0.25. -#Equalizer_SaveState = yes - -# Show files with dot at the beginning? -#ShowHiddenFiles = no - -# Hide file name extensions? -HideFileExtension = yes - -# Show file format in menu? -#ShowFormat = yes - -# Show file time in menu? Possible values: 'yes', 'no' and 'IfAvailable' -# (meaning show the time only when it is already known, which often works -# faster). -#ShowTime = IfAvailable - -# Show time played as a percentage in the time progress bar. -#ShowTimePercent = no - -# Values of the TERM environment variable which are deemed to be managed by -# screen(1). If you are setting a specific terminal using screen(1)'s -# '-T ' option, then you will need to add 'screen.' to this list. -# Note that this is only a partial test; the value of the WINDOW environment -# variable must also be a number (which screen(1) sets). -#ScreenTerms = screen:screen-w:vt100 - -# Values of the TERM environment variable which are deemed to be xterms. If -# you are using MOC within screen(1) under an xterm, then add screen(1)'s -# TERM setting here as well to cause MOC to update the xterm's title. -#XTerms = xterm -#XTerms += xterm-colour:xterm-color -#XTerms += xterm-256colour:xterm-256color -#XTerms += rxvt:rxvt-unicode -#XTerms += rxvt-unicode-256colour:rxvt-unicode-256color -#XTerms += eterm - -# Theme file to use. This can be absolute path or relative to -# /usr/share/moc/themes/ (depends on installation prefix) or -# ~/.moc/themes/ . -# -# Example: Theme = laras_theme -# -Theme = solarized - -# The theme used when running on an xterm. -# -# Example: XTermTheme = transparent-background -# -#XTermTheme = - -# Should MOC try to autoload the default lyrics file for an audio? (The -# default lyrics file is a text file with the same file name as the audio -# file name with any trailing "extension" removed.) -#AutoLoadLyrics = yes - -# MOC directory (where pid file, socket and state files are stored). -# You can use ~ at the beginning. -#MOCDir = ~/.moc - -# Use mmap() to read files. mmap() is much slower on NFS. -#UseMMap = no - -# Use MIME to identify audio files. This can make for slower loading -# of playlists but is more accurate than using "extensions". -#UseMimeMagic = no - -# Assume this encoding for ID3 version 1/1.1 tags (MP3 files). Unlike -# ID3v2, UTF-8 is not used here and MOC can't guess how tags are encoded. -# Another solution is using librcc (see the next option). This option is -# ignored if UseRCC is set to 'yes'. -#ID3v1TagsEncoding = WINDOWS-1250 - -# Use librcc to fix ID3 version 1/1.1 tags encoding. -#UseRCC = yes - -# Use librcc to filenames and directory names encoding. -#UseRCCForFilesystem = yes - -# When this option is set the player assumes that if the encoding of -# ID3v2 is set to ISO-8859-1 then the ID3v1TagsEncoding is actually -# that and applies appropriate conversion. -#EnforceTagsEncoding = no - -# Enable the conversion of filenames from the local encoding to UTF-8. -#FileNamesIconv = no - -# Enable the conversion of the xterm title from UTF-8 to the local encoding. -#NonUTFXterm = no - -# Should MOC precache files to assist gapless playback? -#Precache = yes - -# Remember the playlist after exit? -#SavePlaylist = yes - -# When using more than one client (interface) at a time, do they share -# the playlist? -#SyncPlaylist = yes - -# Choose a keymap file (relative to '~/.moc/' or using an absolute path). -# An annotated example keymap file is included ('keymap.example'). -# -# Example: Keymap = my_keymap -# -Keymap = keymap - -# Use ASCII rather than graphic characters for drawing lines. This -# helps on some terminals. -#ASCIILines = no - -# FastDirs, these allow you to jump directly to a directory, the key -# bindings are in the keymap file. -# -# Examples: Fastdir1 = /mp3/rock -# Fastdir2 = /mp3/electronic -# Fastdir3 = /mp3/rap -# Fastdir4 = /mp3/etc -# -#Fastdir1 = -#Fastdir2 = -#Fastdir3 = -#Fastdir4 = -#Fastdir5 = -#Fastdir6 = -#Fastdir7 = -#Fastdir8 = -#Fastdir9 = -#Fastdir10 = - -# How fast to seek (in number of seconds per keystroke). The first -# option is for normal seek and the second for silent seek. -#SeekTime = 1 -#SilentSeekTime = 5 - -# PreferredDecoders allows you to specify which decoder should be used -# for any given audio format. It is a colon-separated list in which -# each entry is of the general form 'code(decoders)', where 'code' -# identifies the audio format and 'decoders' is a comma-separated list -# of decoders in order of preference. -# -# The audio format identifier may be either a filename extension or a -# MIME media type. If the latter, the format is 'type/subtype' (e.g., -# 'audio/flac'). Because different systems may give different MIME -# media types, any 'x-' prefix of the subtype is ignored both here and -# in the actual file MIME type (so all combinations of 'audio/flac' and -# 'audio/x-flac' match each other). -# -# For Internet streams the matching is done on MIME media type and on -# actual content. For files the matches are made on MIME media type -# (if the 'UseMimeMagic' option is set) and on filename extension. The -# MIME media type of a file is not determined until the first entry for -# MIME is encountered in the list. -# -# The matching is done in the order of appearance in the list with any -# entries added from the command line being matched before those listed -# here. Therefore, if you place all filename extension entries before -# all MIME entries you will speed up MOC's processing of directories -# (which could be significant for remote file systems). -# -# The decoder list may be empty, in which case no decoders will be used -# for files (and files with that audio format ignored) while Internet -# streams will be assessed on the actual content. Any decoder position -# may contain an asterisk, in which case any decoder not otherwise listed -# which can handle the audio format will be used. It is not an error to -# list the same decoder twice, but neither does it make sense to do so. -# -# If you have a mix of audio and non-audio files in your directories, you -# may wish to include entries at top of the list which ignore non-audio -# files by extension. -# -# In summary, the PreferredDecoders option provides fine control over the -# type of matching which is performed (filename extension, MIME media -# type and streamed media content) and which decoder(s) (if any) are used -# based on the option's list entries and their ordering. -# -# Examples: aac(aac,ffmpeg) first try FAAD2 for AACs then FFmpeg -# mp3() ignore MP3 files -# wav(*,sndfile) use sndfile for WAV as a last resort -# ogg(vorbis,*):flac(flac,*) try Xiph decoders first -# ogg():audio/ogg() ignore OGG files, and -# force Internet selection by content -# gz():html() ignore some non-audio files -# -# Any unspecified audio formats default to trying all decoders. -# Any unknown (or misspelt) drivers are ignored. -# All names are case insensitive. -# The default setting reflects the historical situation modified by -# the experience of users. -# -#PreferredDecoders = aac(aac,ffmpeg):m4a(ffmpeg) -#PreferredDecoders += mpc(musepack,*,ffmpeg):mpc8(musepack,*,ffmpeg) -#PreferredDecoders += sid(sidplay2):mus(sidplay2) -#PreferredDecoders += wav(sndfile,*,ffmpeg) -#PreferredDecoders += wv(wavpack,*,ffmpeg) -#PreferredDecoders += audio/aac(aac):audio/aacp(aac):audio/m4a(ffmpeg) -#PreferredDecoders += audio/wav(sndfile,*) - -# The following PreferredDecoders attempt to handle the ambiguity surrounding -# container types such as OGG for files. The first two entries will force -# a local file to the correct decoder (assuming the .ogg file contains Vorbis -# audio), while the MIME media types will cause Internet audio streams to -# be assessed on content (which may be either Vorbis or Speex). -# -#PreferredDecoders += ogg(vorbis,ffmpeg):oga(vorbis,ffmpeg):ogv(ffmpeg) -#PreferredDecoders += opus(ffmpeg) -#PreferredDecoders += spx(speex) -#PreferredDecoders += application/ogg(vorbis):audio/ogg(vorbis) - -# Which resampling method to use. There are a few methods of resampling -# sound supported by libresamplerate. The default is 'Linear') which is -# also the fastest. A better description can be found at: -# -# http://www.mega-nerd.com/libsamplerate/api_misc.html#Converters -# -# but briefly, the following methods are based on bandlimited interpolation -# and are higher quality, but also slower: -# -# SincBestQuality - really slow (I know you probably have an xx GHz -# processor, but it's still not enough to not see -# this in the top output :) The worst case -# Signal-to-Noise Ratio is 97dB. -# SincMediumQuality - much faster. -# SincFastest - the fastest bandlimited interpolation. -# -# And these are lower quality, but much faster methods: -# -# ZeroOrderHold - really poor quality, but it's really fast. -# Linear - a bit better and a bit slower. -# -#ResampleMethod = Linear - -# Always use this sample rate (in Hz) when opening the audio device (and -# resample the sound if necessary). When set to 0 the device is opened -# with the file's rate. -#ForceSampleRate = 0 - -# By default, even if the sound card reports that it can output 24bit samples -# MOC converts 24bit PCM to 16bit. Setting this option to 'yes' allows MOC -# to use 24bit output. (The MP3 decoder, for example, uses this format.) -# This is disabled by default because there were reports that it prevents -# MP3 files from playing on some soundcards. -#Allow24bitOutput = no - -# Use realtime priority for output buffer thread. This will prevent gaps -# while playing even with heavy load. The user who runs MOC must have -# permissions to set such a priority. This could be dangerous, because it -# is possible that a bug in MOC will freeze your computer. -#UseRealtimePriority = no - -# The number of audio files for which MOC will cache tags. When this limit -# is reached, file tags are discarded on a least recently used basis (with -# one second resolution). You can disable the cache by giving it a size of -# zero. Note that if you decrease the cache size below the number of items -# currently in the cache, the number will not decrease immediately (if at -# all). -#TagsCacheSize = 256 - -# Number items in the playlist. -#PlaylistNumbering = yes - -# Main window layouts can be configured. You can change the position and -# size of the menus (directory and playlist). You have three layouts and -# can switch between then using the 'l' key (standard mapping). By default, -# only two layouts are configured. -# -# The format is as follows: -# -# - Each layout is described as a list of menu entries. -# - Each menu entry is of the form: -# -# menu(position_x, position_y, width, height) -# -# where 'menu' is either 'directory' or 'playlist'. -# - The parameters define position and size of the menu. They can -# be absolute numbers (like 10) or a percentage of the screen size -# (like 45%). -# - 'width' and 'height' can have also value of 'FILL' which means -# fill the screen from the menu's position to the border. -# - Menus may overlap. -# -# You must describe at least one menu (default is to fill the whole window). -# There must be at least one layout (Layout1) defined; others can be empty. -# -# Example: Layout1 = playlist(50%,50%,50%,50%) -# Layout2 = "" -# Layout3 = "" -# -# Just one layout, the directory will occupy the whole -# screen, the playlist will have 1/4 of the screen size -# and be positioned at lower right corner. (Note that -# because the playlist will be hidden by the directory -# you will have to use the TAB key to make the playlist -# visible.) -# -# Example: Layout1 = playlist(0,0,100%,10):directory(0,10,100%,FILL) -# -# The screen is split into two parts: playlist at the top -# and the directory menu at the bottom. Playlist will -# occupy 10 lines and the directory menu the rest. -# -#Layout1 = directory(0,0,50%,100%):playlist(50%,0,FILL,100%) -#Layout2 = directory(0,0,100%,100%):playlist(0,0,100%,100%) -#Layout3 = "" - -# When the song changes, should the menu be scrolled so that the currently -# played file is visible? -#FollowPlayedFile = yes - -# What to do if the interface was started and the server is already playing -# something from the playlist? If CanStartInPlaylist is set to 'yes', the -# interface will switch to the playlist. When set to 'no' it will start -# from the last directory. -#CanStartInPlaylist = yes - -# Executing external commands (1 - 10) invoked with key commands (F1 - F10 -# by default). -# -# Some arguments are substituted before executing: -# -# %f - file path -# %i - title made from tags -# %S - start block mark (in seconds) -# %E - end block mark (in seconds) -# -# Data from tags can also be substituted: -# -# %t - title -# %a - album -# %r - artist -# %n - track -# %m - time of the file (in seconds) -# -# The parameters above apply to the currently selected file. If you change -# them to capital letters, they are taken from the file currently playing. -# -# Programs are run using execv(), not a shell, so you can't do things like -# redirecting the output to a file. The command string is split using blank -# characters as separators; the first element is the command to be executed -# and the rest are its parameters, so if you use "echo Playing: %I" we run -# program 'echo' (from $PATH) with 2 parameters: the string 'Playing:' and -# the title of the file currently playing. Even if the title contains -# spaces, it's still one parameter and it's safe if it contains `rm -rf /`. -# -# Examples: ExecCommand1 = "cp %f /mnt/usb_drive" -# ExecCommand2 = "/home/joe/now_playing %I" -# -#ExecCommand1 = -#ExecCommand2 = -#ExecCommand3 = -#ExecCommand4 = -#ExecCommand5 = -#ExecCommand6 = -#ExecCommand7 = -#ExecCommand8 = -#ExecCommand9 = -#ExecCommand10 = - -# Display the cursor in the line with the selected file. Some braille -# readers (the Handy Tech modular series ZMU 737, for example) use the -# cursor to focus and can make use of it to present the file line even -# when other fields are changing. -#UseCursorSelection = no - -# Set the terminal title when running under xterm. -#SetXtermTitle = yes - -# Set the terminal title when running under screen(1). If MOC can detect -# that it is running under screen(1), then it will set an appropriate -# title (see description of ScreenTerms above). However, if multiple -# levels of screen management are involved, detection might fail and this -# could cause a screen upset. In that situation you can use this option -# to force screen titles off. -#SetScreenTitle = yes - -# Display full paths instead of just file names in the playlist. -#PlaylistFullPaths = yes - -# The following setting describes how block markers are displayed in -# the play time progress bar. Its value is a string of exactly three -# characters. The first character is displayed in a position which -# corresponds to the time marked as the start of a block and the last -# character to the time marked as the end of the block. The middle -# character is displayed instead if both the start and the end of the block -# would fall in the same position (within the resolution of the interface). -# You can turn off the displaying of these block marker positions by using -# three space characters. -#BlockDecorators = "`\"'" - -# How long (in seconds) to leave a message displayed on the screen. -# Setting this to a high value allows you to scroll through the messages -# using the 'hide_message' key. Setting it to zero means you'll have to -# be quick to see any message at all. Any new messages will be queued up -# and displayed after the current message's linger time expires. -MessageLingerTime = 0 - -# Does MOC display a prefix on delayed messages indicating -# the number of queued messages still to be displayed? -#PrefixQueuedMessages = yes - -# String to append to the queued message count if any -# error messages are still waiting to be displayed. -#ErrorMessagesQueued = "!" - -# Self-describing ModPlug options (with 'yes' or 'no' values). -#ModPlug_Oversampling = yes -#ModPlug_NoiseReduction = yes -#ModPlug_Reverb = no -#ModPlug_MegaBass = no -#ModPlug_Surround = no - -# ModPlug resampling mode. -# Valid values are: -# -# FIR - 8 tap fir filter (extremely high quality) -# SPLINE - Cubic spline interpolation (high quality) -# LINEAR - Linear interpolation (fast, good quality) -# NEAREST - No interpolation (very fast, extremely bad sound quality) -# -#ModPlug_ResamplingMode = FIR - -# Other self-describing ModPlug audio characteristic options. -# (Note that the 32 bit sample size seems to be buggy.) -#ModPlug_Channels = 2 # 1 or 2 channels -#ModPlug_Bits = 16 # 8, 16 or 32 bits -#ModPlug_Frequency = 44100 # 11025, 22050, 44100 or 48000 Hz -#ModPlug_ReverbDepth = 0 # 0 (quiet) to 100 (loud) -#ModPlug_ReverbDelay = 0 # Delay in ms (usually 40-200ms) -#ModPlug_BassAmount = 0 # 0 (quiet) to 100 (loud). -#ModPlug_BassRange = 10 # Cutoff in Hz (10-100). -#ModPlug_SurroundDepth = 0 # Surround level 0(quiet)-100(heavy). -#ModPlug_SurroundDelay = 0 # Surround delay in ms, usually 5-40ms. -#ModPlug_LoopCount = 0 # 0 (never), n (times) or -1 (forever) - -# Self-describing TiMidity audio characteristic options. -#TiMidity_Rate = 44100 # Between 8000 and 48000 -#TiMidity_Bits = 16 # 8 or 16 -#TiMidity_Channels = 2 # 1 or 2 -#TiMidity_Volume = 100 # 0 to 800 - -# You can setup a TiMidity-Config-File here. -# Leave it unset to use library defaults (/etc/timidity.cfg mostly). -# Setting it to 'yes' also uses the library defaults. -# Set it to 'no' if you don't have any configuration file. -# Otherwise set it to the name of a specific file. -#TiMidity_Config = - -# Self-describing SidPlay2 audio characteristic options. -#SidPlay2_DefaultSongLength = 180 # If not in database (in seconds) -#SidPlay2_MinimumSongLength = 0 # Play at least n (in seconds) -#SidPlay2_Frequency = 44100 # 4000 to 48000 -#SidPlay2_Bits = 16 # 8 or 16 -#SidPlay2_Optimisation = 0 # 0 (worst quality) to 2 (best quality) - -# Set path to a HVSC-compatible database (if not set, database is disabled). -#SidPlay2_Database = - -# SidPlay2 playback Mode: -# -# "M": Mono (best for many SIDs) -# "S": Stereo -# "L"/"R": Left / Right -# -#SidPlay2_PlayMode = "M" - -# Use start-song information from SID ('yes') or start at first song -# ('no'). Songs before the start-song won't be played. (Note that this -# option previously took the values 1 and 0; these are now deprecated -# in favour of 'yes' and 'no'.) -#SidPlay2_StartAtStart = yes - -# Play sub-tunes. (Note that this option previously took the values 1 -# and 0; these are now deprecated in favour of 'yes' and 'no'.) -#SidPlay2_PlaySubTunes = yes - -# Run the OnSongChange command when a new song starts playing. -# Specify the full path (i.e. no leading '~') of an executable to run. -# Arguments will be passed, and you can use the following escapes: -# -# %a artist -# %r album -# %f filename -# %t title -# %n track -# %d file duration in XX:YY form -# %D file duration, number of seconds -# -# No pipes/redirects can be used directly, but writing a shell script -# can do the job. -# -# Example: OnSongChange = "/home/jack/.moc/myscript %a %r" -# -#OnSongChange = - -# If RepeatSongChange is 'yes' then MOC will execute the command every time -# a song starts playing regardless of whether or not it is just repeating. -# Otherwise the command will only be executed when a different song is -# started. -#RepeatSongChange = no - -# Run the OnStop command (full path, no arguments) when MOC changes state -# to stopped (i.e., when user stopped playing or changes a song). -#OnStop = "/home/jack/.moc/myscript_on_stop" - -# This option determines which song to play after finishing all the songs -# in the queue. Setting this to 'yes' causes MOC to play the song which -# follows the song being played before queue playing started. If set to -# 'no', MOC will play the song following the last song in the queue if it -# is in the playlist. The default is 'yes' because this is the way other -# players usually behave. (Note that this option previously took the -# values 1 and 0; these are now deprecated in favour of 'yes' and 'no'.) -#QueueNextSongReturn = yes diff --git a/.moc/keymap b/.moc/keymap deleted file mode 100644 index 50f854b..0000000 --- a/.moc/keymap +++ /dev/null @@ -1,192 +0,0 @@ -# This is the example keymap file for MOC. You can define your own key -# bindings for MOC commands by creating your own keymap file and setting -# the 'Keymap' option in ~/.moc/config. -# -# The format of this file is: -# -# - Lines beginning with # are comments. -# - Blank lines are ignored. -# - Every other line is expected to be in one of the formats: -# -# COMMAND = [KEY ...] -# COMMAND += KEY ... -# -# The KEY can be: -# -# - Just a char, like i, L, ", * -# - CTRL-KEY sequence: ^k (CTRL-k), ^4 -# - ALT-KEY (meta) sequence: M-j (ALT-j), M-/ -# - Special keys: DOWN, UP -# LEFT, RIGHT -# HOME, END -# BACKSPACE -# INS, DEL -# ENTER -# PAGE_UP, PAGE_DOWN -# SPACE, TAB -# KEYPAD_CENTER -# ESCAPE -# F1 - F12 -# -# Note that the use of a digit as a KEY is deprecated. -# -# Maximum number of KEYs for one COMMAND is 5. -# -# Omitting the KEY for a COMMAND will unbind all its default keys. They -# will also be automatically unbound when you bind new KEYs to it. Individual -# default KEYs will be automatically unbound when they are explicitly bound -# to some other COMMAND. -# -# Using the '+=' form will cause the KEYs to be appended to any existing -# (default or explicit) bindings for the COMMAND. Appending an existing -# default binding for the same COMMAND will cause MOC to think of that KEY -# as then being explicitly bound. -# -# Only one binding for any given COMMAND can appear in the keymap file. One -# exception to this is that if the default keys for a COMMAND are explicitly -# unbound then a subsequent binding may appear for it. A second exception -# is that multiple appending bindings may appear. -# -# Meta-key detection is sensitive to the ESCDELAY environment variable (see -# the manpage for ncurses(3)). In its absence, MOC resets the default -# delay to 25ms. If you need to emulate meta-key sequences using the ESC -# key, then you may need to set the value of ESCDELAY back to its ncurses -# default of 1000ms (but doing so will make the response to the ESC key -# sluggish). -# -# If MOC's keypresses are being filtered through some other program (in a -# GUI environment, for example) which also does meta-key detection, then -# MOC is at the mercy of the timings with which that program presents them. -# -# Default key configuration for MOC (and a list of all available commands): - -# MOC control keys: -quit_client = q -quit = Q - -# EDITED -menu_down = j -menu_up = k - -# Menu and interface control keys: -go = ENTER -#menu_down = DOWN -#menu_up = UP -menu_page_down = PAGE_DOWN -menu_page_up = PAGE_UP -menu_first_item = HOME -menu_last_item = END -search_menu = g / -toggle_read_tags = f -toggle_show_time = ^t -toggle_show_format = ^f -toggle_menu = TAB -toggle_layout = l -toggle_hidden_files = H -next_search = ^g ^n -show_lyrics = L -theme_menu = T -help = h ? -refresh = ^r -reload = r - -# Audio playing and positioning keys: -seek_forward = RIGHT -seek_backward = LEFT -seek_forward_fast = ] -seek_backward_fast = [ -pause = p SPACE -stop = s -next = n -previous = b -toggle_shuffle = S -toggle_repeat = R -toggle_auto_next = X -toggle_mixer = x -go_url = o - -# Volume control keys: -# volume_down_1 = < -# volume_up_1 = > -# volume_down_5 = , -# volume_up_5 = . -# volume_10 = M-1 -# volume_20 = M-2 -# volume_30 = M-3 -# volume_40 = M-4 -# volume_50 = M-5 -# volume_60 = M-6 -# volume_70 = M-7 -# volume_80 = M-8 -# volume_90 = M-9 - -# Directory navigation keys: defaults are Shift-number -# (i.e., 'shift 1' -> '!' -> 'Fastdir1'). -go_to_a_directory = i -go_to_music_directory = m -go_to_fast_dir1 = ! -go_to_fast_dir2 = @ -go_to_fast_dir3 = # -go_to_fast_dir4 = $ -go_to_fast_dir5 = % -go_to_fast_dir6 = ^ -go_to_fast_dir7 = & -go_to_fast_dir8 = * -go_to_fast_dir9 = ( -go_to_fast_dir10 = ) -go_to_playing_file = G -go_up = U - -# Playlist specific keys: -add_file = a -add_directory = A -plist_add_stream = ^u -delete_from_playlist = d -playlist_full_paths = P -#plist_move_up = u -#plist_move_down = j -save_playlist = V -remove_dead_entries = Y -clear_playlist = C - -# Queue manipulation keys: -enqueue_file = z -clear_queue = Z - -# User interaction control: -history_up = UP -history_down = DOWN -delete_to_start = ^u -delete_to_end = ^k -cancel = ^x ESCAPE -hide_message = M - -# Softmixer specific keys: -# toggle_softmixer = w -# toggle_make_mono = J - -# Equalizer specific keys: -# toggle_equalizer = E -# equalizer_refresh = e -#equalizer_prev = K -#equalizer_next = k - -# External commands: -# mark_start = ' -# mark_end = " -# exec_command1 = F1 -# exec_command2 = F2 -# exec_command3 = F3 -# exec_command4 = F4 -# exec_command5 = F5 -# exec_command6 = F6 -# exec_command7 = F7 -# exec_command8 = F8 -# exec_command9 = F9 -# exec_command10 = F10 - -# The following commands are available but not assigned to any keys by -# default: -# -# toggle_percent Switch on/off play progress bar time percentage -# diff --git a/.moc/themes/solarized b/.moc/themes/solarized deleted file mode 100644 index 0e0244b..0000000 --- a/.moc/themes/solarized +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################## -# -# based on solarized -# best viewed on shaded or black terminal -# from: https://github.com/wimstefan/mocp-themes/blob/master/solarized -# -############################################################################## - -# edited -frame = blue default - -background = default default -window_title = green default -directory = red default -selected_directory = blue default -playlist = blue default -selected_playlist = magenta default -file = green default -selected_file = cyan default -marked_file = green default bold -marked_selected_file = cyan default bold -info = cyan default -selected_info = cyan default -marked_info = green default bold -marked_selected_info = cyan default bold -status = magenta default -title = green default -state = magenta default -current_time = magenta default -time_left = cyan default -total_time = cyan default -time_total_frames = magenta default -sound_parameters = cyan default -legend = magenta default -disabled = black default -enabled = yellow default -empty_mixer_bar = green default -filled_mixer_bar = black green -empty_time_bar = green default -filled_time_bar = black green -entry = yellow default -entry_title = red default -error = red default -message = yellow default -plist_time = magenta default diff --git a/.muttrc b/.muttrc deleted file mode 100644 index b4b02a8..0000000 --- a/.muttrc +++ /dev/null @@ -1,57 +0,0 @@ -############################################################################### -# muttrc -############################################################################### - -set from = 'me@cacharle.xyz' # address in new mail -set realname = 'Charles Cabergs' # name in new mail - -set smtp_url = 'smtp://me@mail.cacharle.xyz:587' # where to send -set folder = 'imaps://me@mail.cacharle.xyz:993' # mails folder -# set folder = "~/Mail/cacharle" - -# view html with terminal browser in .mailcap -auto_view text/html -alternative_order text/plain text/enriched text/html - -set spoolfile = '+INBOX' -set record = "+Sent" -set trash = "+Trash" -set postponed = "+Drafts" - -mailboxes =INBOX =Sent =Send =Trash =Drafts - -set editor = 'vim' -set sort = 'reverse-date' # newest at the top - -set date_format = "%d/%m %I:%M" -set index_format = "%2C %Z %d %-15.15F %s (%-4.4c)" # one line format in home - -# from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc -set rfc2047_parameters = yes # decode non standard stuff -set sleep_time = 0 # don't pause -set markers = no # no '+' on line wrap -set mark_old = no # don't mark mail as read if not seen -set mime_forward = yes # attachements forwarded -set wait_key = no # no press to continue... -set forward_format = "Fwd: %s" # forward subject -set forward_quote # include previous message in forward - -set sidebar_visible = yes -set sidebar_width = 20 -set sidebar_short_path = yes -set sidebar_next_new_wrap = yes - -set mail_check_stats -set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?' -set ssl_force_tls = yes -set send_charset = 'utf-8' - -set header_cache = "~/.mutt/cache/headers" -set message_cachedir = "~/.mutt/cache/bodies" -set certificate_file = "~/.mutt/certificates" - -# solarized color scheme -source "$DOTDIR/mutt-colors-solarized/mutt-colors-solarized-dark-16.muttrc" - -# password -source "gpg -d $HOME/.config/mutt/passwd.muttrc.gpg 2> /dev/null |" diff --git a/.nanorc b/.nanorc deleted file mode 100644 index 38059df..0000000 --- a/.nanorc +++ /dev/null @@ -1 +0,0 @@ -include /usr/share/nano/c.nanorc diff --git a/.newsboat/config b/.newsboat/config deleted file mode 100644 index f3ef9e1..0000000 --- a/.newsboat/config +++ /dev/null @@ -1,33 +0,0 @@ -# auto-reload yes # reload feeds at startup -reload-threads 64 -max-items 100 -# pager less - -datetime-format "%d %b %Y" -# articlelist-format "%4i %f - -bind-key j down -bind-key k up -bind-key g home -bind-key G end - -# solarized color-scheme -color background default default -color listnormal default default -color listnormal_unread default default -color listfocus black cyan -color listfocus_unread black cyan -color info default black -color article default default - -highlight article "^(Title):.*$" blue default -highlight article "https?://[^ ]+" red default -highlight article "\\[image\\ [0-9]+\\]" green default -highlight all "---.*" yellow default -highlight all "===.*" yellow default -highlight feedlist ".*(0/0))" black default - -macro v set browser "mpv --ytdl-format=best %u"; open-in-browser; set browser qutebrowser - -notify-always yes -notify-program /usr/bin/notify-send diff --git a/.pluggins.vim b/.pluggins.vim deleted file mode 100644 index c60ab84..0000000 --- a/.pluggins.vim +++ /dev/null @@ -1,47 +0,0 @@ -"""""""""""""""" -" vim pluggins " -"""""""""""""""" - -call plug#begin() - Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc - Plug 'tpope/vim-eunuch' " basic unix command in vim - Plug 'tomtom/tcomment_vim' " mininal commenter - Plug 'itchyny/lightline.vim' " minimal status bar - Plug 'HappyTramp/vim-syntax-extra' " syntax highlight of C operators - Plug 'romainl/vim-cool' " disable highlight after search - Plug 'tpope/vim-fugitive' " git wrapper - Plug 'junegunn/vim-easy-align' " align - Plug 'ludovicchabant/vim-gutentags' " generate tags in project root - Plug 'junegunn/goyo.vim' " generate tags in project root - - " Plug 'easymotion/vim-easymotion' " TODO very intresting - " Plug 'mhinz/vim-rfc' " RFC download/syntax/tags - Plug 'skammer/vim-css-color' - - - " markdown preview in browser - " Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} - - " syntax highlight for languages that aren't supported by default - Plug 'tikhomirov/vim-glsl' " glsl - Plug 'cespare/vim-toml' " toml - Plug 'ziglang/zig.vim' " zig - Plug 'nikvdp/ejs-syntax' " ejs - - " s19 at home - Plug 'HappyTramp/vim-42header' " 42 header - - " themes - " Plug 'joshdick/onedark.vim' " onedark - Plug 'dracula/vim', {'as': 'vim'} " dracula - Plug 'altercation/vim-colors-solarized' " solarized - - " intresting but not used - " Plug 'sheerun/vim-polyglot' " better syntax highlight - " Plug 'unblevable/quick-scope' " highlight first char to jump to word - " Plug 'jez/vim-superman' " man pages in vim (too slow) - Plug 'vim-scripts/rfc-syntax' " rfc - " Plug 'tacahiroy/ctrlp-funky' " extension to search function - Plug '/home/charles/git/c_formatter_42.vim' - Plug 'cacharle/doxy42.vim' -call plug#end() diff --git a/.tmux.conf b/.tmux.conf deleted file mode 100644 index fc2fcb2..0000000 --- a/.tmux.conf +++ /dev/null @@ -1,13 +0,0 @@ -unbind C-b -set -g prefix C-f -bind C-f send-prefix - -set -g default-terminal "screen.xterm-256color" -set -g mouse on -setw -g mode-keys vi - -unbind l -bind k select-pane -U -bind j select-pane -D -bind l select-pane -R -bind h select-pane -L diff --git a/.urlview b/.urlview deleted file mode 100644 index f69970a..0000000 --- a/.urlview +++ /dev/null @@ -1 +0,0 @@ -COMMAND $BROWSER %s diff --git a/.vimrc b/.vimrc deleted file mode 100644 index fe017a1..0000000 --- a/.vimrc +++ /dev/null @@ -1,308 +0,0 @@ -"""""""""" -" vimrc " -"""""""""" - -" load pluggins {{{ -if exists("$DOTDIR") - source $DOTDIR/.pluggins.vim -else - source .pluggins.vim -endif -" }}} - -""""""""""" -" options " -""""""""""" - -" common {{{ -let mapleader = ' ' " set leader key to space -let maplocalleader = '-' " set file local leader key to backslash -set nocompatible " not compatible with vi -set number " line number -" set relativenumber " line number relative to cursor -set numberwidth=1 " line numbers gutter autowidth -set cursorline " highlight current line -set noshowmatch " dont jump to pair bracket -set autoread " reload files when changes happen outside vim -set autowrite " auto write buf on certain events -set hidden " keep change in buffer when quitting window -set noswapfile " disable swap files -set scrolloff=2 " line padding when scrolling -set textwidth=0 " when line wrap occurs -set wrapmargin=0 " disable auto line wrapping -set encoding=utf-8 " utf-8 encoding -set formatoptions-=t " do not auto break line > 89 character -filetype plugin indent on " allow to add specific rules for certain type of file -" set mouse=a " mouse scrolling (heretic) -" }}} - -" browse list with tab {{{ -set wildmode=longest,list,full -set wildmenu " tab to cycle through completion options -set path+=** " recursive :find -"}}} - -" intuitif split opening {{{ -set splitbelow -set splitright -set fcs+=vert:│ " split separator -" }}} - -" tab {{{ -set expandtab " tab to space -set tabstop=4 " tab size -set shiftwidth=4 -set smarttab -set autoindent -set smartindent -" }}} - -" file search {{{ -set ignorecase " case insensitive -set smartcase -set hlsearch " match highlight -set incsearch -" }}} - -" status {{{ -set laststatus=2 " always a statusline (all window) -set showcmd " show current partial command in the bottom right -set noshowmode " dont show current mode (i.e --INSERT--) -" }}} - -" fold {{{ -set foldmethod=indent " create fold based on the text indent -set nofoldenable " not folded by default -" }}} - -""""""""""""""" -" colorscheme " -""""""""""""""" - -" one {{{ -" let g:onedark_terminal_italics=1 -" colorscheme onedark -" }}} -" dracula {{{ -" let g:dracula_bold = 1 -" let g:dracula_italic = 1 -" let g:dracula_colorterm = 0 -" colorscheme dracula -" }}} -" solarized {{{ -set t_Co=16 -let g:solarized_termcolors=16 -let g:solarized_visibility='low' " visibility of invisible chars with set list -set background=dark -colorscheme solarized -" }}} -" lightline {{{ -let g:lightline = {} -" let g:lightline.colorscheme = 'solarized' " lightline theme to solarized -" let g:lightline.colorscheme = 'jellybeans' " lightline theme to onedark -let g:lightline = { - \ 'colorscheme': 'solarized', - \ 'active': { - \ 'left': [ [ 'mode', 'paste' ], - \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] - \ }, - \ 'component_function': { - \ 'gitbranch': 'FugitiveHead' - \ }, - \ } -" }}} - -"""""""""""" -" mappings " -"""""""""""" - -" split navigation {{{ -nnoremap -nnoremap -nnoremap -nnoremap -" nnoremap -" nnoremap -" nnoremap -" nnoremap -nnoremap s= = -" }}} - -" common {{{ -" 'Y' yank to the end of the line -noremap Y y$ -" solves annoying delay went exiting insert mode -inoremap -" kj to exit insert mode -inoremap kj -" remove visual mode keybinding -noremap Q -" remove command line window keybinding -noremap q: -" search with very magic -nnoremap / /\v -nnoremap ? ?\v -" move line up and down -nnoremap _ ddkP -nnoremap + ddp -" long move up/down -nnoremap ( 10k -nnoremap ) 10j -" tag nagigation -nnoremap ] -nnoremap t -" common change until -nnoremap cu ct_ -nnoremap cp ct) -nnoremap c, ct, -" }}} - -" buffer navigation {{{ -nnoremap bn :bn -nnoremap bp :bp -nnoremap :b# -nnoremap bl :ls -" }}} - -" vimrc {{{ -nnoremap rc :vsplit $DOTDIR/.vimrc -nnoremap sc :source $MYVIMRC -" }}} - -" c {{{ -" create c function body from prototype -nnoremap gcf A{}j - -" initialise a school header file -function PutHeaderBoilerPlate() - let l:filename = join(split(toupper(expand('%:t')), '\.'), "_") - " echom l:filename - call append(12, "#ifndef " . l:filename) - call append(13, "# define " . l:filename) - call append(15, "#endif") -endfunction -nnoremap gch :Stdheader:call PutHeaderBoilerPlate() - -" put semicolon at the end of line -nnoremap ; mqA;`q -" doxygen format comments -autocmd Filetype c setlocal comments=s:/**,m:**,e:*/,s:/*,m:**,e:*/ -autocmd Filetype cpp setlocal comments=s:/**,m:**,e:*/,s:/*,m:**,e:*/ -" }}} - -" cpp {{{ -" Put Coplien Form boilerplate class -function PutCoplienFormFunc(name) - let l:default_constructor = a:name . "();\n" - let l:copy_constructor = a:name . "(const " . a:name . "& other);\n" - let l:copy_operator = a:name . "& operator=(const " . a:name . "& other);\n" - let l:destructor = "~" . a:name . "();\n" - - execute "normal iclass " . a:name . "\n{\npublic:\n" . l:default_constructor . l:copy_constructor . l:copy_operator . l:destructor . "\nprivate:\n};\n" - execute "normal <2{" -endfunction -" Put Coplien Form boilerplate according to filename -command! PutCoplienFormFile call PutCoplienFormFunc(split(expand('%:t'), '\.')[0]) -command! -nargs=1 PutCoplienForm call PutCoplienFormFunc("") -" }}} - -" quickfix window toggle {{{ -nnoremap q :call QuickfixToggle() -nnoremap n :cnext -nnoremap p :cprevious -let g:quickfix_is_open = 0 -function! QuickfixToggle() - if g:quickfix_is_open - cclose - let g:quickfix_is_open = 0 - else - copen - let g:quickfix_is_open = 1 - endif -endfunction -" }}} - -function! CountScopeLines() - normal! mq - execute '/^}' - let l:end_brace = line('.') - execute '?^{' - let l:start_brace = line('.') - normal! k - let l:scope_len = l:end_brace - l:start_brace - 1 - let l:scope_name = substitute(getline('.'), '\t', ' ', 'g') - echom l:scope_len . ' lines in |' . l:scope_name . '|' - normal! `q -endfunction -command! CountScopeLines call CountScopeLines() - -" make {{{ -nnoremap m :make all -" }}} - -" hook {{{ -" remove trailing white space on save -autocmd BufWritePre * %s/\s\+$//e -" dirty hack to disable this feature on markdown (autocmd! wouldn't work) -autocmd BufReadPre *.md autocmd! BufWritePre -" }}} - -" filetype {{{ -" real tab in c file for school projects -let g:c_syntax_for_h = 1 " filetype=c in header files instead of filetype=cpp -autocmd Filetype c setlocal noexpandtab -" std::cout << ... << std::endl; shortcut -autocmd Filetype cpp nnoremap cout istd::cout << << std::endl;2Fp :CtrlPTag -" }}} - -" quick-scope {{{ -" let g:qs_highlight_on_keys = ['f', 'F', 't', 'T'] -" }}} - -" man-plugin {{{ -" runtime! ftplugin/man.vim -" let g:ft_man_open_mode = 'vert' " open in a vertical split -" let g:ft_man_no_sect_fallback = 2 " if page specified fallback to page 2 (syscall pages) -" autocmd Filetype man unmap q: hmmmm?? -" }}} - -" ctrlp-funky {{{ -" let g:ctrlp_funky_syntax_highlight = 1 -" nnoremap :CtrlPFunky -" }}} - -" eazy-align {{{ -xmap ga (EasyAlign) -nmap ga (EasyAlign) -" }}} - -vnoremap c y:call system("xclip -selection clipboard", getreg("\"")) -nnoremap v :call setreg("\"", system("xclip -selection clipboard -o"))p - -let g:c_formatter_42_format_on_save = 0 - -let g:gutentags_ctags_exclude = ['doc/*', 'Makefile'] -" let g:gutentags_ctags_exclude_wildignore = 1 - -let g:goyo_height = 90 diff --git a/.xinitrc b/.xinitrc deleted file mode 100755 index 860fed2..0000000 --- a/.xinitrc +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env sh - -# xinput disable 'ETPS/2 Elantech Touchpad' & - -echo 'Starting redshift' -redshift -c $HOME/.config/redshift.conf & -echo 'Starting dunst' -dunst & -xset r rate 200 50 - -case "$(cat /etc/hostname)" in - cacharle-main) - xrandr --output DVI-0 --auto --left-of DVI-1 \ - --output DVI-1 --mode 1920x1080 --primary --left-of HDMI-0 \ - --output HDMI-0 --mode 1920x1080 - ;; - - charles-laptop) - xrandr | grep 'VGA1.*connected' && - xrandr --output LVDS1 --primary --left-of VGA1 \ - --output VGA1 --mode 1280x1024 - ;; -esac - -exec xmonad diff --git a/.zprofile b/.zprofile deleted file mode 100755 index 16d3e16..0000000 --- a/.zprofile +++ /dev/null @@ -1,5 +0,0 @@ -if [[ "$(tty)" = "/dev/tty1" ]]; then - startx - # xset r rate 200 40 - poweroff -fi diff --git a/.zsh_aliases b/.zsh_aliases deleted file mode 100644 index 790692e..0000000 --- a/.zsh_aliases +++ /dev/null @@ -1,149 +0,0 @@ -############### -# zsh aliases # -############### - -# color -alias grep='grep --color=auto' -alias tree='tree -C' -alias pacman='pacman --color=auto' -alias yay='yay --color=auto' -alias valgrindc='colour-valgrind' - -# common commands -alias less='less -N' # enable line number -alias v='vim' -# alias vim='nvim' -# alias mkdir='mkdir -p' -alias gdb='gdb -q' # disable long intro message -alias sudo='sudo ' # enable color (the search for aliases continues) -alias doas='doas ' # same for doas -alias info='info --vi-keys' - -# ls -alias ls='ls --color=auto -F' -alias ll="ls -lh" -alias la="ls -a" -alias lla="ls -alh" -alias lss="ls -Ssh" - -# tree -alias tree='tree -FCA' -alias t='tree' -alias ta='tree -a' -alias t1='tree -L 1' -alias t2='tree -L 2' -alias t3='tree -L 3' -alias ti="tree --matchdirs -I __pycache__ -I node_modules -I '*.o'" - -# man -alias ma="man" -alias ma1="man 1" -alias ma2="man 2" -alias ma3="man 3" - -# make -alias m='make' -alias mre='make re' -alias mclean='make clean' - -# git -alias ga='git add' -alias gaa='git add --all' -alias gau='git add --update' -alias gc='git commit' -alias gc!='git commit --amend' -alias gcmsg='git commit --message' -alias gd='git diff' -alias gds='git diff --staged' -alias gdt='git diff --stat' -alias gl='git pull' -alias glg='git log --abbrev-commit --stat' -alias glgg='git log --abbrev-commit --graph' -alias glgo='git log --oneline --no-decorate' -alias gp='git push' -alias gcl='git clone --recurse-submodules' -alias gst='git status' -alias gs='git status' -alias gss='git status --short' -alias gco='git checkout' -alias gsta='git stash push' -alias gstp='git stash pop' -alias grv="git remote -v" -alias gra="git remote add" -gpa() { - branch="$1" - [ -z "$branch" ] && branch=$(git branch | grep '^\* .*$' | cut -d ' ' -f 2) - git remote | xargs -I{} git push {} "$branch" -} -gpaf() { - branch="$1" - [ -z "$1" ] && branch=master - git remote | xargs -I{} git push -f {} "$branch" -} - -# lpass (lastpass-cli) -alias lpassp='lpass show --password --clip' # put password in clipboard - -# helper to switch between dual and single monitor setup -alias dual='xrandr --output LVDS1 --primary --left-of VGA1 --output VGA1 --mode 1280x1024' -alias single='xrandr --output VGA1 --off' - - -# edit config files -alias zshrc="vim $DOTDIR/.zshrc && source $DOTDIR/.zshrc" -alias zshaliasrc="vim $DOTDIR/.zsh_aliases && source $DOTDIR/.zshrc" -alias vimrc="vim $DOTDIR/.vimrc" -alias vimplugrc="vim $DOTDIR/.pluggins.vim" -alias xmonadrc="vim $DOTDIR/xmonad.hs" -alias muttrc="vim $DOTDIR/.muttrc" - -# other -#alias date="date -R" - -# parent directory jump -alias ..='cd ..' -alias ...='cd ../..' -alias ....='cd ../../..' - -alias norminette='ruby ~/git/norminette/norminette.rb' -alias norm='norminette' - -getrfc() { - curl "https://ietf.org/rfc/rfc$1.txt" > "$HOME/rfc/rfc$1.txt" -} - -# bluetooth -alias bt='bluetoothctl' -alias bton='echo power on | bluetoothctl' -alias btoff='echo power off | bluetoothctl' - -# pdf selector -# alias pdf-open="zathura \$(echo $HOME/Documents/*.pdf | tr ' ' '\\n' | dmenu)" - -alias cagob='RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo build' -alias cagor='RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo run' - -# wifi -wificonnect() { - nmcli device wifi connect $1 password $2 -} - -# alias mutt='neomutt' - -alias ytdl='youtube-dl --output "%(title)s.%(ext)s"' -alias ytdlp='youtube-dl --audio-format mp3 -i --output "%(playlist_index)s-%(title)s.%(ext)s"' -alias ytdla='youtube-dl --audio-format mp3 -i -x -f bestaudio/best --output "%(playlist_index)s-%(title)s.%(ext)s"' - -alias qmvdest='qmv --format=do' - -alias xclip='xclip -selection clipboard' - -pacman-url() { - pacman -Si "$1" | grep URL | tr -s ' ' | cut -d ' ' -f 3 -} - -grep-kill() { - ps aux | grep "$1" | tr -s ' ' | cut -d ' ' -f 2 | xargs kill -} - -alias filter-valgrind="sed -e 's/==[0-9]*==/==/' -e 's/0x[0-9A-F]*//'" diff --git a/.zshrc b/.zshrc deleted file mode 100644 index 8a1ee8c..0000000 --- a/.zshrc +++ /dev/null @@ -1,120 +0,0 @@ -############### -# zshrc # -############### - - -[ -z $DOTDIR ] && export DOTDIR=$HOME/git/dotfiles # FIXME have to change path manually if install elsewhere - -# load aliases -source $DOTDIR/.zsh_aliases - -# prompt -case `tty` in - /dev/tty[1-9]) - # %~ path ('~' if $HOME) - # %B/%b start/stop bold - # %B/%b start/stop color - NEWLINE=$'\n' - export PROMPT="${NEWLINE}%B%F{blue}%~%f${NEWLINE}%F{red}> %f%b" - ;; - *) - # pure prompt - export FPATH="$FPATH:$HOME/.zsh/pure" - ZSH_THEME="pure" - autoload -U promptinit - promptinit - prompt pure - ;; -esac - -# auto complete -autoload -U compinit -zstyle ':completion:*' menu select # menu like -zstyle ':completion:*' matcher-list '' \ - 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=*' 'r:|=* l:|=* r:|=*' # case insensitive -zmodload zsh/complist -compinit -# _comp_options+=(globdots) - -# vim keybindings in tab completion menu (https://www.youtube.com/watch?v=eLEo4OQ-cuQ) -bindkey -M menuselect 'h' vi-backward-char -bindkey -M menuselect 'k' vi-up-line-or-history -bindkey -M menuselect 'l' vi-forward-char -bindkey -M menuselect 'j' vi-down-line-or-history -bindkey -v '^?' backward-delete-char - -# vim keybindings in prompt -bindkey -v -export KEYTIMEOUT=1 - -setopt auto_cd # cd without `cd` command -# setopt pushd_ignore_dups -setopt list_rows_first # cycle through row first in menu -# setopt extendedglob - -# executed when changing directory -function chpwd() { - content=$(ls | wc -l) - ([ "$content" -lt 20 ] && ls -l) || - echo "$(pwd) contains $content entries" - [ "$(stat -c "%U" .)" = "$USER" ] && touch . # to sort by last cd -} - -# add command-not-found package suggestion -#source /etc/zsh_command_not_found - -# color in man (less pager) -export LESS_TERMCAP_mb=$'\e[1;32m' -export LESS_TERMCAP_md=$'\e[1;32m' -export LESS_TERMCAP_me=$'\e[0m' -export LESS_TERMCAP_se=$'\e[0m' -export LESS_TERMCAP_so=$'\e[01;33m' -export LESS_TERMCAP_ue=$'\e[0m' -export LESS_TERMCAP_us=$'\e[1;4;31m' -export LESS_TERMCAP_mr=$(tput rev) -export LESS_TERMCAP_mh=$(tput dim) -export LESS_TERMCAP_ZN=$(tput ssubm) -export LESS_TERMCAP_ZV=$(tput rsubm) -export LESS_TERMCAP_ZO=$(tput ssupm) -export LESS_TERMCAP_ZW=$(tput rsupm) - -#XDG -export XDG_CONFIG_HOME="$HOME/.config" -export XDG_DATA_HOME="$HOME/.local/share" -export XDG_CACHE_HOME="$HOME/.cache" - -export EDITOR="vim" -export TERM="st-256color" -export MAIL='me@cacharle.xyz' -export BROWSER='qutebrowser' -export BROWSERCLI='w3m' - -# ignore filetypes in autocomplete -fignore=(o hi) - -# pluggins -source $HOME/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # prompt syntax highlight - -export YSU_MESSAGE_POSITION="after" # you-should-use message after command output -source $HOME/.zsh/zsh-you-should-use/you-should-use.plugin.zsh # alias reminder - -# set tab to 4 spaces -tabs 4 - -export LFS=/mnt - -export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:$DOTDIR/bin:$HOME/.local/bin" -# export PATH="$PATH:$HOME/.vim/plugged/vim-superman/bin" - -export GPG_TTY=$(tty) # fixing gpg fatal error about tty - -export MINISHELL_TEST_BONUS=yes -export MINISHELL_TEST_PAGER=vim -export MINISHELL_TEST_FLAGS=-DMINISHELL_TEST - -# Added by c_formatter_42 -export PATH="$PATH:/home/charles/git/c_formatter_42" - -export MINIKUBE_IN_STYLE=false - -export WEBSERV_FLAGS=-DWEBSERV_CACHARLE diff --git a/Preferences.sublime-settings b/Preferences.sublime-settings deleted file mode 100644 index 684ad2e..0000000 --- a/Preferences.sublime-settings +++ /dev/null @@ -1,11 +0,0 @@ -{ - "color_scheme": "Packages/Solarized Color Scheme/Solarized (dark).sublime-color-scheme", - "font_face": "Fira Code", - "highlight_line": true, - "ignored_packages": - [ - "Vintage" - ], - "line_padding_top": 5, - "theme": "Adaptive.sublime-theme" -} diff --git a/applications/mutt.desktop b/applications/mutt.desktop deleted file mode 100644 index 24d0a48..0000000 --- a/applications/mutt.desktop +++ /dev/null @@ -1,4 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Mail client -Exec=/usr/bin/mutt %u diff --git a/applications/newsboat.desktop b/applications/newsboat.desktop deleted file mode 100644 index 609bb5a..0000000 --- a/applications/newsboat.desktop +++ /dev/null @@ -1,4 +0,0 @@ -[Desktop Entry] -Type=Application -Name=RSS client -Exec=/usr/bin/newsboat %u diff --git a/applications/sxiv.desktop b/applications/sxiv.desktop deleted file mode 100644 index 0db2053..0000000 --- a/applications/sxiv.desktop +++ /dev/null @@ -1,4 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Image viewer -Exec=/usr/local/bin/sxiv %u diff --git a/applications/zathura.desktop b/applications/zathura.desktop deleted file mode 100644 index 8c38677..0000000 --- a/applications/zathura.desktop +++ /dev/null @@ -1,4 +0,0 @@ -[Desktop Entry] -Type=Application -Name=PDF reader -Exec=/usr/bin/zathura %u diff --git a/bin/backlight-ctl b/bin/backlight-ctl deleted file mode 100755 index 2963d83..0000000 --- a/bin/backlight-ctl +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -[ "$#" -ne 1 ] && exit 1; - - -if [ "$(hostname)" = manjaro ] -then - cmd=light - up_opt=-A - down_opt=-U -else - cmd=xbacklight - up_opt=-inc - down_opt=-dec -fi - -case "$1" in - "up") "$cmd" "$up_opt" 5 ;; - "down") "$cmd" "$down_opt" 5 ;; - *) exit 1 ;; -esac - -notify-send "backlight $("$cmd" | cut -d '.' -f 1)" diff --git a/bin/battery-low-check b/bin/battery-low-check deleted file mode 100755 index dbbdc6b..0000000 --- a/bin/battery-low-check +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -capacity=$(cat /sys/class/power_supply/BAT0/capacity) - -[ "$capacity" -lt 10 ] && notify-send -u critical "Battery low $capacity%" diff --git a/bin/bitwarden-dmenu b/bin/bitwarden-dmenu deleted file mode 100755 index 68afe04..0000000 --- a/bin/bitwarden-dmenu +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -domain="$(echo | dmenu -p 'Enter domain name: ')" - -echo | dmenu -P -p 'Enter your master password: ' | - (bw get password "$domain" || - { notify-send -u critical 'Bad password'; exit 1; }) | - xclip -selection clipboard diff --git a/bin/cacharle-sync b/bin/cacharle-sync deleted file mode 100755 index 80f19bb..0000000 --- a/bin/cacharle-sync +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -usage() { - echo "Usage: $0 push/pull [rsync args...]" -} - -[ -z "$1" ] && usage && exit 1 - -RSYNC_ARGS="$(echo "$*" | cut -d ' ' -f 2-)" -RSYNC_CMD="rsync -avh --progress --compress $RSYNC_ARGS" - -REMOTE_USER=charles -REMOTE_HOST=cacharle.xyz - -SYNC_DIR="cacharle-sync/" -SYNC_PATH="$HOME/$SYNC_DIR" - -case "$1" in - push) - $RSYNC_CMD "$SYNC_PATH" "$REMOTE_USER@$REMOTE_HOST:$SYNC_DIR" - ;; - pull) - $RSYNC_CMD "$REMOTE_USER@$REMOTE_HOST:$SYNC_DIR" "$SYNC_PATH" - ;; - *) - usage && exit 1 - ;; -esac diff --git a/bin/project-open b/bin/project-open deleted file mode 100755 index adb27a4..0000000 --- a/bin/project-open +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# shellcheck disable=SC2088 -# (tile does not expand in single quote) -dest=$( - find ~/git -mindepth 1 -maxdepth 1 -printf '%A@\t%f\n' | - sort -r | - cut -f 2 | - dmenu -l 10 -p '~/git/' -) - -[ -z "$dest" ] && exit 1 - -dest_path="$HOME/git/$dest" - -if cd "$dest_path" 2> /dev/null -then - touch "$dest_path" - exec st -else - while [ -z "$choice" ] - do - choice=$(printf 'create\nclone\ncancel' | dmenu -p "New repository at ~/git/$dest?") - done - - case "$choice" in - "create") - mkdir -p "$dest_path" - cd "$dest_path" || exit 1 - git init - exec st - ;; - - "clone") - while [ -z "$remote_choice" ] - do - remote_choice=$(printf 'github.com\ncacharle.xyz\nclipboard\nother' | dmenu -p "Remote location") - done - case "$remote_choice" in - github.com) prefix='git@github.com:cacharle/' ;; - cacharle.xyz) prefix='git@cacharle.xyz:/srv/git/' ;; - clipboard) dest="$(xclip -selection clipboard -o)" ;; - other) ;; - esac - url="$prefix$(echo "$dest" | dmenu -p "Enter repository url: $prefix")" - st -e /bin/sh -c "git clone --recursive '$url' '$dest_path' && cd '$dest_path' && exec $SHELL" || - notify-send -u critical "Could not clone $url in $dest_path" && exit 1 - ;; - - "cancel") exit ;; - *) exit 1 ;; - esac -fi diff --git a/bin/repo-client b/bin/repo-client deleted file mode 100755 index 49049d8..0000000 --- a/bin/repo-client +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -ssh git@cacharle.xyz repo $* diff --git a/bin/tag-music b/bin/tag-music deleted file mode 100755 index 826a83a..0000000 --- a/bin/tag-music +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -music_dir="$HOME/Music" - -for artist_dir in "$music_dir"/* -do - [ ! -d "$artist_dir" ] && continue - artist="$(basename "$artist_dir")" - [ "$artist" = backup ] && continue - - for album_dir in "$artist_dir"/* - do - album="$(basename "$album_dir")" - [ ! -d "$album_dir" ] && continue - - for song_file in "$album_dir"/* - do - [ ! -f "$song_file" ] && continue - song="$(basename "$song_file" | rev | cut -d '.' -f 2- | rev)" - # echo $song_file - track=0 - if expr "$song" : "[0-9][0-9]*\-.*" > /dev/null - then - track="$(echo "$song" | cut -d '-' -f 1)" - song="$(echo "$song" | cut -d '-' -f 2-)" - fi - # echo $track $song - # echo $song_file - taffy --artist "$artist" --album "$album" --title "$song" --track "$track" "$song_file" - done - done -done diff --git a/bin/touchpad-toggle b/bin/touchpad-toggle deleted file mode 100755 index e4dc959..0000000 --- a/bin/touchpad-toggle +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -touchpad_name='ETPS/2 Elantech Touchpad' - -active="$(xinput list-props "$touchpad_name" | grep 'Device Enabled' | cut -f 3)" - -if [ "$active" -eq 1 ] -then - xinput disable "$touchpad_name" -else - xinput enable "$touchpad_name" -fi diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml new file mode 100644 index 0000000..ddfce65 --- /dev/null +++ b/config/alacritty/alacritty.yml @@ -0,0 +1,43 @@ +############# +# alacritty # +############# + +# font +font: + size: 9 + normal: + family: Fira Code + + + offset: + x: 0 + y: 0 + +# colorscheme (Dracula) +colors: + # Default colors + primary: + background: '#282a36' + foreground: '#f8f8f2' + + # Normal colors + normal: + black: '#000000' + red: '#ff5555' + green: '#50fa7b' + yellow: '#f1fa8c' + blue: '#caa9fa' + magenta: '#ff79c6' + cyan: '#8be9fd' + white: '#bfbfbf' + + # Bright colors + bright: + black: '#575b70' + red: '#ff6e67' + green: '#5af78e' + yellow: '#f4f99d' + blue: '#caa9fa' + magenta: '#ff92d0' + cyan: '#9aedfe' + white: '#e6e6e6' diff --git a/config/bash/bashrc b/config/bash/bashrc new file mode 100644 index 0000000..bc5b9ab --- /dev/null +++ b/config/bash/bashrc @@ -0,0 +1,33 @@ +########### +# .bashrc # +########### + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +alias ll='ls -l' +alias la='ls -A' +alias v='vim' + +# adding superuser bin to PATH +export PATH="/sbin:$PATH" + +# man with color +export LESS_TERMCAP_mb=$'\e[1;32m' +export LESS_TERMCAP_md=$'\e[1;32m' +export LESS_TERMCAP_me=$'\e[0m' +export LESS_TERMCAP_se=$'\e[0m' +export LESS_TERMCAP_so=$'\e[01;33m' +export LESS_TERMCAP_ue=$'\e[0m' +export LESS_TERMCAP_us=$'\e[1;4;31m' + +export PS1="\n\[$(tput bold)$(tput setaf 2)\]\w\n\[$(tput setaf 1)\]❯ \[$( tput sgr0)\]" + +# set XDG paths +export XDG_CONFIG_HOME="$HOME/.config/" +export XDG_DATA_HOME="$HOME/.data/" + +# vim key bindings +set -o vi + +# Added by c_formatter_42 +export PATH="$PATH:/home/charles/git/c_formatter_42" diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc new file mode 100644 index 0000000..0a8f19a --- /dev/null +++ b/config/dunst/dunstrc @@ -0,0 +1,414 @@ +[global] + ### Display ### + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = keyboard + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectively. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "0x0-30+20" + + # Show how many messages are currently hidden (because of geometry). + indicate_hidden = yes + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = no + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 0 + + # The height of the entire notification. If the height is smaller + # than the font height and padding combined, it will be raised + # to the font height and padding. + notification_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 2 + + # Padding between text and separator. + padding = 8 + + # Horizontal padding. + horizontal_padding = 8 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 2 + + # Defines color of the frame around the notification window. + frame_color = "#aaaaaa" + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = auto + + # Sort messages by urgency. + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # A client can set the 'transient' hint to bypass this. See the rules + # section for how to disable this if necessary + idle_threshold = 120 + + ### Text ### + + font = Noto 9 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 4 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + format = "%s\n%b%p" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = yes + + # When word_wrap is set to no, specify where to make an ellipsis in long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + # Stack together notifications with the same content + stack_duplicates = true + + # Hide the count of stacked notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + ### Icons ### + + # Align icons left/right/off + icon_position = right + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 32 + + # Paths to default icons. + icon_path = /usr/share/icons/Adwaita/32x32/status/:/usr/share/icons/Adwaita/32x32/devices/:/usr/share/icons/Adwaita/32x32/legacy/:/usr/share/icons/Adwaita/32x32/mimetypes/ + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = /usr/bin/qutebrowser + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst + title = Dunst + + # Define the class of the windows spawned by dunst + class = Dunst + + # Print a notification on startup. + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # Manage dunst's desire for talking + # Can be one of the following values: + # crit: Critical features. Dunst aborts + # warn: Only non-fatal warnings + # mesg: Important Messages + # info: all unimportant stuff + # debug: all less than unimportant stuff + verbosity = mesg + + # Define the corner radius of the notification window + # in pixel size. If the radius is 0, you have no rounded + # corners. + # The radius will be automatically lowered if it exceeds half of the + # notification height to avoid clipping text and/or icons. + corner_radius = 0 + + ### Legacy + + # Use the Xinerama extension instead of RandR for multi-monitor support. + # This setting is provided for compatibility with older nVidia drivers that + # do not support RandR and using it on systems that support RandR is highly + # discouraged. + # + # By enabling this setting dunst will not be able to detect when a monitor + # is connected or disconnected which might break follow mode if the screen + # layout changes. + force_xinerama = false + + ### mouse + + # Defines action of mouse event + # Possible values are: + # * none: Don't do anything. + # * do_action: If the notification has exactly one action, or one is marked as default, + # invoke it. If there are multiple and no default, open the context menu. + # * close_current: Close current notification. + # * close_all: Close all notifications. + mouse_left_click = close_current + mouse_middle_click = do_action + mouse_right_click = close_all + +# Experimental features that may or may not work correctly. Do not expect them +# to have a consistent behaviour across releases. +[experimental] + # Calculate the dpi to use on a per-monitor basis. + # If this setting is enabled the Xft.dpi value will be ignored and instead + # dunst will attempt to calculate an appropriate dpi value for each monitor + # using the resolution and physical size. This might be useful in setups + # where there are multiple screens with very different dpi values. + per_monitor_dpi = false + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key). + # Xev might be helpful to find names for keys. + + # Close notification. + close = ctrl+space + + # Close all notifications. + close_all = ctrl+shift+space + + # Redisplay last message(s). + # On the US keyboard layout "grave" is normally above TAB and left + # of "1". Make sure this key actually exists on your keyboard layout, + # e.g. check output of 'xmodmap -pke' + history = ctrl+grave + + # Context menu. + context = ctrl+shift+period + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#222222" + foreground = "#888888" + timeout = 10 + # Icon for notifications with low urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_normal] + background = "#285577" + foreground = "#ffffff" + timeout = 10 + # Icon for notifications with normal urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_critical] + background = "#900000" + foreground = "#ffffff" + frame_color = "#ff0000" + timeout = 15 + # Icon for notifications with critical urgency, uncomment to enable + #icon = /path/to/icon + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# +# Messages can be matched by +# appname (discouraged, see desktop_entry) +# body +# category +# desktop_entry +# icon +# match_transient +# msg_urgency +# stack_tag +# summary +# +# and you can override the +# background +# foreground +# format +# frame_color +# fullscreen +# new_icon +# set_stack_tag +# set_transient +# timeout +# urgency +# +# Shell-like globbing will get expanded. +# +# Instead of the appname filter, it's recommended to use the desktop_entry filter. +# GLib based applications export their desktop-entry name. In comparison to the appname, +# the desktop-entry won't get localized. +# +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format +# to "". +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +# Disable the transient hint so that idle_threshold cannot be bypassed from the +# client +#[transient_disable] +# match_transient = yes +# set_transient = no +# +# Make the handling of transient notifications more strict by making them not +# be placed in history. +#[transient_history_ignore] +# match_transient = yes +# history_ignore = yes + +# fullscreen values +# show: show the notifications, regardless if there is a fullscreen window opened +# delay: displays the new notification, if there is no fullscreen window active +# If the notification is already drawn, it won't get undrawn. +# pushback: same as delay, but when switching into fullscreen, the notification will get +# withdrawn from screen again and will get delayed like a new notification +#[fullscreen_delay_everything] +# fullscreen = delay +#[fullscreen_show_critical] +# msg_urgency = critical +# fullscreen = show + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +# # This notification will not be displayed +# summary = "foobar" +# format = "" + +#[history-ignore] +# # This notification will not be saved in history +# summary = "foobar" +# history_ignore = yes + +#[skip-display] +# # This notification will not be displayed, but will be included in the history +# summary = "foobar" +# skip_display = yes + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal + +[stack-volumes] + appname = "pulseaudio-ctl" + set_stack_tag = "volume" + +# vim: ft=cfg diff --git a/config/gdb/init b/config/gdb/init new file mode 100644 index 0000000..9d56111 --- /dev/null +++ b/config/gdb/init @@ -0,0 +1,5 @@ +set disassembly-flavor intel +set print pretty on +set prompt \ngdb> +set confirm off +set listsize 25 diff --git a/config/ghc/ghci.conf b/config/ghc/ghci.conf new file mode 100644 index 0000000..31f559e --- /dev/null +++ b/config/ghc/ghci.conf @@ -0,0 +1 @@ +:set prompt "λ " diff --git a/config/git/config b/config/git/config new file mode 100644 index 0000000..bb4fef3 --- /dev/null +++ b/config/git/config @@ -0,0 +1,12 @@ +[user] + name = Charles Cabergs + email = me@cacharle.xyz + signingkey = me@cacharle.xyz +[log] + decorate = full +[pull] + rebase = false +[merge] + tool = vimdiff +[commit] + gpgsign = true diff --git a/config/isync/mbsyncrc b/config/isync/mbsyncrc new file mode 100644 index 0000000..649e823 --- /dev/null +++ b/config/isync/mbsyncrc @@ -0,0 +1,19 @@ +IMAPStore cacharle-remote +Host mail.cacharle.xyz +Port 993 +User me +SSLType IMAPS +CertificateFile /etc/ssl/certs/ca-certificates.crt + +MaildirStore cacharle-local +Path ~/Mail/cacharle/ +Inbox ~/Mail/cacharle/INBOX +Subfolders Verbatim + +Channel cacharle +Master :cacharle-remote: +Slave :cacharle-local: +Create Both +Expunge Both +Patterns * +SyncState * diff --git a/config/moc/config b/config/moc/config new file mode 100644 index 0000000..37af912 --- /dev/null +++ b/config/moc/config @@ -0,0 +1,690 @@ +# This is a configuration file for the MOC player. It should be named +# 'config' and placed in the ~/.moc directory. As this file can specify +# commands which invoke other applications, MOC will refuse to start if it +# is not owned by either root or the current user, or if it is writable by +# anyone other than its owner. All options are given with their default +# values, and therefore commented. + +# Comments begin with '#'. +# You can use quotes and escape ('\') in parameters. +# +# You can have variable values substituted by enclosing the variable name +# as "${...}". (This only applies to the portion of the option following +# the '='.) Variables are substituted first from the environment then, +# if not found, from the configuration options. (Note that the value of +# a configuration option substituted is that which it has at the time the +# substitution variable is encountered.) If there is a naming conflict +# between an environment and configuration variable, you may be able to +# resolve it by using lowercase as the environment variable matches are +# case-sensitive whereas the configuration variables are not. +# +# You can also use the form "${...:-...}" where the value in the second +# position will be substituted if the variable name given in the first +# position is unset or null. +# +# So, for example: +# +# MusicDir = /music/${USER:-public} +# Fastdir1 = ${MusicDir}/mp3/rock +# Fastdir2 = ${MusicDir}/mp3/electronic +# Fastdir3 = ${MusicDir}/mp3/rap +# Fastdir4 = ${MusicDir}/mp3/etc +# +# Variable names are limited to those accepted by the BASH shell; that +# is, those comprising the upper- and lowercase ASCII characters, digits +# and the underscore. +# +# If you need to use the "${" sequence for any other purpose, write "$${" +# and it will be replaced by "${" and not treated as a substitution. +# +# Some options take lists of strings as their values. The strings are +# separated by colons. Additional strings can be appended to the list +# using "+=" in place of a plain "=" to assign the value. For an example, +# see the XTerms option. +# +# You can override any configuration option when you run MOC using the +# '-O' command line option: +# +# mocp -O AutoNext=no -O messagelingertime=1 -O XTerms+=xxt:xwt +# +# This command line option can be repeated as many times as needed and +# the configuration option name is not case sensitive. (Note that MOC +# does not perform variable substitution on the value of such overridden +# configuration options.) Most option values are set before the +# configuration file is processed (which allows the new values to be +# picked up by substitutions), however list-valued options are overridden +# afterwards (which gives the choice of whether the configured values are +# replaced or added to). + +# Remember that the client and server are separate processes and the +# server will retain the configuration values formed from the environment +# within which it was originally started. + +# Show file titles (title, author, album) instead of file names? +#ReadTags = yes + +# In which directory do you store your music files? If you specify it +# you will be able to jump straight to this directory with the '-m' +# parameter or the 'm' command. This can also point to a playlist. +# +# Example: MusicDir = "/home/joe/music" +# +MusicDir = ~/cacharle-sync/music + +# Start in the music directory by default? If set to 'no', start +# in the current directory by default. A single directory on +# the command line takes precedence. +StartInMusicDir = yes + +# How to sort? FileName is the option's only value for now. +#Sort = FileName + +# Show errors in the streams (for example, broken frames in MP3 files)? +#ShowStreamErrors = no + +# Ignore CRC errors in MP3 files? Most players do that, so the default +# value is 'yes'. +#MP3IgnoreCRCErrors = yes + +# Set playback toggles. +Repeat = no +Shuffle = no +AutoNext = yes + +# Default FormatString: +# +# %n - Track number +# %a - Artist +# %A - Album +# %t - Title +# %(X:TRUE:FALSE) - Ternary expression: if X exists, do TRUE, +# otherwise FALSE. The escape character must +# be doubled (i.e., '\\'). (See zshmisc +# documentation for more information.) +# +FormatString = "%t %A" + +# Input and output buffer sizes (in kilobytes). +#InputBuffer = 512 # Minimum value is 32KB +#OutputBuffer = 512 # Minimum value is 128KB + +# How much to fill the input buffer before playing (in kilobytes)? +# This can't be greater than the value of InputBuffer. While this has +# a positive effect for network streams, it also causes the broadcast +# audio to be delayed. +#Prebuffering = 64 + +# Use this HTTP proxy server for internet streams. If not set, the +# environment variables http_proxy and ALL_PROXY will be used if present. +# +# Format: HTTPProxy = PROXY_NAME:PORT +# +#HTTPProxy = + +# Sound driver - OSS, ALSA, JACK, SNDIO (on OpenBSD) or null (only for +# debugging). You can enter more than one driver as a colon-separated +# list. The first working driver will be used. +#SoundDriver = JACK:ALSA:OSS + +# Jack output settings. +#JackClientName = "moc" +#JackStartServer = no +#JackOutLeft = "system:playback_1" +#JackOutRight = "system:playback_2" + +# OSS output settings. +#OSSDevice = /dev/dsp +#OSSMixerDevice = /dev/mixer +#OSSMixerChannel1 = pcm # 'pcm', 'master' or 'speaker' +#OSSMixerChannel2 = master # 'pcm', 'master' or 'speaker' + +# ALSA output settings. If you need to dump the audio produced by MOC +# to a file for diagnostic purposes, the following setting of 'ALSADevice' +# should do that: +# +# ALSADevice=tee:hw,'/tmp/out.wav',wav +# +#ALSADevice = default +#ALSAMixer1 = PCM +#ALSAMixer2 = Master + +# Under some circumstances on 32-bit systems, audio played continously +# for long periods of time may begin to stutter. Setting this option to +# 'yes' will force MOC to avoid ALSA's dmix resampling and prevent this +# stutter. But it also has other implications: +# +# - You may experience unacceptably high CPU load. +# - ALSA's resampler plug-ins will not be used. +# - The resampling may be of lower quality than ALSA would provide. +# - You may need to try different "ResampleMethod" option settings. +# - The "ForceSampleRate" option may be ineffective. +# - If libsamplerate is not configured, many audios may be unplayable. +# +#ALSAStutterDefeat = no + +# Save software mixer state? +# If enabled, a file 'softmixer' will be created in '~/.moc/' storing the +# mixersetting set when the server is shut down. +# Note that there is a "hidden" 'Amplification' setting in that file. +# Amplification (0-200) is used to scale the mixer setting (0-100). This +# results in a higher signal amplitude but may also produce clipping. +#Softmixer_SaveState = yes + +# Save equalizer state? +# If enabled, a file 'equalizer' will be created in '~/.moc/' storing the +# equalizer settings when the server is shut down. +# Note that there is a "hidden" 'Mixin' setting in that file. +# Mixin (0.0-1.0) is used to determine how much of the original signal is +# used after equalizing. 0 means to only use the equalized sound, while 1 +# effectively disabled the mixer. The default is 0.25. +#Equalizer_SaveState = yes + +# Show files with dot at the beginning? +#ShowHiddenFiles = no + +# Hide file name extensions? +HideFileExtension = yes + +# Show file format in menu? +#ShowFormat = yes + +# Show file time in menu? Possible values: 'yes', 'no' and 'IfAvailable' +# (meaning show the time only when it is already known, which often works +# faster). +#ShowTime = IfAvailable + +# Show time played as a percentage in the time progress bar. +#ShowTimePercent = no + +# Values of the TERM environment variable which are deemed to be managed by +# screen(1). If you are setting a specific terminal using screen(1)'s +# '-T ' option, then you will need to add 'screen.' to this list. +# Note that this is only a partial test; the value of the WINDOW environment +# variable must also be a number (which screen(1) sets). +#ScreenTerms = screen:screen-w:vt100 + +# Values of the TERM environment variable which are deemed to be xterms. If +# you are using MOC within screen(1) under an xterm, then add screen(1)'s +# TERM setting here as well to cause MOC to update the xterm's title. +#XTerms = xterm +#XTerms += xterm-colour:xterm-color +#XTerms += xterm-256colour:xterm-256color +#XTerms += rxvt:rxvt-unicode +#XTerms += rxvt-unicode-256colour:rxvt-unicode-256color +#XTerms += eterm + +# Theme file to use. This can be absolute path or relative to +# /usr/share/moc/themes/ (depends on installation prefix) or +# ~/.moc/themes/ . +# +# Example: Theme = laras_theme +# +Theme = solarized + +# The theme used when running on an xterm. +# +# Example: XTermTheme = transparent-background +# +#XTermTheme = + +# Should MOC try to autoload the default lyrics file for an audio? (The +# default lyrics file is a text file with the same file name as the audio +# file name with any trailing "extension" removed.) +#AutoLoadLyrics = yes + +# MOC directory (where pid file, socket and state files are stored). +# You can use ~ at the beginning. +#MOCDir = ~/.moc + +# Use mmap() to read files. mmap() is much slower on NFS. +#UseMMap = no + +# Use MIME to identify audio files. This can make for slower loading +# of playlists but is more accurate than using "extensions". +#UseMimeMagic = no + +# Assume this encoding for ID3 version 1/1.1 tags (MP3 files). Unlike +# ID3v2, UTF-8 is not used here and MOC can't guess how tags are encoded. +# Another solution is using librcc (see the next option). This option is +# ignored if UseRCC is set to 'yes'. +#ID3v1TagsEncoding = WINDOWS-1250 + +# Use librcc to fix ID3 version 1/1.1 tags encoding. +#UseRCC = yes + +# Use librcc to filenames and directory names encoding. +#UseRCCForFilesystem = yes + +# When this option is set the player assumes that if the encoding of +# ID3v2 is set to ISO-8859-1 then the ID3v1TagsEncoding is actually +# that and applies appropriate conversion. +#EnforceTagsEncoding = no + +# Enable the conversion of filenames from the local encoding to UTF-8. +#FileNamesIconv = no + +# Enable the conversion of the xterm title from UTF-8 to the local encoding. +#NonUTFXterm = no + +# Should MOC precache files to assist gapless playback? +#Precache = yes + +# Remember the playlist after exit? +#SavePlaylist = yes + +# When using more than one client (interface) at a time, do they share +# the playlist? +#SyncPlaylist = yes + +# Choose a keymap file (relative to '~/.moc/' or using an absolute path). +# An annotated example keymap file is included ('keymap.example'). +# +# Example: Keymap = my_keymap +# +Keymap = keymap + +# Use ASCII rather than graphic characters for drawing lines. This +# helps on some terminals. +#ASCIILines = no + +# FastDirs, these allow you to jump directly to a directory, the key +# bindings are in the keymap file. +# +# Examples: Fastdir1 = /mp3/rock +# Fastdir2 = /mp3/electronic +# Fastdir3 = /mp3/rap +# Fastdir4 = /mp3/etc +# +#Fastdir1 = +#Fastdir2 = +#Fastdir3 = +#Fastdir4 = +#Fastdir5 = +#Fastdir6 = +#Fastdir7 = +#Fastdir8 = +#Fastdir9 = +#Fastdir10 = + +# How fast to seek (in number of seconds per keystroke). The first +# option is for normal seek and the second for silent seek. +#SeekTime = 1 +#SilentSeekTime = 5 + +# PreferredDecoders allows you to specify which decoder should be used +# for any given audio format. It is a colon-separated list in which +# each entry is of the general form 'code(decoders)', where 'code' +# identifies the audio format and 'decoders' is a comma-separated list +# of decoders in order of preference. +# +# The audio format identifier may be either a filename extension or a +# MIME media type. If the latter, the format is 'type/subtype' (e.g., +# 'audio/flac'). Because different systems may give different MIME +# media types, any 'x-' prefix of the subtype is ignored both here and +# in the actual file MIME type (so all combinations of 'audio/flac' and +# 'audio/x-flac' match each other). +# +# For Internet streams the matching is done on MIME media type and on +# actual content. For files the matches are made on MIME media type +# (if the 'UseMimeMagic' option is set) and on filename extension. The +# MIME media type of a file is not determined until the first entry for +# MIME is encountered in the list. +# +# The matching is done in the order of appearance in the list with any +# entries added from the command line being matched before those listed +# here. Therefore, if you place all filename extension entries before +# all MIME entries you will speed up MOC's processing of directories +# (which could be significant for remote file systems). +# +# The decoder list may be empty, in which case no decoders will be used +# for files (and files with that audio format ignored) while Internet +# streams will be assessed on the actual content. Any decoder position +# may contain an asterisk, in which case any decoder not otherwise listed +# which can handle the audio format will be used. It is not an error to +# list the same decoder twice, but neither does it make sense to do so. +# +# If you have a mix of audio and non-audio files in your directories, you +# may wish to include entries at top of the list which ignore non-audio +# files by extension. +# +# In summary, the PreferredDecoders option provides fine control over the +# type of matching which is performed (filename extension, MIME media +# type and streamed media content) and which decoder(s) (if any) are used +# based on the option's list entries and their ordering. +# +# Examples: aac(aac,ffmpeg) first try FAAD2 for AACs then FFmpeg +# mp3() ignore MP3 files +# wav(*,sndfile) use sndfile for WAV as a last resort +# ogg(vorbis,*):flac(flac,*) try Xiph decoders first +# ogg():audio/ogg() ignore OGG files, and +# force Internet selection by content +# gz():html() ignore some non-audio files +# +# Any unspecified audio formats default to trying all decoders. +# Any unknown (or misspelt) drivers are ignored. +# All names are case insensitive. +# The default setting reflects the historical situation modified by +# the experience of users. +# +#PreferredDecoders = aac(aac,ffmpeg):m4a(ffmpeg) +#PreferredDecoders += mpc(musepack,*,ffmpeg):mpc8(musepack,*,ffmpeg) +#PreferredDecoders += sid(sidplay2):mus(sidplay2) +#PreferredDecoders += wav(sndfile,*,ffmpeg) +#PreferredDecoders += wv(wavpack,*,ffmpeg) +#PreferredDecoders += audio/aac(aac):audio/aacp(aac):audio/m4a(ffmpeg) +#PreferredDecoders += audio/wav(sndfile,*) + +# The following PreferredDecoders attempt to handle the ambiguity surrounding +# container types such as OGG for files. The first two entries will force +# a local file to the correct decoder (assuming the .ogg file contains Vorbis +# audio), while the MIME media types will cause Internet audio streams to +# be assessed on content (which may be either Vorbis or Speex). +# +#PreferredDecoders += ogg(vorbis,ffmpeg):oga(vorbis,ffmpeg):ogv(ffmpeg) +#PreferredDecoders += opus(ffmpeg) +#PreferredDecoders += spx(speex) +#PreferredDecoders += application/ogg(vorbis):audio/ogg(vorbis) + +# Which resampling method to use. There are a few methods of resampling +# sound supported by libresamplerate. The default is 'Linear') which is +# also the fastest. A better description can be found at: +# +# http://www.mega-nerd.com/libsamplerate/api_misc.html#Converters +# +# but briefly, the following methods are based on bandlimited interpolation +# and are higher quality, but also slower: +# +# SincBestQuality - really slow (I know you probably have an xx GHz +# processor, but it's still not enough to not see +# this in the top output :) The worst case +# Signal-to-Noise Ratio is 97dB. +# SincMediumQuality - much faster. +# SincFastest - the fastest bandlimited interpolation. +# +# And these are lower quality, but much faster methods: +# +# ZeroOrderHold - really poor quality, but it's really fast. +# Linear - a bit better and a bit slower. +# +#ResampleMethod = Linear + +# Always use this sample rate (in Hz) when opening the audio device (and +# resample the sound if necessary). When set to 0 the device is opened +# with the file's rate. +#ForceSampleRate = 0 + +# By default, even if the sound card reports that it can output 24bit samples +# MOC converts 24bit PCM to 16bit. Setting this option to 'yes' allows MOC +# to use 24bit output. (The MP3 decoder, for example, uses this format.) +# This is disabled by default because there were reports that it prevents +# MP3 files from playing on some soundcards. +#Allow24bitOutput = no + +# Use realtime priority for output buffer thread. This will prevent gaps +# while playing even with heavy load. The user who runs MOC must have +# permissions to set such a priority. This could be dangerous, because it +# is possible that a bug in MOC will freeze your computer. +#UseRealtimePriority = no + +# The number of audio files for which MOC will cache tags. When this limit +# is reached, file tags are discarded on a least recently used basis (with +# one second resolution). You can disable the cache by giving it a size of +# zero. Note that if you decrease the cache size below the number of items +# currently in the cache, the number will not decrease immediately (if at +# all). +#TagsCacheSize = 256 + +# Number items in the playlist. +#PlaylistNumbering = yes + +# Main window layouts can be configured. You can change the position and +# size of the menus (directory and playlist). You have three layouts and +# can switch between then using the 'l' key (standard mapping). By default, +# only two layouts are configured. +# +# The format is as follows: +# +# - Each layout is described as a list of menu entries. +# - Each menu entry is of the form: +# +# menu(position_x, position_y, width, height) +# +# where 'menu' is either 'directory' or 'playlist'. +# - The parameters define position and size of the menu. They can +# be absolute numbers (like 10) or a percentage of the screen size +# (like 45%). +# - 'width' and 'height' can have also value of 'FILL' which means +# fill the screen from the menu's position to the border. +# - Menus may overlap. +# +# You must describe at least one menu (default is to fill the whole window). +# There must be at least one layout (Layout1) defined; others can be empty. +# +# Example: Layout1 = playlist(50%,50%,50%,50%) +# Layout2 = "" +# Layout3 = "" +# +# Just one layout, the directory will occupy the whole +# screen, the playlist will have 1/4 of the screen size +# and be positioned at lower right corner. (Note that +# because the playlist will be hidden by the directory +# you will have to use the TAB key to make the playlist +# visible.) +# +# Example: Layout1 = playlist(0,0,100%,10):directory(0,10,100%,FILL) +# +# The screen is split into two parts: playlist at the top +# and the directory menu at the bottom. Playlist will +# occupy 10 lines and the directory menu the rest. +# +#Layout1 = directory(0,0,50%,100%):playlist(50%,0,FILL,100%) +#Layout2 = directory(0,0,100%,100%):playlist(0,0,100%,100%) +#Layout3 = "" + +# When the song changes, should the menu be scrolled so that the currently +# played file is visible? +#FollowPlayedFile = yes + +# What to do if the interface was started and the server is already playing +# something from the playlist? If CanStartInPlaylist is set to 'yes', the +# interface will switch to the playlist. When set to 'no' it will start +# from the last directory. +#CanStartInPlaylist = yes + +# Executing external commands (1 - 10) invoked with key commands (F1 - F10 +# by default). +# +# Some arguments are substituted before executing: +# +# %f - file path +# %i - title made from tags +# %S - start block mark (in seconds) +# %E - end block mark (in seconds) +# +# Data from tags can also be substituted: +# +# %t - title +# %a - album +# %r - artist +# %n - track +# %m - time of the file (in seconds) +# +# The parameters above apply to the currently selected file. If you change +# them to capital letters, they are taken from the file currently playing. +# +# Programs are run using execv(), not a shell, so you can't do things like +# redirecting the output to a file. The command string is split using blank +# characters as separators; the first element is the command to be executed +# and the rest are its parameters, so if you use "echo Playing: %I" we run +# program 'echo' (from $PATH) with 2 parameters: the string 'Playing:' and +# the title of the file currently playing. Even if the title contains +# spaces, it's still one parameter and it's safe if it contains `rm -rf /`. +# +# Examples: ExecCommand1 = "cp %f /mnt/usb_drive" +# ExecCommand2 = "/home/joe/now_playing %I" +# +#ExecCommand1 = +#ExecCommand2 = +#ExecCommand3 = +#ExecCommand4 = +#ExecCommand5 = +#ExecCommand6 = +#ExecCommand7 = +#ExecCommand8 = +#ExecCommand9 = +#ExecCommand10 = + +# Display the cursor in the line with the selected file. Some braille +# readers (the Handy Tech modular series ZMU 737, for example) use the +# cursor to focus and can make use of it to present the file line even +# when other fields are changing. +#UseCursorSelection = no + +# Set the terminal title when running under xterm. +#SetXtermTitle = yes + +# Set the terminal title when running under screen(1). If MOC can detect +# that it is running under screen(1), then it will set an appropriate +# title (see description of ScreenTerms above). However, if multiple +# levels of screen management are involved, detection might fail and this +# could cause a screen upset. In that situation you can use this option +# to force screen titles off. +#SetScreenTitle = yes + +# Display full paths instead of just file names in the playlist. +#PlaylistFullPaths = yes + +# The following setting describes how block markers are displayed in +# the play time progress bar. Its value is a string of exactly three +# characters. The first character is displayed in a position which +# corresponds to the time marked as the start of a block and the last +# character to the time marked as the end of the block. The middle +# character is displayed instead if both the start and the end of the block +# would fall in the same position (within the resolution of the interface). +# You can turn off the displaying of these block marker positions by using +# three space characters. +#BlockDecorators = "`\"'" + +# How long (in seconds) to leave a message displayed on the screen. +# Setting this to a high value allows you to scroll through the messages +# using the 'hide_message' key. Setting it to zero means you'll have to +# be quick to see any message at all. Any new messages will be queued up +# and displayed after the current message's linger time expires. +MessageLingerTime = 0 + +# Does MOC display a prefix on delayed messages indicating +# the number of queued messages still to be displayed? +#PrefixQueuedMessages = yes + +# String to append to the queued message count if any +# error messages are still waiting to be displayed. +#ErrorMessagesQueued = "!" + +# Self-describing ModPlug options (with 'yes' or 'no' values). +#ModPlug_Oversampling = yes +#ModPlug_NoiseReduction = yes +#ModPlug_Reverb = no +#ModPlug_MegaBass = no +#ModPlug_Surround = no + +# ModPlug resampling mode. +# Valid values are: +# +# FIR - 8 tap fir filter (extremely high quality) +# SPLINE - Cubic spline interpolation (high quality) +# LINEAR - Linear interpolation (fast, good quality) +# NEAREST - No interpolation (very fast, extremely bad sound quality) +# +#ModPlug_ResamplingMode = FIR + +# Other self-describing ModPlug audio characteristic options. +# (Note that the 32 bit sample size seems to be buggy.) +#ModPlug_Channels = 2 # 1 or 2 channels +#ModPlug_Bits = 16 # 8, 16 or 32 bits +#ModPlug_Frequency = 44100 # 11025, 22050, 44100 or 48000 Hz +#ModPlug_ReverbDepth = 0 # 0 (quiet) to 100 (loud) +#ModPlug_ReverbDelay = 0 # Delay in ms (usually 40-200ms) +#ModPlug_BassAmount = 0 # 0 (quiet) to 100 (loud). +#ModPlug_BassRange = 10 # Cutoff in Hz (10-100). +#ModPlug_SurroundDepth = 0 # Surround level 0(quiet)-100(heavy). +#ModPlug_SurroundDelay = 0 # Surround delay in ms, usually 5-40ms. +#ModPlug_LoopCount = 0 # 0 (never), n (times) or -1 (forever) + +# Self-describing TiMidity audio characteristic options. +#TiMidity_Rate = 44100 # Between 8000 and 48000 +#TiMidity_Bits = 16 # 8 or 16 +#TiMidity_Channels = 2 # 1 or 2 +#TiMidity_Volume = 100 # 0 to 800 + +# You can setup a TiMidity-Config-File here. +# Leave it unset to use library defaults (/etc/timidity.cfg mostly). +# Setting it to 'yes' also uses the library defaults. +# Set it to 'no' if you don't have any configuration file. +# Otherwise set it to the name of a specific file. +#TiMidity_Config = + +# Self-describing SidPlay2 audio characteristic options. +#SidPlay2_DefaultSongLength = 180 # If not in database (in seconds) +#SidPlay2_MinimumSongLength = 0 # Play at least n (in seconds) +#SidPlay2_Frequency = 44100 # 4000 to 48000 +#SidPlay2_Bits = 16 # 8 or 16 +#SidPlay2_Optimisation = 0 # 0 (worst quality) to 2 (best quality) + +# Set path to a HVSC-compatible database (if not set, database is disabled). +#SidPlay2_Database = + +# SidPlay2 playback Mode: +# +# "M": Mono (best for many SIDs) +# "S": Stereo +# "L"/"R": Left / Right +# +#SidPlay2_PlayMode = "M" + +# Use start-song information from SID ('yes') or start at first song +# ('no'). Songs before the start-song won't be played. (Note that this +# option previously took the values 1 and 0; these are now deprecated +# in favour of 'yes' and 'no'.) +#SidPlay2_StartAtStart = yes + +# Play sub-tunes. (Note that this option previously took the values 1 +# and 0; these are now deprecated in favour of 'yes' and 'no'.) +#SidPlay2_PlaySubTunes = yes + +# Run the OnSongChange command when a new song starts playing. +# Specify the full path (i.e. no leading '~') of an executable to run. +# Arguments will be passed, and you can use the following escapes: +# +# %a artist +# %r album +# %f filename +# %t title +# %n track +# %d file duration in XX:YY form +# %D file duration, number of seconds +# +# No pipes/redirects can be used directly, but writing a shell script +# can do the job. +# +# Example: OnSongChange = "/home/jack/.moc/myscript %a %r" +# +#OnSongChange = + +# If RepeatSongChange is 'yes' then MOC will execute the command every time +# a song starts playing regardless of whether or not it is just repeating. +# Otherwise the command will only be executed when a different song is +# started. +#RepeatSongChange = no + +# Run the OnStop command (full path, no arguments) when MOC changes state +# to stopped (i.e., when user stopped playing or changes a song). +#OnStop = "/home/jack/.moc/myscript_on_stop" + +# This option determines which song to play after finishing all the songs +# in the queue. Setting this to 'yes' causes MOC to play the song which +# follows the song being played before queue playing started. If set to +# 'no', MOC will play the song following the last song in the queue if it +# is in the playlist. The default is 'yes' because this is the way other +# players usually behave. (Note that this option previously took the +# values 1 and 0; these are now deprecated in favour of 'yes' and 'no'.) +#QueueNextSongReturn = yes diff --git a/config/moc/keymap b/config/moc/keymap new file mode 100644 index 0000000..50f854b --- /dev/null +++ b/config/moc/keymap @@ -0,0 +1,192 @@ +# This is the example keymap file for MOC. You can define your own key +# bindings for MOC commands by creating your own keymap file and setting +# the 'Keymap' option in ~/.moc/config. +# +# The format of this file is: +# +# - Lines beginning with # are comments. +# - Blank lines are ignored. +# - Every other line is expected to be in one of the formats: +# +# COMMAND = [KEY ...] +# COMMAND += KEY ... +# +# The KEY can be: +# +# - Just a char, like i, L, ", * +# - CTRL-KEY sequence: ^k (CTRL-k), ^4 +# - ALT-KEY (meta) sequence: M-j (ALT-j), M-/ +# - Special keys: DOWN, UP +# LEFT, RIGHT +# HOME, END +# BACKSPACE +# INS, DEL +# ENTER +# PAGE_UP, PAGE_DOWN +# SPACE, TAB +# KEYPAD_CENTER +# ESCAPE +# F1 - F12 +# +# Note that the use of a digit as a KEY is deprecated. +# +# Maximum number of KEYs for one COMMAND is 5. +# +# Omitting the KEY for a COMMAND will unbind all its default keys. They +# will also be automatically unbound when you bind new KEYs to it. Individual +# default KEYs will be automatically unbound when they are explicitly bound +# to some other COMMAND. +# +# Using the '+=' form will cause the KEYs to be appended to any existing +# (default or explicit) bindings for the COMMAND. Appending an existing +# default binding for the same COMMAND will cause MOC to think of that KEY +# as then being explicitly bound. +# +# Only one binding for any given COMMAND can appear in the keymap file. One +# exception to this is that if the default keys for a COMMAND are explicitly +# unbound then a subsequent binding may appear for it. A second exception +# is that multiple appending bindings may appear. +# +# Meta-key detection is sensitive to the ESCDELAY environment variable (see +# the manpage for ncurses(3)). In its absence, MOC resets the default +# delay to 25ms. If you need to emulate meta-key sequences using the ESC +# key, then you may need to set the value of ESCDELAY back to its ncurses +# default of 1000ms (but doing so will make the response to the ESC key +# sluggish). +# +# If MOC's keypresses are being filtered through some other program (in a +# GUI environment, for example) which also does meta-key detection, then +# MOC is at the mercy of the timings with which that program presents them. +# +# Default key configuration for MOC (and a list of all available commands): + +# MOC control keys: +quit_client = q +quit = Q + +# EDITED +menu_down = j +menu_up = k + +# Menu and interface control keys: +go = ENTER +#menu_down = DOWN +#menu_up = UP +menu_page_down = PAGE_DOWN +menu_page_up = PAGE_UP +menu_first_item = HOME +menu_last_item = END +search_menu = g / +toggle_read_tags = f +toggle_show_time = ^t +toggle_show_format = ^f +toggle_menu = TAB +toggle_layout = l +toggle_hidden_files = H +next_search = ^g ^n +show_lyrics = L +theme_menu = T +help = h ? +refresh = ^r +reload = r + +# Audio playing and positioning keys: +seek_forward = RIGHT +seek_backward = LEFT +seek_forward_fast = ] +seek_backward_fast = [ +pause = p SPACE +stop = s +next = n +previous = b +toggle_shuffle = S +toggle_repeat = R +toggle_auto_next = X +toggle_mixer = x +go_url = o + +# Volume control keys: +# volume_down_1 = < +# volume_up_1 = > +# volume_down_5 = , +# volume_up_5 = . +# volume_10 = M-1 +# volume_20 = M-2 +# volume_30 = M-3 +# volume_40 = M-4 +# volume_50 = M-5 +# volume_60 = M-6 +# volume_70 = M-7 +# volume_80 = M-8 +# volume_90 = M-9 + +# Directory navigation keys: defaults are Shift-number +# (i.e., 'shift 1' -> '!' -> 'Fastdir1'). +go_to_a_directory = i +go_to_music_directory = m +go_to_fast_dir1 = ! +go_to_fast_dir2 = @ +go_to_fast_dir3 = # +go_to_fast_dir4 = $ +go_to_fast_dir5 = % +go_to_fast_dir6 = ^ +go_to_fast_dir7 = & +go_to_fast_dir8 = * +go_to_fast_dir9 = ( +go_to_fast_dir10 = ) +go_to_playing_file = G +go_up = U + +# Playlist specific keys: +add_file = a +add_directory = A +plist_add_stream = ^u +delete_from_playlist = d +playlist_full_paths = P +#plist_move_up = u +#plist_move_down = j +save_playlist = V +remove_dead_entries = Y +clear_playlist = C + +# Queue manipulation keys: +enqueue_file = z +clear_queue = Z + +# User interaction control: +history_up = UP +history_down = DOWN +delete_to_start = ^u +delete_to_end = ^k +cancel = ^x ESCAPE +hide_message = M + +# Softmixer specific keys: +# toggle_softmixer = w +# toggle_make_mono = J + +# Equalizer specific keys: +# toggle_equalizer = E +# equalizer_refresh = e +#equalizer_prev = K +#equalizer_next = k + +# External commands: +# mark_start = ' +# mark_end = " +# exec_command1 = F1 +# exec_command2 = F2 +# exec_command3 = F3 +# exec_command4 = F4 +# exec_command5 = F5 +# exec_command6 = F6 +# exec_command7 = F7 +# exec_command8 = F8 +# exec_command9 = F9 +# exec_command10 = F10 + +# The following commands are available but not assigned to any keys by +# default: +# +# toggle_percent Switch on/off play progress bar time percentage +# diff --git a/config/moc/themes/solarized b/config/moc/themes/solarized new file mode 100644 index 0000000..0e0244b --- /dev/null +++ b/config/moc/themes/solarized @@ -0,0 +1,45 @@ +############################################################################## +# +# based on solarized +# best viewed on shaded or black terminal +# from: https://github.com/wimstefan/mocp-themes/blob/master/solarized +# +############################################################################## + +# edited +frame = blue default + +background = default default +window_title = green default +directory = red default +selected_directory = blue default +playlist = blue default +selected_playlist = magenta default +file = green default +selected_file = cyan default +marked_file = green default bold +marked_selected_file = cyan default bold +info = cyan default +selected_info = cyan default +marked_info = green default bold +marked_selected_info = cyan default bold +status = magenta default +title = green default +state = magenta default +current_time = magenta default +time_left = cyan default +total_time = cyan default +time_total_frames = magenta default +sound_parameters = cyan default +legend = magenta default +disabled = black default +enabled = yellow default +empty_mixer_bar = green default +filled_mixer_bar = black green +empty_time_bar = green default +filled_time_bar = black green +entry = yellow default +entry_title = red default +error = red default +message = yellow default +plist_time = magenta default diff --git a/config/mutt/mailcap b/config/mutt/mailcap new file mode 100644 index 0000000..e00e02c --- /dev/null +++ b/config/mutt/mailcap @@ -0,0 +1,2 @@ +text/html; "$BROWSER" %s &: test=test -n "$DISPLAY"; needsterminal; +text/html; "$BROWSERCLI" -I %{charse} -T text/html; copiousoutput; diff --git a/config/mutt/muttrc b/config/mutt/muttrc new file mode 100644 index 0000000..b4b02a8 --- /dev/null +++ b/config/mutt/muttrc @@ -0,0 +1,57 @@ +############################################################################### +# muttrc +############################################################################### + +set from = 'me@cacharle.xyz' # address in new mail +set realname = 'Charles Cabergs' # name in new mail + +set smtp_url = 'smtp://me@mail.cacharle.xyz:587' # where to send +set folder = 'imaps://me@mail.cacharle.xyz:993' # mails folder +# set folder = "~/Mail/cacharle" + +# view html with terminal browser in .mailcap +auto_view text/html +alternative_order text/plain text/enriched text/html + +set spoolfile = '+INBOX' +set record = "+Sent" +set trash = "+Trash" +set postponed = "+Drafts" + +mailboxes =INBOX =Sent =Send =Trash =Drafts + +set editor = 'vim' +set sort = 'reverse-date' # newest at the top + +set date_format = "%d/%m %I:%M" +set index_format = "%2C %Z %d %-15.15F %s (%-4.4c)" # one line format in home + +# from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc +set rfc2047_parameters = yes # decode non standard stuff +set sleep_time = 0 # don't pause +set markers = no # no '+' on line wrap +set mark_old = no # don't mark mail as read if not seen +set mime_forward = yes # attachements forwarded +set wait_key = no # no press to continue... +set forward_format = "Fwd: %s" # forward subject +set forward_quote # include previous message in forward + +set sidebar_visible = yes +set sidebar_width = 20 +set sidebar_short_path = yes +set sidebar_next_new_wrap = yes + +set mail_check_stats +set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?' +set ssl_force_tls = yes +set send_charset = 'utf-8' + +set header_cache = "~/.mutt/cache/headers" +set message_cachedir = "~/.mutt/cache/bodies" +set certificate_file = "~/.mutt/certificates" + +# solarized color scheme +source "$DOTDIR/mutt-colors-solarized/mutt-colors-solarized-dark-16.muttrc" + +# password +source "gpg -d $HOME/.config/mutt/passwd.muttrc.gpg 2> /dev/null |" diff --git a/config/nano/nanorc b/config/nano/nanorc new file mode 100644 index 0000000..38059df --- /dev/null +++ b/config/nano/nanorc @@ -0,0 +1 @@ +include /usr/share/nano/c.nanorc diff --git a/config/newsboat/config b/config/newsboat/config new file mode 100644 index 0000000..f3ef9e1 --- /dev/null +++ b/config/newsboat/config @@ -0,0 +1,33 @@ +# auto-reload yes # reload feeds at startup +reload-threads 64 +max-items 100 +# pager less + +datetime-format "%d %b %Y" +# articlelist-format "%4i %f + +bind-key j down +bind-key k up +bind-key g home +bind-key G end + +# solarized color-scheme +color background default default +color listnormal default default +color listnormal_unread default default +color listfocus black cyan +color listfocus_unread black cyan +color info default black +color article default default + +highlight article "^(Title):.*$" blue default +highlight article "https?://[^ ]+" red default +highlight article "\\[image\\ [0-9]+\\]" green default +highlight all "---.*" yellow default +highlight all "===.*" yellow default +highlight feedlist ".*(0/0))" black default + +macro v set browser "mpv --ytdl-format=best %u"; open-in-browser; set browser qutebrowser + +notify-always yes +notify-program /usr/bin/notify-send diff --git a/config/pulseaudio-ctl/config b/config/pulseaudio-ctl/config new file mode 100644 index 0000000..51d65b4 --- /dev/null +++ b/config/pulseaudio-ctl/config @@ -0,0 +1,25 @@ +# +# $HOME/.config/pulseaudio-ctl/config +# + +# The default setting is for pulseaudio-ctl to NOT increase to volume level +# above 100 % but Some users may wish exceed this level. If this describes +# your use case, uncomment the UPPER_THRESHOLD variable below setting it to +# the new upper threshold. +# +#UPPER_THRESHOLD=150 + +# Push output through libnotify. Set to any value to enable this feature +# and note that you must have /usr/bin/notify-send to use this. On Arch +# libnotify provides this. Other distros may not name it as such. +# +NOTIFY=yes + +# Show a graphical progress-bar type visualization of the volume level in +# libnotify. No setting or commented out will show a simply percentage but +# a setting will convert the percentage to a progress-bar in libnotify. +# +BARCHART=yes + +# Use KDE OSD notification. Set to any value to enable this feature. +#KDE_OSD=yes diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py new file mode 100644 index 0000000..bcbdc5a --- /dev/null +++ b/config/qutebrowser/config.py @@ -0,0 +1,285 @@ +import os + +from qutebrowser.api import interceptor + +config.load_autoconfig(True) + +# Youtube ad blocking +def filter_yt(info: interceptor.Request): + url = info.request_url + if ( + url.host() == 'www.youtube.com' + and url.path() == '/get_video_info' + and '&adformat=' in url.query() + ): + info.block() + +interceptor.register(filter_yt) + + +c.aliases = { + 'q': 'close', + 'sc': 'config-source' +} + +c.url.start_pages = ['https://searx.cacharle.xyz'] +c.url.searchengines = { + 'DEFAULT': 'https://searx.cacharle.xyz?q={}', + 'd': 'https://duckduckgo.com/?q={}', + 'g': 'https://google.com/?q={}', + 'y': 'https://www.youtube.com/results?search_query={}', + 'gh': 'https://github.com/search?q={}', + 'h': 'https://hoogle.haskell.org/?hoogle={}', + 'cpp': 'http://cplusplus.com/search.do?q={}', + 'lar': 'https://www.larousse.fr/dictionnaires/francais/{}' +} + +c.fonts.default_family = 'Fira Mono' +c.fonts.hints = 'bold 11pt default_family' + +c.hints.chars = 'asdfghjkl;' # use key in the main row for hints + +# c.statusbar.show = 'in-mode' + +c.editor.command = [ + '/usr/local/bin/st', '-e', + '/usr/bin/vim', '{file}', '+{line}', '-c', 'startinsert!' +] + +c.messages.timeout = 4000 + +config.bind(';v', 'hint links spawn /usr/bin/mpv --ytdl-format=best {hint-url} ;;' + 'message-info "opening in video player"') + +config.bind('', 'completion-item-focus next', 'command') +config.bind('', 'completion-item-focus prev', 'command') + +config.bind('J', 'tab-prev', 'normal') +config.bind('K', 'tab-next', 'normal') + +config.bind('', 'devtools', 'normal') + +c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark theme (very nice result) +c.colors.webpage.bg = 'black' # Disabling white flash before page loading + +# c.content.proxy = 'socks://localhost:9050/' # tor +c.content.autoplay = False +c.content.notifications = False +#c.content.cookies.accept = 'no-3rdparty' + +c.auto_save.session = True +c.session.lazy_restore = True + +home_path = os.environ.get('HOME') +if home_path is not None: + download_path = os.path.join(home_path, "downloads") + if not os.path.exists(download_path): + os.mkdir(download_path) + c.downloads.location.directory = download_path +c.downloads.remove_finished = 5000 + +# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) +# Base16 qutebrowser template by theova +# Solarized Dark scheme by Ethan Schoonover (modified by aramisgithub) +base00 = '#002b36' +base01 = '#073642' +base02 = '#586e75' +base03 = '#657b83' +base04 = '#839496' +base05 = '#93a1a1' +base06 = '#eee8d5' +base07 = '#fdf6e3' +base08 = '#dc322f' +base09 = '#cb4b16' +base0A = '#b58900' +base0B = '#859900' +base0C = '#2aa198' +base0D = '#268bd2' +base0E = '#6c71c4' +base0F = '#d33682' +# set qutebrowser colors +# Text color of the completion widget. May be a single color to use for +# all columns or a list of three colors, one for each column. +c.colors.completion.fg = base05 +# Background color of the completion widget for odd rows. +c.colors.completion.odd.bg = base01 +# Background color of the completion widget for even rows. +c.colors.completion.even.bg = base00 +# Foreground color of completion widget category headers. +c.colors.completion.category.fg = base0A +# Background color of the completion widget category headers. +c.colors.completion.category.bg = base00 +# Top border color of the completion widget category headers. +c.colors.completion.category.border.top = base00 +# Bottom border color of the completion widget category headers. +c.colors.completion.category.border.bottom = base00 +# Foreground color of the selected completion item. +c.colors.completion.item.selected.fg = base05 +# Background color of the selected completion item. +c.colors.completion.item.selected.bg = base02 +# Top border color of the selected completion item. +c.colors.completion.item.selected.border.top = base02 +# Bottom border color of the selected completion item. +c.colors.completion.item.selected.border.bottom = base02 +# Foreground color of the matched text in the selected completion item. +c.colors.completion.item.selected.match.fg = base0B +# Foreground color of the matched text in the completion. +c.colors.completion.match.fg = base0B +# Color of the scrollbar handle in the completion view. +c.colors.completion.scrollbar.fg = base05 +# Color of the scrollbar in the completion view. +c.colors.completion.scrollbar.bg = base00 +# Background color of disabled items in the context menu. +c.colors.contextmenu.disabled.bg = base01 +# Foreground color of disabled items in the context menu. +c.colors.contextmenu.disabled.fg = base04 +# Background color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.bg = base00 +# Foreground color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.fg = base05 +# Background color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.bg = base02 +#Foreground color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.fg = base05 +# Background color for the download bar. +c.colors.downloads.bar.bg = base00 +# Color gradient start for download text. +c.colors.downloads.start.fg = base00 +# Color gradient start for download backgrounds. +c.colors.downloads.start.bg = base0D +# Color gradient end for download text. +c.colors.downloads.stop.fg = base00 +# Color gradient stop for download backgrounds. +c.colors.downloads.stop.bg = base0C +# Foreground color for downloads with errors. +c.colors.downloads.error.fg = base08 +# Font color for hints. +c.colors.hints.fg = base00 +# Background color for hints. Note that you can use a `rgba(...)` value +# for transparency. +c.colors.hints.bg = base0A +# Font color for the matched part of hints. +c.colors.hints.match.fg = base05 +# Text color for the keyhint widget. +c.colors.keyhint.fg = base05 +# Highlight color for keys to complete the current keychain. +c.colors.keyhint.suffix.fg = base05 +# Background color of the keyhint widget. +c.colors.keyhint.bg = base00 +# Foreground color of an error message. +c.colors.messages.error.fg = base00 +# Background color of an error message. +c.colors.messages.error.bg = base08 +# Border color of an error message. +c.colors.messages.error.border = base08 +# Foreground color of a warning message. +c.colors.messages.warning.fg = base00 +# Background color of a warning message. +c.colors.messages.warning.bg = base0E +# Border color of a warning message. +c.colors.messages.warning.border = base0E +# Foreground color of an info message. +c.colors.messages.info.fg = base05 +# Background color of an info message. +c.colors.messages.info.bg = base00 +# Border color of an info message. +c.colors.messages.info.border = base00 +# Foreground color for prompts. +c.colors.prompts.fg = base05 +# Border used around UI elements in prompts. +c.colors.prompts.border = base00 +# Background color for prompts. +c.colors.prompts.bg = base00 +# Background color for the selected item in filename prompts. +c.colors.prompts.selected.bg = base02 +# Foreground color of the statusbar. +c.colors.statusbar.normal.fg = base0B +# Background color of the statusbar. +c.colors.statusbar.normal.bg = base00 +# Foreground color of the statusbar in insert mode. +c.colors.statusbar.insert.fg = base00 +# Background color of the statusbar in insert mode. +c.colors.statusbar.insert.bg = base0D +# Foreground color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.fg = base00 +# Background color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.bg = base0C +# Foreground color of the statusbar in private browsing mode. +c.colors.statusbar.private.fg = base00 +# Background color of the statusbar in private browsing mode. +c.colors.statusbar.private.bg = base01 +# Foreground color of the statusbar in command mode. +c.colors.statusbar.command.fg = base05 +# Background color of the statusbar in command mode. +c.colors.statusbar.command.bg = base00 +# Foreground color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.fg = base05 +# Background color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.bg = base00 +# Foreground color of the statusbar in caret mode. +c.colors.statusbar.caret.fg = base00 +# Background color of the statusbar in caret mode. +c.colors.statusbar.caret.bg = base0E +# Foreground color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.fg = base00 +# Background color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.bg = base0D +# Background color of the progress bar. +c.colors.statusbar.progress.bg = base0D +# Default foreground color of the URL in the statusbar. +c.colors.statusbar.url.fg = base05 +# Foreground color of the URL in the statusbar on error. +c.colors.statusbar.url.error.fg = base08 +# Foreground color of the URL in the statusbar for hovered links. +c.colors.statusbar.url.hover.fg = base05 +# Foreground color of the URL in the statusbar on successful load +# (http). +c.colors.statusbar.url.success.http.fg = base0C +# Foreground color of the URL in the statusbar on successful load +# (https). +c.colors.statusbar.url.success.https.fg = base0B +# Foreground color of the URL in the statusbar when there's a warning. +c.colors.statusbar.url.warn.fg = base0E +# Background color of the tab bar. +c.colors.tabs.bar.bg = base00 +# Color gradient start for the tab indicator. +c.colors.tabs.indicator.start = base0D +# Color gradient end for the tab indicator. +c.colors.tabs.indicator.stop = base0C +# Color for the tab indicator on errors. +c.colors.tabs.indicator.error = base08 +# Foreground color of unselected odd tabs. +c.colors.tabs.odd.fg = base05 +# Background color of unselected odd tabs. +c.colors.tabs.odd.bg = base01 +# Foreground color of unselected even tabs. +c.colors.tabs.even.fg = base05 +# Background color of unselected even tabs. +c.colors.tabs.even.bg = base00 +# Background color of pinned unselected even tabs. +c.colors.tabs.pinned.even.bg = base0C +# Foreground color of pinned unselected even tabs. +c.colors.tabs.pinned.even.fg = base07 +# Background color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.bg = base0B +# Foreground color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.fg = base07 +# Background color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.bg = base02 +# Foreground color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.fg = base05 +# Background color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.bg = base02 +# Foreground color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.fg = base05 +# Foreground color of selected odd tabs. +c.colors.tabs.selected.odd.fg = base05 +# Background color of selected odd tabs. +c.colors.tabs.selected.odd.bg = base02 +# Foreground color of selected even tabs. +c.colors.tabs.selected.even.fg = base05 +# Background color of selected even tabs. +c.colors.tabs.selected.even.bg = base02 +# Background color for webpages if unset (or empty to use the theme's +# color). +# c.colors.webpage.bg = base00 diff --git a/config/redshift/redshift.conf b/config/redshift/redshift.conf new file mode 100644 index 0000000..1e540e3 --- /dev/null +++ b/config/redshift/redshift.conf @@ -0,0 +1,14 @@ +[redshift] +temp-day=3000 +temp-night=2800 + +; transition day/night +fade=1 + +; manual location (geo location not working) +location-provider=manual + +; latitude and longitude +[manual] +lat=50.8008858 +lon=4.2886091 diff --git a/config/startx/xinitrc b/config/startx/xinitrc new file mode 100755 index 0000000..860fed2 --- /dev/null +++ b/config/startx/xinitrc @@ -0,0 +1,25 @@ +#!/usr/bin/env sh + +# xinput disable 'ETPS/2 Elantech Touchpad' & + +echo 'Starting redshift' +redshift -c $HOME/.config/redshift.conf & +echo 'Starting dunst' +dunst & +xset r rate 200 50 + +case "$(cat /etc/hostname)" in + cacharle-main) + xrandr --output DVI-0 --auto --left-of DVI-1 \ + --output DVI-1 --mode 1920x1080 --primary --left-of HDMI-0 \ + --output HDMI-0 --mode 1920x1080 + ;; + + charles-laptop) + xrandr | grep 'VGA1.*connected' && + xrandr --output LVDS1 --primary --left-of VGA1 \ + --output VGA1 --mode 1280x1024 + ;; +esac + +exec xmonad diff --git a/config/sublime-text/Preferences.sublime-settings b/config/sublime-text/Preferences.sublime-settings new file mode 100644 index 0000000..684ad2e --- /dev/null +++ b/config/sublime-text/Preferences.sublime-settings @@ -0,0 +1,11 @@ +{ + "color_scheme": "Packages/Solarized Color Scheme/Solarized (dark).sublime-color-scheme", + "font_face": "Fira Code", + "highlight_line": true, + "ignored_packages": + [ + "Vintage" + ], + "line_padding_top": 5, + "theme": "Adaptive.sublime-theme" +} diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf new file mode 100644 index 0000000..fc2fcb2 --- /dev/null +++ b/config/tmux/tmux.conf @@ -0,0 +1,13 @@ +unbind C-b +set -g prefix C-f +bind C-f send-prefix + +set -g default-terminal "screen.xterm-256color" +set -g mouse on +setw -g mode-keys vi + +unbind l +bind k select-pane -U +bind j select-pane -D +bind l select-pane -R +bind h select-pane -L diff --git a/config/urlview/.urlview b/config/urlview/.urlview new file mode 100644 index 0000000..f69970a --- /dev/null +++ b/config/urlview/.urlview @@ -0,0 +1 @@ +COMMAND $BROWSER %s diff --git a/config/vim/pluggins.vim b/config/vim/pluggins.vim new file mode 100644 index 0000000..c60ab84 --- /dev/null +++ b/config/vim/pluggins.vim @@ -0,0 +1,47 @@ +"""""""""""""""" +" vim pluggins " +"""""""""""""""" + +call plug#begin() + Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc + Plug 'tpope/vim-eunuch' " basic unix command in vim + Plug 'tomtom/tcomment_vim' " mininal commenter + Plug 'itchyny/lightline.vim' " minimal status bar + Plug 'HappyTramp/vim-syntax-extra' " syntax highlight of C operators + Plug 'romainl/vim-cool' " disable highlight after search + Plug 'tpope/vim-fugitive' " git wrapper + Plug 'junegunn/vim-easy-align' " align + Plug 'ludovicchabant/vim-gutentags' " generate tags in project root + Plug 'junegunn/goyo.vim' " generate tags in project root + + " Plug 'easymotion/vim-easymotion' " TODO very intresting + " Plug 'mhinz/vim-rfc' " RFC download/syntax/tags + Plug 'skammer/vim-css-color' + + + " markdown preview in browser + " Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} + + " syntax highlight for languages that aren't supported by default + Plug 'tikhomirov/vim-glsl' " glsl + Plug 'cespare/vim-toml' " toml + Plug 'ziglang/zig.vim' " zig + Plug 'nikvdp/ejs-syntax' " ejs + + " s19 at home + Plug 'HappyTramp/vim-42header' " 42 header + + " themes + " Plug 'joshdick/onedark.vim' " onedark + Plug 'dracula/vim', {'as': 'vim'} " dracula + Plug 'altercation/vim-colors-solarized' " solarized + + " intresting but not used + " Plug 'sheerun/vim-polyglot' " better syntax highlight + " Plug 'unblevable/quick-scope' " highlight first char to jump to word + " Plug 'jez/vim-superman' " man pages in vim (too slow) + Plug 'vim-scripts/rfc-syntax' " rfc + " Plug 'tacahiroy/ctrlp-funky' " extension to search function + Plug '/home/charles/git/c_formatter_42.vim' + Plug 'cacharle/doxy42.vim' +call plug#end() diff --git a/config/vim/vimrc b/config/vim/vimrc new file mode 100644 index 0000000..6b1bcc2 --- /dev/null +++ b/config/vim/vimrc @@ -0,0 +1,315 @@ +"""""""""" +" vimrc " +"""""""""" + +" xdg {{{ +set runtimepath^=$XDG_CONFIG_HOME/vim +set runtimepath+=$XDG_DATA_HOME/vim +set runtimepath+=$XDG_CONFIG_HOME/vim/after + +set packpath^=$XDG_DATA_HOME/vim,$XDG_CONFIG_HOME/vim +set packpath+=$XDG_CONFIG_HOME/vim/after,$XDG_DATA_HOME/vim/after + +let g:netrw_home = $XDG_DATA_HOME . "/vim" +call mkdir($XDG_DATA_HOME."/vim/spell", 'p') +set viewdir=$XDG_DATA_HOME/vim/view | call mkdir(&viewdir, 'p') + +set backupdir=$XDG_CACHE_HOME/vim/backup | call mkdir(&backupdir, 'p') +set directory=$XDG_CACHE_HOME/vim/swap | call mkdir(&directory, 'p') +set undodir=$XDG_CACHE_HOME/vim/undo | call mkdir(&undodir, 'p') +" }}} + +source pluggins.vim " load pluggins + +" common {{{ +let mapleader = ' ' " set leader key to space +let maplocalleader = '-' " set file local leader key to backslash +set nocompatible " not compatible with vi +set number " line number +" set relativenumber " line number relative to cursor +set numberwidth=1 " line numbers gutter autowidth +set cursorline " highlight current line +set noshowmatch " dont jump to pair bracket +set autoread " reload files when changes happen outside vim +set autowrite " auto write buf on certain events +set hidden " keep change in buffer when quitting window +set noswapfile " disable swap files +set scrolloff=2 " line padding when scrolling +set textwidth=0 " when line wrap occurs +set wrapmargin=0 " disable auto line wrapping +set encoding=utf-8 " utf-8 encoding +set formatoptions-=t " do not auto break line > 89 character +filetype plugin indent on " allow to add specific rules for certain type of file +" set mouse=a " mouse scrolling (heretic) +" }}} + +" browse list with tab {{{ +set wildmode=longest,list,full +set wildmenu " tab to cycle through completion options +set path+=** " recursive :find +" }}} + +" intuitif split opening {{{ +set splitbelow +set splitright +set fcs+=vert:│ " split separator +" }}} + +" tab {{{ +set expandtab " tab to space +set tabstop=4 " tab size +set shiftwidth=4 +set smarttab +set autoindent +set smartindent +" }}} + +" file search {{{ +set ignorecase " case insensitive +set smartcase +set hlsearch " match highlight +set incsearch +" }}} + +" status {{{ +set laststatus=2 " always a statusline (all window) +set showcmd " show current partial command in the bottom right +set noshowmode " dont show current mode (i.e --INSERT--) +" }}} + +" fold {{{ +set foldmethod=indent " create fold based on the text indent +set nofoldenable " not folded by default +" }}} + +""""""""""""""" +" colorscheme " +""""""""""""""" + +" one {{{ +" let g:onedark_terminal_italics=1 +" colorscheme onedark +" }}} +" dracula {{{ +" let g:dracula_bold = 1 +" let g:dracula_italic = 1 +" let g:dracula_colorterm = 0 +" colorscheme dracula +" }}} +" solarized {{{ +set t_Co=16 +let g:solarized_termcolors=16 +let g:solarized_visibility='low' " visibility of invisible chars with set list +set background=dark +colorscheme solarized +" }}} +" lightline {{{ +let g:lightline = {} +" let g:lightline.colorscheme = 'solarized' " lightline theme to solarized +" let g:lightline.colorscheme = 'jellybeans' " lightline theme to onedark +let g:lightline = { + \ 'colorscheme': 'solarized', + \ 'active': { + \ 'left': [ [ 'mode', 'paste' ], + \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] + \ }, + \ 'component_function': { + \ 'gitbranch': 'FugitiveHead' + \ }, + \ } +" }}} + +"""""""""""" +" mappings " +"""""""""""" + +" split navigation {{{ +nnoremap +nnoremap +nnoremap +nnoremap +" nnoremap +" nnoremap +" nnoremap +" nnoremap +nnoremap s= = +" }}} + +" common {{{ +" 'Y' yank to the end of the line +noremap Y y$ +" solves annoying delay went exiting insert mode +inoremap +" kj to exit insert mode +inoremap kj +" remove visual mode keybinding +noremap Q +" remove command line window keybinding +noremap q: +" search with very magic +nnoremap / /\v +nnoremap ? ?\v +" move line up and down +nnoremap _ ddkP +nnoremap + ddp +" long move up/down +nnoremap ( 10k +nnoremap ) 10j +" tag nagigation +nnoremap ] +nnoremap t +" common change until +nnoremap cu ct_ +nnoremap cp ct) +nnoremap c, ct, +" }}} + +" buffer navigation {{{ +nnoremap bn :bn +nnoremap bp :bp +nnoremap :b# +nnoremap bl :ls +" }}} + +" vimrc {{{ +nnoremap rc :vsplit $DOTDIR/.vimrc +nnoremap sc :source $MYVIMRC +" }}} + +" c {{{ +" create c function body from prototype +nnoremap gcf A{}j + +" initialise a school header file +function PutHeaderBoilerPlate() + let l:filename = join(split(toupper(expand('%:t')), '\.'), "_") + " echom l:filename + call append(12, "#ifndef " . l:filename) + call append(13, "# define " . l:filename) + call append(15, "#endif") +endfunction +nnoremap gch :Stdheader:call PutHeaderBoilerPlate() + +" put semicolon at the end of line +nnoremap ; mqA;`q +" doxygen format comments +autocmd Filetype c setlocal comments=s:/**,m:**,e:*/,s:/*,m:**,e:*/ +autocmd Filetype cpp setlocal comments=s:/**,m:**,e:*/,s:/*,m:**,e:*/ +" }}} + +" cpp {{{ +" Put Coplien Form boilerplate class +function PutCoplienFormFunc(name) + let l:default_constructor = a:name . "();\n" + let l:copy_constructor = a:name . "(const " . a:name . "& other);\n" + let l:copy_operator = a:name . "& operator=(const " . a:name . "& other);\n" + let l:destructor = "~" . a:name . "();\n" + + execute "normal iclass " . a:name . "\n{\npublic:\n" . l:default_constructor . l:copy_constructor . l:copy_operator . l:destructor . "\nprivate:\n};\n" + execute "normal <2{" +endfunction +" Put Coplien Form boilerplate according to filename +command! PutCoplienFormFile call PutCoplienFormFunc(split(expand('%:t'), '\.')[0]) +command! -nargs=1 PutCoplienForm call PutCoplienFormFunc("") +" }}} + +" quickfix window toggle {{{ +nnoremap q :call QuickfixToggle() +nnoremap n :cnext +nnoremap p :cprevious +let g:quickfix_is_open = 0 +function! QuickfixToggle() + if g:quickfix_is_open + cclose + let g:quickfix_is_open = 0 + else + copen + let g:quickfix_is_open = 1 + endif +endfunction +" }}} + +function! CountScopeLines() + normal! mq + execute '/^}' + let l:end_brace = line('.') + execute '?^{' + let l:start_brace = line('.') + normal! k + let l:scope_len = l:end_brace - l:start_brace - 1 + let l:scope_name = substitute(getline('.'), '\t', ' ', 'g') + echom l:scope_len . ' lines in |' . l:scope_name . '|' + normal! `q +endfunction +command! CountScopeLines call CountScopeLines() + +" make {{{ +nnoremap m :make all +" }}} + +" hook {{{ +" remove trailing white space on save +autocmd BufWritePre * %s/\s\+$//e +" dirty hack to disable this feature on markdown (autocmd! wouldn't work) +autocmd BufReadPre *.md autocmd! BufWritePre +" }}} + +" filetype {{{ +" real tab in c file for school projects +let g:c_syntax_for_h = 1 " filetype=c in header files instead of filetype=cpp +autocmd Filetype c setlocal noexpandtab +" std::cout << ... << std::endl; shortcut +autocmd Filetype cpp nnoremap cout istd::cout << << std::endl;2Fp :CtrlPTag +" }}} + +" quick-scope {{{ +" let g:qs_highlight_on_keys = ['f', 'F', 't', 'T'] +" }}} + +" man-plugin {{{ +" runtime! ftplugin/man.vim +" let g:ft_man_open_mode = 'vert' " open in a vertical split +" let g:ft_man_no_sect_fallback = 2 " if page specified fallback to page 2 (syscall pages) +" autocmd Filetype man unmap q: hmmmm?? +" }}} + +" ctrlp-funky {{{ +" let g:ctrlp_funky_syntax_highlight = 1 +" nnoremap :CtrlPFunky +" }}} + +" eazy-align {{{ +xmap ga (EasyAlign) +nmap ga (EasyAlign) +" }}} + +vnoremap c y:call system("xclip -selection clipboard", getreg("\"")) +nnoremap v :call setreg("\"", system("xclip -selection clipboard -o"))p + +let g:c_formatter_42_format_on_save = 0 + +let g:gutentags_ctags_exclude = ['doc/*', 'Makefile'] +" let g:gutentags_ctags_exclude_wildignore = 1 + +let g:goyo_height = 90 diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs new file mode 100644 index 0000000..b61bcea --- /dev/null +++ b/config/xmonad/xmonad.hs @@ -0,0 +1,76 @@ +import Control.Monad +import Data.List +import System.Exit + + +import XMonad +import XMonad.Config.Desktop + +-- Utilities +import XMonad.Util.EZConfig (additionalKeysP, additionalKeys) +import XMonad.Util.SpawnOnce +import XMonad.Util.Dmenu + +-- Layouts +import XMonad.Layout.NoBorders +import XMonad.Layout.Spacing +import XMonad.Layout.Grid + +-- Hooks +import XMonad.Hooks.InsertPosition + +-- xmonad :: XConfig -> IO () +-- https://hackage.haskell.org/package/xmonad-0.15/docs/XMonad-Core.html#t:XConfig +main = xmonad $ desktopConfig + { normalBorderColor = "#1c1c1c" + , focusedBorderColor = "#8a8a8a" + , terminal = "st" + , layoutHook = myLayouts + , manageHook = myManageHook + , modMask = mod4Mask -- mod key to super + , borderWidth = 2 + , focusFollowsMouse = False -- don't change window based on mouse position (need to click) + , workspaces = ["code", "compile", "web"] ++ map show [4..9] + } `additionalKeysP` myKeys + + +myLayouts = mySpacing 4 $ tiledVerticalBigMaster -- bigger master for code and smaller slave for compiling + ||| Mirror tiledHorizontalEven -- 50/50 horizontal split + ||| noBorders Full -- disable borders for fullscreen layout + ||| Grid + where tiledVerticalBigMaster = Tall 1 (3 / 100) (3 / 5) + tiledHorizontalEven = Tall 1 (3 / 100) (1 / 2) + mySpacing x = spacingRaw True (Border x x x x) False (Border x x x x) True + +myManageHook = insertPosition End Newer -- insert new window at the end of the current layout + +myKeys = [ ("", spawn "pulseaudio-ctl down") + , ("", spawn "pulseaudio-ctl up") + , ("", spawn "pulseaudio-ctl mute") + , ("M-", spawn "pulseaudio-ctl down") + , ("M-", spawn "pulseaudio-ctl up") + + , ("", spawn "~/bin/backlight-ctl up") + , ("", spawn "~/bin/backlight-ctl down") + , ("", spawn "slock") + , ("", spawn "~/bin/touchpad-toggle") + + , ("M-o", spawn "~/bin/project-open") + , ("M-m", spawn "st -e mocp") + , ("M-S-d", spawn "notify-send -i x-office-calendar \"$(date +\"%H:%M %A %d/%m/%Y %B\")\"") + , ("M-S-b", spawn "notify-send \"battery: $(cat /sys/class/power_supply/BAT0/capacity)\"") + , ("M-q", spawn "notify-send 'Restarting xmonad'" >> spawn restartCmd) + , ("M-S-q", confirm "Are you sure you want to shutdown?" $ io (exitWith ExitSuccess)) + ] + +confirm :: String -> X () -> X () +confirm prompt f = do + result <- menuArgs "dmenu" ["-p", prompt] ["yes", "no"] + when (result == "yes") f + +restartCmd :: String +restartCmd = intercalate "; " [ "if type xmonad" + , "then xmonad --recompile && xmonad --restart" + , "else xmessage xmonad not in \\$PATH: \"$PATH\"" + , "fi" + ] diff --git a/config/zathura/zathurarc b/config/zathura/zathurarc new file mode 100644 index 0000000..bac99f6 --- /dev/null +++ b/config/zathura/zathurarc @@ -0,0 +1,3 @@ +set selection-clipboard clipboard +map u scroll half-up +map d scroll half-down diff --git a/config/zsh/.zprofile b/config/zsh/.zprofile new file mode 100755 index 0000000..91b0c0b --- /dev/null +++ b/config/zsh/.zprofile @@ -0,0 +1,46 @@ +#!/bin/sh + +export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:$HOME/.local/bin" + +# applications +export EDITOR='vim' +export TERM='st-256color' +export TERMINAL='st' +export MAIL='me@cacharle.xyz' +export BROWSER='qutebrowser' +export BROWSERCLI='w3m' + +# XDG all the things +export XDG_CONFIG_HOME="$HOME/.config" +export XDG_DATA_HOME="$HOME/.local/share" +export XDG_CACHE_HOME="$HOME/.cache" + +export ZDOTDIT="$XDG_CONFIG_HOME/zsh" + +export HISTFILE="$XDG_CACHE_HOME/histfile" + +# color in man (less pager) +export LESS_TERMCAP_mb=$'\e[1;32m' +export LESS_TERMCAP_md=$'\e[1;32m' +export LESS_TERMCAP_me=$'\e[0m' +export LESS_TERMCAP_se=$'\e[0m' +export LESS_TERMCAP_so=$'\e[01;33m' +export LESS_TERMCAP_ue=$'\e[0m' +export LESS_TERMCAP_us=$'\e[1;4;31m' +export LESS_TERMCAP_mr=$(tput rev) +export LESS_TERMCAP_mh=$(tput dim) +export LESS_TERMCAP_ZN=$(tput ssubm) +export LESS_TERMCAP_ZV=$(tput rsubm) +export LESS_TERMCAP_ZO=$(tput ssupm) +export LESS_TERMCAP_ZW=$(tput rsupm) + + +export MINIKUBE_IN_STYLE=false # disable cringe minikube emojies + +# school env +export MINISHELL_TEST_BONUS=yes +export MINISHELL_TEST_PAGER=vim +export MINISHELL_TEST_FLAGS=-DMINISHELL_TEST +export WEBSERV_FLAGS=-DWEBSERV_CACHARLE + +[ "$(tty)" = '/dev/tty1' ] && exec startx diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc new file mode 100644 index 0000000..9cd21b5 --- /dev/null +++ b/config/zsh/.zshrc @@ -0,0 +1,80 @@ +############### +# zshrc # +############### + + +[ -z $DOTDIR ] && export DOTDIR=$HOME/git/dotfiles # FIXME have to change path manually if install elsewhere + +# load aliases +source $DOTDIR/.zsh_aliases + +# prompt +case `tty` in + /dev/tty[1-9]) + # %~ path ('~' if $HOME) + # %B/%b start/stop bold + # %B/%b start/stop color + NEWLINE=$'\n' + export PROMPT="${NEWLINE}%B%F{blue}%~%f${NEWLINE}%F{red}> %f%b" + ;; + *) + # pure prompt + export FPATH="$FPATH:$HOME/.zsh/pure" + ZSH_THEME="pure" + autoload -U promptinit + promptinit + prompt pure + ;; +esac + +# auto complete +autoload -U compinit +zstyle ':completion:*' menu select # menu like +zstyle ':completion:*' matcher-list '' \ + 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=*' 'r:|=* l:|=* r:|=*' # case insensitive +zmodload zsh/complist +compinit +# _comp_options+=(globdots) + +# vim keybindings in tab completion menu (https://www.youtube.com/watch?v=eLEo4OQ-cuQ) +bindkey -M menuselect 'h' vi-backward-char +bindkey -M menuselect 'k' vi-up-line-or-history +bindkey -M menuselect 'l' vi-forward-char +bindkey -M menuselect 'j' vi-down-line-or-history +bindkey -v '^?' backward-delete-char + +# vim keybindings in prompt +bindkey -v +export KEYTIMEOUT=1 + +setopt auto_cd # cd without `cd` command +# setopt pushd_ignore_dups +setopt list_rows_first # cycle through row first in menu +# setopt extendedglob + +# executed when changing directory +function chpwd() { + content=$(ls | wc -l) + ([ "$content" -lt 20 ] && ls -l) || + echo "$(pwd) contains $content entries" + [ "$(stat -c "%U" .)" = "$USER" ] && touch . # to sort by last cd +} + +# add command-not-found package suggestion +#source /etc/zsh_command_not_found + + +# ignore filetypes in autocomplete +fignore=(o hi) + +# pluggins +source $XDG_DATA_HOME/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # prompt syntax highlight + +export YSU_MESSAGE_POSITION="after" # you-should-use message after command output +source $XDG_DATA_HOME/zsh/zsh-you-should-use/you-should-use.plugin.zsh # alias reminder + +# set tab to 4 spaces +tabs 4 + + +export GPG_TTY=$(tty) # fixing gpg fatal error about tty diff --git a/config/zsh/aliases.zsh b/config/zsh/aliases.zsh new file mode 100644 index 0000000..790692e --- /dev/null +++ b/config/zsh/aliases.zsh @@ -0,0 +1,149 @@ +############### +# zsh aliases # +############### + +# color +alias grep='grep --color=auto' +alias tree='tree -C' +alias pacman='pacman --color=auto' +alias yay='yay --color=auto' +alias valgrindc='colour-valgrind' + +# common commands +alias less='less -N' # enable line number +alias v='vim' +# alias vim='nvim' +# alias mkdir='mkdir -p' +alias gdb='gdb -q' # disable long intro message +alias sudo='sudo ' # enable color (the search for aliases continues) +alias doas='doas ' # same for doas +alias info='info --vi-keys' + +# ls +alias ls='ls --color=auto -F' +alias ll="ls -lh" +alias la="ls -a" +alias lla="ls -alh" +alias lss="ls -Ssh" + +# tree +alias tree='tree -FCA' +alias t='tree' +alias ta='tree -a' +alias t1='tree -L 1' +alias t2='tree -L 2' +alias t3='tree -L 3' +alias ti="tree --matchdirs -I __pycache__ -I node_modules -I '*.o'" + +# man +alias ma="man" +alias ma1="man 1" +alias ma2="man 2" +alias ma3="man 3" + +# make +alias m='make' +alias mre='make re' +alias mclean='make clean' + +# git +alias ga='git add' +alias gaa='git add --all' +alias gau='git add --update' +alias gc='git commit' +alias gc!='git commit --amend' +alias gcmsg='git commit --message' +alias gd='git diff' +alias gds='git diff --staged' +alias gdt='git diff --stat' +alias gl='git pull' +alias glg='git log --abbrev-commit --stat' +alias glgg='git log --abbrev-commit --graph' +alias glgo='git log --oneline --no-decorate' +alias gp='git push' +alias gcl='git clone --recurse-submodules' +alias gst='git status' +alias gs='git status' +alias gss='git status --short' +alias gco='git checkout' +alias gsta='git stash push' +alias gstp='git stash pop' +alias grv="git remote -v" +alias gra="git remote add" +gpa() { + branch="$1" + [ -z "$branch" ] && branch=$(git branch | grep '^\* .*$' | cut -d ' ' -f 2) + git remote | xargs -I{} git push {} "$branch" +} +gpaf() { + branch="$1" + [ -z "$1" ] && branch=master + git remote | xargs -I{} git push -f {} "$branch" +} + +# lpass (lastpass-cli) +alias lpassp='lpass show --password --clip' # put password in clipboard + +# helper to switch between dual and single monitor setup +alias dual='xrandr --output LVDS1 --primary --left-of VGA1 --output VGA1 --mode 1280x1024' +alias single='xrandr --output VGA1 --off' + + +# edit config files +alias zshrc="vim $DOTDIR/.zshrc && source $DOTDIR/.zshrc" +alias zshaliasrc="vim $DOTDIR/.zsh_aliases && source $DOTDIR/.zshrc" +alias vimrc="vim $DOTDIR/.vimrc" +alias vimplugrc="vim $DOTDIR/.pluggins.vim" +alias xmonadrc="vim $DOTDIR/xmonad.hs" +alias muttrc="vim $DOTDIR/.muttrc" + +# other +#alias date="date -R" + +# parent directory jump +alias ..='cd ..' +alias ...='cd ../..' +alias ....='cd ../../..' + +alias norminette='ruby ~/git/norminette/norminette.rb' +alias norm='norminette' + +getrfc() { + curl "https://ietf.org/rfc/rfc$1.txt" > "$HOME/rfc/rfc$1.txt" +} + +# bluetooth +alias bt='bluetoothctl' +alias bton='echo power on | bluetoothctl' +alias btoff='echo power off | bluetoothctl' + +# pdf selector +# alias pdf-open="zathura \$(echo $HOME/Documents/*.pdf | tr ' ' '\\n' | dmenu)" + +alias cagob='RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo build' +alias cagor='RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo run' + +# wifi +wificonnect() { + nmcli device wifi connect $1 password $2 +} + +# alias mutt='neomutt' + +alias ytdl='youtube-dl --output "%(title)s.%(ext)s"' +alias ytdlp='youtube-dl --audio-format mp3 -i --output "%(playlist_index)s-%(title)s.%(ext)s"' +alias ytdla='youtube-dl --audio-format mp3 -i -x -f bestaudio/best --output "%(playlist_index)s-%(title)s.%(ext)s"' + +alias qmvdest='qmv --format=do' + +alias xclip='xclip -selection clipboard' + +pacman-url() { + pacman -Si "$1" | grep URL | tr -s ' ' | cut -d ' ' -f 3 +} + +grep-kill() { + ps aux | grep "$1" | tr -s ' ' | cut -d ' ' -f 2 | xargs kill +} + +alias filter-valgrind="sed -e 's/==[0-9]*==/==/' -e 's/0x[0-9A-F]*//'" diff --git a/dunst/dunstrc b/dunst/dunstrc deleted file mode 100644 index 0a8f19a..0000000 --- a/dunst/dunstrc +++ /dev/null @@ -1,414 +0,0 @@ -[global] - ### Display ### - - # Which monitor should the notifications be displayed on. - monitor = 0 - - # Display notification on focused monitor. Possible modes are: - # mouse: follow mouse pointer - # keyboard: follow window with keyboard focus - # none: don't follow anything - # - # "keyboard" needs a window manager that exports the - # _NET_ACTIVE_WINDOW property. - # This should be the case for almost all modern window managers. - # - # If this option is set to mouse or keyboard, the monitor option - # will be ignored. - follow = keyboard - - # The geometry of the window: - # [{width}]x{height}[+/-{x}+/-{y}] - # The geometry of the message window. - # The height is measured in number of notifications everything else - # in pixels. If the width is omitted but the height is given - # ("-geometry x2"), the message window expands over the whole screen - # (dmenu-like). If width is 0, the window expands to the longest - # message displayed. A positive x is measured from the left, a - # negative from the right side of the screen. Y is measured from - # the top and down respectively. - # The width can be negative. In this case the actual width is the - # screen width minus the width defined in within the geometry option. - geometry = "0x0-30+20" - - # Show how many messages are currently hidden (because of geometry). - indicate_hidden = yes - - # Shrink window if it's smaller than the width. Will be ignored if - # width is 0. - shrink = no - - # The transparency of the window. Range: [0; 100]. - # This option will only work if a compositing window manager is - # present (e.g. xcompmgr, compiz, etc.). - transparency = 0 - - # The height of the entire notification. If the height is smaller - # than the font height and padding combined, it will be raised - # to the font height and padding. - notification_height = 0 - - # Draw a line of "separator_height" pixel height between two - # notifications. - # Set to 0 to disable. - separator_height = 2 - - # Padding between text and separator. - padding = 8 - - # Horizontal padding. - horizontal_padding = 8 - - # Defines width in pixels of frame around the notification window. - # Set to 0 to disable. - frame_width = 2 - - # Defines color of the frame around the notification window. - frame_color = "#aaaaaa" - - # Define a color for the separator. - # possible values are: - # * auto: dunst tries to find a color fitting to the background; - # * foreground: use the same color as the foreground; - # * frame: use the same color as the frame; - # * anything else will be interpreted as a X color. - separator_color = auto - - # Sort messages by urgency. - sort = yes - - # Don't remove messages, if the user is idle (no mouse or keyboard input) - # for longer than idle_threshold seconds. - # Set to 0 to disable. - # A client can set the 'transient' hint to bypass this. See the rules - # section for how to disable this if necessary - idle_threshold = 120 - - ### Text ### - - font = Noto 9 - - # The spacing between lines. If the height is smaller than the - # font height, it will get raised to the font height. - line_height = 4 - - # Possible values are: - # full: Allow a small subset of html markup in notifications: - # bold - # italic - # strikethrough - # underline - # - # For a complete reference see - # . - # - # strip: This setting is provided for compatibility with some broken - # clients that send markup even though it's not enabled on the - # server. Dunst will try to strip the markup but the parsing is - # simplistic so using this option outside of matching rules for - # specific applications *IS GREATLY DISCOURAGED*. - # - # no: Disable markup parsing, incoming notifications will be treated as - # plain text. Dunst will not advertise that it has the body-markup - # capability if this is set as a global setting. - # - # It's important to note that markup inside the format option will be parsed - # regardless of what this is set to. - markup = full - - # The format of the message. Possible variables are: - # %a appname - # %s summary - # %b body - # %i iconname (including its path) - # %I iconname (without its path) - # %p progress value if set ([ 0%] to [100%]) or nothing - # %n progress value if set without any extra characters - # %% Literal % - # Markup is allowed - format = "%s\n%b%p" - - # Alignment of message text. - # Possible values are "left", "center" and "right". - alignment = left - - # Show age of message if message is older than show_age_threshold - # seconds. - # Set to -1 to disable. - show_age_threshold = 60 - - # Split notifications into multiple lines if they don't fit into - # geometry. - word_wrap = yes - - # When word_wrap is set to no, specify where to make an ellipsis in long lines. - # Possible values are "start", "middle" and "end". - ellipsize = middle - - # Ignore newlines '\n' in notifications. - ignore_newline = no - - # Stack together notifications with the same content - stack_duplicates = true - - # Hide the count of stacked notifications with the same content - hide_duplicate_count = false - - # Display indicators for URLs (U) and actions (A). - show_indicators = yes - - ### Icons ### - - # Align icons left/right/off - icon_position = right - - # Scale larger icons down to this size, set to 0 to disable - max_icon_size = 32 - - # Paths to default icons. - icon_path = /usr/share/icons/Adwaita/32x32/status/:/usr/share/icons/Adwaita/32x32/devices/:/usr/share/icons/Adwaita/32x32/legacy/:/usr/share/icons/Adwaita/32x32/mimetypes/ - - ### History ### - - # Should a notification popped up from history be sticky or timeout - # as if it would normally do. - sticky_history = yes - - # Maximum amount of notifications kept in history - history_length = 20 - - ### Misc/Advanced ### - - # dmenu path. - dmenu = /usr/bin/dmenu -p dunst: - - # Browser for opening urls in context menu. - browser = /usr/bin/qutebrowser - - # Always run rule-defined scripts, even if the notification is suppressed - always_run_script = true - - # Define the title of the windows spawned by dunst - title = Dunst - - # Define the class of the windows spawned by dunst - class = Dunst - - # Print a notification on startup. - # This is mainly for error detection, since dbus (re-)starts dunst - # automatically after a crash. - startup_notification = false - - # Manage dunst's desire for talking - # Can be one of the following values: - # crit: Critical features. Dunst aborts - # warn: Only non-fatal warnings - # mesg: Important Messages - # info: all unimportant stuff - # debug: all less than unimportant stuff - verbosity = mesg - - # Define the corner radius of the notification window - # in pixel size. If the radius is 0, you have no rounded - # corners. - # The radius will be automatically lowered if it exceeds half of the - # notification height to avoid clipping text and/or icons. - corner_radius = 0 - - ### Legacy - - # Use the Xinerama extension instead of RandR for multi-monitor support. - # This setting is provided for compatibility with older nVidia drivers that - # do not support RandR and using it on systems that support RandR is highly - # discouraged. - # - # By enabling this setting dunst will not be able to detect when a monitor - # is connected or disconnected which might break follow mode if the screen - # layout changes. - force_xinerama = false - - ### mouse - - # Defines action of mouse event - # Possible values are: - # * none: Don't do anything. - # * do_action: If the notification has exactly one action, or one is marked as default, - # invoke it. If there are multiple and no default, open the context menu. - # * close_current: Close current notification. - # * close_all: Close all notifications. - mouse_left_click = close_current - mouse_middle_click = do_action - mouse_right_click = close_all - -# Experimental features that may or may not work correctly. Do not expect them -# to have a consistent behaviour across releases. -[experimental] - # Calculate the dpi to use on a per-monitor basis. - # If this setting is enabled the Xft.dpi value will be ignored and instead - # dunst will attempt to calculate an appropriate dpi value for each monitor - # using the resolution and physical size. This might be useful in setups - # where there are multiple screens with very different dpi values. - per_monitor_dpi = false - -[shortcuts] - - # Shortcuts are specified as [modifier+][modifier+]...key - # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", - # "mod3" and "mod4" (windows-key). - # Xev might be helpful to find names for keys. - - # Close notification. - close = ctrl+space - - # Close all notifications. - close_all = ctrl+shift+space - - # Redisplay last message(s). - # On the US keyboard layout "grave" is normally above TAB and left - # of "1". Make sure this key actually exists on your keyboard layout, - # e.g. check output of 'xmodmap -pke' - history = ctrl+grave - - # Context menu. - context = ctrl+shift+period - -[urgency_low] - # IMPORTANT: colors have to be defined in quotation marks. - # Otherwise the "#" and following would be interpreted as a comment. - background = "#222222" - foreground = "#888888" - timeout = 10 - # Icon for notifications with low urgency, uncomment to enable - #icon = /path/to/icon - -[urgency_normal] - background = "#285577" - foreground = "#ffffff" - timeout = 10 - # Icon for notifications with normal urgency, uncomment to enable - #icon = /path/to/icon - -[urgency_critical] - background = "#900000" - foreground = "#ffffff" - frame_color = "#ff0000" - timeout = 15 - # Icon for notifications with critical urgency, uncomment to enable - #icon = /path/to/icon - -# Every section that isn't one of the above is interpreted as a rules to -# override settings for certain messages. -# -# Messages can be matched by -# appname (discouraged, see desktop_entry) -# body -# category -# desktop_entry -# icon -# match_transient -# msg_urgency -# stack_tag -# summary -# -# and you can override the -# background -# foreground -# format -# frame_color -# fullscreen -# new_icon -# set_stack_tag -# set_transient -# timeout -# urgency -# -# Shell-like globbing will get expanded. -# -# Instead of the appname filter, it's recommended to use the desktop_entry filter. -# GLib based applications export their desktop-entry name. In comparison to the appname, -# the desktop-entry won't get localized. -# -# SCRIPTING -# You can specify a script that gets run when the rule matches by -# setting the "script" option. -# The script will be called as follows: -# script appname summary body icon urgency -# where urgency can be "LOW", "NORMAL" or "CRITICAL". -# -# NOTE: if you don't want a notification to be displayed, set the format -# to "". -# NOTE: It might be helpful to run dunst -print in a terminal in order -# to find fitting options for rules. - -# Disable the transient hint so that idle_threshold cannot be bypassed from the -# client -#[transient_disable] -# match_transient = yes -# set_transient = no -# -# Make the handling of transient notifications more strict by making them not -# be placed in history. -#[transient_history_ignore] -# match_transient = yes -# history_ignore = yes - -# fullscreen values -# show: show the notifications, regardless if there is a fullscreen window opened -# delay: displays the new notification, if there is no fullscreen window active -# If the notification is already drawn, it won't get undrawn. -# pushback: same as delay, but when switching into fullscreen, the notification will get -# withdrawn from screen again and will get delayed like a new notification -#[fullscreen_delay_everything] -# fullscreen = delay -#[fullscreen_show_critical] -# msg_urgency = critical -# fullscreen = show - -#[espeak] -# summary = "*" -# script = dunst_espeak.sh - -#[script-test] -# summary = "*script*" -# script = dunst_test.sh - -#[ignore] -# # This notification will not be displayed -# summary = "foobar" -# format = "" - -#[history-ignore] -# # This notification will not be saved in history -# summary = "foobar" -# history_ignore = yes - -#[skip-display] -# # This notification will not be displayed, but will be included in the history -# summary = "foobar" -# skip_display = yes - -#[signed_on] -# appname = Pidgin -# summary = "*signed on*" -# urgency = low -# -#[signed_off] -# appname = Pidgin -# summary = *signed off* -# urgency = low -# -#[says] -# appname = Pidgin -# summary = *says* -# urgency = critical -# -#[twitter] -# appname = Pidgin -# summary = *twitter.com* -# urgency = normal - -[stack-volumes] - appname = "pulseaudio-ctl" - set_stack_tag = "volume" - -# vim: ft=cfg diff --git a/grep.vim b/grep.vim deleted file mode 100644 index 32181f7..0000000 --- a/grep.vim +++ /dev/null @@ -1,23 +0,0 @@ -nnoremap g :set operatorfunc=GrepOpg@ -vnoremap g :call GrepOp(visualmode()) - -function! s:GrepOp(type) - let saved = @@ - - if a:type ==# 'v' - execute "normal! `y" - elseif a:type ==# 'char' - execute "normal! `[v`]y" - else - return - endif - - silent execute "grep! -R " . shellescape(@@) . " ." - silent redraw! - let g:quickfix_is_open = 1 - copen - let @@ = saved -endfunction - -nnoremap gn :cnext -nnoremap gp :cprevious diff --git a/local/bin/backlight-ctl b/local/bin/backlight-ctl new file mode 100755 index 0000000..2963d83 --- /dev/null +++ b/local/bin/backlight-ctl @@ -0,0 +1,23 @@ +#!/bin/sh + +[ "$#" -ne 1 ] && exit 1; + + +if [ "$(hostname)" = manjaro ] +then + cmd=light + up_opt=-A + down_opt=-U +else + cmd=xbacklight + up_opt=-inc + down_opt=-dec +fi + +case "$1" in + "up") "$cmd" "$up_opt" 5 ;; + "down") "$cmd" "$down_opt" 5 ;; + *) exit 1 ;; +esac + +notify-send "backlight $("$cmd" | cut -d '.' -f 1)" diff --git a/local/bin/battery-low-check b/local/bin/battery-low-check new file mode 100755 index 0000000..dbbdc6b --- /dev/null +++ b/local/bin/battery-low-check @@ -0,0 +1,5 @@ +#!/bin/sh + +capacity=$(cat /sys/class/power_supply/BAT0/capacity) + +[ "$capacity" -lt 10 ] && notify-send -u critical "Battery low $capacity%" diff --git a/local/bin/bitwarden-dmenu b/local/bin/bitwarden-dmenu new file mode 100755 index 0000000..68afe04 --- /dev/null +++ b/local/bin/bitwarden-dmenu @@ -0,0 +1,8 @@ +#!/bin/sh + +domain="$(echo | dmenu -p 'Enter domain name: ')" + +echo | dmenu -P -p 'Enter your master password: ' | + (bw get password "$domain" || + { notify-send -u critical 'Bad password'; exit 1; }) | + xclip -selection clipboard diff --git a/local/bin/cacharle-sync b/local/bin/cacharle-sync new file mode 100755 index 0000000..80f19bb --- /dev/null +++ b/local/bin/cacharle-sync @@ -0,0 +1,28 @@ +#!/bin/sh + +usage() { + echo "Usage: $0 push/pull [rsync args...]" +} + +[ -z "$1" ] && usage && exit 1 + +RSYNC_ARGS="$(echo "$*" | cut -d ' ' -f 2-)" +RSYNC_CMD="rsync -avh --progress --compress $RSYNC_ARGS" + +REMOTE_USER=charles +REMOTE_HOST=cacharle.xyz + +SYNC_DIR="cacharle-sync/" +SYNC_PATH="$HOME/$SYNC_DIR" + +case "$1" in + push) + $RSYNC_CMD "$SYNC_PATH" "$REMOTE_USER@$REMOTE_HOST:$SYNC_DIR" + ;; + pull) + $RSYNC_CMD "$REMOTE_USER@$REMOTE_HOST:$SYNC_DIR" "$SYNC_PATH" + ;; + *) + usage && exit 1 + ;; +esac diff --git a/local/bin/music-dl b/local/bin/music-dl new file mode 100755 index 0000000..a16cd97 --- /dev/null +++ b/local/bin/music-dl @@ -0,0 +1,34 @@ +#!/bin/sh + +conf_filename=music-dl.conf + +error() { + echo "Error: $1" + return 1 +} + +fatal() { + error "$1" + exit 1 +} + +[ ! -f "$conf_filename" ] && fatal "'$conf_filename' not found in current directory" + +conf_get() { + key="$1" + matches="$(sed -n 's/^'"$key"'=\(.*\)$/\1/ p' $conf_filename)" + if [ -z "$matches" ] + then + error "'$key' not found in '$conf_filename'" + return 1 + fi + echo "$matches" | tail -n 1 +} + +conf_get bonjour || echo pas bien +conf_get aurevoir + + +# ytdl='youtube-dl --output "%(title)s.%(ext)s"' +# ytdlp='youtube-dl --audio-format mp3 -i --output "%(playlist_index)s-%(title)s.%(ext)s"' +# ytdla='youtube-dl --audio-format mp3 -i -x -f bestaudio/best --output "%(playlist_index)s-%(title)s.%(ext)s"' diff --git a/local/bin/music-dl.conf b/local/bin/music-dl.conf new file mode 100644 index 0000000..e865370 --- /dev/null +++ b/local/bin/music-dl.conf @@ -0,0 +1,9 @@ +bonjour=foo +aurevoir=lala +auasdf + +asdf +asd +fa +sdf +asd diff --git a/local/bin/newsboat-reload b/local/bin/newsboat-reload new file mode 100755 index 0000000..82e26a7 --- /dev/null +++ b/local/bin/newsboat-reload @@ -0,0 +1,8 @@ +#!/bin/sh + +# adapted from: https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/cron/newsup + +ping -q -c 1 cacharle.xyz > /dev/null || exit # no internet +pgrep -f 'newsboat$' > /dev/null && exit # newsboat already running + +newsboat -x reload diff --git a/local/bin/project-open b/local/bin/project-open new file mode 100755 index 0000000..adb27a4 --- /dev/null +++ b/local/bin/project-open @@ -0,0 +1,53 @@ +#!/bin/sh + +# shellcheck disable=SC2088 +# (tile does not expand in single quote) +dest=$( + find ~/git -mindepth 1 -maxdepth 1 -printf '%A@\t%f\n' | + sort -r | + cut -f 2 | + dmenu -l 10 -p '~/git/' +) + +[ -z "$dest" ] && exit 1 + +dest_path="$HOME/git/$dest" + +if cd "$dest_path" 2> /dev/null +then + touch "$dest_path" + exec st +else + while [ -z "$choice" ] + do + choice=$(printf 'create\nclone\ncancel' | dmenu -p "New repository at ~/git/$dest?") + done + + case "$choice" in + "create") + mkdir -p "$dest_path" + cd "$dest_path" || exit 1 + git init + exec st + ;; + + "clone") + while [ -z "$remote_choice" ] + do + remote_choice=$(printf 'github.com\ncacharle.xyz\nclipboard\nother' | dmenu -p "Remote location") + done + case "$remote_choice" in + github.com) prefix='git@github.com:cacharle/' ;; + cacharle.xyz) prefix='git@cacharle.xyz:/srv/git/' ;; + clipboard) dest="$(xclip -selection clipboard -o)" ;; + other) ;; + esac + url="$prefix$(echo "$dest" | dmenu -p "Enter repository url: $prefix")" + st -e /bin/sh -c "git clone --recursive '$url' '$dest_path' && cd '$dest_path' && exec $SHELL" || + notify-send -u critical "Could not clone $url in $dest_path" && exit 1 + ;; + + "cancel") exit ;; + *) exit 1 ;; + esac +fi diff --git a/local/bin/repo-client b/local/bin/repo-client new file mode 100755 index 0000000..49049d8 --- /dev/null +++ b/local/bin/repo-client @@ -0,0 +1,3 @@ +#!/bin/sh + +ssh git@cacharle.xyz repo $* diff --git a/local/bin/tag-music b/local/bin/tag-music new file mode 100755 index 0000000..826a83a --- /dev/null +++ b/local/bin/tag-music @@ -0,0 +1,32 @@ +#!/bin/sh + +music_dir="$HOME/Music" + +for artist_dir in "$music_dir"/* +do + [ ! -d "$artist_dir" ] && continue + artist="$(basename "$artist_dir")" + [ "$artist" = backup ] && continue + + for album_dir in "$artist_dir"/* + do + album="$(basename "$album_dir")" + [ ! -d "$album_dir" ] && continue + + for song_file in "$album_dir"/* + do + [ ! -f "$song_file" ] && continue + song="$(basename "$song_file" | rev | cut -d '.' -f 2- | rev)" + # echo $song_file + track=0 + if expr "$song" : "[0-9][0-9]*\-.*" > /dev/null + then + track="$(echo "$song" | cut -d '-' -f 1)" + song="$(echo "$song" | cut -d '-' -f 2-)" + fi + # echo $track $song + # echo $song_file + taffy --artist "$artist" --album "$album" --title "$song" --track "$track" "$song_file" + done + done +done diff --git a/local/bin/touchpad-toggle b/local/bin/touchpad-toggle new file mode 100755 index 0000000..e4dc959 --- /dev/null +++ b/local/bin/touchpad-toggle @@ -0,0 +1,12 @@ +#!/bin/sh + +touchpad_name='ETPS/2 Elantech Touchpad' + +active="$(xinput list-props "$touchpad_name" | grep 'Device Enabled' | cut -f 3)" + +if [ "$active" -eq 1 ] +then + xinput disable "$touchpad_name" +else + xinput enable "$touchpad_name" +fi diff --git a/local/share/applications/mutt.desktop b/local/share/applications/mutt.desktop new file mode 100644 index 0000000..24d0a48 --- /dev/null +++ b/local/share/applications/mutt.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Mail client +Exec=/usr/bin/mutt %u diff --git a/local/share/applications/newsboat.desktop b/local/share/applications/newsboat.desktop new file mode 100644 index 0000000..609bb5a --- /dev/null +++ b/local/share/applications/newsboat.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=RSS client +Exec=/usr/bin/newsboat %u diff --git a/local/share/applications/sxiv.desktop b/local/share/applications/sxiv.desktop new file mode 100644 index 0000000..0db2053 --- /dev/null +++ b/local/share/applications/sxiv.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Image viewer +Exec=/usr/local/bin/sxiv %u diff --git a/local/share/applications/zathura.desktop b/local/share/applications/zathura.desktop new file mode 100644 index 0000000..8c38677 --- /dev/null +++ b/local/share/applications/zathura.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=PDF reader +Exec=/usr/bin/zathura %u diff --git a/local/share/mimeapps.list b/local/share/mimeapps.list new file mode 100644 index 0000000..49a184b --- /dev/null +++ b/local/share/mimeapps.list @@ -0,0 +1,25 @@ +[Default Applications] + +# from: https://git.lukesmith.xyz/dotfiles/file/.config/mimeapps.list + +# xdg-open will use these settings to determine how to open filetypes. +# These .desktop entries can also be seen and changed in ~/.local/share/applications/ + +# text/x-shellscript=text.desktop; +# x-scheme-handler/magnet=torrent.desktop; +# application/x-bittorrent=torrent.desktop; +x-scheme-handler/mailto=mail.desktop; +# text/plain=text.desktop; +application/postscript=zathura.desktop; +application/pdf=zathura.desktop; + +image/png=sxiv.desktop; +image/jpeg=sxiv.desktop; +image/gif=sxiv.desktop; +image/svg+xml=sxiv.desktop; + +application/rss+xml=newsboat.desktop + +video/x-matroska=mpv.desktop +# x-scheme-handler/lbry=lbry.desktop +# inode/directory=file.desktop diff --git a/local/share/mutt/solarized b/local/share/mutt/solarized new file mode 160000 index 0000000..3b23c55 --- /dev/null +++ b/local/share/mutt/solarized @@ -0,0 +1 @@ +Subproject commit 3b23c55eb43849975656dd89e3f35dacd2b93e69 diff --git a/mimeapps.list b/mimeapps.list deleted file mode 100644 index 49a184b..0000000 --- a/mimeapps.list +++ /dev/null @@ -1,25 +0,0 @@ -[Default Applications] - -# from: https://git.lukesmith.xyz/dotfiles/file/.config/mimeapps.list - -# xdg-open will use these settings to determine how to open filetypes. -# These .desktop entries can also be seen and changed in ~/.local/share/applications/ - -# text/x-shellscript=text.desktop; -# x-scheme-handler/magnet=torrent.desktop; -# application/x-bittorrent=torrent.desktop; -x-scheme-handler/mailto=mail.desktop; -# text/plain=text.desktop; -application/postscript=zathura.desktop; -application/pdf=zathura.desktop; - -image/png=sxiv.desktop; -image/jpeg=sxiv.desktop; -image/gif=sxiv.desktop; -image/svg+xml=sxiv.desktop; - -application/rss+xml=newsboat.desktop - -video/x-matroska=mpv.desktop -# x-scheme-handler/lbry=lbry.desktop -# inode/directory=file.desktop diff --git a/mutt-colors-solarized b/mutt-colors-solarized deleted file mode 160000 index 3b23c55..0000000 --- a/mutt-colors-solarized +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3b23c55eb43849975656dd89e3f35dacd2b93e69 diff --git a/pulseaudio-ctl/config b/pulseaudio-ctl/config deleted file mode 100644 index 51d65b4..0000000 --- a/pulseaudio-ctl/config +++ /dev/null @@ -1,25 +0,0 @@ -# -# $HOME/.config/pulseaudio-ctl/config -# - -# The default setting is for pulseaudio-ctl to NOT increase to volume level -# above 100 % but Some users may wish exceed this level. If this describes -# your use case, uncomment the UPPER_THRESHOLD variable below setting it to -# the new upper threshold. -# -#UPPER_THRESHOLD=150 - -# Push output through libnotify. Set to any value to enable this feature -# and note that you must have /usr/bin/notify-send to use this. On Arch -# libnotify provides this. Other distros may not name it as such. -# -NOTIFY=yes - -# Show a graphical progress-bar type visualization of the volume level in -# libnotify. No setting or commented out will show a simply percentage but -# a setting will convert the percentage to a progress-bar in libnotify. -# -BARCHART=yes - -# Use KDE OSD notification. Set to any value to enable this feature. -#KDE_OSD=yes diff --git a/qutebrowser/config.py b/qutebrowser/config.py deleted file mode 100644 index bcbdc5a..0000000 --- a/qutebrowser/config.py +++ /dev/null @@ -1,285 +0,0 @@ -import os - -from qutebrowser.api import interceptor - -config.load_autoconfig(True) - -# Youtube ad blocking -def filter_yt(info: interceptor.Request): - url = info.request_url - if ( - url.host() == 'www.youtube.com' - and url.path() == '/get_video_info' - and '&adformat=' in url.query() - ): - info.block() - -interceptor.register(filter_yt) - - -c.aliases = { - 'q': 'close', - 'sc': 'config-source' -} - -c.url.start_pages = ['https://searx.cacharle.xyz'] -c.url.searchengines = { - 'DEFAULT': 'https://searx.cacharle.xyz?q={}', - 'd': 'https://duckduckgo.com/?q={}', - 'g': 'https://google.com/?q={}', - 'y': 'https://www.youtube.com/results?search_query={}', - 'gh': 'https://github.com/search?q={}', - 'h': 'https://hoogle.haskell.org/?hoogle={}', - 'cpp': 'http://cplusplus.com/search.do?q={}', - 'lar': 'https://www.larousse.fr/dictionnaires/francais/{}' -} - -c.fonts.default_family = 'Fira Mono' -c.fonts.hints = 'bold 11pt default_family' - -c.hints.chars = 'asdfghjkl;' # use key in the main row for hints - -# c.statusbar.show = 'in-mode' - -c.editor.command = [ - '/usr/local/bin/st', '-e', - '/usr/bin/vim', '{file}', '+{line}', '-c', 'startinsert!' -] - -c.messages.timeout = 4000 - -config.bind(';v', 'hint links spawn /usr/bin/mpv --ytdl-format=best {hint-url} ;;' - 'message-info "opening in video player"') - -config.bind('', 'completion-item-focus next', 'command') -config.bind('', 'completion-item-focus prev', 'command') - -config.bind('J', 'tab-prev', 'normal') -config.bind('K', 'tab-next', 'normal') - -config.bind('', 'devtools', 'normal') - -c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark theme (very nice result) -c.colors.webpage.bg = 'black' # Disabling white flash before page loading - -# c.content.proxy = 'socks://localhost:9050/' # tor -c.content.autoplay = False -c.content.notifications = False -#c.content.cookies.accept = 'no-3rdparty' - -c.auto_save.session = True -c.session.lazy_restore = True - -home_path = os.environ.get('HOME') -if home_path is not None: - download_path = os.path.join(home_path, "downloads") - if not os.path.exists(download_path): - os.mkdir(download_path) - c.downloads.location.directory = download_path -c.downloads.remove_finished = 5000 - -# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) -# Base16 qutebrowser template by theova -# Solarized Dark scheme by Ethan Schoonover (modified by aramisgithub) -base00 = '#002b36' -base01 = '#073642' -base02 = '#586e75' -base03 = '#657b83' -base04 = '#839496' -base05 = '#93a1a1' -base06 = '#eee8d5' -base07 = '#fdf6e3' -base08 = '#dc322f' -base09 = '#cb4b16' -base0A = '#b58900' -base0B = '#859900' -base0C = '#2aa198' -base0D = '#268bd2' -base0E = '#6c71c4' -base0F = '#d33682' -# set qutebrowser colors -# Text color of the completion widget. May be a single color to use for -# all columns or a list of three colors, one for each column. -c.colors.completion.fg = base05 -# Background color of the completion widget for odd rows. -c.colors.completion.odd.bg = base01 -# Background color of the completion widget for even rows. -c.colors.completion.even.bg = base00 -# Foreground color of completion widget category headers. -c.colors.completion.category.fg = base0A -# Background color of the completion widget category headers. -c.colors.completion.category.bg = base00 -# Top border color of the completion widget category headers. -c.colors.completion.category.border.top = base00 -# Bottom border color of the completion widget category headers. -c.colors.completion.category.border.bottom = base00 -# Foreground color of the selected completion item. -c.colors.completion.item.selected.fg = base05 -# Background color of the selected completion item. -c.colors.completion.item.selected.bg = base02 -# Top border color of the selected completion item. -c.colors.completion.item.selected.border.top = base02 -# Bottom border color of the selected completion item. -c.colors.completion.item.selected.border.bottom = base02 -# Foreground color of the matched text in the selected completion item. -c.colors.completion.item.selected.match.fg = base0B -# Foreground color of the matched text in the completion. -c.colors.completion.match.fg = base0B -# Color of the scrollbar handle in the completion view. -c.colors.completion.scrollbar.fg = base05 -# Color of the scrollbar in the completion view. -c.colors.completion.scrollbar.bg = base00 -# Background color of disabled items in the context menu. -c.colors.contextmenu.disabled.bg = base01 -# Foreground color of disabled items in the context menu. -c.colors.contextmenu.disabled.fg = base04 -# Background color of the context menu. If set to null, the Qt default is used. -c.colors.contextmenu.menu.bg = base00 -# Foreground color of the context menu. If set to null, the Qt default is used. -c.colors.contextmenu.menu.fg = base05 -# Background color of the context menu’s selected item. If set to null, the Qt default is used. -c.colors.contextmenu.selected.bg = base02 -#Foreground color of the context menu’s selected item. If set to null, the Qt default is used. -c.colors.contextmenu.selected.fg = base05 -# Background color for the download bar. -c.colors.downloads.bar.bg = base00 -# Color gradient start for download text. -c.colors.downloads.start.fg = base00 -# Color gradient start for download backgrounds. -c.colors.downloads.start.bg = base0D -# Color gradient end for download text. -c.colors.downloads.stop.fg = base00 -# Color gradient stop for download backgrounds. -c.colors.downloads.stop.bg = base0C -# Foreground color for downloads with errors. -c.colors.downloads.error.fg = base08 -# Font color for hints. -c.colors.hints.fg = base00 -# Background color for hints. Note that you can use a `rgba(...)` value -# for transparency. -c.colors.hints.bg = base0A -# Font color for the matched part of hints. -c.colors.hints.match.fg = base05 -# Text color for the keyhint widget. -c.colors.keyhint.fg = base05 -# Highlight color for keys to complete the current keychain. -c.colors.keyhint.suffix.fg = base05 -# Background color of the keyhint widget. -c.colors.keyhint.bg = base00 -# Foreground color of an error message. -c.colors.messages.error.fg = base00 -# Background color of an error message. -c.colors.messages.error.bg = base08 -# Border color of an error message. -c.colors.messages.error.border = base08 -# Foreground color of a warning message. -c.colors.messages.warning.fg = base00 -# Background color of a warning message. -c.colors.messages.warning.bg = base0E -# Border color of a warning message. -c.colors.messages.warning.border = base0E -# Foreground color of an info message. -c.colors.messages.info.fg = base05 -# Background color of an info message. -c.colors.messages.info.bg = base00 -# Border color of an info message. -c.colors.messages.info.border = base00 -# Foreground color for prompts. -c.colors.prompts.fg = base05 -# Border used around UI elements in prompts. -c.colors.prompts.border = base00 -# Background color for prompts. -c.colors.prompts.bg = base00 -# Background color for the selected item in filename prompts. -c.colors.prompts.selected.bg = base02 -# Foreground color of the statusbar. -c.colors.statusbar.normal.fg = base0B -# Background color of the statusbar. -c.colors.statusbar.normal.bg = base00 -# Foreground color of the statusbar in insert mode. -c.colors.statusbar.insert.fg = base00 -# Background color of the statusbar in insert mode. -c.colors.statusbar.insert.bg = base0D -# Foreground color of the statusbar in passthrough mode. -c.colors.statusbar.passthrough.fg = base00 -# Background color of the statusbar in passthrough mode. -c.colors.statusbar.passthrough.bg = base0C -# Foreground color of the statusbar in private browsing mode. -c.colors.statusbar.private.fg = base00 -# Background color of the statusbar in private browsing mode. -c.colors.statusbar.private.bg = base01 -# Foreground color of the statusbar in command mode. -c.colors.statusbar.command.fg = base05 -# Background color of the statusbar in command mode. -c.colors.statusbar.command.bg = base00 -# Foreground color of the statusbar in private browsing + command mode. -c.colors.statusbar.command.private.fg = base05 -# Background color of the statusbar in private browsing + command mode. -c.colors.statusbar.command.private.bg = base00 -# Foreground color of the statusbar in caret mode. -c.colors.statusbar.caret.fg = base00 -# Background color of the statusbar in caret mode. -c.colors.statusbar.caret.bg = base0E -# Foreground color of the statusbar in caret mode with a selection. -c.colors.statusbar.caret.selection.fg = base00 -# Background color of the statusbar in caret mode with a selection. -c.colors.statusbar.caret.selection.bg = base0D -# Background color of the progress bar. -c.colors.statusbar.progress.bg = base0D -# Default foreground color of the URL in the statusbar. -c.colors.statusbar.url.fg = base05 -# Foreground color of the URL in the statusbar on error. -c.colors.statusbar.url.error.fg = base08 -# Foreground color of the URL in the statusbar for hovered links. -c.colors.statusbar.url.hover.fg = base05 -# Foreground color of the URL in the statusbar on successful load -# (http). -c.colors.statusbar.url.success.http.fg = base0C -# Foreground color of the URL in the statusbar on successful load -# (https). -c.colors.statusbar.url.success.https.fg = base0B -# Foreground color of the URL in the statusbar when there's a warning. -c.colors.statusbar.url.warn.fg = base0E -# Background color of the tab bar. -c.colors.tabs.bar.bg = base00 -# Color gradient start for the tab indicator. -c.colors.tabs.indicator.start = base0D -# Color gradient end for the tab indicator. -c.colors.tabs.indicator.stop = base0C -# Color for the tab indicator on errors. -c.colors.tabs.indicator.error = base08 -# Foreground color of unselected odd tabs. -c.colors.tabs.odd.fg = base05 -# Background color of unselected odd tabs. -c.colors.tabs.odd.bg = base01 -# Foreground color of unselected even tabs. -c.colors.tabs.even.fg = base05 -# Background color of unselected even tabs. -c.colors.tabs.even.bg = base00 -# Background color of pinned unselected even tabs. -c.colors.tabs.pinned.even.bg = base0C -# Foreground color of pinned unselected even tabs. -c.colors.tabs.pinned.even.fg = base07 -# Background color of pinned unselected odd tabs. -c.colors.tabs.pinned.odd.bg = base0B -# Foreground color of pinned unselected odd tabs. -c.colors.tabs.pinned.odd.fg = base07 -# Background color of pinned selected even tabs. -c.colors.tabs.pinned.selected.even.bg = base02 -# Foreground color of pinned selected even tabs. -c.colors.tabs.pinned.selected.even.fg = base05 -# Background color of pinned selected odd tabs. -c.colors.tabs.pinned.selected.odd.bg = base02 -# Foreground color of pinned selected odd tabs. -c.colors.tabs.pinned.selected.odd.fg = base05 -# Foreground color of selected odd tabs. -c.colors.tabs.selected.odd.fg = base05 -# Background color of selected odd tabs. -c.colors.tabs.selected.odd.bg = base02 -# Foreground color of selected even tabs. -c.colors.tabs.selected.even.fg = base05 -# Background color of selected even tabs. -c.colors.tabs.selected.even.bg = base02 -# Background color for webpages if unset (or empty to use the theme's -# color). -# c.colors.webpage.bg = base00 diff --git a/redshift.conf b/redshift.conf deleted file mode 100644 index 1e540e3..0000000 --- a/redshift.conf +++ /dev/null @@ -1,14 +0,0 @@ -[redshift] -temp-day=3000 -temp-night=2800 - -; transition day/night -fade=1 - -; manual location (geo location not working) -location-provider=manual - -; latitude and longitude -[manual] -lat=50.8008858 -lon=4.2886091 diff --git a/slock/config.def.h b/slock/config.def.h deleted file mode 100644 index a21b349..0000000 --- a/slock/config.def.h +++ /dev/null @@ -1,12 +0,0 @@ -/* user and group to drop privileges to */ -static const char *user = "charles"; -static const char *group = "wheel"; - -static const char *colorname[NUMCOLS] = { - [INIT] = "#003355", /* after initialization */ - [INPUT] = "#005577", /* during input */ - [FAILED] = "#CC3333", /* wrong password */ -}; - -/* treat a cleared input like a wrong password (color) */ -static const int failonclear = 1; diff --git a/stylus.json b/stylus.json deleted file mode 100644 index f510c8a..0000000 --- a/stylus.json +++ /dev/null @@ -1,915 +0,0 @@ -[ - { - "enabled": false, - "updateUrl": "https://userstyles.org/styles/chrome/168350.json", - "md5Url": "https://update.userstyles.org/168350.md5", - "url": "http://userstyles.org/styles/168350", - "originalMd5": "cd55ff3c99dcc3b55464d1ee466a6c7e", - "installDate": 1589622036752, - "sections": [ - { - "urls": [], - "urlPrefixes": [], - "domains": [], - "regexps": [ - "^https?://(?!www.google.com)(((?!desktop).*.)?(githubusercontent|githubstatus|github).(?!io|myshopify|blog)).*" - ], - "code": "body {\r\n background-color: #222 !important;\r\n background-clip: border-box !important;\r\n background-origin: padding-box !important;\r\n background-attachment: scroll !important;\r\n background-repeat: repeat !important;\r\n background-size: auto !important;\r\n background-position: left top !important;\r\n}\r\n\r\n.user-status-message-wrapper div {\r\n color: white;\r\n}\r\n\r\n.pinned-item-checkbox:checked + .pinned-item-name {\r\n background-color: #333;\r\n}\r\n\r\n.discussion-header,\r\n.discussion-block-title,\r\n.discussion-labels,\r\n.discussion-block-header,\r\n.branch-action,\r\n.discussion-reply {\r\n background: #24292e;\r\n}\r\n\r\n.branch-action {\r\n background: transparent;\r\n}\r\n\r\n.graphs .selection .overlay {\r\n visibility: hidden !important;\r\n}\r\n.UnderlineNav-item {\r\n color: #bbb !important;\r\n}\r\n\r\n.UnderlineNav-item:focus,\r\n.UnderlineNav-item:hover {\r\n color: white !important;\r\n}\r\n\r\n.d-flex {\r\n color: white !important;\r\n}\r\n\r\n.project-columns-container {\r\n background: #222;\r\n}\r\n\r\n.btn-octicon:hover {\r\n color: white !important;\r\n}\r\n\r\na,\r\ntable.files td.icon,\r\ntd.icon,\r\ntable.files td.icon .octicon-file-directory {\r\n color: #4299fc;\r\n}\r\n\r\ntable.files td.icon,\r\ntable.files tr.navigation-focus td table.files td.icon .octicon-file-directory,\r\n.commit-link,\r\n.commit-ref,\r\n.js-add-project-description,\r\n.link-gray:hover,\r\n.link-gray-dark:hover,\r\n.link-hover-blue:hover {\r\n color: #4299fc !important;\r\n}\r\n\r\n.commit-link:hover,\r\n.link-gray:hover,\r\n.link-gray-dark:hover,\r\n.link-hover-blue:hover,\r\n.project-header .project-header-link:hover {\r\n text-decoration: underline !important;\r\n}\r\n\r\n.project-header .project-header-link:hover {\r\n color: white !important;\r\n}\r\n\r\n.select-menu-button:hover {\r\n color: white !important;\r\n}\r\n\r\na.topic-tag,\r\n.topic-tag {\r\n color: #b7cce4 !important;\r\n}\r\n\r\n.blob-num-expandable .directional-expander {\r\n color: #ccc !important;\r\n}\r\n\r\n.pl-smi,\r\n.blob-code,\r\n.blob-code-inner {\r\n color: #e8e8e8 !important;\r\n}\r\n\r\n.pl-en {\r\n color: #eaaa71 !important;\r\n}\r\n\r\n/* custom code font */\r\n\r\npre,\r\ncode,\r\ntt,\r\nkbd:not(.badmono),\r\npre,\r\nsamp,\r\n.blob-code,\r\n.file-data pre,\r\n.line-data,\r\n#gist-form .file .input textarea,\r\n.blob-code-inner {\r\n font-family: \"Menlo\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace !important;\r\n}\r\n\r\n/* Base color panel */\r\n\r\n.btn:active,\r\noption:hover,\r\n.listings-layout .nav li a:hover,\r\n.state-merged,\r\n#fork-select .target:not(.disabled):hover,\r\n.flash-notice,\r\ntable.upgrades tr:hover td,\r\n.email-format .email-hidden-toggle:hover a,\r\n.dashboard-tabs a:hover,\r\n.dropdown-menu > li > a:hover,\r\n.documentation-results a:hover,\r\n.hidden-text-expander a:hover,\r\n.dropdown-item:hover,\r\n.dropdown-item.zeroclipboard-is-hover,\r\n.subnav-item.selected,\r\n.subnav-item.selected:hover,\r\n.subnav-item.selected:focus,\r\n.example-nav li a.selected,\r\n.typeahead-result.navigation-focus,\r\n.typeahead-result:hover,\r\n.issues-reset-query:hover .octicon-x,\r\n.segmented-nav li.active,\r\n.diff-expander:hover,\r\n.pagination .current,\r\n.owner-select-target:hover,\r\n.filter-item.selected,\r\n.release-timeline-tags .expander-text:hover .expander-dots,\r\na.gollum-minibutton:hover,\r\na.gollum-minibutton:visited:hover,\r\n.search-result-item.navigation-focus,\r\n.gist-quicksearch-result.navigation-focus,\r\n.gist-snippet .link-overlay .link,\r\n.suggester li.navigation-focus,\r\n.btn.btn-outline.zeroclipboard-is-hover,\r\n.btn.btn-outline.zeroclipboard-is-active,\r\n.select-menu-item:not(.select-menu-item-parent).navigation-focus,\r\n.reaction-sort-item:hover,\r\n.reaction-sort-item.selected,\r\n.pull-request-link:hover,\r\n.issues-reset-query:hover .issues-reset-query-block,\r\n#com .dropdown-menu a:hover,\r\n.date-selector td.selected,\r\n.date-selector td.selectable-day:hover,\r\n.add-line-comment,\r\nbutton.add-line-comment,\r\n.suggester .cur,\r\n.autocomplete-item.selected,\r\n.autocomplete-item.navigation-focus,\r\n.select-menu-item.navigation-focus.selected,\r\n.reblame-link:hover {\r\n background: #4183c4 !important;\r\n}\r\n\r\n.context-button:after {\r\n border-color: #4183c4 transparent transparent !important;\r\n}\r\n\r\n.octofication .message,\r\n.panel-nav:not(.disabled):active,\r\n.diagram-icon:not(.active),\r\n.btn.btn-outline,\r\n.btn.btn-outline:hover:not(.ajax-pagination-btn),\r\n.btn.btn-outline.zeroclipboard-is-hover,\r\n:checked + .radio-label,\r\n.gist-snippet .file-box:hover .file,\r\n.octofication .message,\r\n.reaction-sort-item.selected,\r\n.pull-request-link,\r\n.timeline-progressive-disclosure-button:hover {\r\n border-color: #4183c4 !important;\r\n}\r\n\r\n.header-nav-link:hover .dropdown-caret,\r\n.header-nav-link:focus .dropdown-caret,\r\n#com #header .top-nav .dropdown-button:hover .dropdown-caret {\r\n border-top-color: #4183c4 !important;\r\n}\r\n\r\n.table-list .table-list-item.unread .table-list-cell-checkbox,\r\n.Box-row--unread,\r\n.Box-row.unread {\r\n border-left-color: #4183c4 !important;\r\n box-shadow: 2px 0 0 #4183c4 inset !important;\r\n}\r\n\r\n/* notification icon */\r\n\r\n.notification-indicator .mail-status {\r\n background: #4183c4 !important;\r\n border-color: #1d1d1d !important;\r\n}\r\n\r\n/* text selection */\r\n\r\n::selection {\r\n background-color: #4183c4 !important;\r\n color: #fff !important;\r\n}\r\n\r\n::-moz-selection {\r\n background-color: #4183c4 !important;\r\n color: #fff !important;\r\n}\r\n\r\n.CodeMirror-selected {\r\n background: rgba(255, 255, 255, 0.12) !important;\r\n}\r\n\r\n.CodeMirror::selection {\r\n background: rgba(255, 255, 255, 0.12) !important;\r\n}\r\n\r\n.CodeMirror::-moz-selection {\r\n background: rgba(255, 255, 255, 0.12) !important;\r\n}\r\n\r\n/* placeholder */\r\n\r\n::-webkit-input-placeholder {\r\n color: #666 !important;\r\n opacity: 1 !important;\r\n}\r\n\r\n::-moz-placeholder {\r\n color: #666 !important;\r\n opacity: 1 !important;\r\n}\r\n\r\n::placeholder {\r\n color: #666 !important;\r\n opacity: 1 !important;\r\n}\r\n\r\n.select-menu-text-filter input::-webkit-input-placeholder {\r\n color: #555 !important;\r\n}\r\n\r\n.select-menu-text-filter input::-moz-placeholder {\r\n color: #555 !important;\r\n}\r\n\r\n.select-menu-text-filter input:-ms-input-placeholder {\r\n color: #555 !important;\r\n}\r\n\r\n.select-menu-text-filter input::placeholder {\r\n color: #555 !important;\r\n}\r\n\r\n/* focus hightlight */\r\n\r\na:focus,\r\nbutton:focus,\r\n[tabindex] {\r\n outline-color: #4183c4 !important;\r\n}\r\n\r\ninput.focus[type=\"text\"],\r\n#adv_code_search .focus.search-page-label,\r\n\r\n/* below selector has a ton of weight. Better to override it with\r\n class selectors that unset box-shadow and rules here. Testable\r\n on the repo tag editor */\r\n\r\ninput[type=\"text\"]:focus:not(.js-color-editor-input):not(.tree-finder-input):not(.js-site-search-focus):not(.tag-input-inner),\r\n.focused .drag-and-drop,\r\n#adv_code_search .search-page-label:focus,\r\ninput.focus[type=\"password\"],\r\ninput[type=\"password\"]:focus,\r\ninput.focus[type=\"email\"],\r\ninput[type=\"email\"]:focus,\r\ninput.focus[type=\"number\"],\r\ninput[type=\"number\"]:focus,\r\ninput.focus[type=\"tel\"],\r\ninput[type=\"tel\"]:focus,\r\ninput.focus[type=\"url\"],\r\ninput[type=\"url\"]:focus,\r\ntextarea.focus,\r\ntextarea:focus,\r\n#q:focus~button,\r\ninput.color-editor-input:focus,\r\n#ghd-settings select:focus,\r\n#ghd-settings input:focus,\r\n.intgrs-lstng-item:hover,\r\n.ajax-pagination-btn:focus,\r\n.select-menu-item:focus,\r\n.form-control.focus,\r\n.form-select.focus,\r\n.form-select:focus,\r\ninput.subnav-search-input:focus,\r\ninput[type=\"checkbox\"]:focus,\r\n.upload-enabled.focused {\r\n border-color: #4183c4 !important;\r\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 2px #4183c4 !important;\r\n outline-color: #4183c4 !important;\r\n}\r\n\r\n/* inputs */\r\n\r\nselect,\r\ninput:not(.btn-link) {\r\n -moz-appearance: none !important;\r\n background-color: #25272a !important;\r\n border-color: #343434 !important;\r\n color: #eee !important;\r\n}\r\n\r\ninput:not(.btn-link):focus {\r\n border-color: #2188ff !important;\r\n}\r\n\r\n/* custom checkbox and radio styles. We need a full set of styles here as\r\n WebKit removes all of them when -webkit-appearance: none is set. */\r\n\r\ninput[type=\"checkbox\"],\r\ninput[type=\"checkbox\"]:focus,\r\ninput[type=\"radio\"],\r\ninput[type=\"radio\"]:focus,\r\ninput[type=\"checkbox\"]:hover:active,\r\ninput[type=\"radio\"]:hover:active,\r\ninput[type=\"checkbox\"]:disabled,\r\ninput[type=\"checkbox\"]:hover:disabled,\r\ninput[type=\"checkbox\"]:hover:active:disabled {\r\n -webkit-appearance: none !important;\r\n background-color: #25272a !important;\r\n border: 1px solid #484848 !important;\r\n color: #eee !important;\r\n height: 1em !important;\r\n width: 1em !important;\r\n}\r\n\r\ninput[type=\"radio\"] {\r\n border-radius: 100% !important;\r\n}\r\n\r\ninput[type=\"checkbox\"]:checked {\r\n background: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxwYXRoIGQ9Im05OC43OTk5ODggMjEzbC0wLjc5OTk4OCA4OWMwIDAgMTAzIDEwMiAxMDQgMTAyYzEgMCAyMDUgLTIwMSAyMDUgLTIwMWMwIDAgMCAtOTAgMCAtOTFjLTAuNzk5OTg4IDAgLTIwNCAyMDMgLTIwNCAyMDNsLTEwNCAtMTAyeiIgZmlsbD0iI2RkZGRkZCIvPjwvZz48L3N2Zz4KCg==\") !important;\r\n background-size: cover !important;\r\n}\r\n\r\ninput[type=\"checkbox\"]:indeterminate {\r\n background: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxyZWN0IGhlaWdodD0iMTI4IiB3aWR0aD0iMzg0IiB5PSIxOTIiIHg9IjY0IiBmaWxsPSIjZGRkZGRkIi8+PC9nPjwvc3ZnPg==\") !important;\r\n background-size: cover !important;\r\n}\r\n\r\ninput[type=\"radio\"]:checked {\r\n background: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48Zz48cmVjdCBoZWlnaHQ9IjUxMiIgd2lkdGg9IjUxMiIgeT0iMCIgeD0iMCIgZmlsbD0iIzAwMDAwMCIvPjxjaXJjbGUgY3g9IjI1NiIgY3k9IjI1NiIgcj0iMTI4IiBmaWxsPSIjZGRkZGRkIi8+PC9nPjwvc3ZnPg==\") !important;\r\n background-size: cover !important;\r\n}\r\n\r\ncode {\r\n overflow: visible !important;\r\n}\r\n\r\npre,\r\n.highlight,\r\n.diff-table,\r\n.tab-size {\r\n tab-size: 4 !important;\r\n -moz-tab-size: 4 !important;\r\n}\r\n\r\n@supports (position: sticky) {\r\n .blog-aside {\r\n position: sticky !important;\r\n top: 8px !important;\r\n }\r\n}\r\n\r\n/* User time line firsts */\r\n\r\ndiv[id^=\"contribution-joined-github\"] img {\r\n padding-bottom: 20px !important;\r\n}\r\n\r\n/* PR toolbar tweaks */\r\n\r\n.diffbar {\r\n padding-top: 10px !important;\r\n padding-bottom: 40px !important;\r\n}\r\n\r\n.is-stuck .diffbar {\r\n background: #25272a !important;\r\n height: 2.5em;\r\n pointer-events: all !important;\r\n}\r\n\r\n/* User profile: Make the border not cross into the years buttons */\r\n\r\n.profile-timeline-month-heading:after {\r\n width: calc(100% - 94px) !important;\r\n}\r\n\r\n/* HACK: Label colors */\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #f\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #f\"] {\r\n color: #e8e8e8 !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #e\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #e\"] {\r\n color: #e8e8e8 !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #d\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #d\"] {\r\n color: #e8e8e8 !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #c\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #c\"] {\r\n color: #e8e8e8 !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #3\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #3\"] {\r\n color: #25272a !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #2\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #2\"] {\r\n color: #25272a !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #1\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #1\"] {\r\n color: #25272a !important;\r\n}\r\n\r\na.label[href*=\"/issues?\"][style*=\" color: #0\"],\r\na.label[href*=\"/pulls?\"][style*=\" color: #0\"] {\r\n color: #25272a !important;\r\n}\r\n\r\n.markdown-body pre code,\r\n.markdown-body pre tt {\r\n padding: 0.2em 0 !important;\r\n border: none !important;\r\n}\r\n\r\n.markdown-body code:before,\r\n.markdown-body code:after,\r\n.markdown-body tt:before,\r\n.markdown-body tt:after,\r\n.markdown-body pre code:before,\r\n.markdown-body pre code:after,\r\n.markdown-body pre tt:before,\r\n.markdown-body pre tt:after,\r\nimg[src$=\"/notices/context_button.png\"] {\r\n display: none !important;\r\n}\r\n\r\n.intgrs-lstng-item-description:after {\r\n background-image: linear-gradient(\r\n to right,\r\n rgba(24, 24, 24, 0),\r\n #25272a 80%\r\n ) !important;\r\n}\r\n\r\n.marketplace-product-callout-bg {\r\n background-image: linear-gradient(\r\n to right,\r\n rgba(24, 24, 24, 0),\r\n #25272a\r\n ) !important;\r\n}\r\n\r\n.markdown-body a:hover * {\r\n text-decoration: inherit !important;\r\n}\r\n\r\n#message-list .pagination a:hover,\r\n.link-mono:hover {\r\n text-decoration: underline !important;\r\n}\r\n\r\n.branch-infobar {\r\n font-weight: normal !important;\r\n}\r\n\r\n.merge-pr-more-commits,\r\n.profile-timeline-month-heading {\r\n padding: 2px 5px !important;\r\n}\r\n\r\ninput.tree-finder-input,\r\ninput.tree-finder-input:focus,\r\ninput.js-site-search-focus {\r\n background: transparent !important;\r\n border: none !important;\r\n box-shadow: none !important;\r\n}\r\n\r\n.markdown-body a:not([href]),\r\n.markdown-body a code {\r\n color: inherit !important;\r\n text-decoration: none !important;\r\n}\r\n\r\n.markdown-body strike code,\r\n.markdown-body strike tt {\r\n text-decoration: line-through !important;\r\n}\r\n\r\n.blame-commit + .blame-line {\r\n border-top: 1px solid #484848 !important;\r\n box-shadow: none !important;\r\n}\r\n\r\n.exploregrid-item {\r\n border-color: rgba(255, 255, 255, 0.075) !important;\r\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 10px rgba(0, 0, 0, 0.05) !important;\r\n}\r\n\r\n.exploregrid-item:hover {\r\n border-color: rgba(255, 255, 255, 0.15) !important;\r\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.3) !important;\r\n}\r\n\r\n/* remove shadow */\r\n\r\nh1,\r\nh2,\r\nh3,\r\nh4,\r\npre,\r\npre *,\r\ncode,\r\ntt,\r\nli,\r\np,\r\ninput,\r\na,\r\nth,\r\nkbd,\r\n.news,\r\n.btn,\r\n.metabox em.placeholder,\r\ntable.notifications,\r\n#download_button,\r\n.comment-count,\r\nem.date,\r\ninput.search,\r\n#user-links,\r\n.upper_footer,\r\n.switcher > span:after,\r\n.upgrades td,\r\n.blog-feedback,\r\n.description,\r\n.nav-bar-tabs,\r\n.pagination span,\r\n.mini-icon-advanced-search,\r\n.count,\r\n.select-menu-title,\r\n.select-menu-button:after,\r\n#repo-message,\r\n.usage-bar dt,\r\n#user-links .name img,\r\n#common-issues,\r\n.upload-progress,\r\n.svg-tip,\r\n.meta,\r\n.flash,\r\n.flash-global,\r\n#files .file .meta .info span,\r\n.file-box .meta .info span,\r\nbody#com #header,\r\n.search-filters,\r\n.usage-bar dd,\r\n.avatar-stack.multiple-avatars .avatar:last-child,\r\n.avatar-stack.multiple-avatars:before,\r\n.box-action,\r\n.file-diff-line,\r\n.file-code-lines,\r\n#adv_code_search .search-page-input,\r\nli.ssh-key .ssh-key-state-indicator.not-recent,\r\n#gist-form .gist-name-textbox,\r\n.labels .label,\r\n.octotree_views .octotree_view .octotree_view_header,\r\n.fullscreen-overlay textarea,\r\n.avatar-child,\r\n.discussion-item .label-color,\r\n.coupons .coupon-form-body,\r\n.label-private,\r\n.repo-file-upload-progress,\r\n.more-repos,\r\n.header .header-search-wrapper.focus,\r\n.blame-commit .blame-commit-info,\r\n.label,\r\n.Label {\r\n box-shadow: none !important;\r\n}\r\n\r\na,\r\nbutton,\r\np,\r\nul,\r\nli,\r\ndl.form label,\r\n.formbody label,\r\n.js-context-button,\r\n.footer-text,\r\n.octicon-mark-github,\r\n.minibutton span,\r\nspan.name,\r\n.diff-line-code,\r\n.num,\r\n.user-list em,\r\n.diff-expander .octicon-unfold:hover,\r\n.select-menu-loading-overlay:before,\r\n.select-menu-item a,\r\n.minibutton,\r\n.mini-icon,\r\n.mini-icon:before,\r\n.list-tip:before,\r\n.line-num-content,\r\n.diff-expander .octicon-unfold,\r\n.minibutton i,\r\n.comment-header-author,\r\n.header,\r\n.gist .gist-file .gist-meta,\r\n.logo-placeholder,\r\n.branch-group-heading,\r\n.render-bar,\r\n.auth-form-header .octicon,\r\n.render-info .symbol,\r\n.article-meta,\r\n.select-menu-title,\r\n.text-shadow-light,\r\n.text-shadow-dark,\r\nul#bootcamp li a h4 {\r\n text-shadow: none !important;\r\n}\r\n\r\n/* transparent background only */\r\n\r\nbody > pre,\r\n.textographic a.repo,\r\n.stars-browser .filter-bar,\r\n.highlight .file-diff-line:hover pre,\r\n.gravatar,\r\n.topsearch span.search-input,\r\np.meta,\r\n.sidebar .milestone,\r\n.commit-desc pre,\r\n#facebox,\r\n.profilecols .filter-bar,\r\n.btn-group,\r\ndiv.content-header .search-form,\r\n.file-code,\r\n.org-header .edit-org:hover,\r\n.gist-advanced-options .select-menu-button:after,\r\n#wrapper,\r\nli.commit,\r\n.gravatar img,\r\n.commit-comments-header-sha,\r\npre.headers code,\r\n.audit-search-form,\r\n.columns.equacols.bordered,\r\n.gist-item ul.meta > li > a:hover,\r\n.commits li img,\r\na.minibutton code,\r\n.milestone,\r\n.keyboard-mappings th,\r\n.api #header-wrapper .nav,\r\n.marketing-nav a.selected,\r\n#graph_data .tabs,\r\n.org-nav-item.selected,\r\n.edit-team-member:hover,\r\ntr.commit,\r\n.release-timeline .js-details-container,\r\n.section-heading-title a.js-selected-navigation-item,\r\n.featured-callout .screenshot,\r\n.timeline-commits .commit-meta .status,\r\n.theme-picker-spinner,\r\n.timeline-commits .commit-meta .octicon,\r\n.file .meta-divider,\r\n.avatar-stack.multiple-avatars:before,\r\n#feedHandler,\r\n.discussion-sidebar-item .thread-subscription-status,\r\n.boxed-group.application-show-group .logo-upload,\r\n.diagram-icon-small,\r\n.commits-listing .commit-group-title .octicon-git-commit,\r\n#readme .highlight,\r\n.ace-github,\r\n.add-member-team-list.table-list,\r\n.theme-picker,\r\n.avatar-stack .avatar,\r\n.boxed-group,\r\n.full-commit .btn.btn-outline,\r\n.prose-diff > .markdown-body ins,\r\n.header .divider-vertical,\r\n.ace-github-base16,\r\n.markdown-body pre code,\r\n.markdown-body pre tt,\r\n#readme .plain pre,\r\n.uploaded-files,\r\n.merge-pr-more-commits code,\r\n.two-factor-toggle .two-factor-status button,\r\n.input_area,\r\n#notebook .highlight,\r\n#notebook .highlight pre,\r\n.output_area pre,\r\n.gist-snippet-meta .gist-count-links > li > a:hover,\r\n.markdown-body img,\r\n.delete-owners-button:hover,\r\n.avatar-child,\r\n.session-authentication .header-logged-out,\r\n.session-authentication .auth-form-header,\r\n.timeline-progressive-disclosure-items,\r\n#com #footer,\r\n.pr-toolbar,\r\n.diffbar,\r\n.shade-gradient,\r\n#categories .list,\r\n.gist-banner,\r\n.select-menu-item-parent,\r\n.main-content,\r\n.showcase-page-header,\r\n.showcase-page-pattern:after,\r\n.description-inline,\r\n.result-group a,\r\n.border-wrap,\r\na.feed-icon,\r\n.session-device,\r\n.boxed-group-list > li.session-device:hover,\r\n#message-list .pagination a,\r\n#message-list .pagination .disabled,\r\n.merge-status-item .merge-status-icon,\r\n.js-release-form,\r\n.project-columns,\r\n.project-header,\r\n.user-profile-nav,\r\n.profile-timeline-year-list.bg-white,\r\n.discussion-item-review .timeline-comment,\r\n.libraries-jumbotron,\r\n.sidebar-module h3 a:hover,\r\n.menu-item.selected,\r\n.bg-shade-gradient,\r\n.dev-hero,\r\n.render-container.is-render-ready.is-render-requested:not(.is-render-failed),\r\n.user-list li em,\r\n.toolbar-commenting .dropdown-item,\r\n.toolbar-commenting .dropdown-item:hover,\r\n.CodeMirror-lines,\r\n.api table,\r\n.dashboard-notice .coupon,\r\n.release-label,\r\n.oauth-org-access-details .oauth-org-item.on,\r\n.MarketplaceSideNav {\r\n background: none !important;\r\n background-color: unset !important;\r\n}\r\n\r\n/* remove background gradient */\r\n\r\n.big-notice,\r\n.clean td,\r\n.legend .clean,\r\n.avatar .overlay.size-48,\r\n.listing.closed,\r\n.gist .gist-file .gist-data,\r\n.gist-syntax,\r\n.gist .gist-file .gist-data .line-numbers,\r\n.listing .repo,\r\n.render-shell .leaflet-marker-pane img,\r\n.showcase-page-pattern,\r\n.showcase-page-pattern:after,\r\n#notebook .output_png img {\r\n background-color: transparent !important;\r\n background-image: none !important;\r\n}\r\n\r\n/* border-radius */\r\n\r\n#wrapper,\r\n#your-repos-filter,\r\n.topsearch ul.nav,\r\n.merge-pr-more-commits,\r\n.oauth-org-access-details .boxed-group-list > li.on,\r\n.gist-snippet .file-box .highlight {\r\n border-radius: 3px !important;\r\n}\r\n\r\n/* add rounded borders on bottom - issue caused by GitHub bugs */\r\n\r\nbody[data-render-url],\r\n.render-viewer,\r\n.comment-content,\r\n.gist .gist-file .gist-meta,\r\n.more-repos {\r\n border-radius: 0 0 3px 3px !important;\r\n}\r\n\r\n.dashboard-tabs a,\r\n.search-filters {\r\n border-radius: 0 !important;\r\n}\r\n\r\n.discussion-topic-header,\r\n.previewable-comment-form .tabnav {\r\n border-radius: 3px 3px 0 0 !important;\r\n}\r\n\r\n/* repo labels, private repo lists */\r\n\r\n.repo-label span,\r\n.private .repo-list-item,\r\n.hook-delivery-guid {\r\n background: #222 !important;\r\n color: #777 !important;\r\n}\r\n\r\n.private .mini-repo-list-item .repo-icon {\r\n color: #777 !important;\r\n}\r\n\r\n.private .mini-repo-list-item {\r\n background: #221 !important;\r\n}\r\n\r\n.UnderlineNav-item.selected {\r\n color: white !important;\r\n}\r\n\r\n/* previously orange border bottom */\r\n\r\n.pagehead ul.tabs li a.selected,\r\n.pagehead > ul.tabs li a:hover,\r\n.filter-selected,\r\ndiv.listing.navigation-focus,\r\ndiv.issues.navigation-focus,\r\n.repo-filter:hover,\r\n.dashboard-tabs a.selected,\r\n.marketing-nav a.selected,\r\n.orgs-nav .org-nav-item.selected,\r\na.pagehead-nav-item.selected,\r\n.underline-nav-item.selected {\r\n border-radius: 0 !important;\r\n border-bottom: 2px solid #eee !important;\r\n}\r\n\r\n.section-nav .active a,\r\n.js-current .standalone a,\r\n.sidebar-module .disable > a {\r\n border-radius: 0 !important;\r\n border-left: 2px solid #eee !important;\r\n}\r\n\r\n.tabs > a.selected {\r\n border-color: transparent !important;\r\n border-top: 2px solid #eee !important;\r\n}\r\n\r\n.menu-item.selected:before {\r\n background-color: #eee !important;\r\n}\r\n\r\n.dropdown-arrow {\r\n border-top-color: #eee !important;\r\n transition: none !important;\r\n}\r\n\r\n#com #header .top-nav .dropdown-caret {\r\n border-top-color: #ccc !important;\r\n}\r\n\r\n.js-menu-target:hover .dropdown-arrow {\r\n border-top-color: #4183c4 !important;\r\n}\r\n\r\n/* normalize.css bug: Make
disclosure triangle visible in Firefox */\r\n\r\n/* https://github.com/necolas/normalize.css/issues/604 */\r\n\r\ndetails summary {\r\n display: list-item !important;\r\n}\r\n\r\n/* Make it more apparent that
is clickable */\r\n\r\n.Details-content--closed.Box.mt-2.d-inline-flex.flex-column:hover,\r\n.discussion-item-header.pt-0 .Box.d-inline-flex.flex-column:hover {\r\n box-shadow: 0 0 9px 4px #363f4a;\r\n cursor: pointer;\r\n}\r\n\r\n.Details-content--closed span,\r\n.discussion-item-header button {\r\n color: white !important;\r\n}\r\n\r\n/* GitHub Bug: Center discussion close icon vertically */\r\n\r\n.discussion-item-closed .octicon {\r\n position: relative !important;\r\n top: -1px;\r\n}\r\n\r\n/* GitHub Bug: Center counters vertically on the line */\r\n\r\n.boxed-group .counter,\r\n.reponav-item .counter,\r\n.boxed-group .Counter,\r\n.reponav-item .Counter {\r\n position: relative !important;\r\n top: -1px !important;\r\n}\r\n\r\n/* GitHub Bug: Fix image swipe handle misalignment */\r\n\r\n.swipe .swipe-frame .swipe-bar .top-handle,\r\n.swipe .swipe-frame .swipe-bar .bottom-handle {\r\n left: -6px !important;\r\n}\r\n\r\n/* GitHub Bug: Fix text selection not working on inline bug in Firefox */\r\n\r\n.markdown-body code,\r\n.markdown-body tt {\r\n padding: 0 0.3em !important;\r\n display: inline-block !important;\r\n max-width: 100% !important;\r\n}\r\n\r\n/* GitHub Bug: Stop commit message field from resizing horizontally */\r\n\r\n#commit-description-textarea {\r\n resize: vertical !important;\r\n}\r\n\r\n/* GitHub Bug: Fix broken position:sticky emulation in Firefox */\r\n\r\n@supports (position: sticky) {\r\n .discussion-sidebar {\r\n position: sticky !important;\r\n top: 0 !important;\r\n }\r\n\r\n .discussion-sidebar-sticky {\r\n position: static !important;\r\n width: auto !important;\r\n }\r\n\r\n .discussion-sidebar .is-placeholder {\r\n display: none !important;\r\n }\r\n}\r\n\r\n/* GitHub Bug: Fix org layout issue */\r\n\r\n/* https://github.com/isaacs/github/issues/934 */\r\n\r\n.user-profile-repo-filter {\r\n width: 100% !important;\r\n}\r\n\r\n/* Tweak: Square counters, add 1px padding on bottom to counter uneven font size */\r\n\r\n#conversation_tab_counter,\r\n#commits_tab_counter,\r\n#files_tab_counter,\r\n.reponav-item .counter,\r\n.reponav-item .Counter {\r\n border-radius: 2px !important;\r\n padding: 2px 5px 3px !important;\r\n}\r\n\r\n.topic-tag {\r\n padding: 0.2em 0.9em !important;\r\n}\r\n\r\n/* invisible border */\r\n\r\n.gisttabs a:not(.selected),\r\n.gisttabs a:not(.selected):hover,\r\n.timeline-comment-wrapper,\r\n.avatar-stack .avatar,\r\n.full-commit .commit-desc + .commit-branches,\r\n.full-commit .commit-meta,\r\n.list-group-item,\r\n.breadcrumb,\r\n.tabs > a,\r\n.header .divider-vertical,\r\n.about-menu-link {\r\n border-color: transparent !important;\r\n}\r\n\r\n/* darken border */\r\n\r\n.wiki-wrapper .wiki-empty-box:hover,\r\n.render-shell .slider .slider-track,\r\n.render-shell .slider-bar,\r\n.about-menu-link:hover,\r\n.about-menu-link.selected,\r\n.pricing-table {\r\n border-color: #777 !important;\r\n}\r\n\r\nimg,\r\n#browser table,\r\n#browser table th,\r\n#issues .menu ul li,\r\n.branches .more-branches,\r\n.issues td,\r\nul.main_nav li.selected,\r\n.browser_header,\r\n.issue-head,\r\n.bootcamp-help .image,\r\nul.hook-list,\r\n.clone-url-button,\r\n.list-tip li,\r\n.section-nav a,\r\n.search-menu-container,\r\n.repo_list li a,\r\n.graphs .axis,\r\n.switcher > span:after,\r\na.assignee-bit,\r\n.menu li,\r\n.notifications td,\r\n.filter-tab,\r\nul.hook-list li,\r\n.repo .border,\r\n.box-action,\r\nul.repo-stats li a,\r\n.footer_nav h4,\r\n.footer-divider,\r\n.chromed-list-browser,\r\n.js-activate-link,\r\n.chromed-list-browser div,\r\n.filter-bar,\r\n.columns.sidebar,\r\n.title,\r\n.lbl,\r\n#contributors .person,\r\n.tabnav,\r\n#commit-activity-master,\r\n#services,\r\n.top-rule,\r\n.blog-post,\r\n#services .service,\r\nul.stats,\r\n.select-menu-filters,\r\n.select-menu-item,\r\n.select-menu-tabs,\r\n.release-list > li,\r\n.url-box,\r\n.context-body,\r\n.api li:before,\r\n.library-list .feature,\r\n.lower_footer,\r\n.cheatsheet,\r\n.pagehead.settings-area,\r\n.release-body,\r\n.suggester,\r\n.pull-state,\r\n.pull-number,\r\n.merge-pr,\r\n.gist-file,\r\n#graph-shots li,\r\n.sidebar,\r\n.release-timeline,\r\n.explore h2,\r\n#head,\r\n.leaderboard-list-item,\r\n.release-timeline-tags .main,\r\n.search-result-item,\r\n.details,\r\n.jobs-list,\r\n.content-header,\r\n.user-list-item,\r\n.markdown-body,\r\nul#categories li h5,\r\n.render-view-modes li,\r\n.gobutton.with-comments .sha,\r\n#gollum-editor-function-bar,\r\n.capped-box,\r\n.steps li,\r\n#common-issues,\r\n.steps,\r\n#graphs,\r\n.previewable-comment-form .comment,\r\n.org-module,\r\n.org-repo,\r\n.table-list,\r\n.org-add-footer,\r\n.auto-search-group .search-filter,\r\n#notification-center li,\r\n.branch-status,\r\n.comment + .comment,\r\n.discussion-bubble-inner,\r\n.member-row,\r\n.press-info,\r\n.timeline-comment,\r\n.timeline-comment-header,\r\n.timeline-commits .timeline-commits-header,\r\n.marketing-section,\r\n.featured-callout .screenshot,\r\n.page-new-repo .license-container,\r\n.sidebar-module,\r\n.collapsed,\r\n.expanded,\r\n.discussion-topic,\r\n.bubble-inner,\r\n.team-org-group,\r\ndiv.article div.helper div.content,\r\n.boxed-group-inner .help,\r\ndl.new-email-form,\r\n.file .meta-divider,\r\n.avatar-stack.multiple-avatars:before,\r\n.file-box,\r\n.file-actions .btn-group li,\r\n.gist .gist-file .gist-data,\r\n.calendar-graph .contrib-details div,\r\n.branch-action-body,\r\n.setup-form .tos-info,\r\n.setup-form .setup-organization-next,\r\n.collection-page .other-content,\r\n.bubble-wrap,\r\n.release-show,\r\n.file-wrap,\r\n.branches .branch-summary,\r\n.branches .no-results-message,\r\n.branch-a-b-count .count-half:last-child,\r\n.panel-nav,\r\n.file,\r\n.full-commit .sha-block > a,\r\n.theme-selector-thumbnail,\r\n.segmented-nav li,\r\n.overall-summary,\r\n.boxed-group-inner,\r\n.search-form button,\r\n.branches .branch-group-heading,\r\n.boxed-group > h3,\r\n.boxed-group .heading,\r\n.issues-list-actions,\r\np code,\r\ncode,\r\n.wiki-wrapper .wiki-empty-box,\r\n#adv_code_search .search-page-label,\r\npre.headers,\r\n.inline-comment-form,\r\n.history-link,\r\n.oauth-permissions-details,\r\n.setup-info-module .features-list .list-divider,\r\n.setup-wrapper .oauth-permissions,\r\n.swipe .swipe-frame .swipe-shell,\r\nul.search-results,\r\n.orgs-help-shelf-content .orgs-help-divider,\r\n.repository-lang-stats-graph,\r\n.gist-quicksearch-results,\r\n.gist-quicksearch-result,\r\n.gist-quicksearch-result-group,\r\n.listgroup,\r\n.listgroup-item + .listgroup-item,\r\n.user-key-badge,\r\n.newsfeed-placeholder,\r\n.progress-bar-inline .progress-bar,\r\n.menu-heading,\r\nbody .border-gray-dark,\r\n.discussion-item-review .blob-wrapper,\r\n.bot-identifier,\r\n.blame-commit,\r\n.counter,\r\n.Counter {\r\n border-color: #484848 !important;\r\n}\r\n\r\npre,\r\nh1,\r\nh2,\r\nh3,\r\n.header,\r\ntable,\r\ntable tr,\r\ntable td,\r\ntable th,\r\nblockquote,\r\n.pulse-graph,\r\n.btn:not(img),\r\n.minibutton,\r\n.social-count,\r\n.discusion-topic-infobar,\r\n.box-body,\r\n.timeline-comment-label,\r\n.logo-box,\r\n.suggester li,\r\n.developer-program-badge,\r\n.vcard-details,\r\n.vcard-stats,\r\n.auth-form-header,\r\n.nav-bar-tabs .section-title,\r\n.pagination a:last-child,\r\n.pagination span:first-child,\r\n.boxed-group-list > li,\r\n.toolbar-bordered,\r\n.new-issue-form,\r\n.pagination span:last-child,\r\n.dashboard-tabs,\r\n.graphs,\r\n.graph,\r\n.sub-nav,\r\n.audit-search-clear,\r\n.repo-list-item,\r\n.email-signature-reply,\r\nfooter,\r\n.bubble .bubble-expand,\r\n.grid .col,\r\n.composer-infobar,\r\n.email-quoted-reply,\r\n.summary-stats li,\r\n.columns.equacols.bordered,\r\n.file-diffstat,\r\nul.filter-list,\r\n.news .alert,\r\ntable.files td,\r\n.explore-section,\r\n.repolist > li,\r\n.featured-grid-outer,\r\n.gh-header-meta,\r\n.theme-picker-thumbs,\r\n.team,\r\n.billing-section,\r\n.sidebar-module ul h3,\r\n.headlines li,\r\n.discussion-sidebar-item + .discussion-sidebar-item,\r\n.markdown-format img,\r\ndiv#common-issues ul li,\r\n.about-facts,\r\n.starred-repo,\r\n.markdown-example,\r\n.traffic-graph-stats,\r\n.discussion-item + .discussion-item,\r\n.bubble,\r\n.tree-browser,\r\n.simple-box-footer,\r\n.team-grid .team-members,\r\n.org-list .list-item,\r\n.stats-group .stat,\r\n.team-info-card .team-stats,\r\n.table-of-contents li,\r\n.commit-group,\r\n.table-list-bordered .table-list-cell:first-child,\r\n.table-list-bordered .table-list-cell:last-child,\r\n.table-list-cell,\r\n.table-list,\r\n.table-list-header,\r\n.blankslate,\r\n.labels-list-item,\r\n.subnav-divider-right,\r\n.subnav-bordered,\r\n.content table tr th,\r\n#search-results li,\r\n.subhead,\r\n#pages-composer,\r\n.render-bar,\r\n#gollum-editor-help,\r\n#gollum-editor-help-parent,\r\n#gollum-editor-help-list,\r\n.auth-section,\r\n.commit-sha,\r\n.comment-body,\r\n.mini-repo-list-item,\r\n.advanced-search-form fieldset,\r\n.contrib-column,\r\n.org-header .edit-org,\r\n.pulse-summary .summary-box,\r\n.pulse-summary .summary-box li:first-child,\r\n.list-item + .list-item,\r\n.list-item + .list-heading,\r\n.list-heading + .list-item,\r\n.issue-list-item,\r\n.collection-card,\r\n.setup-header,\r\nbody.api pre,\r\n.stats-group-stat:first-child,\r\n.build-statuses-list,\r\n#gollum-dialog-dialog-buttons,\r\n#gollum-dialog-dialog h4,\r\na.gollum-minibutton,\r\na.gollum-minibutton:visited,\r\n.two-factor-toggle .two-factor-status,\r\n.two-factor-settings-group,\r\n.member-badge,\r\nul.comparison-list > li,\r\n.markdown-format ol > li:before,\r\n.release-downloads,\r\n.release-downloads li,\r\n.blob-interaction-bar,\r\ninput.subnav-search-input,\r\n.select-menu-header,\r\n.search-results,\r\n.select-menu-text-filter:first-child:last-child,\r\n#gist-form .file .meta,\r\n.file .meta,\r\n.file-box .meta,\r\n.capped-card,\r\n.audit-results-header,\r\n.pagination a,\r\n.pagination span,\r\n.pagination em,\r\n.input_area,\r\n.output_area .rendered_html table,\r\n.render-info .message,\r\n.subnav .btn + .issues-search,\r\n.branch-action-body .branch-action-item + .branch-action-item,\r\n.discussion-item-merged.open .discussion-item-details-header,\r\n.discussion-item-merged.open .build-statuses-list,\r\n.build-status-item,\r\n.pagehead-tabs-item.selected,\r\n.org-header,\r\n.pagehead,\r\n.branch-action-item + .mergeability-details,\r\n.migration-section,\r\n.migrate-org-roles,\r\n.migrate-org-roles-header,\r\n.migrate-org-roles-item,\r\n.migrate-org-roles-count,\r\n.migration-footer,\r\n.migration-feature-list:before,\r\n.migration-org-avatar,\r\n.org-migration-settings-section,\r\n.word-upload-callout .note,\r\n.commit-meta,\r\n.manage-user-info,\r\n.manage-repo-access-title,\r\n.manage-access-remove-footer,\r\n.org-settings-team-item:first-child,\r\n.label-generic,\r\n.plan-notice,\r\n.merge-branch-manually,\r\n.intgr-header,\r\n.code-list-item,\r\n.sort-bar,\r\n#com #footer,\r\n.repo-file-upload-outline,\r\n.comment-reactions.has-reactions,\r\n.reaction-summary-item,\r\n.select-menu-divider,\r\n.featurette.border-top,\r\n.tile-block,\r\n.tile-bordered:not(:last-child),\r\n.showcase-page-header,\r\n.showcase-page-repo-list,\r\n.header-search-scope,\r\n.result-group a,\r\n.signed-commit-badge,\r\n.signed-commit-header,\r\n.user-key-email,\r\n.border-top,\r\n.pricing-card-cta,\r\n.shelf,\r\n.access-token,\r\n.about-menu,\r\n.oauth-border,\r\n.reponav-item.selected,\r\n.file-header,\r\n.reorderable-task-lists .markdown-body .task-list-item.hovered,\r\n.next-charge-box,\r\n.setup-info-module h2,\r\n.radio-label,\r\n.border,\r\n.border-top,\r\n.border-right,\r\n.border-bottom,\r\n.border-left,\r\n.border-y,\r\n.pinned-repo-list-item,\r\n.pinned-repo-filters,\r\n.orghead,\r\n.orghead .edit-org,\r\n.Box-body-row,\r\n.discussion-item-deployed,\r\n.branch-action-body .merge-message,\r\n.profile-timeline-card-wrapper,\r\n.profile-rollup-wrapper + .profile-rollup-wrapper,\r\n.new-project-column,\r\n.confirm-removal-list-container,\r\n.confirm-removal-list-item,\r\n.user-profile-nav,\r\n.border-gray-light,\r\n.ajax-pagination-form .ajax-pagination-btn,\r\n.review-thread-reply,\r\n.feature-callout-octicon,\r\n.feature-callout,\r\n.discussion-item + .discussion-item,\r\n.discussion-item-review + .discussion-item,\r\n.libraries-jumbotron,\r\n.last-review-thread,\r\n.menu-item,\r\n.review-comment.is-comment-editing,\r\n.Box,\r\n.team-list-footer,\r\n.Box-header,\r\n.profile-rollup-summarized + .profile-rollup-summarized,\r\n.Subhead,\r\n.dashboard-notice .coupon,\r\n.Box-body,\r\n.listgroup-header,\r\n.merge-status-item,\r\n.pending-team-invitations-link,\r\n.discussion-item + .discussion-item-review {\r\n border-color: #343434 !important;\r\n}\r\n\r\n.discussion-item-icon,\r\n.date:after,\r\nul.color-label-list .color,\r\n.facebox-header {\r\n border-color: #222 !important;\r\n}\r\n\r\n.filter-tab.selected {\r\n border: 1px solid #444 !important;\r\n border-bottom: 1px solid #343434 !important;\r\n}\r\n\r\n.header,\r\n.summary-stats,\r\n.follow-list .follow-list-item {\r\n border-bottom: 1px solid #343434 !important;\r\n}\r\n\r\n.simple-conversation-list > li,\r\n.site-footer,\r\n.blame .section-first td,\r\n.wiki-list .wiki-list-item + .wiki-list-item {\r\n border-top: 1px solid #343434 !important;\r\n}\r\n\r\n/* discussion timeline tweaks */\r\n\r\n.closed-banner {\r\n border-top: 2px solid #444 !important;\r\n border-bottom-color: transparent !important;\r\n height: 2px !important;\r\n}\r\n\r\n.discussion-timeline-actions,\r\n.closed-banner {\r\n background: transparent !important;\r\n border-top: 2px solid #444 !important;\r\n}\r\n\r\n.discussion-timeline:before {\r\n margin-top: 2px !important;\r\n height: calc(100% - 259px) !important;\r\n}\r\n\r\n.profile-timeline.discussion-timeline:before {\r\n height: 100% !important;\r\n}\r\n\r\n.listings div.listing {\r\n border-left: 2px solid #333 !important;\r\n border-right: 2px solid #333 !important;\r\n}\r\n\r\n#org-members .member-listing {\r\n border-left: 1px solid #333 !important;\r\n border-right: 1px solid #333 !important;\r\n}\r\n\r\n.timeline-comment:after,\r\n.commit-form:after,\r\n.branch-action-body:after,\r\n.timeline-comment-wrapper > .timeline-comment:after,\r\n.timeline-new-comment .timeline-comment:after {\r\n border-right-color: #1d1d1d !important;\r\n}\r\n\r\n.timeline-comment:before,\r\n.branch-action-body:before,\r\n.MarketplaceSideNav,\r\n.plans-card-text:first-child {\r\n border-right-color: #484848 !important;\r\n}\r\n\r\n.review-summary:after {\r\n border-bottom-color: #25272a !important;\r\n}\r\n\r\n.word-upload-callout:before,\r\n.word-upload-callout:after {\r\n border-bottom-color: #343434 !important;\r\n}\r\n\r\n.word-upload-callout {\r\n box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4) !important;\r\n}\r\n\r\n.repo-filterer .repo-filter:hover,\r\n.review-summary:before {\r\n border-bottom-color: #484848 !important;\r\n}\r\n\r\n.issue-head {\r\n border-bottom-width: 1px !important;\r\n}\r\n\r\n.context-button:hover:after,\r\n.switcher > span:before {\r\n border-color: #eee transparent transparent !important;\r\n}\r\n\r\n/* developer sidebar indicator arrows */\r\n\r\n.sidebar-module .arrow-btn:hover {\r\n width: 0 !important;\r\n height: 0 !important;\r\n padding: 0 !important;\r\n border-color: transparent !important;\r\n border-style: solid !important;\r\n}\r\n\r\n.sidebar-module .arrow-btn.collapsed:hover {\r\n border-width: 5px 8px !important;\r\n border-left-color: #4183c4 !important;\r\n margin: 12px 0 0 12px !important;\r\n}\r\n\r\n.sidebar-module .arrow-btn.expanded:hover {\r\n border-width: 8px 6px 0 5px !important;\r\n border-top-color: #4183c4 !important;\r\n margin: 14px 0 0 9px !important;\r\n}\r\n\r\n/* branch selector button - uses borders to make select button */\r\n\r\n.select-menu-button:before {\r\n border-top-color: #eee !important;\r\n}\r\n\r\n.pagehead-tabs-item.selected,\r\n.reponav-item.selected {\r\n border-bottom-color: #222 !important;\r\n border-top-width: 1px !important;\r\n}\r\n\r\n.pagehead-tabs {\r\n margin-bottom: -23px !important;\r\n}\r\n\r\n.branches .branch-summary + .branch-summary {\r\n border-top-color: #555 !important;\r\n}\r\n\r\n/* code */\r\n\r\n.linkable-line-number {\r\n border-right: 1px solid #484848 !important;\r\n}\r\n\r\n.gist .gist-file .gist-data .line-number {\r\n line-height: 19px !important;\r\n}\r\n\r\n/* File listings - fix date truncation */\r\n\r\ntable.files td.age .css-truncate {\r\n max-width: none !important;\r\n}\r\n\r\n/* tooltip */\r\n\r\n.octotip {\r\n background-color: #003 !important;\r\n border-color: #006 !important;\r\n}\r\n\r\n.commitinfo,\r\n.gc .diff-line-code,\r\n.gc .diff-line-num,\r\n.gc .diff-line-pre,\r\n.featured-commit-activity-graph,\r\n.featured-repo-logo,\r\n.outline-box,\r\n.gobutton > .sha .octicon,\r\n.markdown-body .csv-data .blob-num,\r\n#feedBody,\r\n.search-result-header,\r\n.accessibility-aid:focus,\r\n.file-data,\r\n.signup-plans th,\r\n.signup-plans td,\r\n.signup-plans-orgs th,\r\n.signup-plans-orgs td,\r\n.commits td,\r\n.featured-callout,\r\n.sidebar-module ul ul li,\r\n.native-download,\r\n.setup-info-module,\r\ndiv#common-issues ul,\r\n#gist-form .name,\r\n.subnav-item,\r\n.render-notice,\r\n.label-edit.edit-color-label-form .color-editor .color-editor-input,\r\n.date_selector td,\r\n.new-label,\r\n.range-editor .range,\r\n.range-editor .flag,\r\n.octotree_sidebar,\r\n.auth-form-body,\r\ndiv.border-wrap,\r\n.profile-header,\r\n.btn.btn-outline,\r\n.highlight .gc,\r\n.uploaded-files.is-populated,\r\n.range-editor,\r\n#gollum-editor-help-parent li a.selected,\r\n#gollum-editor-help-list li a.selected,\r\n#gollum-editor-help-parent li a:hover,\r\n#gollum-editor-help-list li a:hover,\r\n.github-access-banner,\r\n.protip-callout,\r\nul.comparison-list,\r\n.wiki-custom-sidebar,\r\n.invitation-container,\r\n.orgs-help-shelf,\r\n.orgs-help-item-octicon,\r\ninput[type=\"password\"],\r\ninput[type=\"email\"],\r\ninput[type=\"number\"],\r\ninput[type=\"tel\"],\r\ninput[type=\"url\"],\r\ntextarea,\r\n.dropdown-menu,\r\n.thread-subscription-status,\r\n.branch-action-body .merge-branch-form,\r\n.pull-info,\r\n.branch-link,\r\n.discussion-item-merged.open .discussion-item-details,\r\n.word-upload-callout,\r\n.commit-tease-contributors,\r\n.ajax-pagination-form .ajax-pagination-btn,\r\n.access-form-wrapper,\r\n.session-authentication .create-account-callout,\r\n.intgrs-lstng-item,\r\n.intgr-install-callout,\r\n.is-failed .repo-file-upload-errors,\r\n.is-bad-file .repo-file-upload-errors,\r\n.is-too-big .repo-file-upload-errors,\r\n.is-too-many .repo-file-upload-errors,\r\n.is-empty .repo-file-upload-errors,\r\n.site-header,\r\n.site-subheader,\r\n.pricing-card,\r\n.explore-signup-entice,\r\n.price-box,\r\n.cvv-hint-tooltip,\r\n.plan-choice,\r\n.date-selector td,\r\n.user-profile-sticky-bar:after,\r\n.review-thread,\r\n.card,\r\n.tutorial,\r\n.overview .card > div[style*=\"background\"],\r\n.Box:not([style*=\"background\"]),\r\n.Box-footer,\r\n.Box-row,\r\n.ScreenshotCarousel {\r\n background: #25272a !important;\r\n border-color: #4183c4 !important;\r\n}\r\n\r\n#readme .plain,\r\n.readme .markdown-body,\r\n.readme .plain,\r\n.pull-request-composer,\r\n.drag-and-drop,\r\n.octofication .broadcast-icon-mask,\r\n.file .image,\r\n.merge-pr-more-commits,\r\n.release-timeline-tags .expander-dots,\r\n.coupons .coupon-form-body,\r\n.manage-repo-access-group,\r\n.saved-reply-form,\r\n.timeline-progressive-disclosure-button,\r\n.orghead .edit-org:hover,\r\n.octotree_views,\r\n.simple-box {\r\n background: #25272a !important;\r\n border-color: #484848 !important;\r\n}\r\n\r\n.header,\r\n.headers,\r\n#readme .markdown-body,\r\n.social-count,\r\n.file,\r\n.markdown-body table tr:nth-child(2n),\r\n.steps li,\r\n.explore-section:nth-child(2n),\r\n.markdown-format table,\r\n.list-group-item,\r\n.chromed-list-browser .none p,\r\n.chromed-list-browser .error p,\r\n.list-browser-footer,\r\n.commandbar .choice:hover,\r\n#gollum-editor-help,\r\n.search-filter:hover,\r\n#wiki-history table tr:nth-child(2n) td,\r\n.display tr:hover,\r\n.octofication .message,\r\n.commandbar .loading:hover,\r\n.comment-content,\r\n.commandbar .message,\r\n.boxed-group-inner,\r\n#adv_code_search .search-page-label,\r\n.timeline-comment,\r\n#contributors-master svg.viz,\r\n.diff-table .line-comments,\r\n.menu,\r\nsvg.spark,\r\nsvg.capped-card-content,\r\nbody.api .content tbody,\r\n.markdown-format img:not(.emoji),\r\n.mini-repo-list,\r\n#common-issues,\r\n.full-commit .commit-meta,\r\n.setup-wrapper .oauth-permissions-details,\r\n.milestone-list,\r\n.setup-form .setup-plans,\r\n.prose-diff > .markdown-body,\r\n.revision .gu,\r\n.tree-browser td,\r\n.tree-browser .alt td,\r\n.branches .branch-summary,\r\n.branches .no-results-message,\r\n.simple-box-footer,\r\n.commit-group,\r\n.blankslate,\r\n.content table tr,\r\n#search-results,\r\ntable.files,\r\n.mergeable,\r\n.org-module,\r\n.org-add-footer,\r\n.branch-infobar,\r\ntable.capped-list tr:nth-child(2n),\r\n.team-org-group,\r\n#gollum-editor-help-wrapper,\r\n.integrations-quality,\r\n.showcase-featured .mo-info .featured-grid-outer,\r\n.render-shell,\r\n.list,\r\n.latest-commit .commit-author,\r\n.bubble,\r\n.tabs > a.selected,\r\n.oauth-org-access-details .boxed-group-list > li.on,\r\n#fullscreen_overlay,\r\n.timeline-new-comment .discussion-topic-header,\r\n.branch-action-body,\r\n.inline-comment-form,\r\n.file-history-tease .participation,\r\n.gist-quicksearch-result-header,\r\n.label-generic,\r\n.migrate-org-roles,\r\n.commit-tease .commit-meta,\r\n.manage-repo-access-icon,\r\n.table-list:not(.team-member-list),\r\n.repo-file-upload-progress,\r\n.gcr-ext-editor-dialog,\r\n.shade-gray,\r\n.exploregrid-item,\r\n.signed-commit-badge-small,\r\n.facebox-popup,\r\n.explore-signup-entice-wrapper,\r\n.billing-addon-items tr.total-row,\r\n.billing-addon-items tr.dark-row,\r\n.Box-body,\r\nli.pinned-repo-item,\r\n.js-contribution-graph h2 + div:last-child,\r\n.project-triage-pane,\r\n.user-profile-nav.is-stuck,\r\nbody .bg-white,\r\n[data-filterable-for=\"projects-filter\"] .container-lg,\r\n.review-summary-form-wrapper,\r\n#projects-results,\r\n.listgroup,\r\n.protected-branch-orgs-and-repo-admins,\r\n.listgroup-overflow,\r\n.org-sso-panel {\r\n background: #25272a !important;\r\n}\r\n\r\n.sidebar-module,\r\n.form-control {\r\n background-color: #25272a !important;\r\n border: 1px solid #343434 !important;\r\n}\r\n\r\n.markdown-body table tr,\r\n.blob-num-context,\r\n#user-content-toc td {\r\n background: #141414 !important;\r\n}\r\n\r\n.blame .blob-num,\r\n.blame-blob-num,\r\n.overall-summary,\r\n.repository-lang-stats,\r\n.collection-card,\r\n.team-grid .team,\r\n.blob-num-hunk,\r\n.blob-code-hunk,\r\n.blob-code-expandable,\r\n.code-list .divider .blob-num,\r\n.code-list .divider .blob-code,\r\n.blob-num-expandable,\r\n.expandable-line-num .diff-expander:hover,\r\n.pagination a,\r\n.blob-num[colspan],\r\n.build-status-item,\r\n.more-branches,\r\n.plan-choice.open,\r\n.uploaded-files > li.delete,\r\n.bg-gray-light,\r\n.more-repos,\r\n.billing-per-seat-callout:after {\r\n background: #25272a !important;\r\n}\r\n\r\n/* headers */\r\n\r\n.table-list-header,\r\n.timeline-comment-header,\r\n.boxed-group > h3,\r\n.boxed-group .heading,\r\n.file-header,\r\n.capped-card h3,\r\n.select-menu-header,\r\n#gist-form .file .meta,\r\n.file .meta,\r\n.file-box .meta,\r\n.menu-heading,\r\n.audit-results-header,\r\n.branches .branch-group-heading,\r\n.auth-form-header,\r\n.commit-form,\r\n.comment-form-head.tabnav,\r\n.page-responsive\r\n .previewable-comment-form\r\n .comment-form-head.tabnav\r\n .toolbar-commenting,\r\n.migration-jumbotron,\r\n.migration-sub-header,\r\n.commit-tease,\r\n.manage-repo-access-title,\r\n.select-menu-divider,\r\n.signed-commit-header,\r\n.reorderable-task-lists .markdown-body .task-list-item.hovered,\r\n.next-charge-box,\r\n.credit-card,\r\n.branch-action-body .merge-message,\r\n.review-thread-reply,\r\n.bg-gray,\r\na.card.bg-gray-light:hover,\r\n.add-member-team-list .team-row-header,\r\n.Box-header,\r\n.pagination .gap,\r\n.pagination .disabled,\r\n.pagination .gap:hover,\r\n.pagination .disabled:hover,\r\n.listgroup-header,\r\n.merge-status-item {\r\n background: #25272a !important;\r\n}\r\n\r\n@media all {\r\n .page-responsive .pagehead,\r\n .reponav-wrapper {\r\n background: #333 !important;\r\n }\r\n .border-md-top {\r\n border-top: none !important;\r\n }\r\n .tabnav--responsive .tabnav-tab {\r\n background-color: #25272a !important;\r\n }\r\n}\r\n\r\n.toolbar-item:hover {\r\n color: white !important;\r\n}\r\n\r\n.discussion-timeline-actions [type=\"submit\"] {\r\n margin: 0px 8px 0px 0px !important;\r\n}\r\n\r\n.timeline-new-comment .form-actions div {\r\n margin: 0 !important;\r\n}\r\n\r\n/* Navigation focus */\r\n\r\n.list-group-item.navigation-focus,\r\n.list-browser-item.navigation-focus,\r\n.headlines li:hover,\r\n.js-details-container.navigation-focus,\r\n.js-details-container.navigation-focus:nth-child(2n),\r\n.team-grid .team-members,\r\n.tree-browser tr.navigation-focus td,\r\n.issues-listing .table-list-issues .selectable:hover,\r\n.issues-listing .table-list-issues .navigation-focus,\r\n.setup-plans tr.selected,\r\n.notifications .navigation-focus,\r\n.sidebar-module ul ul li a:hover,\r\n.typeahead-result,\r\n.no-results,\r\n.link-overlay .link,\r\n#gollum-editor-help-list,\r\n.owner-select-target,\r\n.divider .blob-code div.highlight,\r\n.line[style^=\"background-color: rgb(255, 255, 204)\"],\r\n.oauth-org-access-details .boxed-group-list > li.on:hover,\r\npre div:hover,\r\ntable.files tr.navigation-focus td,\r\n.summary-stats li a:hover,\r\n.select-menu-item-parent.navigation-focus,\r\n.select-menu-item-parent.navigation-focus.selected,\r\n.pinned-repos-selection-list-item.selected,\r\n.Box-body-row--highlight.navigation-focus,\r\n.Box-body-row--highlight:hover,\r\ndiv.label-select-menu .select-menu-item.navigation-focus,\r\ndiv.label-select-menu .select-menu-item.navigation-focus.selected,\r\n.js-current .standalone a,\r\n.menu-item:hover,\r\n.Box-row--focus-gray.navigation-focus {\r\n background: #242424 !important;\r\n}\r\n\r\n#main,\r\n.capped-box,\r\n.unread_count,\r\n#browser table th,\r\n.markdown-format table th,\r\ntable.upgrades tr.current td,\r\n.definitions,\r\n.discussion-topic-header,\r\n.timeline-commits-minimal .commit-icon .octicon,\r\n.timeline-commits .commit-icon .octicon,\r\n.search-results-listing em,\r\n.discussion-bubble-inner,\r\n#wiki-history table td,\r\n.gist .gist-file .gist-data,\r\n.logo-box,\r\n.markdown-example .rendered,\r\n.team-grid .team-members,\r\n.diagram-icon:not(.active),\r\ntable.capped-list th,\r\n.filter-bar,\r\n.audit-search-clear,\r\n.country-info,\r\n.file-diff-split .empty-cell,\r\n.composer-infobar,\r\n.completeness-indicator-blank,\r\n.leaflet-control-zoom,\r\n.pagehead-tabs-item.selected,\r\n.reponav-item.selected,\r\n.ajax-pagination-form .ajax-pagination-btn:focus,\r\n.manage-repo-access-not-active,\r\n.header-search-scope,\r\n.reverse-progress-bar,\r\n.featurette.py-5,\r\n.payment-history .refunded,\r\n.payment-history .failed,\r\n.profile-timeline-month-heading.bg-white {\r\n background: #222 !important;\r\n}\r\n\r\nhr,\r\n.rule,\r\n#browser,\r\n.repos,\r\n.options-group,\r\n.pagehead ul.tabs li a.selected,\r\n.subnav-bar,\r\n.options-content,\r\nspan.gravatar,\r\n.browsered,\r\n.browsered .inner,\r\n.subnav-bar > ul > li > ul,\r\n.comment-form ul.tabs a.selected,\r\n.issue.open.read .summary,\r\n.unselected_month,\r\n.commits th,\r\n#MathJax_Message,\r\n.chzn-single,\r\n.user-commits,\r\n.user-commits th,\r\n.metabox,\r\n.ranked-repositories > li,\r\n.pagehead ul.actions,\r\n#issues_search .comment,\r\n#header-wrapper,\r\nul.feature-tabs li.highlight,\r\n.pagination,\r\n.filterbar .filters li,\r\n.starting-comment .body,\r\n.list-tip,\r\n.commit_oneline,\r\n.filterbox,\r\n.conversation-list-heading .inner,\r\n.autocomplete-results,\r\n.new-comments .body,\r\n.display tr,\r\n.render-container,\r\n.boxed-group-table th,\r\n.features-highlight,\r\n.outline-box-highlighted,\r\n.nav-bar-tabs,\r\n#watchers li,\r\n.browser .listing,\r\n.item,\r\n.context-pane,\r\n.context-loader,\r\n.sidebar .module,\r\n.tip-body,\r\n#assignee,\r\n.commit_oneline td,\r\n.notifications th,\r\n.content table th,\r\n.repo-collection > ul,\r\n#graph_data .tab.selected,\r\n.full-width-divider,\r\n.markdown-body .csv-data th,\r\nh3.conversation-list-heading strong,\r\n.blog-feedback,\r\n.facebox-footer,\r\n.invited-banner,\r\n.gcr-ext-editor-close,\r\n.gcr-ext-editor-header,\r\n.logos-download-link {\r\n background: #222 !important;\r\n border-color: #343434 !important;\r\n}\r\n\r\n.btn:disabled,\r\n.btn:disabled:hover,\r\n.btn.disabled,\r\n.btn.disabled:hover,\r\nbutton.button:disabled,\r\nbutton.button:disabled:hover,\r\nbutton.button.disabled,\r\nbutton.button.disabled:hover,\r\nbutton.minibutton:disabled,\r\nbutton.minibutton:disabled:hover,\r\nbutton.minibutton.disabled,\r\nspan.minibutton.disabled,\r\na.minibutton.disabled,\r\nbutton.minibutton.disabled:hover,\r\na.minibutton:disabled:hover,\r\na.minibutton.disabled:hover,\r\nspan.minibutton:disabled:hover,\r\nspan.minibutton.disabled:hover,\r\n.search-result-group,\r\n.gist-quicksearch-result-group {\r\n background: #222 !important;\r\n border-color: #282828 !important;\r\n color: #444 !important;\r\n}\r\n\r\n.btn-outline:disabled,\r\n.btn-outline:disabled:hover,\r\n.btn-outline.disabled,\r\n.btn-outline.disabled:hover,\r\n.btn.btn-outline:disabled,\r\n.btn.btn-outline:disabled:hover,\r\n.btn.btn-outline.disabled,\r\n.btn.btn-outline.disabled:hover {\r\n background: #222 !important;\r\n border-color: #343434 !important;\r\n color: #444 !important;\r\n}\r\n\r\n.list-browser-item.closed,\r\n.content .verseblock-content,\r\n.content .verseblock-content,\r\n.simple-stacked-bar,\r\n.date_selector td.selectable_day:hover,\r\n.date_selector td.selectable_day.hover,\r\n.pagination a:hover,\r\n.pagination a:focus,\r\n.pagination span:hover,\r\n.pagination span:focus,\r\n.pagination em:not(.current):hover,\r\n.pagination em:not(.current):focus,\r\n.dropdown-divider,\r\n.js-current .standalone a,\r\n.sidebar-module .disable > a,\r\n.label-select-menu div.labelstyle-000000.selected,\r\n.ScreenshotCarousel-navitem.selected {\r\n background: #282828 !important;\r\n}\r\n\r\ndiv#common-issues ul li a:hover,\r\n.rss-subscribe:hover {\r\n background-color: #282828 !important;\r\n}\r\n\r\n/* hr to match border color */\r\n\r\n.markdown-body hr {\r\n background: #343434 !important;\r\n}\r\n\r\n#network .current-repository {\r\n background: #343434 !important;\r\n box-shadow: 0 0 0 2px #343434 !important;\r\n}\r\n\r\n.blame-commit-next .blame-commit-info,\r\n.blame-commit-next + .blame-line,\r\n.ScreenshotCarousel-nav {\r\n box-shadow: inset 0 1px 0 #343434 !important;\r\n}\r\n\r\n/* semi-transparent */\r\n\r\n.pagehead,\r\n.context-loader.large-format-loader,\r\n#graphs .loader,\r\n.org-header,\r\n.render-shell .slider,\r\n.illflow-item:not(.selected):hover,\r\n.leaflet-control-attribution,\r\n.orghead {\r\n background: #333 !important;\r\n}\r\n\r\n.explore-signup-entice-inner {\r\n background: rgba(24, 24, 24, 0.9) !important;\r\n}\r\n\r\n.starred-repo.navigation-focus,\r\n.marketing-section-stripe,\r\n.blob-expanded .blob-num,\r\n.blob-expanded .blob-code,\r\n.migration-section-grey {\r\n background: rgba(50, 50, 50, 0.5) !important;\r\n}\r\n\r\n.svg-tip {\r\n background: rgba(12, 12, 12, 0.8) !important;\r\n}\r\n\r\n.svg-tip:after {\r\n border-top-color: rgba(12, 12, 12, 0.9) !important;\r\n}\r\n\r\n.shelf {\r\n background-color: rgba(0, 0, 0, 0.2) !important;\r\n background-image: none !important;\r\n}\r\n\r\n/* page overlay */\r\n\r\n.select-menu-loading-overlay,\r\n.slow-loading-overlay,\r\n.branches .loading-overlay {\r\n background-color: rgba(24, 24, 24, 0.6) !important;\r\n}\r\n\r\n/* #333 */\r\n\r\n.pagehead ul.actions a.feed,\r\n.explore h2 .feed,\r\n#code_search_instructions h2,\r\ntd.inst,\r\n.metabox-loader,\r\n.pull-flag,\r\n.browser-content,\r\n.filterbar ul.filters li,\r\n.pagehead ul.tabs li.contextswitch,\r\n#wiki-header > div,\r\n.pagehead ul.tabs li.contextswitch:hover,\r\n.bigbutton a,\r\n#new_message,\r\n#issues_next ul.sorts li,\r\nul.sorts li.asc,\r\nul.sorts li.desc,\r\n.listings-layout .columns.main .content,\r\n.fieldswrap,\r\n.filterbar li.selected,\r\n#issues_next ul.filters li,\r\ntable.instruction tr:nth-child(2n),\r\n.email-hidden-toggle a,\r\n#commit-activity-master-head,\r\n.action-indicator,\r\n.pull-head .diffstat,\r\nul.suggestions,\r\n.discusion-topic-infobar,\r\n.jstree-wholerow-hovered,\r\n.bubble-contents,\r\n.ellipsis-button,\r\n.filter-list li span.bar,\r\n.selectable_day.today,\r\n.billing-plans .current,\r\n.billing-section .usage-bar,\r\n.issue-list em,\r\n.file-info-divider,\r\n.pagehead ul.tabs li a:hover,\r\n.repos .bottom-bar,\r\n#languages .popular,\r\n.tip-box h4,\r\ntable.upgrades td,\r\n.commit-preview .message,\r\n.commit-preview p.error,\r\n.pagehead ul.tabs li.contextswitch,\r\n#browser tr th,\r\n.status-box h4,\r\n.line_numbers,\r\n#files span.icon,\r\n#issues_list .actions,\r\n#repos .public,\r\n.inset-callout,\r\n#repo-message,\r\n.repo-private-label,\r\n.label-admin,\r\na.team-member-ellipsis,\r\n.code-list em,\r\n.user-list em,\r\n.credit-card.normal .signature,\r\n.credit-card.amex .gladiator,\r\n.subnav-item:hover,\r\n.subnav-item:focus,\r\n.wiki-list em,\r\n.progress-bar:not(.anim-grow-x),\r\n.header-search-scope:hover {\r\n background: #333 !important;\r\n}\r\n\r\n.comment-form,\r\n#issues .labels,\r\n.listings .odd,\r\n.feed,\r\n#files .description,\r\n#message .envelope .header .info .title.unread,\r\nli.contextswitch ul li.current,\r\n.watcher-widget,\r\nul.main_nav li.selected a,\r\nul.states li,\r\n.add_file,\r\n.inset,\r\nli.label,\r\n.filterbar,\r\n.divider-vertical,\r\n.user-commits td,\r\n.starting-comment .infobar,\r\n#issues_next .infobar,\r\n.formbody,\r\n.commandbar .display,\r\n.none p,\r\n.display div.choice,\r\nul.fieldpills li,\r\n.documentation-results a,\r\n.plans-pricing-callout,\r\n.auto-search-group .search-filters,\r\n.editbox,\r\n.editbox .body,\r\n.commentstyle,\r\n#issues .display,\r\n#issues .display .admin,\r\n#issues .labels .list li,\r\n.issue .summary,\r\n.hidden-text-expander a,\r\n.view-modes,\r\n.standard_form,\r\n#reply_body,\r\n#commit div,\r\n#commit td,\r\n#commit tr,\r\n#commit .envelope,\r\n.file-minibutton,\r\n.context-pane .title,\r\n.browser .listing:hover,\r\n#dashboard .repos,\r\n.date_selector .btn,\r\n.list-module .list-body,\r\n.list-module a,\r\n.label-permissions,\r\n.tree-browser th,\r\n.browser .listing.closed,\r\n.starting-comment,\r\n.section-nav a:hover,\r\n.chzn-drop,\r\n.module .inner,\r\n.team-repositories-blankslate,\r\n.discussion-event-status-head_ref_deleted .discussion-item-icon,\r\n.pull-head,\r\n.tabs,\r\n#browser td,\r\n#issues_next li.selected,\r\n.avatarname img,\r\n#readme .name,\r\n#wiki-history .author img,\r\n.options-content h3,\r\n.display div.choice:nth-child(2n + 1),\r\n#issues-dashboard .actions,\r\n.list-tip a:hover,\r\n.select-menu-tabs .select-menu-tab.selected,\r\n.select-menu-tab .selected {\r\n background-color: #333 !important;\r\n border-color: #484848 !important;\r\n}\r\n\r\n/* contribution calendar and blame heats */\r\n\r\n.calendar-graph rect[fill=\"#c6e48b\"],\r\n.calendar-graph rect[fill=\"#7bc96f\"],\r\n.calendar-graph rect[fill=\"#239a3b\"],\r\n.calendar-graph rect[fill=\"#196127\"],\r\n.heat,\r\n.contrib-legend li {\r\n background-color: #4183c4 !important;\r\n fill: #4183c4 !important;\r\n}\r\n\r\n.calendar-graph .days-selected rect.day.active {\r\n stroke: #ddd !important;\r\n}\r\n\r\n.calendar-graph rect.day:hover {\r\n stroke: #fff !important;\r\n}\r\n\r\n/* contribution calendar - regular colors */\r\n\r\n.calendar-graph rect[fill=\"#ebedf0\"],\r\n.contrib-legend li[style*=\"#ebedf0\"] {\r\n background-color: #222 !important;\r\n fill: #222 !important;\r\n}\r\n\r\n.heat[data-heat=\"1\"],\r\n.heat[data-heat=\"2\"],\r\n.calendar-graph rect[fill=\"#c6e48b\"],\r\n.contrib-legend li[style*=\"#c6e48b\"] {\r\n opacity: 0.25 !important;\r\n}\r\n\r\n.heat[data-heat=\"3\"],\r\n.heat[data-heat=\"4\"],\r\n.calendar-graph rect[fill=\"#7bc96f\"],\r\n.contrib-legend li[style*=\"#7bc96f\"] {\r\n opacity: 0.5 !important;\r\n}\r\n\r\n.heat[data-heat=\"5\"],\r\n.heat[data-heat=\"6\"],\r\n.calendar-graph rect[fill=\"#239a3b\"],\r\n.contrib-legend li[style*=\"#239a3b\"] {\r\n opacity: 0.75 !important;\r\n}\r\n\r\n.heat[data-heat=\"7\"],\r\n.heat[data-heat=\"8\"],\r\n.calendar-graph rect[fill=\"#196127\"],\r\n.contrib-legend li[style*=\"#196127\"] {\r\n opacity: 1 !important;\r\n}\r\n\r\n/* contribution calendar - halloween colors */\r\n\r\n.calendar-graph rect[fill=\"#FFEE4A\"],\r\n.calendar-graph rect[fill=\"#FFC501\"],\r\n.calendar-graph rect[fill=\"#FE9600\"],\r\n.contrib-legend li[style*=\"#FFEE4A\"],\r\n.contrib-legend li[style*=\"#FFC501\"],\r\n.contrib-legend li[style*=\"#FE9600\"] {\r\n background-color: #fe9600 !important;\r\n fill: #fe9600 !important;\r\n}\r\n\r\n.calendar-graph rect[fill=\"#FFEE4A\"],\r\n.contrib-legend li[style*=\"#FFEE4A\"] {\r\n opacity: 0.2 !important;\r\n}\r\n\r\n.calendar-graph rect[fill=\"#FFC501\"],\r\n.contrib-legend li[style*=\"#FFC501\"] {\r\n opacity: 0.4 !important;\r\n}\r\n\r\n.calendar-graph rect[fill=\"#FE9600\"],\r\n.contrib-legend li[style*=\"#FE9600\"] {\r\n opacity: 0.8 !important;\r\n}\r\n\r\n.calendar-graph rect[fill=\"#03001C\"],\r\n.contrib-legend li[style*=\"#03001C\"] {\r\n background-color: #fc3 !important;\r\n fill: #fc3 !important;\r\n}\r\n\r\n.progress-bar.anim-grow-x,\r\n.dev-hero {\r\n filter: brightness(75%) !important;\r\n}\r\n\r\n/* invert (rgb) */\r\n\r\n#network .repo img:not(.gravatar),\r\n#header .logo,\r\nimg[src=\"/images/logo@2x.png\"],\r\n.site-logo a,\r\n.github-jobs-promotion a.jobs-logo strong,\r\niframe[src*=\"polldaddy.com\"],\r\n.jstree-node:not(.jstree-leaf) > .jstree-icon.jstree-ocl,\r\n.octotree_toggle .loader,\r\n.swipe .swipe-frame .swipe-bar .top-handle,\r\n.swipe .swipe-frame .swipe-bar .bottom-handle,\r\n.onion-skin .controls .transparent,\r\n.onion-skin .controls .opaque,\r\n.onion-skin .controls .slider .slider-track,\r\n.onion-skin .controls .slider .slider-track .dragger,\r\n.leaflet-control-zoom a,\r\n.leaflet-control-attribution.leaflet-compact-attribution:after,\r\nimg[src$=\"favicons.githubusercontent.com/github.com\"],\r\nimg[src$=\"invertocat.png\"],\r\n.ghd-invert,\r\n.render-shell img.math,\r\n#footer .github img {\r\n -webkit-filter: invert(100%) hue-rotate(180deg) !important;\r\n filter: invert(100%) hue-rotate(180deg) !important;\r\n}\r\n\r\n/* invert network graph */\r\n\r\ndiv#network.network > div > canvas {\r\n -webkit-filter: invert(90%) hue-rotate(180deg) !important;\r\n filter: invert(90%) hue-rotate(180deg) !important;\r\n}\r\n\r\n/* invert problematic emoji */\r\n\r\n/* images */\r\n\r\n[alt=\":soon:\"],\r\n[alt=\":on:\"],\r\n[alt=\":end:\"],\r\n[alt=\":heavy_dollar_sign:\"],\r\n[alt=\":registered:\"],\r\n[alt=\":tm:\"],\r\n[alt=\":heavy_multiplication_x:\"],\r\n[alt=\":heavy_plus_sign:\"],\r\n[alt=\":heavy_minus_sign:\"],\r\n[alt=\":heavy_division_sign:\"],\r\n[alt=\":heavy_check_mark:\"],\r\n[alt=\":arrows_clockwise:\"],\r\n[alt=\":wavy_dash:\"],\r\n[alt=\":curly_loop:\"],\r\n[alt=\":copyright:\"],\r\n[alt=\":currency_exchange:\"],\r\n[alt=\":top:\"],\r\n[alt=\":back:\"],\r\n[alt=\":zzz:\"],\r\n[alt=\":notes:\"],\r\n[alt=\":musical_score:\"],\r\n[alt=\":black_large_square:\"],\r\n[alt=\":black_medium_small_square:\"],\r\n[alt=\":ant:\"],\r\n[alt=\":musical_note:\"],\r\n[alt=\":loop:\"],\r\n[alt=\":feet:\"],\r\n[alt=\":paw_prints:\"],\r\n\r\n/* unicode */\r\n\r\n\r\n/* some emoji don't need to be inverted on Windows */\r\n\r\n\r\n/* from https://github.com/Dunedan/mbp-2016-linux on Windows*/\r\n\r\n\r\n/* */\r\n\r\n[alias=\"soon\"],\r\n[alias=\"on\"],\r\n[alias=\"end\"],\r\n[alias=\"heavy_dollar_sign\"],\r\n[alias=\"registered\"],\r\n[alias=\"tm\"],\r\n[alias=\"heavy_multiplication_x\"],\r\n[alias=\"heavy_plus_sign\"],\r\n[alias=\"heavy_minus_sign\"],\r\n[alias=\"heavy_division_sign\"],\r\n[alias=\"arrows_clockwise\"],\r\n[alias=\"wavy_dash\"],\r\n[alias=\"curly_loop\"],\r\n[alias=\"copyright\"],\r\n[alias=\"currency_exchange\"],\r\n[alias=\"top\"],\r\n[alias=\"back\"],\r\n[alias=\"zzz\"],\r\n[alias=\"notes\"],\r\n[alias=\"musical_score\"],\r\n[alias=\"black_large_square\"],\r\n[alias=\"black_medium_small_square\"],\r\n[alias=\"ant\"],\r\n[alias=\"musical_note\"],\r\n[alias=\"loop\"],\r\n[alias=\"feet\"],\r\n[alias=\"paw_prints\"] {\r\n -webkit-filter: invert(100%) hue-rotate(180deg) brightness(80%) !important;\r\n filter: invert(100%) hue-rotate(180deg) brightness(80%) !important;\r\n background: transparent !important;\r\n}\r\n\r\n/* Invert problematic emoji fallback images used on Windows */\r\n\r\n/* use tools/unicode-gen.js to generate */\r\n\r\ng-emoji[fallback-src$=\"2795.png\"],\r\ng-emoji[fallback-src$=\"2796.png\"],\r\ng-emoji[fallback-src$=\"2797.png\"],\r\ng-emoji[fallback-src$=\"27b0.png\"],\r\ng-emoji[fallback-src$=\"2b1b.png\"],\r\ng-emoji[fallback-src$=\"25fe.png\"],\r\ng-emoji[fallback-src$=\"1f3b6.png\"],\r\ng-emoji[fallback-src$=\"1f3bc.png\"],\r\ng-emoji[fallback-src$=\"1f4b1.png\"],\r\ng-emoji[fallback-src$=\"1f4b2.png\"],\r\ng-emoji[fallback-src$=\"1f503.png\"],\r\ng-emoji[fallback-src$=\"1f519.png\"],\r\ng-emoji[fallback-src$=\"1f51a.png\"],\r\ng-emoji[fallback-src$=\"1f51b.png\"],\r\ng-emoji[fallback-src$=\"1f51c.png\"],\r\ng-emoji[fallback-src$=\"1f51d.png\"],\r\ng-emoji[fallback-src$=\"1f3b5.png\"],\r\ng-emoji[fallback-src$=\"27bf.png\"],\r\ng-emoji[fallback-src$=\"1f43e.png\"],\r\ng-emoji[fallback-src$=\"1f43e.png\"] {\r\n -webkit-filter: invert(83%) !important;\r\n filter: invert(83%) !important;\r\n}\r\n\r\n.leaflet-tile-container img {\r\n -webkit-filter: invert(100%) hue-rotate(180deg) brightness(150%) !important;\r\n filter: invert(100%) hue-rotate(180deg) brightness(150%) !important;\r\n}\r\n\r\n.leaflet-marker-pane img,\r\n.gundamcat {\r\n -webkit-filter: brightness(0.8) !important;\r\n filter: brightness(0.8) !important;\r\n}\r\n\r\n/* invert #fff to #25272a */\r\n\r\n/* https://github.com/sujitpal/statlearning-notebooks/blob/master/src/chapter2.ipynb */\r\n\r\n.output_area img,\r\ntable.pricing-table,\r\ndiv[id^=\"contribution-first\"] img,\r\ndiv[id^=\"contribution-joined-github\"] img,\r\ndiv[id^=\"contribution-created\"] img,\r\n.project-preview-img img,\r\nimg[src$=\"bg-callout.svg\"],\r\nimg[data-canonical-src*=\"saucelabs.com/browser-matrix\"] {\r\n -webkit-filter: invert(90.5%) hue-rotate(180deg) saturate(200%) !important;\r\n filter: invert(90.5%) hue-rotate(180deg) saturate(200%) !important;\r\n}\r\n\r\n/* workaround filter creating a stacking context */\r\n\r\n.contribution-first-issue,\r\n.contribution-first-pull-request,\r\n.contribution-first-repository {\r\n opacity: 0.999 !important;\r\n}\r\n\r\n/* brighten language colors */\r\n\r\n.language-color {\r\n -webkit-filter: brightness(150%) !important;\r\n filter: brightness(150%) !important;\r\n}\r\n\r\n/* soft badges */\r\n\r\n.box-title-count {\r\n background-color: #484848 !important;\r\n color: #ccc !important;\r\n}\r\n\r\n/* svg styling */\r\n\r\nline,\r\nrect,\r\npath {\r\n shape-rendering: geometricPrecision !important;\r\n}\r\n\r\n.js-graph-punchcard svg.viz {\r\n background: transparent !important;\r\n border: none !important;\r\n}\r\n\r\n.octicon,\r\nsvg.octicon {\r\n fill: currentColor !important;\r\n}\r\n\r\n.reorderable-task-lists .markdown-body .task-list-item .drag-handle {\r\n fill: #c0c0c0 !important;\r\n}\r\n\r\n/* Firefox: Exclude text inside an svg loaded through an img, as seen in svg badges */\r\n\r\n*:not(img) text,\r\ncircle.day {\r\n fill: #ccc !important;\r\n}\r\n\r\ncircle.day:hover {\r\n fill: #fff !important;\r\n}\r\n\r\npath.js-diff-placeholder {\r\n fill: #282828 !important;\r\n}\r\n\r\n#contributors-master svg.viz {\r\n display: block !important;\r\n}\r\n\r\ng.dots circle {\r\n stroke: #222 !important;\r\n}\r\n\r\n.traffic-graph\r\n g.axis:not(.views):not(.unique)\r\n g.tick:not(:nth-child(14)):not(:first-child)\r\n line,\r\ng.axis path,\r\nline.axis,\r\nsvg:not(.vis) g.axis line {\r\n stroke: #444 !important;\r\n}\r\n\r\nsvg .path:not(.total):not(.unique):not(.views) {\r\n stroke: #aaa !important;\r\n}\r\n\r\n#commit-activity-detail path.path,\r\n.traffic-graph g.x.axis g.tick:first-child line {\r\n stroke: #1db34f !important;\r\n}\r\n\r\n.traffic-graph g.x.axis g.tick:nth-child(14) line {\r\n stroke: #1d7fb3 !important;\r\n}\r\n\r\nsvg.tick {\r\n fill: #444 !important;\r\n}\r\n\r\n.features-branch-diagram path[stroke=\"#c6d9ed\"],\r\n.features-branch-diagram path[stroke=\"#4182C4\"] {\r\n stroke: #4183c4 !important;\r\n}\r\n\r\n.features-branch-diagram circle[fill=\"#4183c4\"],\r\n.repo-list-stats a.issues:hover svg {\r\n fill: #4183c4 !important;\r\n}\r\n\r\n.features-branch-diagram circle[stroke=\"#ffffff\"] {\r\n stroke: #222 !important;\r\n}\r\n\r\nrect.map-background,\r\n.audit-log-map {\r\n fill: #1e4062 !important;\r\n background: #1e4062 !important;\r\n}\r\n\r\npath.land {\r\n stroke: #17334f !important;\r\n}\r\n\r\ncircle.audit-point {\r\n fill: #742d14 !important;\r\n stroke: #57210f !important;\r\n}\r\n\r\n.graphs .selection rect {\r\n fill: #888 !important;\r\n stroke: #888 !important;\r\n}\r\n\r\nul.sidetabs li a:hover,\r\n.editbox h1,\r\n#issues .labels .admin,\r\n#issues .display .sortbar,\r\n#facebox .close,\r\n#issues_search .wrapper,\r\n.ranked-repositories .meta a,\r\n.actor,\r\nul.nav.logged_out,\r\n.tip-box a.next,\r\n#inbox .list .unread,\r\n.main .filterbar,\r\n.browser-content .footerbar,\r\nul.smalltabs,\r\n.snippet,\r\n.supportstaffer,\r\n.discussion-form,\r\n.chooser-box,\r\n.chooser-box h3,\r\n#forkqueue .instructions,\r\n.selector-item.clear:hover,\r\n#contributors-master svg,\r\n.inset-callout h2,\r\n.documentation ul.nav,\r\n.date_selector td.selected,\r\n#contributors-master,\r\n.context-title,\r\n.list-module h2,\r\n.bootcamp-help h1,\r\ntable.files tr.up-tree a:hover,\r\n.ellipsis-button:hover,\r\n.codesearch-results .repo-list-name em,\r\n.codesearch-results .repo-list-description em,\r\n.blog-search-results em,\r\n.codesearch-cols em,\r\nul.bignav li a:hover,\r\nul.smallnav li a:hover,\r\n.comments-wrapper,\r\n.rackspace,\r\n.subnav-bar > ul > li > ul > li > a:hover,\r\n.issue.active,\r\n.orgs-nav .count,\r\n.filter-item:not(.selected):hover,\r\n.task-progress .progress-bar .progress,\r\n.oauth-connection-illustration .oauth-image,\r\n.manage-repo-access-wrapper:before,\r\n.counter,\r\n.Counter {\r\n background: #444 !important;\r\n}\r\n\r\n.hidden-text-expander a,\r\n.ellipsis-expander,\r\n.profile-timeline-month-heading:after,\r\n.review-comment-contents:after,\r\n.review-comment.is-comment-editing:after {\r\n background: #383838 !important;\r\n}\r\n\r\n.switcher > span:after,\r\n.list-module a:hover,\r\n.section-nav .active a,\r\n#dashboard .filter-bar li a.filter_selected:after {\r\n background-color: #555 !important;\r\n}\r\n\r\n.state-widget .behind .bar,\r\n.settings-email .label:not(.default),\r\n.key,\r\n.date:after,\r\n.branch-a-b-count .bar,\r\n.branch-a-b-count .meter,\r\n.branch-action-state-dirty .branch-action-icon,\r\n.branch-action-state-closed-dirty .branch-action-icon,\r\n.completeness-indicator-problem,\r\n.hidden-text-expander a:hover,\r\n.ellipsis-expander:hover {\r\n background: #555 !important;\r\n}\r\n\r\n.labels .label-neutral,\r\nli.ssh-key .ssh-key-state-indicator.not-recent,\r\n.render-shell > .slider .dragger {\r\n background: #666 !important;\r\n}\r\n\r\n.diverge-widget .separator {\r\n background: #ccc !important;\r\n}\r\n\r\n#network canvas {\r\n background: #fff !important;\r\n}\r\n\r\n.state-widget .ahead .bar,\r\n.render-shell > .slider .dragger:hover,\r\n.render-shell > .slider .dragger:active {\r\n background: #999 !important;\r\n}\r\n\r\n/* actions in issues - this style needs to be after .bubble */\r\n\r\n.action-bubble .bubble,\r\n.suggester {\r\n background: transparent !important;\r\n}\r\n\r\n/* blue box */\r\n\r\n.timeline-comment.current-user .timeline-comment-header,\r\n.github-jobs-promotion p,\r\n.octotip,\r\n.markdown-format .alert:not(.warning),\r\n.full-commit.commit,\r\n.flash,\r\n.bootcamp h1,\r\n.bootcamp-body,\r\n.owners-notice,\r\n.full-commit .browse-button,\r\n.blob-history,\r\na.branch-name,\r\n.branch-name,\r\n.new-user-avatar-cta,\r\n.jstree-wholerow-clicked,\r\n.commit-ref,\r\n.api .alert,\r\n.file-history-tease,\r\n.flash,\r\n.flash-global,\r\n.feature-banner,\r\n.recently-touched-branches,\r\n.comment-reactions .user-has-reacted,\r\n.pr-toolbar .subset-files-tab,\r\narticle.full .alert,\r\n.project-updated-message,\r\n.btn.btn-blue,\r\n.hook-delivery-guid,\r\n.topic-tag,\r\n.topic-tag-action,\r\n.delete-topic-button,\r\n.topic-tag-action .add-topic-button,\r\n.topic-tag-action .remove-topic-button,\r\n.RecentBranches {\r\n background: #182030 !important;\r\n}\r\n\r\n.repo-file-upload-progress .repo-file-upload-meter,\r\n.btn.btn-blue:hover,\r\n.topic-tag-link:hover,\r\n.delete-topic-button:hover {\r\n background: #273045 !important;\r\n}\r\n\r\n.bg-blue,\r\n.discussion-item-changes-marker.is-unread .discussion-item-icon {\r\n background: #4183c4 !important;\r\n}\r\n\r\n.timeline-comment.current-user .timeline-comment-header,\r\n.new-user-avatar-cta,\r\n.full-commit .browse-button,\r\n.markdown-format .alert p,\r\n.blob-history,\r\n.flash,\r\n.flash-global,\r\n.feature-banner,\r\n.recently-touched-branches,\r\n.recently-touched-branches li,\r\n.pr-toolbar .subset-files-tab,\r\n.alert.tip,\r\narticle.full .alert a,\r\n.project-updated-message,\r\n.timeline-comment-label.collaborator-comment,\r\n.hook-delivery-guid .octicon,\r\n.hook-delivery-guid a,\r\n.RecentBranches,\r\n.RecentBranches-item-link {\r\n color: #9daccc !important;\r\n}\r\n\r\n.RecentBranches-item,\r\n.commit-ref .user {\r\n color: #6d7c9c !important;\r\n}\r\n\r\n.timeline-comment.current-user,\r\n.github-jobs-promotion p,\r\n.octotip,\r\n.markdown-format .alert:not(.warning),\r\n.full-commit.commit,\r\n.bootcamp .bootcamp-body,\r\n.bootcamp h1,\r\n.owners-notice,\r\n.new-user-avatar-cta,\r\n.full-commit .browse-button,\r\n.commit-ref,\r\na.branch-name,\r\n.branch-name,\r\n.timeline-comment.current-user .timeline-comment-header .timeline-comment-label,\r\n.file-history-tease,\r\n.flash,\r\n.flash-global,\r\n.feature-banner,\r\n.recently-touched-branches,\r\n.timeline-progressive-disclosure-items button,\r\n.pr-toolbar .subset-files-tab,\r\narticle.full .alert,\r\n.btn.btn-blue,\r\n.topic-tag,\r\n.RecentBranches,\r\n.js-tag-input-tag {\r\n border: 1px solid #2c5f98 !important;\r\n}\r\n\r\n.repo-file-upload-progress,\r\n.project-updated-message,\r\n.delete-topic-button,\r\n.topic-tag-action .add-topic-button,\r\n.topic-tag-action .remove-topic-button {\r\n border-color: #246 !important;\r\n}\r\n\r\n.timeline-comment.current-user .timeline-comment-header,\r\n.blob-history,\r\n.recently-touched-branches li {\r\n border-bottom-color: #246 !important;\r\n}\r\n\r\n.blob-history,\r\n.file-history-tease .participation {\r\n border-top: 1px solid #246 !important;\r\n}\r\n\r\n.timeline-comment.current-user,\r\n.timeline-comment.current-user:after {\r\n border-right-color: #2c5f98 !important;\r\n}\r\n\r\n.flash,\r\n.markdown-format .alert a,\r\n.api .alert,\r\na.branch-name,\r\n.branch-name,\r\narticle.full .alert {\r\n border-color: #264c72 !important;\r\n color: #c8d0e1 !important;\r\n}\r\n\r\n.social-count:before {\r\n border-right-color: #333 !important;\r\n border-width: 5px !important;\r\n margin-top: -4px !important;\r\n}\r\n\r\n.social-count:after,\r\n#new_hook .fields {\r\n border-width: 0 !important;\r\n}\r\n\r\n.commit-icon .octicon {\r\n border-radius: 100% !important;\r\n}\r\n\r\n/* original colors */\r\n\r\n.discussion-item-integrations-callout .discussion-item-icon {\r\n background: #4095c6 !important;\r\n}\r\n\r\n/* notebooks */\r\n\r\n.input_prompt {\r\n color: hsla(234, 100%, 65%, 1) !important;\r\n}\r\n\r\n.output_prompt {\r\n color: hsla(0, 100%, 65%, 1) !important;\r\n}\r\n\r\n/* gradient */\r\n\r\n/* file drag&drop overlay */\r\n\r\n.repo-file-upload-tree-target {\r\n background: radial-gradient(\r\n ellipse at center,\r\n #000 0%,\r\n rgba(0, 0, 0, 0.6) 65%,\r\n rgba(0, 0, 0, 0.6) 100%\r\n ) !important;\r\n}\r\n\r\n/* light grey gradient */\r\n\r\n.btn:hover,\r\n.btn:active,\r\n.btn.zeroclipboard-is-hover,\r\n.btn.zeroclipboard-is-active,\r\n.minibutton:hover,\r\n.minibutton:active,\r\n.minibutton.zeroclipboard-is-hover,\r\n.minibutton.zeroclipboard-is-active.kbd,\r\n.signup-button:hover,\r\na.signin:hover,\r\n.hero .textographic,\r\n.hero .screenographic,\r\n.pagination span.current,\r\n.box-action:active,\r\n.btn:active,\r\n.btn.selected,\r\n.btn.selected:hover,\r\n.btn.zeroclipboard-is-active,\r\n.minibutton:active,\r\n.minibutton.selected,\r\n.minibutton.selected:hover,\r\n.minibutton.zeroclipboard-is-active,\r\n.octotree_toggle:hover,\r\nbutton.button:hover,\r\na.button:hover,\r\nspan.button:hover,\r\nbutton.minibutton:hover,\r\na.minibutton:hover,\r\nspan.minibutton:hover,\r\n.clone-url-button.selected > .clone-url-link,\r\n.clone-url-button.selected > .clone-url-link:hover,\r\nul#bootcamp li a:hover h4 {\r\n background: linear-gradient(#303030, #282828) !important;\r\n border-color: #484848 !important;\r\n}\r\n\r\n/* dark grey gradient */\r\n\r\n.btn,\r\ninput.btn,\r\nheader.nav-bar,\r\n.bubble .bubble-title,\r\nkbd,\r\na.feed,\r\n.list-browser-filterbar,\r\n.gobutton,\r\n.comment-header,\r\n.pagehead ul.tabs li a,\r\n.login_form input[type=\"submit\"],\r\n.top-bar,\r\nul#bootcamp li a h4,\r\n#gists .context-menu-container,\r\nbody#com #header,\r\n.white-nav .selected span,\r\n.filter-tab,\r\n#header-wrapper,\r\n#header-wrapper .nav,\r\n.pagination span,\r\n.cheatsheet h2,\r\n.section a.section-head,\r\n.octotree_view_header,\r\n.list-heading,\r\n.dashboard-tabs li a,\r\na.function-button,\r\n.add-pill-form,\r\n.gist .gist-file .gist-meta,\r\n.octotree_toggle,\r\nul.comparison-list > li.title,\r\nbutton.button,\r\na.button,\r\nspan.button,\r\nbutton.minibutton,\r\na.minibutton,\r\nspan.minibutton,\r\n.clone-url-button > .clone-url-link {\r\n background: linear-gradient(#25272a, #25272a) !important;\r\n border-color: #383838 !important;\r\n}\r\n\r\n.search-form button,\r\n.issues-list-actions,\r\na.gollum-minibutton,\r\na.gollum-minibutton:visited {\r\n background: linear-gradient(#25272a, #25272a) !important;\r\n}\r\n\r\n/* inverted dark grey gradient */\r\n\r\n.asc .sort-type,\r\n.desc .sort-type,\r\n.mini-bar-graph,\r\n.issues-list > ul > li.unread,\r\n.timeline-commits-header,\r\n.usage-bar dd,\r\n.render-bar {\r\n background: linear-gradient(#25272a, #25272a) !important;\r\n border-color: #383838 !important;\r\n}\r\n\r\n.bg-custom-gradient {\r\n background-image: linear-gradient(\r\n 180deg,\r\n #25272a,\r\n rgba(0, 0, 0, 0)\r\n ) !important;\r\n}\r\n\r\n.billing-per-seat-callout:after {\r\n box-shadow: 1px -1px 0 0 #343434 !important;\r\n}\r\n\r\n.clone-url-button + .clone-url-button > .clone-url-link {\r\n box-shadow: 1px 0 0 #333 !important;\r\n}\r\n\r\n.clone-url-button.selected > .clone-url-link {\r\n box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3) inset !important;\r\n}\r\n\r\n.blankslate,\r\n.ScreenshotCarousel-navitem.selected {\r\n box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05) !important;\r\n}\r\n\r\n/* commits page - committer icon */\r\n\r\n.commits-list-item .committer-avatar {\r\n box-shadow: -2px -2px 0 rgba(0, 0, 0, 0.4) !important;\r\n}\r\n\r\n/* text color */\r\n\r\n/* Bright text */\r\n\r\n.dropdown-item:hover,\r\n.dropdown-item.zeroclipboard-is-hover,\r\n.gist-snippet .link-overlay .link,\r\n.select-menu-item.navigation-focus .text-danger,\r\n.select-menu-item.navigation-focus .description,\r\n.select-menu-item.navigation-focus.selected .text-danger,\r\n.select-menu-item.navigation-focus.selected .description,\r\n.select-menu-item.navigation-focus.select-menu-action .text-danger,\r\n.select-menu-item.navigation-focus.select-menu-action .description,\r\n.select-menu-item.navigation-focus .description-inline .text-danger,\r\n.select-menu-item.navigation-focus .description-inline .description,\r\n.select-menu-item.navigation-focus,\r\n.select-menu-item.navigation-focus.selected,\r\n.select-menu-item.navigation-focus.select-menu-action,\r\n.select-menu-item.navigation-focus .description-inline,\r\n.gist-snippet-meta .gist-count-links > li > a:hover,\r\n.team-member-list .manage-team-member .navigation-focus .btn-link,\r\n.dangerzone > h3,\r\n.gcr-ext-editor-close .select-menu-title,\r\n.btn.btn-outline:hover,\r\n.btn.btn-outline:active,\r\n.btn.btn-outline.selected,\r\n.btn.btn-outline.zeroclipboard-is-hover,\r\n.btn.btn-outline.zeroclipboard-is-active,\r\na.filter-item.selected,\r\n.date-selector td.selected,\r\n.date-selector td.selectable-day:hover,\r\n.subnav-item:hover,\r\n.subnav-item:focus,\r\n.owner-select-target:hover,\r\n.owner-select-target:focus,\r\n.suggester li.navigation-focus,\r\n.suggester li.navigation-focus small,\r\n.intgrs-lstng-categories a:hover,\r\n.text-white,\r\na.text-white,\r\n.blame-next-container .reblame-link:hover,\r\n.reblame-link:hover,\r\n.topic-tag-action .add-topic-button:hover,\r\n.topic-tag-action .remove-topic-button:hover,\r\n.discussion-item-changes-marker.is-unread .discussion-item-icon {\r\n color: #efefef !important;\r\n}\r\n\r\n.btn,\r\na.btn,\r\n.btn.btn-primary,\r\n.button.primary,\r\n.minibutton.primary,\r\n.btn-danger:hover,\r\nul.repo-stats li a:hover,\r\n.text-emphasized,\r\n.minibutton.danger:hover,\r\n#gist-form label,\r\n.subnav li a:hover,\r\n.filters li.selected a,\r\n.filters li a:hover,\r\n.code-list em,\r\na.header-anchor,\r\n.commandbar .choice .command,\r\n.search-term,\r\n.codesearch-cols em,\r\n.image,\r\n.selector-item:hover .mini-icon:before,\r\n.selector-item.selected .mini-icon:before,\r\n.new-repo .octicon,\r\n#header .nav a,\r\n.minibutton i,\r\n.minibutton,\r\n.commit .mini-icon:before,\r\n.featured-callout,\r\n.sidebar-milestone-widget .title,\r\n.numbers-summary .num,\r\n#network .explain b,\r\n.dashboard-tabs a.selected,\r\n.dropdown-menu > li > a:hover,\r\n.message .time,\r\n#graph_data .tab.selected a,\r\n.explore-collection .see-more-link,\r\nul.color-label-list .count,\r\na.filter-tab.selected,\r\n.orgs-nav .count,\r\n.facebox-user-list-item a,\r\na.org-module-link,\r\n.org-header-info .name-link,\r\n.calendar-graph .contrib-details div .num,\r\n.commandbar .display table td:first-child,\r\n.file-history-tease .author a,\r\n.overall-summary .graphs .num,\r\nul.summary-stats li .num,\r\n.pull-head-meta .pull-number a,\r\n.mini-discussion-bubble .mini-discussion-bubble-action,\r\n.sub-nav h2,\r\n.sub-nav h2 a,\r\n.accordion .section a.section-head,\r\n.orgs-nav .org-nav-item.selected,\r\n.sub-nav li a.active,\r\na.org-link,\r\n.infobar-widget .text a,\r\n.view-modes-menu li.active,\r\na.signin:hover,\r\n.highlight-module .mega-icon:before,\r\n.headlines li a,\r\n#wiki-rightbar li,\r\n.i-am-error p,\r\n.markdown-body .octicon-link,\r\n.gist-item ul.meta > li > a:hover,\r\n.native-download .mega-icon:before,\r\n#article-platform-nav ul li.selected a,\r\n.section-heading-title a.selected,\r\n.marketing-nav a.selected,\r\n.dashboard-tabs a:hover,\r\n.hidden-text-expander a:hover,\r\n.codesearch-cols em,\r\n.branch-action-state-clean .branch-action-icon:before,\r\n.hook-list li.selected a,\r\n.oauth-permissions-details .permission-title,\r\np.read-it,\r\n.branch-action-state-dirty .branch-action-icon:before,\r\n.branch-action-state-closed-dirty.branch-action-icon:before,\r\n.branch-action-state-merged .branch-action-icon:before,\r\n.full-commit .authorship a,\r\n#fork-select .target:hover:not(.disabled),\r\n.full-commit .authorship .author-name,\r\n.showcase-featured .featured-grid-link,\r\n.collection-card-title,\r\n.collection-card-image:hover,\r\n.explore-page .see-more-link,\r\n.mute,\r\n.pull-request-link:hover,\r\n.expandable:hover:before,\r\n.follow-list .follow-list-name a,\r\na.comment-header-author,\r\n.wiki-edit-link:hover,\r\n.infotip p,\r\n.form-actions .tip,\r\ndl.form.warn dd.warning,\r\n.page-notice,\r\n.subnav-item.selected,\r\n.subnav-item.selected:hover,\r\n.subnav-item.selected:focus,\r\nol.toc > li a.active,\r\n.example-nav li a.selected,\r\n.facebox-alert,\r\n.typeahead-result,\r\n.no-results,\r\n#user-links > li * button,\r\n.timeline-commits .hidden-text-expander a:hover,\r\n.color-editor-input,\r\n#user-links .sign-out-button,\r\n.table-list-item label,\r\n.audit-action-info .context,\r\n.token-scope,\r\n.segmented-nav li.active a,\r\n.tabs > a.selected,\r\n.member-username,\r\n.invited-banner p,\r\nkbd,\r\n.kbd,\r\n.boxed-profile .profile-preview .vcard-fullname,\r\n.btn.btn-primary:hover,\r\n.minibutton.btn-primary:hover,\r\n.integrations .site-footer a,\r\n.add-line-comment,\r\nul.filter-list .filter-item.selected,\r\n.blob-num-expandable .diff-expander:hover,\r\n.email-format .email-hidden-toggle a:hover,\r\n#gollum-editor-help-parent li a.selected,\r\n#gollum-editor-help-list li a.selected,\r\na.gollum-minibutton,\r\na.gollum-minibutton:visited,\r\na.token-warning,\r\na.lightertooltipped,\r\n.org-team-sidebar .team-note .note-emphasis,\r\n.select-menu-tabs a.selected,\r\n#com .dropdown-menu a:hover,\r\n#com h1 span,\r\n#com h2 span,\r\n.breadcrumb .final-path,\r\nbutton.button,\r\na.button,\r\nspan.button,\r\nbutton.minibutton,\r\na.minibutton,\r\n.button.primary:hover,\r\n.pagination .current,\r\n.pagination .current:hover,\r\n.repo-private-label,\r\na.repo_filter.js-repo-filter-tab.filter-selected,\r\n.keyboard-mappings th,\r\n.rendered_html,\r\n.render-health:hover .symbol,\r\n.radio-label,\r\n.select-menu-item.selected,\r\n.gist-snippet-meta .description,\r\na.select-menu-item-text,\r\n.clone-url-button > .clone-url-link,\r\na.user-mention,\r\n.user-mention,\r\na.team-mention,\r\n.team-mention,\r\n.boxed-group-inner h4,\r\n.octotree_github_sidebar a.octotree_toggle,\r\n.reponav-item:hover,\r\n.pagehead-tabs-item.selected,\r\n.pagehead-tabs-item:hover,\r\na.pagehead-tabs-item:hover,\r\n.tabnav-tab.selected,\r\n.leaflet-control-attribution,\r\n.leaflet-control-attribution a,\r\n.integrations-breadcrumb-link,\r\na.integrations-breadcrumb-link,\r\n.link-gray-dark,\r\na.link-gray-dark,\r\n#message .title,\r\n.exploregrid-item-title,\r\n.explore-collection h2,\r\n#com h1,\r\n#com h2,\r\n#com h3,\r\nul.filter-list .filter-item:hover,\r\n.underline-nav-item.selected,\r\n.underline-nav-item:hover,\r\n.underline-nav-item:focus,\r\n.content > h2,\r\n.content > h3,\r\n.audit-results-header-title,\r\n.session-authentication .auth-form-header,\r\n.org-settings-team-type,\r\n.org-settings-team-count,\r\n.intgrs-lstng-item-header,\r\n.api h1,\r\n.api h2,\r\n.octokit-language span,\r\n.blog .text-alpha,\r\n.blog .text-beta,\r\n.blog .text-delta,\r\n.blog .text-gamma,\r\n.blog h1,\r\n.blog h2,\r\n.blog h3,\r\n.blog h4,\r\n.blog h5,\r\n.site-header-nav a,\r\n.menu-item.selected,\r\n.overview .text-beta,\r\narticle h2,\r\n#message-list h1,\r\n#message-list h3,\r\n.graph-page h1,\r\n.graph-page h3,\r\n.dashboard-notice h2,\r\n.prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon,\r\n.counter,\r\n.Counter,\r\n.state,\r\n.State,\r\na.state,\r\na.State,\r\n.site-header-dark .site-header .site-header-link {\r\n color: #e2e2e2 !important;\r\n}\r\n\r\npre,\r\nbody,\r\na.social-count,\r\nspan.social-count,\r\n#languages a.bar,\r\n.lineoption p,\r\na.blog-title,\r\ntable.notifications th,\r\n.usagestats dl dt.numbers,\r\n.commit-preview p.name .date,\r\n.download-list h4,\r\n.fieldgroup p.explain.planusage,\r\nol.repository-lang-stats-numbers li .lang,\r\n.explore h2,\r\n.tabnav .active a,\r\n.vcard-username,\r\n#markdown-toc li a,\r\n.tag-info .tag-name,\r\n.language,\r\n.featured-callout h2,\r\n.commit-title .message,\r\n.files .message,\r\n.revision .creator,\r\n.mini-icon.search-input,\r\n.lines-changed,\r\n.lines-changed:hover,\r\n.discussion-topic-author a,\r\n.boxed-group-table td,\r\n.graph .data .number,\r\n.content,\r\n.box-title,\r\na.box-action,\r\n#blog-main .pagehead h1 a.title,\r\n.octofication .message p,\r\n.repolist .description,\r\n.addon p,\r\n.keyboard-mappings,\r\n.accessibility-aid:focus,\r\n.list-group-item .list-group-item-name a,\r\n.list-group-item .list-group-item-meta a,\r\n.list-browser-sorts .sort-type,\r\n.select-menu-header .select-menu-title,\r\n#commits_tab_counter,\r\n.auto-search-group .search-filter,\r\n.usage-bar dt,\r\n.github-jobs-promotion p a,\r\n.select-menu-item .description,\r\n.file-info .file-name,\r\n.file-box .meta,\r\n.gh-header-meta .author,\r\n.timeline-comment-header .author,\r\n.timeline-commits .author,\r\n.sidebar-assignee .assignee,\r\n.rss-subscribe,\r\n.sidebar-module h3 a,\r\n.sidebar-module h3.disable span,\r\n.octotip,\r\n.graph-canvas .activity,\r\n.billing-section .section-content,\r\n#readme span.name,\r\n.steps li.current,\r\n.discussion-item-entity,\r\n.blog-post-body,\r\n.subnav-search-context .btn,\r\n.context-loader,\r\n.box-title a,\r\n.merge-pr-more-commits a,\r\n.branch-infobar .lightweight-actions > li a:hover,\r\n.discussion-item-ref-title .title-link,\r\n.org-teams-list .team,\r\n.subnav-search-context .select-menu-item-icon,\r\n.ace-github,\r\na.pagehead-nav-item.selected,\r\na.pagehead-nav-item:hover,\r\n.repo-collection .collection-stat,\r\na.subscribe-feed,\r\nheader ul.links a:hover,\r\ndiv.container > p,\r\n.commits-list-item .commit-author,\r\n.full-commit .sha-block > .sha,\r\n.discussion-item .renamed-was,\r\n.discussion-item .renamed-is,\r\na.discussion-item-entity,\r\nspan.discussion-item-entity,\r\n.table-list-header-toggle .btn-link.selected,\r\n.table-list-header-toggle .btn-link.selected:hover,\r\n.table-list-header-toggle .btn-link:hover,\r\na.issue-title-link,\r\n.milestone-title-link a,\r\n.org-header .edit-org,\r\n.org-name,\r\n.diff-line-code,\r\n.contrib-number,\r\n.pulse-summary .summary-box .count,\r\n.list-options .selected .list-item-title,\r\n.nav-bar-inner .brand-logo-invertocat .octicon-mark-github,\r\n.menu a .octicon,\r\n.issue-list-meta a,\r\n.stat-number,\r\ndiv.search-form button span,\r\n.fullscreen-overlay .octicon:hover:before,\r\n.fullscreen-overlay .mega-octicon:hover:before,\r\n.protip-callout,\r\n.fullscreen-overlay textarea:focus,\r\n.fullscreen-overlay textarea:hover,\r\n#header ul.top-nav > li > a,\r\n#header ul.top-nav > li > button,\r\na.team-member-ellipsis:hover,\r\n.rendered_html pre,\r\n.rendered_html code,\r\n.team-grid .team-name,\r\n.commit .commit-title,\r\n.commit .commit-title a,\r\n.completeness-indicator-success,\r\n.completeness-indicator-error,\r\n.completeness-indicator-problem,\r\n.article-meta,\r\na.article-meta,\r\n.timeline-comment-header-text code a,\r\n.commit-tease-sha,\r\na.commit-tease-sha,\r\n.reponav-item.selected,\r\n.stats-group-stat.no-link:hover .stat-number,\r\n.octotree_github_sidebar a.octotree_opts,\r\n.octotree_help > span,\r\n.application-authorizations .oauth-app-access-name,\r\n.dropdown-item,\r\na.dropdown-item,\r\n.header-nav-link,\r\na.header-nav-link,\r\n.header-logo-invertocat,\r\na.header-logo-invertocat,\r\na.header-logo-wordmark,\r\n.pull-request-integrations-title,\r\n.intgrs-dir-intro .directory-header-back,\r\n.intgrs-dir-intro .directory-header-back .header-link,\r\n.oauth-application-info .application-title,\r\n.session-authentication .header-logo,\r\n.repo-file-upload-progress,\r\na .mega-octicon,\r\n.anchor,\r\na.anchor,\r\n.gcr-ext-editor-close .delete-button:hover svg,\r\n.repo-filterer .repo-filter.filter-selected,\r\n.select-menu-divider,\r\n.label-select-menu .select-menu-item.selected,\r\n.dropdown-signed-commit .dropdown-menu,\r\n.signed-commit-signer-name .signer,\r\n.signed-commit-signer-name a.signer,\r\n.text-gray-dark,\r\na.text-gray-dark,\r\n.display-heading-1,\r\n.display-heading-2,\r\n.display-heading-3,\r\n.display-heading-4,\r\n.pinned-repos-selection-list-item.selected,\r\n.Box-body-row--highlight .Box-row-link,\r\n.text-pending,\r\na.text-pending,\r\n.compare-pr-placeholder p,\r\n.compare-pr-placeholder .help-link,\r\n#message.good,\r\n#message.major,\r\n.boxed-group-success,\r\n.suggester li,\r\n.alert.warning p,\r\nul#bootcamp li a h4,\r\n.menu-heading,\r\n.text-black,\r\n.diffstat-summary strong,\r\n.markdown-format h4,\r\n.access-token .token-description,\r\n.oauth-org-access-details .boxed-group-list > li.on strong,\r\n.text-gamma,\r\n.content h1,\r\n.api .text-alpha,\r\n.api .text-beta,\r\n.api .text-delta,\r\n.api .text-gamma,\r\n.api h1,\r\n.api h2,\r\n.api h3,\r\n.api h4,\r\n.api h5,\r\n.octokit-language span,\r\n.lead,\r\n.merge-branch-heading,\r\n.org-user-notice-content strong,\r\n.timeline-comment-label.owner-comment,\r\n.Box-row-link,\r\na.Box-row-link,\r\n.form-control,\r\n.form-select,\r\n.header .header-search-scope,\r\n.discussion-item-private,\r\n.label-select-menu div.labelstyle-000000.selected,\r\n.marketplace-plan-emphasis {\r\n color: #fff !important;\r\n}\r\n\r\n.edit-repository-meta,\r\n.field label,\r\n.boxed-group-list li,\r\n.capped-box,\r\n.marketing-nav a,\r\n.repository-meta,\r\n.gist-item .description,\r\np.explain,\r\n.news .alert .simple .title,\r\n#network .graph-date,\r\n.tabnav-widget.text,\r\n.feature .intro,\r\nspan.diffstat,\r\nspan.diffstat a,\r\n.commit .commit-branches a,\r\n#readme .plain,\r\n.news blockquote,\r\n.news blockquote p,\r\n.collection-stat,\r\n.overall-summary .graphs .desc,\r\n.flash-global a,\r\n.calendar-graph .contrib-details div .lbl,\r\n.tag-info a,\r\na.browse-button,\r\n.ghead .dir,\r\n.repository-lang-stats .percent,\r\n.comment-header-action-text a,\r\n.comment-header-right a,\r\n.gist-item .creator,\r\n.dashboard-tabs a,\r\n#graph_data .tab a,\r\n.pull-info,\r\n.list-group-item .list-group-item-summary a,\r\n#contributors .capped-card .cmt,\r\n.boxed-group-list .access-level,\r\nh3.conversation-list-heading,\r\na.filter-tab,\r\n.starred-repo p.description,\r\n.commit-desc pre,\r\n.org-repo-stats a,\r\n.org-repo-updated a,\r\n.org-repo-description,\r\n.org-repo-forked a,\r\n.commandbar .display table td span,\r\n.clone-options,\r\n.pulse-section,\r\n.discussion-sidebar p,\r\n.discussion-topic-header .discussion-topic-author,\r\n.gist-description,\r\n.explain,\r\np.subtext,\r\n.team-grid .team-description,\r\n.orgs-nav .org-nav-item,\r\n.form-actions-protip .protip,\r\n.discussion-item .author,\r\n.inline-comments .comment-count,\r\n.sidebar-heading,\r\n.clear-issue-filters a,\r\n.render-view-modes li.active:before,\r\nul.comparison-list > li em,\r\n.marketing-benefits .column p,\r\n.sub-nav li a,\r\n.headlines a .date,\r\n.sidebar-module ul ul li span,\r\n.merge-branch-description,\r\n.gist-item ul.meta > li > a,\r\nul#categories li h5 a,\r\n.render-view-modes li.active,\r\n.user-leaderboard-list .repo-list-item .repo,\r\n.repo-stats li a,\r\n.about p,\r\ndl.form > dd p.note,\r\np.subdued,\r\n.team-header .team-description,\r\n.hfields dl.form > dt label,\r\n.boxed-group > h3 a.boxed-group-breadcrumb,\r\n.boxed-group .heading a.boxed-group-breadcrumb,\r\n.subscriptions-sidebar .note,\r\n.thread-subscription-status,\r\na.ellipsis-button,\r\n.ellipsis-button,\r\n.follow-list .follow-list-info,\r\nform.btn .count,\r\n.blame .commitinfo .date,\r\n.gist .gist-file .gist-meta a,\r\n.merge-pr-more-commits,\r\n.hidden-text-expander a,\r\n.news div.message,\r\n.news li blockquote,\r\n.news .alert .pull-info,\r\n.news .alert .branch-link,\r\n.release .release-authorship a,\r\n.wiki-wrapper .wiki-empty-box:hover,\r\n.select-menu.is-showing-clear-item .select-menu-clear-item .octicon,\r\n.diffstat-summary a,\r\na.subnav-item,\r\n.branches .branch-group-heading .branch-group-name,\r\n.render-notice,\r\n.table-list-milestones .stat,\r\n.commits-listing .commit-group-title .octicon-git-commit,\r\n.select-menu-header .octicon:hover,\r\n.repo-list-description,\r\n.file .meta,\r\n.email-format .email-hidden-toggle a,\r\n.file-diffstat,\r\n.program-info-column .mega-octicon,\r\n.octofication .notice-dismiss:hover,\r\n.timeline-commits .commit-message a,\r\n.markdown-format .intro,\r\n.label-admin,\r\n.program-info-column p,\r\n.file-history-tease,\r\n.blob-num:hover,\r\n.gist-snippet-meta .gist-count-links > li > a,\r\n.commit-tease .message,\r\n.commit-author-section,\r\n.manage-repo-access-not-active,\r\n.milestone-name,\r\na.milestone-name,\r\n.feature-callout,\r\n.repo-file-upload-file-wrap .remove-file:hover,\r\nbutton.tabnav-tab,\r\n.rss-subscribe,\r\na.rss-subscribe,\r\ntable.capped-list .octicon,\r\n.site-header-menu .nav-item,\r\n.discussion-item-icon,\r\n.exploregrid-item,\r\na.exploregrid-item,\r\n.markdown-body blockquote,\r\n.link-gray,\r\na.link-gray,\r\n.reaction-summary-item {\r\n color: #b5b5b5 !important;\r\n}\r\n\r\n.calendar-graph .contrib-details div,\r\n.tabnav-tabs a,\r\n.time,\r\n.gist-item .metadata .datetime,\r\n.list-group-item-meta,\r\na.keyboard-shortcuts,\r\nbutton.keyboard-shortcuts,\r\n.simple-conversation-list,\r\n.simple-conversation-list > li .title .num,\r\n.drag-and-drop,\r\n.starred-repo .sort-info,\r\n.org-stats,\r\n.commandbar .choice,\r\n.commandbar .loading,\r\n.commandbar .description,\r\nul.summary-stats li a,\r\n.authorship,\r\n.sha-block,\r\n.gh-header-meta,\r\n#last-edit,\r\n.setup-header .lead a,\r\n.repository-meta .edit-link a,\r\n.api-status a,\r\n.meta li,\r\n.who_when a,\r\n.numbers-summary a,\r\n.mini-icon-remove-close:hover,\r\n.section-heading-title .separator,\r\n.blog-aside .rss,\r\n.hook-list a,\r\n.github-jobs-promotion a.jobs-logo,\r\n.org-teams-list .team-meta,\r\n.repo-list-item .repo-description,\r\n.branch-infobar .lightweight-actions > li a,\r\n.repo-leaderboard-list .repo-leaderboard-meta-item a,\r\n.changed .moved-up:before,\r\n.changed .moved-down:before,\r\n.comment-header .octicon,\r\na.section-heading-back,\r\n.list-group-item-meta .octicon,\r\n.repo-leaderboard-title .title-meta,\r\na.pagehead-nav-item,\r\n.wiki-wrapper .wiki-empty-box,\r\n.commits-list-item .commits-comments-link,\r\n.timeline-comment-header,\r\n.commits-list-item .commit-meta,\r\n.issues-listing .table-list-issues .issue-comments-link,\r\n.issues-listing .table-list-issues .issue-meta-section a,\r\na.issues-reset-query,\r\n.labels-list-action,\r\ntable.tag-list p a,\r\ntable.tag-list td.date a,\r\n.muted-link,\r\na.muted-link,\r\n.render-view-modes li,\r\n.site-footer,\r\n.site-footer .octicon-mark-github:hover,\r\n.repo-list-stats .repo-list-stat-item,\r\n.range-editor span.flag .octicon,\r\n.commit-info .commit-meta a,\r\n.notifications .issue-notification.read .type-icon,\r\n.notifications .read a,\r\n.auth-form-header .octicon,\r\n.releases-tag-list p a,\r\n.history-link a,\r\na.issue-nwo-link,\r\nul.filter-list .filter-item,\r\n.member-meta .teams-link,\r\n.member-meta .btn-link,\r\nul.comparison-list > li em,\r\nul.comparison-list > li.title,\r\n.diffstat-summary,\r\na.team-member-ellipsis,\r\na.discussion-item-toggle-open,\r\na.discussion-item-toggle-closed,\r\nbutton.discussion-item-toggle-open,\r\nbutton.discussion-item-toggle-closed,\r\n.dropdown-header,\r\n.participation a,\r\n.completeness-indicator-info,\r\n.type-icon-state-none,\r\na.type-icon-state-none,\r\n.pagehead-tabs-item,\r\na.pagehead-tabs-item,\r\n.commit-tease,\r\n.reponav-item,\r\na.reponav-item,\r\n.delete-owners-button,\r\n.stats-group-stat,\r\na.stats-group-stat,\r\n.stats-group-stat.no-link:hover,\r\n.wiki-edit-link,\r\na.wiki-edit-link,\r\n.toolbar-item .menu-target,\r\n.member-meta .member-meta-link,\r\n.lock-toggle-link,\r\na.lock-toggle-link,\r\n.hidden-text-expander a,\r\n.ellipsis-expander,\r\n.text-muted,\r\n.listgroup-item,\r\n.discussion-item-header,\r\n.discussion-sidebar-heading,\r\n.org-header-meta .meta-item .meta-link,\r\n.underline-nav-item,\r\na.underline-nav-item,\r\n.boxed-group-inner,\r\n.lead,\r\n.form-checkbox .note,\r\n.bot-identifier,\r\n.dashboard-notice .dismiss:hover,\r\n.text-gray,\r\na.text-gray,\r\n.project-header .project-header-link,\r\ntd.icon .octicon-file-text,\r\ntd.icon .octicon-file-symlink-file {\r\n color: #949494 !important;\r\n}\r\n\r\n.vcard-detail .octicon,\r\n.member-badge .octicon,\r\n.command-bar .octicon-question:before,\r\n.news .alert .time,\r\nul.color-label-list .color-label.zeroed,\r\nul.color-label-list .color-label.zeroed .count,\r\n.gh-header-title .issue-number,\r\na.leaderboard-list-rank,\r\n.bootcamp ul li a,\r\n.ssh-key-fingerprint,\r\n.tag-references > li a,\r\n.release .release-authorship,\r\n.branches .branch-summary,\r\n.branches .no-results-message,\r\nheader ul.links > li a,\r\n.team-info-card .stats-group .stat,\r\n.team-info-card .stats-group .stat.no-link:hover,\r\n.discussion-sidebar-item,\r\n.issues-listing .table-list-issues .issue-meta,\r\n.task-progress,\r\n.table-list-milestones .stat-label,\r\n.table-list,\r\n#blog-home,\r\n.blog-post-meta,\r\n.blog-post-meta a,\r\n.blog-post-meta .octicon,\r\n.diff-line-num,\r\n.file-data .line-numbers span,\r\n.discussion-item .timestamp,\r\n.branch-status .divider,\r\n.news .alert .octicon,\r\n.news .alert .mega-octicon,\r\n.blankslate > .mega-octicon,\r\n.repo-list-meta,\r\na.discussion-item-help,\r\n.page-new-repo .license-info,\r\n.notification-actions .btn-link,\r\n.commit-info .commit-meta,\r\n.notifications .read .type-icon,\r\n.notification-actions .age,\r\n.list-item .byline,\r\n.issue-list-meta,\r\n.blob-num-expandable .diff-expander,\r\n.file-type-icon,\r\n.uploaded-files .remove,\r\n.releases-tag-list td.date a,\r\n.collaborators .collab-remove .remove-link,\r\n.octofication .notice-dismiss,\r\nul.comparison-list > li .octicon,\r\ndiv.content-header h6,\r\n.fullscreen-overlay textarea,\r\n.blob-num.non-expandable:hover,\r\n.breadcrumb,\r\n.application-authorizations .oauth-app-list-meta,\r\n.application-authorizations .oauth-app-owner,\r\n.boxed-group-inner .help,\r\n.thread-subscription-status .reason,\r\n.toc-diff-stats .octicon,\r\n.blob-num,\r\n.recent-gists .description .blank,\r\n.recent-gists .metadata,\r\n.member-meta .access-link,\r\n.gist-quicksearch-no-results,\r\n#user-content-toc ul ul li:before,\r\n.btn-octicon,\r\na.btn-octicon,\r\nbutton.btn-octicon,\r\n.user-list li em,\r\n.reponav-item .octicon,\r\n.pagehead-tabs-item .octicon,\r\n.table-list-header-toggle .btn-link,\r\n#graph_data h2,\r\n#message-list .message .time,\r\na.tabnav-extra,\r\n.tabnav .tabnav-extras,\r\n.discussion-item-integrations-callout .pull-request-integrations-dismiss,\r\n.oauth-application-info .meta-link,\r\n.oauth-application-info .app-info,\r\n.repo-file-upload-file-wrap .remove-file,\r\n#footer .mega-octicon,\r\n.gcr-ext-editor-close svg,\r\n.commit-id,\r\na.commit-id,\r\n.orghead .edit-org,\r\n.signed-commit-badge,\r\n.manage-member-meta-item .btn-link,\r\n.note,\r\n.delete-topic-button,\r\n.topic-tag-action .add-topic-button,\r\n.topic-tag-action .remove-topic-button,\r\n.text-gray-light,\r\na.text-gray-light {\r\n color: #7b7b7b !important;\r\n}\r\n\r\n.branch-infobar .lightweight-actions > li .octicon,\r\n.manage-repo-access-icon .octicon,\r\n.wiki-wrapper .wiki-history .date,\r\n.issue-meta-section .octicon,\r\n.thread-subscription-status .mega-octicon,\r\n.subnav-search-icon,\r\n.discussion-sidebar-toggle .octicon,\r\n.auto-search-group > .octicon,\r\n.page-gist-edit .octicon-gist,\r\n.unselected-month,\r\n.pagination .disabled,\r\n.repohead h1 .octicon,\r\n.profile-rollup-toggle,\r\n.select-menu-item.disabled,\r\n.select-menu-item.disabled.selected,\r\n.select-menu-item.disabled .description,\r\n.dashboard-notice .dismiss,\r\n.blame-next-container .reblame-link {\r\n color: #606060 !important;\r\n}\r\n\r\n.context-pane .selector-item:hover a,\r\n.mega-icon:before,\r\n.mini-icon-public-repo:before,\r\n.mini-icon-pull-request,\r\n.mini-icon-remove-close,\r\n.mini-icon-link,\r\n.task-progress .octicon,\r\n.milestone-link .octicon,\r\n.site-footer .octicon-mark-github,\r\n.select-menu-header .octicon,\r\n.steps li,\r\n.pagination .gap,\r\n.octicon-btn.disabled,\r\n.octicon-btn.disabled:hover,\r\n.branch-delete.disabled,\r\n.date_selector td.unselected_month,\r\n.bootcamp .desc h2,\r\n.issues-listing .table-list-issues .issue-comments-link.no-comment,\r\n.diffstat-bar,\r\n.issue-comments-no-comment,\r\na.issue-comments-no-comment,\r\n.prose-diff.collapsed .rich-diff-level-zero.expandable .octicon {\r\n color: #4d4d4d !important;\r\n}\r\n\r\n.list-tip:before,\r\n.selector-item .mini-icon:before,\r\n.browser .mini-icon-arr-right,\r\n.selected .select-menu-checkmark,\r\n.octicon-person-team:before,\r\n.issues-reset-query .octicon-x,\r\na.darkertooltipped,\r\n#subscribeButton {\r\n color: #373737 !important;\r\n}\r\n\r\n.timeline-comment-header .timestamp,\r\n.vcard-stat:hover .text-muted,\r\n.boxed-group > h3 a,\r\n.boxed-group .heading a,\r\n.list-heading a,\r\n.close-button,\r\n.timeline-comment-action,\r\na.comment-type-icon,\r\n.timeline-comment-actions .octicon,\r\n.commit-title .commit-link tt,\r\n.btn-block-user,\r\n.pagehead-tabs-item.selected > .octicon,\r\n.reponav-item.selected > .octicon,\r\n.select-menu-action > .octicon,\r\n.select-menu-item,\r\na.select-menu-item,\r\n.discussion-sidebar-toggle:hover .octicon,\r\n.feature-callout .feature-dismiss-link,\r\n.pagehead-heading,\r\na.pagehead-heading,\r\n.text-inherit,\r\na.text-inherit,\r\n.table-list-milestones .stat a,\r\n.review-comment-contents .timestamp,\r\n.discussion-item-ref-title .title-link:hover .issue-num {\r\n color: inherit !important;\r\n}\r\n\r\n/* Alerts and activity, remove background gradient */\r\n\r\n.metabox .editable-text:hover,\r\n#inbox .list .item .title span {\r\n background-color: transparent !important;\r\n border: 0 !important;\r\n}\r\n\r\n/* Panels */\r\n\r\n#posts #rss,\r\n.signup-button,\r\n.hero h1,\r\n.plan.personal,\r\n.caption,\r\n.centered-graphic,\r\n.login_form h1 {\r\n background-color: #4183c4 !important;\r\n border-color: #4183c4 !important;\r\n}\r\n\r\n/* red */\r\n\r\n/* Red panel */\r\n\r\n#forkqueue .legend .unclean,\r\n.unclean td,\r\n.chzn-results .no-results,\r\n.majorproblem .pageheader_wrap,\r\n.error_box,\r\n.btn-close-issue,\r\n.closed-issues,\r\n.state-indicator.closed,\r\n.state-closed,\r\n.discussion-item-closed .discussion-item-icon,\r\n.discussion-item-review.is-rejected.is-writer .discussion-item-icon,\r\n.topic-tag-action .remove-topic-button:hover {\r\n background: #911 !important;\r\n border-color: #383838 !important;\r\n}\r\n\r\n.btn-close-issue:hover,\r\n.btn-danger:hover,\r\n.minibutton.danger:hover,\r\n.remove-topic-button:hover {\r\n background: #911 !important;\r\n border-color: #b00 !important;\r\n}\r\n\r\n.mergeable-dirty .bubble,\r\n.mergeable-dirty .merge-status-icon,\r\n.completeness-indicator-error,\r\n.dangerzone > h3 {\r\n background: #911 !important;\r\n}\r\n\r\n.block-diff-deleted,\r\n.text-diff-deleted .block-diff-neutral {\r\n background: #b22 !important;\r\n}\r\n\r\n/* red border */\r\n\r\n.mergeable-dirty .bubble .mergeable,\r\n#message.major,\r\n.comment-form-error,\r\n.comment-form-stale,\r\n.deprecation-notice,\r\n.flash-error,\r\n.error {\r\n border-color: #f44 !important;\r\n background: #300 !important;\r\n}\r\n\r\n.release-label.draft {\r\n border-color: #f44 !important;\r\n}\r\n\r\n.error:after {\r\n border-bottom-color: #f44 !important;\r\n}\r\n\r\n.mergeable-dirty .bubble:after {\r\n border-right-color: #911 !important;\r\n}\r\n\r\n/* bright red text */\r\n\r\n.btn-danger,\r\na.btn-danger,\r\n.text-failure,\r\na.text-failure,\r\n.text-error,\r\na.text-error,\r\na:not(.octicon-btn).danger,\r\n.closed.mega-octicon,\r\n.deletions,\r\n.closed.octicon,\r\n.cdel,\r\n.gd .diff-line-num,\r\n.authors-and-code .deletions,\r\n.diffstat .diffstat-bar.diff-deleted,\r\nspan.diffstat .diffstat-bar i.minus,\r\n.icon-for-failure,\r\nul.summary-stats li .octicon-issue-closed,\r\n.branch-delete,\r\n#toc .octicon-diff-removed,\r\n.pagehead-actions .octicon-mute,\r\n.highlight .gd,\r\n.settings-email .email-actions .settings-remove-email,\r\n.uploaded-files .remove:hover,\r\n.collaborators .collab-remove .remove-link:hover,\r\n.minibutton.danger,\r\n.closed.mini-icon,\r\n.octicon-btn-danger:hover,\r\n.text-danger,\r\na.text-danger,\r\n.type-icon-state-closed,\r\na.type-icon-state-closed,\r\n.reverted.octicon,\r\n.delete-owners-button:hover,\r\n.dangerzone-module h4,\r\n.btn-octicon-danger:hover,\r\n.deprecation-notice a,\r\n.billing-addon-items tr.total-row *,\r\n.comment-form-error,\r\n.comment-form-stale,\r\n.markdown-body .absent,\r\n.text-red,\r\na.text-red,\r\n.flash-error,\r\n.error,\r\n.release-label.draft {\r\n color: #f44 !important;\r\n}\r\n\r\n/* purple */\r\n\r\n.illflow-item.selected {\r\n background: #30182b !important;\r\n}\r\n\r\n.illflow-item.selected:after {\r\n border-bottom-color: #30182b !important;\r\n}\r\n\r\n/* brown */\r\n\r\n#feedHeaderContainer,\r\n.feedBackground,\r\n.infotip,\r\n.form-actions .tip,\r\n.mini-callout,\r\n.snippet em,\r\n#message .sent,\r\n.notification,\r\n.callout,\r\n.ejector,\r\n#issues_search .results em,\r\n.bootcamp-help ul li,\r\n.btn-download,\r\n.feature-tabs .tab-button,\r\n.plan.free,\r\n#message.minor,\r\n.chzn-results li em,\r\n#missing-readme,\r\n.page-notice,\r\n.facebox-alert,\r\n.form-checkbox label em.highlight,\r\n.deprecation-warning,\r\n.branch-status.status-pending .discussion-item-icon,\r\n.discussion-event-status-renamed .discussion-item-icon,\r\n.state-indicator.renamed,\r\n.discussion-topic .branch-status.status-pending,\r\n.discussion-item-review.is-pending .file-header,\r\n.discussion-item-review.is-pending .comment-form-head.tabnav {\r\n background-color: #261d08 !important;\r\n border-color: #542 !important;\r\n color: #ddd !important;\r\n}\r\n\r\n.review-summary-form-wrapper,\r\n.discussion-item-review.is-pending .file,\r\n.discussion-item-review.is-pending .file-header,\r\n.discussion-item-review.is-pending .tabnav-tab.selected,\r\n.discussion-item-review.is-pending .comment-form-head.tabnav {\r\n border-color: #542 !important;\r\n}\r\n\r\n#toc .octicon-diff-modified,\r\n.secret .repo-label span,\r\n.api .s2 {\r\n color: #b74 !important;\r\n}\r\n\r\n.deprecation-warning a {\r\n color: #c97 !important;\r\n}\r\n\r\n/* semi-transparent brown */\r\n\r\n.compare-pr-placeholder,\r\n.compare-cutoff,\r\n.diff-cutoff,\r\n.flash.flash-warn,\r\n.flash-global.flash-warn,\r\n.markdown-body li.added.moved,\r\n.repo-private-label,\r\n.gist-secret-label,\r\n.label-private,\r\n.stale-files-tab,\r\n.signed-out-comment,\r\n.warning,\r\n.commits-list-item em,\r\n.unsupported-browser {\r\n background: rgba(51, 34, 17, 0.4) !important;\r\n border: 1px solid #542 !important;\r\n color: #ddd !important;\r\n}\r\n\r\n.warning {\r\n background: #321 !important;\r\n}\r\n\r\n.warning:after {\r\n border-bottom-color: #321 !important;\r\n}\r\n\r\n.warning:before {\r\n border-bottom-color: #542 !important;\r\n}\r\n\r\n.btn.btn-secret {\r\n background: linear-gradient(#321, #210) !important;\r\n border-color: #542 !important;\r\n}\r\n\r\n.btn.btn-secret:hover {\r\n background: linear-gradient(#432, #321) !important;\r\n}\r\n\r\n.btn.btn-secret[disabled],\r\n.btn.btn-secret[disabled]:hover {\r\n background: #210 !important;\r\n border-color: #542 !important;\r\n}\r\n\r\n/* yellow text */\r\n\r\n/* search suggestions highlight matching characters */\r\n.jump-to-suggestion-name mark,\r\n/* .bg-pending might be a GitHub bug as it sets the fg */\r\n.text-pending,\r\na.text-pending,\r\n.text-renamed,\r\na.text-renamed,\r\n.bg-pending,\r\na.bg-pending {\r\n color: #cb4 !important;\r\n}\r\n\r\n/* yellow border (travis) */\r\n\r\n.branch-action-state-unknown .branch-action-body,\r\n.branch-action-state-unknown .branch-status,\r\n.branch-action-state-unstable .branch-action-body,\r\n.branch-action-state-unstable .branch-status {\r\n border-color: #884 !important;\r\n}\r\n\r\n.branch-action-state-unknown .branch-action-body:before,\r\n.branch-action-state-unstable .branch-action-body:before {\r\n border-right-color: #884 !important;\r\n}\r\n\r\n/* green */\r\n\r\n/* labels */\r\n\r\n#forkqueue .legend .clean,\r\n#revisions ul li.current,\r\n.excerpt,\r\n.plan.business,\r\n.popout,\r\n#statusbar,\r\n.clean td,\r\n#download_button,\r\n.status-box.good a,\r\n.discussion-item-reopened .discussion-item-icon,\r\n.new-issues,\r\n.new-pulls,\r\n.mergeable-clean .merge-status-icon,\r\n.settings-email .default,\r\n.repo-owner-comment .comment-header-tag,\r\n.mergeable-clean .bubble,\r\n.gh-header-status.open,\r\n.branch-status.status-success .discussion-item-icon,\r\n.state-open,\r\n.state-proposed,\r\n.big-notice,\r\n.state-indicator.open,\r\n.state-indicator.proposed,\r\n.state-indicator.reopened,\r\n.boxed-group-success,\r\n.branch-action-state-clean .branch-action-icon,\r\n.user-list li .actions .status-modified,\r\n#message.good,\r\n.bg-green,\r\n.discussion-item-reopened .discussion-item-icon,\r\n.discussion-item-review.is-approved.is-writer .discussion-item-icon,\r\n.add-topic-button:hover,\r\n.topic-tag-action .add-topic-button:hover {\r\n background: #163 !important;\r\n border-color: #041 !important;\r\n}\r\n\r\n/* Green border */\r\n\r\n.mergeable-clean .bubble .mergeable,\r\n.branch-action-state-clean .branch-action-body {\r\n border-color: #041 !important;\r\n}\r\n\r\n.mergeable-clean .bubble:after,\r\n.branch-action-state-clean .branch-action-body:before {\r\n border-right-color: #041 !important;\r\n}\r\n\r\n.completeness-indicator-success {\r\n background: #152 !important;\r\n}\r\n\r\n.billing-confirmation-box {\r\n border-color: #083 !important;\r\n}\r\n\r\n/* original color */\r\n\r\n.signed-commit-badge.verified:hover {\r\n border-color: #6cc644 !important;\r\n}\r\n\r\n.signed-commit-verified-label,\r\n.signed-commit-badge.verified {\r\n color: #55a532 !important;\r\n}\r\n\r\n/* Green text */\r\n\r\n.text-open,\r\na.text-open,\r\n.text-success,\r\na.text-success,\r\n.insertions,\r\n.open.mini-icon,\r\n.open.mega-octicon,\r\n.open.octicon,\r\n.cadd,\r\n.gi .diff-line-num,\r\n.authors-and-code .insertions,\r\nspan.diffstat .diffstat-bar.diff-added,\r\nspan.diffstat .diffstat-bar i.plus,\r\nul.summary-stats li .octicon-git-branch-create,\r\nul.summary-stats li .octicon-issue-opened,\r\n#toc .octicon-diff-added,\r\n.setup-info-module .features-list .octicon,\r\n.setup-form-container .secure,\r\n.highlight .gi,\r\n.type-icon-state-open,\r\na.type-icon-state-open,\r\n.text-green,\r\na.text-green,\r\n.release-label.latest a {\r\n color: #6cc644 !important;\r\n}\r\n\r\n/* bright green background */\r\n\r\n.block-diff-added,\r\n.text-diff-added .block-diff-neutral {\r\n background: #6cc644 !important;\r\n}\r\n\r\n.release-label.latest {\r\n border-color: #6cc644 !important;\r\n}\r\n\r\n/* interactive button - bright border */\r\n\r\n.btn-primary:not(.compare-button),\r\n.button.primary,\r\n.btn-theme-green {\r\n background: linear-gradient(#407045, #305530) !important;\r\n border-color: #083 !important;\r\n}\r\n\r\n.button.primary:disabled,\r\n.button.primary:disabled:hover,\r\n.button.primary.disabled,\r\n.button.primary.disabled:hover,\r\n.btn-primary:disabled,\r\n.btn-primary:disabled:hover,\r\n.btn-primary.disabled,\r\n.btn-primary.disabled:hover,\r\n.btn-theme-green:disabled,\r\n.btn-theme-green:disabled:hover {\r\n background: linear-gradient(#203522, #152715) !important;\r\n border-color: #041 !important;\r\n}\r\n\r\n/* New additions */\r\n\r\n.repo-owner-tag .tag,\r\n.gist-owner-tag .tag {\r\n background: #070 !important;\r\n color: #ddd !important;\r\n}\r\n\r\n/* Green hovered */\r\n\r\n.noproblems .pageheader_wrap,\r\na.new-repo:hover {\r\n background: #373 !important;\r\n}\r\n\r\n.btn-primary:not(:disabled):not(.compare-button):hover,\r\n.button.primary:not(:disabled):hover,\r\n.btn-theme-green:hover {\r\n background: linear-gradient(#508055, #407045) !important;\r\n}\r\n\r\n/* orange */\r\n\r\n#user-links .unread_count,\r\n.minorproblem .pageheader_wrap {\r\n background: rgba(203, 108, 0, 0.8) !important;\r\n}\r\n\r\n.text-orange,\r\na.text-orange,\r\n.release-label.prerelease {\r\n color: #f3582c !important;\r\n}\r\n\r\n.release-label.prerelease {\r\n border-color: #f66a0a !important;\r\n}\r\n\r\n/* purple merge status icon, seen in merged issues with an existing branch */\r\n\r\n.merge-status-icon,\r\n.merged-pulls,\r\n.state-indicator.merged,\r\n.state-merged,\r\n.discussion-item-merged .discussion-item-icon {\r\n background: #6e5494 !important;\r\n}\r\n\r\n/* purple text */\r\n\r\nul.summary-stats li .octicon-git-pull-request,\r\n.type-icon-state-merged,\r\na.type-icon-state-merged {\r\n color: #8368aa !important;\r\n}\r\n\r\n.text-purple,\r\na.text-purple {\r\n color: #943fb8 !important;\r\n}\r\n\r\n/* pjax loading */\r\n\r\n.pjax-loader-bar .progress {\r\n background: #4183c4 !important;\r\n box-shadow: 0 0 10px #4183c4 !important;\r\n}\r\n\r\nul.view-modes-menu {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhBwAEAIAAACIiIv///yH5BAEAAAEALAAAAAAHAAQAAAIIhA+BGWoNWSgAOw==\") !important;\r\n}\r\n\r\n.mini-icon-windows:before {\r\n background-position: -18px 0 !important;\r\n}\r\n\r\n/* Repo list (https://github.com/{user}?tab=repositories) */\r\n\r\n.repo-list-item p,\r\n.repo-list-item .repo-list-stats {\r\n position: relative !important;\r\n z-index: 1 !important;\r\n}\r\n\r\n/* HACK: Fix review comment timeline */\r\n\r\n/* https://github.com/nodejs/node/pull/8519#r78637092 */\r\n\r\n.review-comment-contents:after,\r\n.review-comment.is-comment-editing:after {\r\n z-index: 0 !important;\r\n}\r\n\r\n.review-comment .avatar {\r\n position: relative !important;\r\n z-index: 1 !important;\r\n background: #25272a !important;\r\n box-shadow: 0 0 0 4px #25272a !important;\r\n}\r\n\r\n.reponav-item,\r\n.pagehead-tabs-item {\r\n position: relative !important;\r\n top: 2px !important;\r\n}\r\n\r\n.participation-graph svg {\r\n background: transparent !important;\r\n opacity: 0.1 !important;\r\n z-index: 0 !important;\r\n}\r\n\r\n.inbox-zero-octocat,\r\n.network-graph-container {\r\n opacity: 0.6 !important;\r\n}\r\n\r\n.search .minibutton span {\r\n background-position: center -95px !important;\r\n}\r\n\r\n.upload-enabled textarea {\r\n border-bottom: 1px dashed #444 !important;\r\n}\r\n\r\n/* history expand buttons */\r\n\r\n.commit .minibutton.expander-minibutton span {\r\n background-position: 50% -45px !important;\r\n}\r\n\r\n.commit.open .minibutton.expander-minibutton span {\r\n background-position: 50% -145px !important;\r\n}\r\n\r\n/* pull request avatar bubble */\r\n\r\n.avatar-bubble:before,\r\n.discussion-bubble-content:before {\r\n border-color: transparent #333 transparent transparent !important;\r\n}\r\n\r\n/* octocat spinners */\r\n\r\nimg[src*=\"octocat-spinner\"],\r\nimg[src=\"/images/spinner.gif\"],\r\n.profile-picture-spinner {\r\n width: 0 !important;\r\n height: 0 !important;\r\n}\r\n\r\nimg[src*=\"octocat-spinner\"],\r\nimg[src=\"/images/spinner.gif\"],\r\n.facebox-loading,\r\n.branch-action-body .spinner,\r\n.status-indicator-loading,\r\n.ajax-pagination-form.loading .ajax-pagination-btn:after,\r\n.profile-picture-spinner,\r\n.more-repos-link.is-loading {\r\n background: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTM2NCAyOC42QzQyMC43IDU3IDQ1OS42IDk0LjQgNDg1IDE1MWwtMzEuNCAxNWMtMjAtNDEtNjMtODQtMTA0LjYtMTA0LjUiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjBzIiBkdXI9IjFzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPjwvcGF0aD48cGF0aCBmaWxsPSIjMzMzIiBkPSJNNDk0IDE2OWMyMCA2MCAyMSAxMTQtMSAxNzJsLTMyLjgtMTEuNGMxNS00My4zIDE1LTEwNCAwLTE0OCI+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbCIgdmFsdWVzPSIjMzMzOyNlZWU7IzMzMzsjMzMzIiBiZWdpbj0iMC4xMjVzIiBkdXI9IjFzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPjwvcGF0aD48cGF0aCBmaWxsPSIjMzMzIiBkPSJNNDg1LjQgMzU5LjJjLTI4LjMgNTYuNi02NS44IDk1LjUtMTIyLjQgMTIxbC0xNS4yLTMxLjRjNDEuMy0yMCA4NC4yLTYzIDEwNC43LTEwNC42Ij48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsIiB2YWx1ZXM9IiMzMzM7I2VlZTsjMzMzOyMzMzMiIGJlZ2luPSIwLjI1MHMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0zNDQuNSA0ODguNWMtNjAgMjAtMTE0IDIxLTE3Mi0xbDExLjQtMzNjNDMuMiAxNSAxMDQgMTUgMTQ4IDAiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuMzc1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTE1NC4zIDQ4Mi44Yy01Ni42LTI4LjQtOTUuNS02NS44LTEyMS0xMjIuNGwzMS40LTE1LjJjMjAgNDEuMyA2MyA4NC4yIDEwNC42IDEwNC43Ij48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsIiB2YWx1ZXM9IiMzMzM7I2VlZTsjMzMzOyMzMzMiIGJlZ2luPSIwLjUwMHMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0yMy43IDM0Mi43Yy0yMC02MC0yMS0xMTQgMS0xNzJsMzMgMTEuNGMtMTUgNDMuNS0xNSAxMDQgMCAxNDgiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuNjI1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTMxLjggMTUxQzYwIDk0LjIgOTcuNSA1NS4zIDE1NCAzMGwxNS4zIDMxLjNjLTQxLjIgMjAtODQgNjMtMTA0LjYgMTA0LjYiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuNzUwcyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTE3MyAyMWM2MC0yMCAxMTQtMjEgMTcyIDFsLTExLjUgMzIuOGMtNDMuMy0xNS0xMDQtMTUtMTQ4IDAiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwiIHZhbHVlcz0iIzMzMzsjZWVlOyMzMzM7IzMzMyIgYmVnaW49IjAuODc1cyIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PHBhdGggZmlsbD0iI2VlZSIgZD0iTTE5NyA0NTl2LTQ4cy00LTQtMzMtMWMtMjggMy02Mi02Ni02NS02OSAyNC0xMCA0MyAyNiA2NSAzOGgzMXMzLTQ0IDIwLTM3YzE3IDYtNzIgMS05Ny02MXMxOS0xMjYgMjAtMTE1YzAgOS0xNy0zNS0xMC00NiAyMC0yNCA1MCAxMSA2OSAxNSA1IDAgMTgtOCA1OS03IDQxIDAgNTUgOCA2MCA2IDIyLTEwIDUxLTMyIDY1LTE3IDEwIDEyLTEgNjEtMSA0OXM0MyA4MSA2IDEzMmMtMjkgNDYtOTUgNDMtODQgNDYgMjEgMTUgMTQgOTEgMTQgMTE1bC0yMiA0di03NGMwLTktOS0xMC05LTl2ODVsLTIxIDF2LTg2aC0xMHY4NmwtMjAtMXYtODNzLTgtMS04IDEwdjcyIi8+PC9zdmc+\") !important;\r\n background-size: contain !important;\r\n}\r\n\r\n.more-repos-link.is-loading {\r\n background-repeat: no-repeat !important;\r\n background-position: 50% 50% !important;\r\n background-size: 16px 16px !important;\r\n}\r\n\r\n.timeline-progressive-disclosure-container {\r\n background: transparent\r\n url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NHB4IiBoZWlnaHQ9IjM0cHgiIHZpZXdCb3g9IjAgMCA0NCAzNCI+PHBvbHlsaW5lIGZpbGw9IiM0NDQiIHBvaW50cz0iMCwyMSAyMiw4IDQ0LDIxIDQ0LDI2IDIyLDEzIDAsMjYiLz48L3N2Zz4NCg==\")\r\n repeat-x left center/22px 17px !important;\r\n}\r\n\r\nimg[src*=\"octocat-spinner\"][width=\"128\"] {\r\n padding: 64px !important;\r\n}\r\n\r\nimg[src*=\"octocat-spinner\"][width=\"64\"],\r\n.profile-picture-spinner {\r\n padding: 32px !important;\r\n}\r\n\r\nimg[src*=\"octocat-spinner\"][width=\"32\"] {\r\n padding: 16px !important;\r\n}\r\n\r\nimg[src*=\"octocat-spinner\"][width=\"16\"] {\r\n padding: 8px !important;\r\n}\r\n\r\nimg[src=\"/images/spinner.gif\"] {\r\n padding: 32px !important;\r\n}\r\n\r\n/* network members */\r\n\r\n.network-tree {\r\n width: 26px !important;\r\n height: 0 !important;\r\n padding-top: 22px !important;\r\n background-repeat: no-repeat !important;\r\n}\r\n\r\n.network-tree[src$=\"t.png\"] {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIkjI+pG8APY5O0uorfzRzt3n1g5pSTOTJiSq1s5L6ajMW0YgcFADs=\") !important;\r\n}\r\n\r\n.network-tree[src$=\"i.png\"] {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIhjI+pG8APY5O0uorfzRzt3n1gJo6WGaJcqUJsy7ywIgcFADs=\") !important;\r\n}\r\n\r\n.network-tree[src$=\"l.png\"] {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAPABADMzMwAAACH5BAUAAAEALAAAAAAUABoAAAIejI+pG8APY5O0uorfzRzt3n1g5pSTOabqyrbuC68FADs=\") !important;\r\n}\r\n\r\n#searchfield {\r\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAMAAABFNRROAAAAM1BMVEUAAABKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkrmvr7+AAAAEXRSTlMAmEgOJpKQimpgRHVzVk8fFp8jXkwAAABRSURBVAjXVY1JDsAwCAMxhGxNl/+/toVEKpmLNcLCRJRqKTXRhOGwS4KyCCv8eoBnY1hkiIUgb6ah2THWly7SFS0uAKfZWm+mP59eUfNNgYdehjcBh7PIFcgAAAAASUVORK5CYII=\") !important;\r\n background-repeat: no-repeat !important;\r\n background-position: 8px center !important;\r\n}\r\n\r\n/* octotree icons */\r\n\r\na.octotree_toggle:not(.octotree_loading) > span:after,\r\n.octotree_github_sidebar a.octotree_opts,\r\n.octotree_help > span {\r\n -webkit-filter: invert(100%) !important;\r\n filter: invert(100%) !important;\r\n}\r\n\r\na.octotree_toggle:not(.octotree_loading):hover > span:after,\r\n.octotree_github_sidebar a.octotree_opts:hover,\r\n.octotree_treeview .jstree-icon.tree {\r\n -webkit-filter: grayscale(100%) !important;\r\n filter: grayscale(100%) !important;\r\n}\r\n\r\n/* front page: 'more' spinner */\r\n\r\n.ajax-pagination-form.loading .ajax-pagination-btn {\r\n position: relative !important;\r\n border-color: #343434 !important;\r\n background: #25272a !important;\r\n}\r\n\r\n.ajax-pagination-form.loading .ajax-pagination-btn:after {\r\n content: \"\" !important;\r\n position: absolute !important;\r\n width: 16px !important;\r\n height: 16px !important;\r\n left: 50% !important;\r\n top: 50% !important;\r\n transform: translate(-50%, -50%) !important;\r\n}\r\n\r\n.branch-action-body .spinner,\r\ndiv.facebox-loading,\r\n.status-indicator-loading {\r\n background-position: center center !important;\r\n width: 100% !important;\r\n background-repeat: no-repeat !important;\r\n}\r\n\r\n/* image preview background */\r\n\r\n.render-shell .img-view img,\r\n.file .image img,\r\n.file .image canvas,\r\nimg.asset,\r\n.render-shell img:not(.math) {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhCgAKAIAAABoaGgAAACwAAAAACgAKAAACEYQdmYcaDNxjEspKndVZbc8UADs=\") !important;\r\n}\r\n\r\n.render-shell:hover .img-view img,\r\n.file:hover .image img,\r\n.file:hover .image canvas,\r\nimg.asset:hover,\r\n.render-shell:hover img:not(.math) {\r\n background-image: url(\"data:image/gif;base64,R0lGODlhCgAKAIAAAOXl5f///yH5BAAAAAAALAAAAAAKAAoAAAIRhB2ZhxoM3GMSykqd1VltzxQAOw==\") !important;\r\n}\r\n\r\n/* dropdown arrows */\n /* https://github.com/account/upgrade */\n .form-select {\n background: #181818 url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAQAAAAua3X8AAAARklEQVR4AWNABWcazjQg8zGl/wNhA15piBL80gglmNKYSjClMZUgpDGVwKXxKBl4QNiRBLxJIKAIBzXhyCIc3YQTDMEkBwBplPJRxEMa4wAAAABJRU5ErkJggg==\") no-repeat right 8px center !important;\n background-size: 8px 10px !important;\n }\n .form-select:disabled {\n background-color: #282828 !important;\n color: #555 !important;\n }\n /* no border */\n .multiple-avatars, .multiple-avatars::before,\n .simple-conversation-list>li:first-child, .gobutton.with-comments .sha,\n .usage-bar dd, .setup-form-container .fieldgroup .fields,\n .inline-comments .line-comments, #gist-form .gist-name-textbox,\n #adv_code_search .search-page-input, .fullscreen-overlay textarea,\n .file .image .border-wrap, .site-search .chromeless-input,\n .profile-timeline-card-wrapper, .AvatarStack--right .avatar,\n .AvatarStack-body .avatar, .sidebar-notifications .thread-subscription-status,\n .repository-lang-stats-graph .language-color:not(:first-child) {\n border: none !important;\n }\n .dashboard-tabs a {\n border-left: 0 !important;\n border-right: 0 !important;\n }\n .js-details-container.navigation-focus .gobutton {\n background: linear-gradient(#444, #222) !important;\n }\n /* no top border radius */\n table.files {\n border-top-left-radius: 0 !important;\n border-top-right-radius: 0 !important;\n }\n /* add border */\n .issues-list, .pulls-list-group, .branch-infobar,\n .pagehead.repohead h1 .repo-label span,\n .coupons .coupon-form-body .coupon-icon, .menu, .api pre {\n border: 1px solid #484848 !important;\n }\n #graph-shots li > p, .logo-box, .branch-infobar, #com hr,\n .discussion-item-body .outdated-comment .file-header,\n .repository-content > .Box--condensed > .Box-body.bg-blue-light {\n border-bottom: none !important;\n }\n .pull-info, .branch-link, .milestone-list .progress-bar {\n border: 1px solid #444 !important;\n }\n .more-repos {\n border-top: #484848 1px solid !important;\n }\n .pull-head, .capped-box {\n border-bottom: #484848 1px solid !important;\n }\n .tutorial-e::after, .file-commit-form .commit-form::before,\n .merge-branch-form .commit-form::before {\n border-right-color: #343434 !important;\n border-bottom-color: transparent !important;\n }\n .file-commit-form .commit-form::after, .ScreenshotCarousel-navitem,\n .new-discussion-timeline .composer .timeline-comment::after {\n border-right-color: #222 !important;\n }\n #com .dropdown-menu::after {\n border: 9px solid;\n border-color: transparent transparent #181818;\n content: \" \";\n left: 50%;\n top: -17px;\n position: absolute;\n margin-left: -9px;\n }\n .dropdown-menu-w::before {\n border-bottom-color: transparent !important;\n }\n /* inline code - add border */\n .markdown-format p > code, .markdown-body code, .markdown-body tt,\n .markdown-format pre, .markdown-body pre, .markdown-format .highlight pre,\n .markdown-body .highlight pre, #user-content-toc td, .copyable-terminal,\n .project-card .highlight pre, .project-card code, .rgh-parse-backticks {\n border: 1px solid rgba(255, 255, 255, .1) !important;\n }\n /* toc in markdown, reset border-collaps so border-radius works */\n /* https://github.com/bitcoin/bips/blob/master/bip-0037.mediawiki */\n #user-content-toc {\n border-collapse: separate !important;\n }\n #facebox pre, #contributors-master svg.viz, #com .dropdown-menu {\n border: 1px solid #343434 !important;\n }\n /* orange rss icon */\n .dashboard-feed-icon.octicon-rss, .nav-rss a .octicon-rss, .feed-icon,\n #dashboard .octicon-rss {\n color: #f93 !important;\n }\n .featured-label {\n background: #f5b987 !important;\n border: none !important;\n padding: 6px !important;\n color: #ed7c21 !important;\n }\n .featured-label .octicon,\n .page-new-repo div.form-checkbox .octicon-lock::before {\n color: #ed7c21 !important;\n }\n /* diff highlighting (no syntax highlight) */\n /* main diff text color */\n .diff-line-pre {\n color: #ccc !important;\n }\n .diff-table .line-comments {\n border-top: 1px solid #333 !important;\n border-bottom: 1px solid #333 !important;\n }\n #header-wrapper, .menu li + li {\n border-bottom: 1px solid #333 !important;\n }\n .review-comment .comment-reactions {\n border-top: 0 !important;\n }\n /* light grey - breaks in diff (with line numbers) */\n .highlight .expandable-line-num, .highlight .diff-line-num-hunk,\n .highlight .diff-line-code-hunk, .highlight .expandable-line-code {\n background: #222 !important;\n color: #888 !important;\n }\n /* git diff line additions (dark green) */\n .blob-code-addition {\n background-color: #002800 !important;\n border-color: #060 !important;\n }\n .blob-num-addition {\n background-color: #0a320a !important;\n }\n /* git diff line deletions (dark red) */\n .blob-code-deletion, .CodeMirror-linebackground.conflict-background,\n .conflict-gutter-marker,\n .conflict-background + .CodeMirror-gutter-wrapper .CodeMirror-linenumber {\n background-color: #380000 !important;\n border-color: #600 !important;\n }\n .blob-num-deletion {\n background-color: #420a0a !important;\n }\n /* code splitter in diffs */\n .blob-num-expandable, .blob-num-hunk {\n background: #2b2b2b;\n }\n .blob-code-hunk {\n background: #222;\n }\n /* link target lines */\n .blob-code-inner.highlighted {\n background: rgba(255, 255, 255, .075) !important;\n }\n .selected-line::after {\n mix-blend-mode: normal !important;\n pointer-events: none;\n }\n /* custom hover highlight */\n .diff-table > tbody > tr[data-hunk]:hover > td,\n .highlight > tbody > tr:hover > td {\n position: relative;\n }\n .diff-table > tbody > tr[data-hunk]:hover > td::after,\n .highlight > tbody > tr:hover > td::after {\n content: \"\";\n position: absolute;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n background: rgba(255, 255, 255, .075);\n pointer-events: none;\n }\n .diff-table > tbody > tr[data-hunk]:hover > td.selected-line::after,\n .highlight > tbody > tr:hover > td.blob-code-inner.highlighted::after {\n background: rgba(255, 255, 255, .15) !important;\n }\n /* custom hover highlight end */\n .blob-code-addition .x, .highlight .blob-code-addition .x {\n background: #252 !important;\n color: #eee !important;\n }\n .blob-code-deletion .x, .highlight .blob-code-deletion .x {\n background: #622 !important;\n color: #eee !important;\n }\n /* git diff line numbers (med green) */\n .gi .diff-line-num, .gi .diff-line-code, .gi .diff-line-pre {\n background: #020 !important;\n border-color: #040 !important;\n }\n /* git diff line deletions (med red) */\n .gd .diff-line-num, .highlight .err, .gd .diff-line-code, .gd .diff-line-pre {\n background: #300 !important;\n border-color: #500 !important;\n }\n .CodeMirror-scrollbar-filler {\n background: #1d1d1d !important;\n }\n textarea {\n cursor: auto !important;\n }\n /* rules for the new responsive layout */\n @media (min-width: 768px) {\n .release-main-section {\n border-left: 2px solid #343434 !important;\n }\n .release-entry {\n border-bottom: 0 !important;\n }\n }\n @media (max-width: 1012px) {\n .reponav-wrapper {\n background: #181818 !important;\n }\n }\n @media (min-width: 1013px) {\n .Header, .Header-old {\n border-bottom: 1px solid #343434 !important;\n }\n }\n /* rules for help pages */\n .search-result-title .ais-Highlight-highlighted {\n color: /*[[base-color]]*/ !important;\n }\n .search-result-intro .ais-Highlight-highlighted {\n border-color: /*[[base-color]]*/ !important;\n }\n .ais-SearchBox-resetIcon, .octicon-logo-github {\n fill: #c0c0c0 !important;\n }\n /* GraphQL API (https://developer.github.com/v4/explorer/)\n cant see another way to style the search input box bg */\n .graphiql-container .search-box input {\n background-color: #181818;\n }\n /* style inline HTML graphql cant be generated */\n .graphiql-explorer-root input[style*=\"color: rgb(210, 5, 78)\"] {\n border-color: currentcolor currentcolor #999 !important;\n background-color: #181818;\n }\n .graphiql-explorer-root input[style*=\"border-color: currentcolor currentcolor rgb(136, 136, 136)\"] {\n border-color: currentcolor currentcolor #999 !important;\n }\n .graphiql-explorer-node span[style*=\"color: rgb(31, 97, 160)\"] {\n color: #4183c4 !important;\n }\n .graphiql-explorer-node span[style=\"color: rgb(139, 43, 185)\"] {\n color: #9a6cdf !important;\n }\n #graphiql svg path[d*=\"2V16H2V2H16ZM16\"][fill=\"#CCC\"] {\n fill: #444;\n }\n #graphiql svg path[d*=\"0H2C0.9\"][fill=\"#666\"] {\n fill: #777;\n }\n .graphiql-ide.signed-out::after {\n background: #333;\n }\n .graphiql-container .CodeMirror-foldmarker {\n background: /*[[base-color]]*/ !important;\n }\n .graphiql-container .execute-button svg {\n fill: currentColor !important;\n }\n /* Actions runs */\n .CheckStep div[style*=\"opacity:0.5\"] {\n opacity: 1 !important;\n }\n .CheckRun-search-input:focus {\n background-color: hsla(0, 0%, 100%, .05);\n }\n /*[[code-wrap]]*/\n /* inline code - single lines */\n .markdown-body code, .markdown-body tt, .protip code, .content dl code,\n .content ul code, p code, .content .sectionbody .dlist dt, .content p > tt,\n .content .sectionbody .dlist dt, .content p > tt, .commit-sha,\n .commit-preview .message pre, .rendered_html pre, .rendered_html code,\n .markdown-format p > code, .markdown-format pre, .rgh-parse-backticks {\n background: #222 !important;\n }\n .project-card code {\n background: #333 !important;\n }\n /* Styles auto-complete popups in the actions workflow editor */\n .CodeMirror-hints {\n background: #181818;\n border-color: #404040;\n box-shadow: 0 1px 5px #000;\n }\n .CodeMirror-hint {\n color: #d2d2d2;\n }\n .CodeMirror-hint-active {\n color: #f0f0f0;\n background-color: /*[[base-color]]*/;\n }\n .CodeMirror-hint-active .CodeMirror-hint-description {\n color: #f0f0f0 !important;\n }\n /*[[syntax-theme]]*//*[[syntax-codemirror]]*//*[[syntax-jupyter]]*/\n /* inline code - big blocks */\n .markdown-format pre, .markdown-body pre, .highlight pre, .markdown-body pre,\n #facebox pre, .blob-expanded, .terminal, .copyable-terminal,\n #notebook .input_area, .blob-code-context, .markdown-format code, .api pre,\n .api li:not(a) code, .hook-delivery-details pre, .hook-delivery-container pre,\n .code-list .file-box, .CodeMirror, .highlight.bg-gray {\n background-color: var(--ghd-code-background) !important;\n color: var(--ghd-code-color) !important;\n }\n .flash p code {\n background-color: inherit !important;\n }\n .blob-code, .blob-code-inner {\n color: var(--ghd-code-color) !important;\n }\n}\n@-moz-document domain(\"developer.github.com\") {\n /* begin developer.github.com rules */\n /* developer.github.com: \"transparent\" */\n a {\n background-color: transparent;\n }\n /* developer.github.com: \"color: #000\" */\n mark {\n color: #f0f0f0;\n }\n /* developer.github.com: \"#ddd\" */\n .rule, hr {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"rgba(0,0,0,.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* developer.github.com: \"rgba(0,0,0,.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* developer.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* developer.github.com: \"transparent\" */\n .bg-shade-gradient {\n background-image: linear-gradient(180deg, rgba(0, 0, 0, .065), transparent) !important;\n }\n /* developer.github.com: \"color: #767676 !important\" */\n .text-gray {\n color: #767676 !important;\n }\n /* developer.github.com: \"color: #333 !important\" */\n .text-gray-dark {\n color: #bebebe !important;\n }\n /* developer.github.com: \"color: #767676 !important\" */\n .link-gray {\n color: #767676 !important;\n }\n /* developer.github.com: \"color: #333 !important\" */\n .link-gray-dark {\n color: #bebebe !important;\n }\n /* developer.github.com: \"color: #767676 !important\" */\n .muted-link {\n color: #767676 !important;\n }\n /* developer.github.com: \"#f5f5f5\",\"#fff\" */\n .shade-gradient {\n background-image: linear-gradient(180deg, #222, #181818);\n }\n /* developer.github.com: \"color: #333\" */\n .text-emphasized {\n color: #bebebe;\n }\n /* developer.github.com: \"rgba(255,255,255,.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* developer.github.com: \"color: #fff\", \"rgba(0,0,0,.8)\" */\n .tooltipped::after {\n color: #fff;\n background-color: #242424;\n }\n /* developer.github.com: \"rgba(0,0,0,.8)\" */\n .tooltipped-s::before, .tooltipped-se::before, .tooltipped-sw::before {\n border-bottom-color: #242424;\n }\n /* developer.github.com: \"rgba(0,0,0,.8)\" */\n .tooltipped-n::before, .tooltipped-ne::before, .tooltipped-nw::before {\n border-top-color: #242424;\n }\n /* developer.github.com: \"rgba(0,0,0,.8)\" */\n .tooltipped-w::before {\n border-left-color: #242424;\n }\n /* developer.github.com: \"rgba(0,0,0,.8)\" */\n .tooltipped-e::before {\n border-right-color: #242424;\n }\n /* developer.github.com: \"#fff\", \"#ddd\" */\n .Box {\n background-color: #181818;\n }\n /* developer.github.com: \"#f5f5f5\", \"#ddd\" */\n .Box, .Box-header {\n border-color: #343434;\n }\n .Box-header {\n background-color: #222;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"#eee\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .Box-row--focus-gray.navigation-focus, .Box-row--hover-gray:hover,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* developer.github.com: \"color: #333\" */\n @media (min-width:768px) {\n .Box-row-link {\n color: #bebebe;\n }\n }\n /* developer.github.com: \"#e5e5e5\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* developer.github.com: \"color: #666\" */\n .btn .counter {\n color: #949494;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-primary {\n color: #fff;\n }\n /* developer.github.com: \"#fff\" */\n .btn-primary .counter {\n background-color: #181818;\n }\n /* developer.github.com: \"none\", \"rgba(0,0,0,.15)\" */\n .btn-primary.selected, .btn-primary.zeroclipboard-is-active,\n .btn-primary:active {\n background-image: none;\n box-shadow: inset 0 2px 4px #000;\n }\n /* developer.github.com: \"color: #fff\", \"box-shadow: none\" */\n .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary:disabled,\n .btn-primary:disabled:hover {\n color: #fff;\n box-shadow: none;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-danger:hover {\n color: #fff;\n }\n /* developer.github.com: \"color: #fff\", \"none\" */\n .btn-danger.selected, .btn-danger:active {\n color: #fff;\n background-image: none;\n }\n /* developer.github.com: \"#efefef\", \"#efefef\" */\n .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger:disabled,\n .btn-danger:disabled:hover {\n background-color: #202020;\n background-image: linear-gradient(#fefefe, #202020);\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-danger.selected .counter, .btn-danger:active .counter,\n .btn-danger:hover .counter {\n color: #fff;\n }\n /* developer.github.com: \"#fff\", \"none\", \"#e5e5e5\" */\n .btn-outline {\n background-color: #181818;\n background-image: none;\n border-color: #343434;\n }\n /* developer.github.com: \"color: #fff\", \"none\" */\n .btn-outline.selected, .btn-outline.zeroclipboard-is-active,\n .btn-outline.zeroclipboard-is-hover, .btn-outline:active, .btn-outline:hover {\n color: #fff;\n background-image: none;\n }\n /* developer.github.com: \"#fff\" */\n .btn-outline.selected .counter,\n .btn-outline.zeroclipboard-is-active .counter,\n .btn-outline.zeroclipboard-is-hover .counter, .btn-outline:active .counter,\n .btn-outline:hover .counter {\n background-color: #181818;\n }\n /* developer.github.com: \"color: #767676\", \"#fff\", \"none\", \"#e5e5e5\" */\n .btn-outline.disabled, .btn-outline.disabled:hover, .btn-outline:disabled,\n .btn-outline:disabled:hover {\n color: #767676;\n background-color: #181818;\n background-image: none;\n border-color: #343434;\n }\n /* developer.github.com: \"color: #555\", \"#ddd\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #383838;\n }\n /* developer.github.com: \"#ccc\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #484848;\n }\n /* developer.github.com: \"color: #fff\", \"#4183c4\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #333\", \"#fff\", \"#ddd\" */\n .social-count {\n color: #bebebe;\n background-color: #181818;\n border-color: #343434;\n }\n /* developer.github.com: \"transparent\" */\n .btn-link {\n background-color: transparent;\n }\n /* developer.github.com: \"color: #333\", \"#fff\", \"#ddd\" */\n .form-control, .form-select {\n color: #bebebe;\n background-color: #181818;\n border-color: #343434;\n }\n /* developer.github.com: \"#fff\" */\n .input-contrast:focus {\n background-color: #181818;\n }\n /* developer.github.com: \"color: #666\" */\n .form-checkbox .note, .hfields .form-group dt label {\n color: #949494;\n }\n /* developer.github.com: \"#fff\" */\n .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* developer.github.com: \"color: #767676\" */\n .note {\n color: #767676;\n }\n /* developer.github.com: \"transparent\" */\n .inline-form .btn-plain {\n background-color: transparent;\n }\n /* developer.github.com: \"color: #767676\" */\n .drag-and-drop, .drag-and-drop-error-info {\n color: #767676;\n }\n /* developer.github.com: \"#ddd\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #666\" */\n h2.account, p.explain {\n color: #949494;\n }\n /* developer.github.com: \"color: #333\" */\n p.explain strong {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #666\", \"#eee\" */\n .counter {\n color: #949494;\n background-color: #242424;\n }\n /* developer.github.com: \"color: #333\", \"#ccc\" */\n .Counter--gray-light {\n color: #bebebe;\n background-color: #484848;\n }\n /* developer.github.com: \"color: #fff\" */\n .Counter--gray {\n color: #fff;\n }\n /* developer.github.com: \"color: #333\" */\n .menu-item .octicon {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #555\", \"#eee\" */\n .menu-heading {\n color: #afafaf;\n }\n /* developer.github.com: \"#ddd\" */\n .menu-heading, .tabnav {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #666\", \"transparent\" */\n .tabnav-tab {\n color: #949494;\n background-color: transparent;\n }\n /* developer.github.com: \"color: #333\", \"#fff\", \"#ddd\" */\n .tabnav-tab.selected {\n color: #bebebe;\n background-color: #181818;\n border-color: #343434;\n }\n /* developer.github.com: \"color: #666\" */\n .tabnav-extra {\n color: #949494;\n }\n /* developer.github.com: \"color: #767676\", \"transparent\" */\n .filter-list.pjax-active .filter-item {\n color: #767676;\n background-color: transparent;\n }\n /* developer.github.com: \"color: #fff\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n }\n /* developer.github.com: \"color: #767676\" */\n .filter-item {\n color: #767676;\n }\n /* developer.github.com: \"#eee\" */\n .filter-item:hover {\n background-color: #242424;\n }\n /* developer.github.com: \"color: #fff\" */\n .filter-item.selected {\n color: #fff;\n }\n /* developer.github.com: \"#eee\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #666\", \"#e5e5e5\" */\n .subnav-item {\n color: #949494;\n border-color: #343434;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* developer.github.com: \"color: #fff\" */\n .subnav-item.selected, .subnav-item.selected:focus,\n .subnav-item.selected:hover {\n color: #fff;\n }\n /* developer.github.com: \"color: #767676\" */\n .subnav-search-input {\n color: #767676;\n }\n /* developer.github.com: \"color: #555\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* developer.github.com: \"#fff\", \"rgba(255,255,255,.8)\" */\n .avatar-child {\n background-color: #181818;\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* developer.github.com: \"#fff\", \"#fff\" */\n .avatar-stack .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* developer.github.com: \"transparent\" */\n .avatar-stack .avatar:only-child {\n background-color: transparent;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .DashedConnection::before {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"#fff\", \"#eee\" */\n .blankslate, .blankslate code {\n border-color: #343434;\n }\n .blankslate code {\n background-color: #181818;\n }\n /* developer.github.com: \"box-shadow: none\" */\n .blankslate-clean-background {\n box-shadow: none;\n }\n /* developer.github.com: \"#ddd\" */\n .markdown-body blockquote {\n border-left-color: #343434;\n }\n /* developer.github.com: \"color: #555\", \"#bbb\" */\n .markdown-body kbd {\n color: #afafaf;\n border-bottom-color: #484848;\n }\n /* developer.github.com: \"#eee\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #000\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #f0f0f0;\n }\n /* developer.github.com: \"#ddd\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* developer.github.com: \"#fff\" */\n .markdown-body table tr {\n background-color: #181818;\n }\n /* developer.github.com: \"#f8f8f8\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #202020;\n }\n /* developer.github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* developer.github.com: \"transparent\" */\n .markdown-body .emoji {\n background-color: transparent;\n }\n /* developer.github.com: \"#ddd\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* developer.github.com: \"color: #333\" */\n .markdown-body span.frame span span {\n color: #bebebe;\n }\n /* developer.github.com: \"transparent\" */\n .markdown-body pre code, .markdown-body pre tt {\n background-color: transparent;\n }\n /* developer.github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* developer.github.com: \"#f8f8f8\" */\n .markdown-body .csv-data th {\n background-color: #202020;\n }\n /* developer.github.com: \"color: #fff\" */\n .state {\n color: #fff;\n }\n /* developer.github.com: \"color: #767676\", \"#e5e5e5\" */\n .pullquote {\n color: #767676;\n border-left-color: #343434;\n }\n /* developer.github.com: \"transparent\", \"transparent\" */\n .jumbotron-shadow::after {\n background-color: transparent;\n background-image: linear-gradient(transparent, rgba(0, 0, 0, .05));\n }\n /* developer.github.com: \"#fff\" */\n body {\n background-color: #181818;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .data-table tbody td, .data-table tbody th,\n .data-table tbody tr:last-child td, .data-table tbody tr:last-child th,\n abbr[data-original-title], abbr[title] {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #767676\" */\n body {\n color: #767676;\n }\n /* developer.github.com: \"color: #3c4146\" */\n .text-alpha, .text-beta, .text-delta, .text-gamma, h1, h2, h3, h4, h5 {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #767676\" */\n .lead {\n color: #767676;\n }\n /* developer.github.com: \"#e5e5e5\" */\n hr {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .border-top, .border-y {\n border-top-color: #343434 !important;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .border-bottom, .border-y {\n border-bottom-color: #343434 !important;\n }\n /* developer.github.com: \"#e5e5e5\" */\n blockquote {\n border-left-color: #343434;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .border {\n border-color: #343434 !important;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* developer.github.com: \"#ddd\" */\n .border-gray-dark, .border-gray-light {\n border-color: #343434 !important;\n }\n /* developer.github.com: \"color: #fff\" */\n .link-white {\n color: #fff;\n }\n /* developer.github.com: \"color: #767676\" */\n .link-muted {\n color: #767676;\n }\n /* developer.github.com: \"color: #3c4146\" */\n .link-muted:hover {\n color: #bebebe;\n }\n /* developer.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .bg-gray-light {\n background-color: #222 !important;\n }\n /* developer.github.com: \"color: #3c4146 !important\" */\n .text-black {\n color: #bebebe !important;\n }\n /* developer.github.com: \"color: #767676 !important\" */\n .text-default {\n color: #767676 !important;\n }\n /* developer.github.com: \"color: #fff !important\" */\n .text-white, .text-white a {\n color: #fff !important;\n }\n /* developer.github.com: \"color: #767676\", \"#eee\" */\n .btn {\n color: #767676;\n background-color: #242424;\n }\n /* developer.github.com: \"#ddd\", \"#eee\",\"#ddd\" */\n .btn.zeroclipboard-is-active, .btn.zeroclipboard-is-hover, .btn:active,\n .btn:hover {\n background-color: #383838;\n background-image: linear-gradient(#242424, #383838);\n }\n /* developer.github.com: \"none\", \"rgba(0,0,0,.15)\" */\n .btn.selected, .btn.zeroclipboard-is-active, .btn:active {\n background-image: none;\n box-shadow: inset 0 2px 4px #000;\n }\n /* developer.github.com: \"none\", \"box-shadow: none\" */\n .btn.disabled, .btn.disabled:hover, .btn:disabled, .btn:disabled:hover {\n background-image: none;\n box-shadow: none;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-purple, .btn-purple:hover {\n color: #fff;\n }\n /* developer.github.com: \"none\" */\n .btn-purple:active {\n background-image: none;\n }\n /* developer.github.com: \"color: #fff\", \"#005b9e\" */\n .btn-blue {\n color: #fff;\n border-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #fff\", \"#005b9e\" */\n .btn-blue:hover {\n color: #fff;\n background-image: linear-gradient(#0079d1, /*[[base-color]]*/);\n }\n /* developer.github.com: \"#005b9e\", \"none\", \"#005b9e\" */\n .btn-blue:active {\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-orange, .btn-orange:hover {\n color: #fff;\n }\n /* developer.github.com: \"none\" */\n .btn-orange:active {\n background-image: none;\n }\n /* developer.github.com: \"color: #fff\", \"#005b9e\" */\n .btn-themed {\n color: #fff;\n border-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #fff\", \"#005b9e\" */\n .btn-themed:hover {\n color: #fff;\n background-image: linear-gradient(#0079d1, /*[[base-color]]*/);\n }\n /* developer.github.com: \"#005b9e\", \"none\", \"#005b9e\" */\n .btn-themed:active {\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"transparent\", \"none\", \"#e5e5e5\" */\n [class*=btn-outline] {\n background-color: transparent;\n background-image: none;\n border-color: #343434;\n }\n /* developer.github.com: \"color: #fff\", \"none\" */\n [class*=btn-outline].selected, [class*=btn-outline].zeroclipboard-is-active,\n [class*=btn-outline].zeroclipboard-is-hover, [class*=btn-outline]:active,\n [class*=btn-outline]:hover {\n color: #fff;\n background-image: none;\n }\n /* developer.github.com: \"#005b9e\" */\n [class*=btn-outline].selected:hover {\n background-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"#fff\", \"none\", \"#e5e5e5\" */\n [class*=btn-outline].disabled, [class*=btn-outline].disabled:hover,\n [class*=btn-outline]:disabled, [class*=btn-outline]:disabled:hover {\n background-color: #181818;\n background-image: none;\n border-color: #343434;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-outline-blue:active, .btn-outline-blue:hover,\n .btn-outline-orange:active, .btn-outline-orange:hover,\n .btn-outline-purple:active, .btn-outline-purple:hover {\n color: #fff;\n }\n /* developer.github.com: \"color: #fff\", \"#fff\" */\n .btn-outline-white {\n color: #fff;\n border-color: #181818;\n }\n /* developer.github.com: \"#fff\", \"#fff\" */\n .btn-outline-white:active, .btn-outline-white:hover {\n background-color: #181818;\n border-color: #181818;\n }\n /* developer.github.com: \"color: #fff\" */\n .btn-outline-themed:active, .btn-outline-themed:hover {\n color: #fff;\n }\n /* developer.github.com: \"#fff\", \"#e5e5e5\" */\n .card {\n background-color: #181818;\n }\n /* developer.github.com: \"#f5f5f5\", \"#e5e5e5\" */\n .card, .highlight {\n border-color: #343434;\n }\n .highlight {\n background-color: #222;\n }\n /* developer.github.com: \"transparent\" */\n .highlight pre code {\n background-color: transparent;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .menu-item, .site-header {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .example {\n border-color: #343434;\n }\n /* developer.github.com: \"rgba(0,0,0,.2)\" */\n .screenshot img {\n box-shadow: 0 4px 14px rgba(255, 255, 255, .7);\n }\n /* developer.github.com: \"#e5e5e5\" */\n .footer {\n border-top-color: #343434;\n }\n /* developer.github.com: \"transparent\", \"transparent\" */\n .jumbotron::after {\n background-color: transparent;\n background-image: linear-gradient(transparent, rgba(0, 0, 0, .05));\n }\n /* developer.github.com: \"color: #555\" */\n .site-header-nav-item {\n color: #afafaf;\n }\n /* developer.github.com: \"color: #333\" */\n .site-header-nav-item.active, .site-header-nav-item:hover {\n color: #bebebe;\n }\n /* developer.github.com: \"#fff\", \"#e5e5e5\" */\n .menu {\n background-color: #181818;\n border-color: #343434;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .menu-item:hover {\n background-color: #222;\n }\n /* developer.github.com: \"color: #3c4146\", \"#fff\" */\n .menu-item.selected {\n color: #bebebe;\n background-color: #181818;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .data-table {\n border-color: #343434;\n }\n /* developer.github.com: \"#e5e5e5\", \"#e5e5e5\" */\n .data-table td, .data-table th {\n border-right-color: #343434;\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #3c4146\" */\n .header-enterprise-version {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #fff\" */\n #searchfield {\n color: #fff;\n }\n /* developer.github.com: \"color: #767676\" */\n #searchfield::-webkit-input-placeholder {\n color: #767676;\n }\n /* developer.github.com: \"color: #767676\" */\n #searchfield::-moz-placeholder {\n color: #767676;\n }\n /* developer.github.com: \"color: #767676\" */\n #searchfield:-ms-input-placeholder {\n color: #767676;\n }\n /* developer.github.com: \"color: #767676\" */\n #searchfield:-moz-placeholder {\n color: #767676;\n }\n /* developer.github.com: \"rgba(0,0,0,.4)\" */\n #search-results {\n box-shadow: 0 1px 3px #000;\n }\n /* developer.github.com: \"color: #fff !important\" */\n .result.selected em, .result.selected small, .result:hover em,\n .result:hover small {\n color: #fff !important;\n }\n /* developer.github.com: \"color: #fff\" */\n .site-header-nav a {\n color: #fff;\n }\n /* developer.github.com: \"rgba(255,255,255,.8)\" */\n .flash-header {\n color: hsla(0, 0%, 100%, .8);\n }\n /* developer.github.com: \"color: #fff !important\" */\n .flash-header a {\n color: #fff !important;\n }\n /* developer.github.com: \"Transparent\", \"color: #fff\" */\n .site-header-nav .dropdown-button {\n background-color: transparent;\n color: #fff;\n }\n /* developer.github.com: \"#fff\" */\n .site-header-nav .dropdown-button .dropdown-caret {\n border-color: #181818 transparent transparent;\n }\n /* developer.github.com: \"#fff\" */\n .site-header-nav .dropdown-button .enterprise-mode .dropdown-caret {\n border-top-color: #181818;\n }\n /* developer.github.com: \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.15)\" */\n .site-header-nav .dropdown-menu {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 3px 12px #000;\n }\n /* developer.github.com: \"rgba(27,31,35,.15)\" */\n .site-header-nav .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* developer.github.com: \"#fff\" */\n .site-header-nav .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* developer.github.com: \"#4183C4\" */\n .site-header-nav .dropdown-menu a {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #fff\", \"#4183C4\" */\n .site-header-nav .dropdown-menu a:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #24292e\" */\n .site-header-nav .dropdown-menu a.active {\n color: #cdcdcd;\n }\n /* developer.github.com: \"color: #000\" */\n .site-header-nav .dropdown-menu a .octicon-check {\n color: #f0f0f0;\n }\n /* developer.github.com: \"color: #333\" */\n .sub-nav h2 a {\n color: #bebebe;\n }\n /* developer.github.com: \"#ddd\" */\n .sub-nav ul {\n border-left-color: #343434;\n }\n /* developer.github.com: \"color: #767676\" */\n .sub-nav ul a {\n color: #767676;\n }\n /* developer.github.com: \"#005b9e\" */\n .sub-nav ul a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"#ddd\" */\n @media screen and (min-width:469px) {\n .sub-nav {\n border-bottom-color: #343434;\n }\n }\n /* developer.github.com: \"color: #333\" */\n .highlight-module .mega-octicon {\n color: #bebebe;\n }\n /* developer.github.com: \"#fff\", \"#ddd\" */\n .homepage-jumbotron, .libraries-jumbotron {\n background-color: #181818;\n }\n .libraries-jumbotron {\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #333\" */\n .octokit-language span {\n color: #bebebe;\n }\n /* developer.github.com: \"#fff\", \"#e5e5e5\" */\n .sidebar-menu, .sidebar-module {\n border-color: #343434;\n }\n /* developer.github.com: \"#fafafb\" */\n .sidebar-menu, .sidebar-module.notice {\n background-color: #181818;\n }\n /* developer.github.com: \"#eee\" */\n .sidebar-module ul li:last-child ul li:first-child {\n border-top-color: #343434;\n }\n /* developer.github.com: \"color: #666\", \"#eee\" */\n .headlines > li, .sidebar-module ul h3 {\n color: #949494;\n border-bottom-color: #343434;\n }\n /* developer.github.com: \"color: #333\" */\n .headlines > li > a {\n color: #bebebe;\n }\n /* developer.github.com: \"#327fc7\" */\n .headlines > li > a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"#fdfdfd\" */\n .headlines li:hover {\n background-color: #181818;\n }\n /* developer.github.com: \"color: #555\" */\n .sidebar-module h3 a {\n color: #afafaf;\n }\n /* developer.github.com: \"#327fc7\", \"#fdfdfd\" */\n .sidebar-module h3 a:hover {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* developer.github.com: \"#eee\", \"color: #666\", \"#f9f9f9\" */\n .sidebar-module ul ul li {\n border-bottom-color: #343434;\n color: #949494;\n background-color: #181818;\n }\n /* developer.github.com: \"color: #333\", \"#f4f4f4\" */\n .js-current .standalone a, .sidebar-module .disable > a {\n color: #bebebe;\n background-color: #242424;\n }\n /* developer.github.com: \"#005b9e\" */\n .sidebar-module ul ul li a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"transparent\" */\n .arrow-btn.collapsed:hover, .arrow-btn.expanded:hover,\n .sidebar-module .arrow-btn {\n background-color: transparent;\n }\n /* developer.github.com: \"color: #264c72\", \"#97c1da\", \"#d8ebf8\" */\n .alert {\n color: #9daccc;\n border-color: #246;\n background-color: #182030;\n }\n /* developer.github.com: \"#613A00\", \"#dca874\", \"#ffe3c8\" */\n .warning {\n color: #bba257;\n border-color: #cb4;\n background-color: #261d08;\n }\n /* developer.github.com: \"#d8ebf8\" */\n .alert table {\n background-color: #182030;\n }\n /* developer.github.com: \"#ffe3c8\" */\n .warning table {\n background-color: #261d08;\n }\n /* developer.github.com: \"#6f42c1\", \"#f8f4ff\", \"#f8f4ff\",\"#f6f1ff\", \"#6f42c1\" */\n .product {\n color: #9378ba;\n background-color: #251533;\n background: -webkit-linear-gradient(#251533, #231233);\n border-color: #9378ba;\n }\n /* developer.github.com: \"#327fc7\" */\n .api-status a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #333\" */\n .content .anchor {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #666\" */\n h2 span.step {\n color: #949494;\n }\n /* developer.github.com: \"#005b9e\" */\n a, a:active, a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #fff\" */\n .button, .button-secondary {\n color: #fff;\n }\n /* developer.github.com: \"color: #444\" */\n .rss-subscribe {\n color: #afafaf;\n }\n /* developer.github.com: \"color: #393939\" */\n .content {\n color: #bebebe;\n }\n /* developer.github.com: \"color: #666\" */\n .content dt {\n color: #949494;\n }\n /* developer.github.com: \"#ddd\" */\n .app-container img {\n border-color: #343434;\n }\n /* developer.github.com: \"#ddd\" */\n ol > li::before {\n border-right-color: #343434;\n }\n /* developer.github.com: \"#ddd\" */\n .content ol > li img {\n border-color: #343434;\n }\n /* developer.github.com: \"rgba(0,0,0,.2)\" */\n .content .full-image img {\n box-shadow: 0 0 3px rgba(255, 255, 255, .7);\n }\n /* developer.github.com: \"color: #666\" */\n .content .full-image:hover .octicon, .full-image:hover .mini-icon {\n color: #949494;\n }\n /* developer.github.com: \"#f9f9f9\" */\n .content .sectionbody .dlist dt, .content .verseblock-content,\n .content dl code, .content h2 code, .content h3 code, .content h4 code,\n .content ol code, .content p > tt, .content table code, .content ul code,\n p code {\n background-color: #181818;\n }\n /* developer.github.com: \"color: #fff\" */\n .tooltip-text {\n color: #fff;\n }\n /* developer.github.com: \"color: #333\" */\n #markdown-toc li a {\n color: #bebebe;\n }\n /* developer.github.com: \"#327fc7\" */\n #markdown-toc li a:hover {\n color: /*[[base-color]]*/;\n }\n /* developer.github.com: \"#ddd\" */\n .content table th {\n border-color: #343434;\n }\n /* developer.github.com: \"#fff\" */\n .content table tr {\n background-color: #181818;\n }\n /* developer.github.com: \"#ddd\" */\n .content table td {\n border-color: #343434;\n }\n /* developer.github.com: \"#fafafb\", \"color: #393939\" */\n pre {\n background-color: #181818;\n color: #bebebe;\n }\n /* developer.github.com: \"#f4f4f4\" */\n .highlight-headers {\n background-color: #242424;\n }\n /* developer.github.com: \"color: #fff\" */\n .command-line {\n color: #fff;\n }\n /* developer.github.com: \"transparent\" */\n .highlight-graphql .err {\n background-color: transparent;\n }\n /* developer.github.com: \"rgba(255,255,255,.5)\" */\n #staging-header {\n color: hsla(0, 0%, 0%, .5);\n }\n /* developer.github.com: \"color: #fff\" */\n #staging-header p {\n color: #fff;\n }\n /* developer.github.com: \"#97c1da\", \"#d8ebf8\", \"color: #264c72\" */\n .preview-notice {\n border-left-color: #246;\n background-color: #182030;\n color: #9daccc;\n }\n /* developer.github.com: \"#613A00\", \"#dca874\", \"#ffe3c8\", \"#ffe3c8\", \"rgba(255,255,255,.8)\" */\n .deprecation-warning {\n color: #bba257;\n border-color: #cb4;\n background-color: #261d08;\n background: -webkit-linear-gradient(#261d08, #f5dac0);\n }\n /* developer.github.com: \"rgba(255,255,255,.8)\" */\n .deprecation-note, .deprecation-warning {\n text-shadow: 0 1px 0 hsla(0, 0%, 100%, .8);\n }\n /* developer.github.com: \"#fff\", \"#e5e5e5\" */\n .pagination > span, .pagination a, .pagination em {\n background-color: #181818;\n border-color: #343434;\n }\n /* developer.github.com: \"#e5e5e5\" */\n .pagination > span:focus, .pagination > span:hover, .pagination a:focus,\n .pagination a:hover, .pagination em:focus, .pagination em:hover {\n border-color: #343434;\n }\n /* developer.github.com: \"color: #fff\" */\n .pagination .current, .pagination .current:hover {\n color: #fff;\n }\n /* developer.github.com: \"color: #000\" */\n code .gd, code .gd .x, code .gi, code .gi .x {\n color: #f0f0f0;\n }\n /* developer.github.com: \"color: #555\" */\n code .gp, code .nn {\n color: #afafaf;\n }\n /* developer.github.com: \"color: #fff\" */\n .criticality-badge--breaking {\n color: #fff;\n }\n /* developer.github.com: \"#ddd\" */\n iframe#graphiql {\n border-color: #343434;\n }\n /* developer.github.com: \"color: #fff\" */\n .text-blue-light {\n color: #fff;\n }\n /* developer.github.com: \"none\" */\n .btn, .btn:hover {\n background-image: none;\n }\n /* developer.github.com: \"#0058a2\" */\n .link-mono:hover {\n box-shadow: 0 1px 0 0 /*[[base-color]]*/;\n }\n /* developer.github.com: \"color: #767676\" */\n a.card.bg-gray-light {\n color: #767676;\n }\n /* developer.github.com: \"#f5f5f5\" */\n .bg-custom-gradient {\n background-image: linear-gradient(180deg, #222, rgba(245, 245, 245, 0));\n }\n /* end developer.github.com rules */\n table {\n background-color: transparent;\n }\n html[prefix] .deprecation-note, html[prefix] .deprecation-warning {\n text-shadow: none;\n }\n .sidebar-module .arrow-btn {\n background: url('data:image/svg+xml;utf8,') no-repeat 8px 10px;\n }\n .arrow-btn.collapsed:hover {\n background: url('data:image/svg+xml;utf8,') no-repeat 8px 10px;\n }\n .arrow-btn.expanded {\n background: url('data:image/svg+xml;utf8,') no-repeat 8px 10px;\n }\n .arrow-btn.expanded:hover {\n background: url('data:image/svg+xml;utf8,') no-repeat 8px 10px;\n }\n}\n@-moz-document domain(\"docs.github.com\") {\n /* begin docs.github.com rules */\n /* docs.github.com: \"transparent\" */\n a {\n background-color: transparent;\n }\n /* docs.github.com: \"color: #1b1f23\" */\n mark {\n color: #dcdcdc;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* docs.github.com: \"#0366d6\" */\n a {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n kbd {\n color: #afafaf;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* docs.github.com: \"#fff\", \"#d1d5da\" */\n .Box, kbd {\n background-color: #181818;\n border-color: #404040;\n }\n /* docs.github.com: \"#f6f8fa\", \"#d1d5da\" */\n .Box-header {\n background-color: #222;\n border-color: #404040;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* docs.github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: 2px 0 0 /*[[base-color]]*/ inset;\n }\n /* docs.github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* docs.github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* docs.github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* docs.github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width: 768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: /*[[base-color]]*/;\n }\n }\n /* docs.github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* docs.github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* docs.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* docs.github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* docs.github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* docs.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* docs.github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* docs.github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* docs.github.com: \"rgba(27,31,35,.2)\" */\n .btn {\n border-color: rgba(220, 220, 220, .2);\n }\n /* docs.github.com: \"color: #586069\", \"rgba(27,31,35,.1)\" */\n .btn .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .17);\n }\n /* docs.github.com: \"none\" */\n .btn.selected, .btn:active, .btn[aria-selected=true] {\n background-image: none;\n }\n /* docs.github.com: \"color: #24292e\", \"#eff3f6\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn {\n color: #cdcdcd;\n background-color: #242424;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* docs.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* docs.github.com: \"#e6ebf1\", \"#e6ebf1\", \"rgba(27,31,35,.35)\" */\n .btn.hover, .btn:hover {\n background-color: #444;\n background-image: linear-gradient(-180deg, #f0f3f6 0%, #444 90%);\n border-color: rgba(220, 220, 220, .35);\n }\n /* docs.github.com: \"#e9ecef\", \"none\", \"rgba(27,31,35,.35)\", \"rgba(27,31,35,.15)\" */\n .btn.selected, .btn:active, .btn[aria-selected=true], [open] > .btn {\n background-color: #404040;\n background-image: none;\n border-color: rgba(220, 220, 220, .35);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* docs.github.com: \"color: rgba(36,41,46,.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,.2)\", \"box-shadow: none\" */\n .btn.disabled, .btn:disabled, .btn[aria-disabled=true] {\n color: rgba(210, 210, 210, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* docs.github.com: \"color: #fff\", \"#28a745\", \"#34d058\",\"#28a745\" */\n .btn-primary {\n color: #fff;\n background-color: #484;\n background-image: linear-gradient(-180deg, #373 0%, #484 90%);\n }\n /* docs.github.com: \"rgba(52,208,88,.4)\" */\n .btn-primary.focus, .btn-primary:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* docs.github.com: \"#269f42\", \"#2fcb53\",\"#269f42\", \"rgba(27,31,35,.5)\" */\n .btn-primary.hover, .btn-primary:hover {\n background-color: #595;\n background-image: linear-gradient(-180deg, #373 0%, #595 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* docs.github.com: \"#279f43\", \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-primary.selected, .btn-primary:active, .btn-primary[aria-selected=true],\n [open] > .btn-primary {\n background-color: #595;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* docs.github.com: \"#94d3a2\", \"none\", \"rgba(27,31,35,.2)\", \"box-shadow: none\" */\n .btn-primary.disabled, .btn-primary:disabled,\n .btn-primary[aria-disabled=true] {\n background-color: #040;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* docs.github.com: \"#fff\" */\n .btn-primary .Counter {\n background-color: #181818;\n }\n /* docs.github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: linear-gradient(-180deg, /*[[base-color]]*/ 0%, /*[[base-color]]*/ 90%);\n }\n /* docs.github.com: \"rgba(27,31,35,.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* docs.github.com: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-blue.selected, .btn-blue:active, .btn-blue[aria-selected=true],\n [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* docs.github.com: \"none\", \"rgba(27,31,35,.2)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled, .btn-blue[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* docs.github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* docs.github.com: \"#cb2431\", \"#fafbfc\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn-danger {\n color: #d82828;\n background-color: #181818;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* docs.github.com: \"rgba(203,36,49,.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 .2em rgba(255, 68, 68, .4);\n }\n /* docs.github.com: \"color: #fff\", \"#cb2431\", \"#cb2431\", \"rgba(27,31,35,.5)\" */\n .btn-danger:hover {\n color: #fff;\n background-color: #d82828;\n background-image: linear-gradient(-180deg, #de4450 0%, #d82828 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* docs.github.com: \"color: #fff\" */\n .btn-danger:hover .Counter {\n color: #fff;\n }\n /* docs.github.com: \"color: #fff\", \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-danger.selected, .btn-danger:active, .btn-danger[aria-selected=true],\n [open] > .btn-danger {\n color: #fff;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* docs.github.com: \"rgba(203,36,49,.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,.2)\", \"box-shadow: none\" */\n .btn-danger.disabled, .btn-danger:disabled, .btn-danger[aria-disabled=true] {\n color: rgba(255, 68, 68, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* docs.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-outline {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* docs.github.com: \"color: #fff\", \"#0366d6\", \"none\", \"#0366d6\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n .btn-outline[aria-selected=true], [open] > .btn-outline {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#0366d6\", \"#fff\" */\n .btn-outline.selected .Counter, .btn-outline:active .Counter,\n .btn-outline:hover .Counter, .btn-outline[aria-selected=true] .Counter,\n [open] > .btn-outline .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* docs.github.com: \"#0366d6\" */\n .btn-outline:focus {\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n .btn-outline.disabled, .btn-outline:disabled,\n .btn-outline[aria-disabled=true] {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* docs.github.com: \"#0366d6\", \"transparent\" */\n .btn-link {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* docs.github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover, .btn-link[aria-disabled=true],\n .btn-link[aria-disabled=true]:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* docs.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-invisible {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* docs.github.com: \"#0366d6\", \"none\", \"box-shadow: none\" */\n .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,\n .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,\n .btn-invisible:focus, .btn-invisible:hover,\n .btn-invisible[aria-selected=true] {\n color: /*[[base-color]]*/;\n background: none;\n box-shadow: none;\n }\n /* docs.github.com: \"color: #586069\", \"transparent\" */\n .btn-octicon {\n color: #afafaf;\n background-color: transparent;\n }\n /* docs.github.com: \"#0366d6\" */\n .btn-octicon:hover {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #959da5\" */\n .btn-octicon.disabled, .btn-octicon.disabled:hover,\n .btn-octicon[aria-disabled=true], .btn-octicon[aria-disabled=true]:hover {\n color: #767676;\n }\n /* docs.github.com: \"#cb2431\" */\n .btn-octicon-danger:hover {\n color: #d82828;\n }\n /* docs.github.com: \"transparent\" */\n .close-button {\n background-color: transparent;\n }\n /* docs.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* docs.github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* docs.github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,.2)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .2);\n }\n /* docs.github.com: \"#0366d6\" */\n .social-count:hover {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .pagination a, .pagination em, .pagination span {\n color: /*[[base-color]]*/;\n background-color: #181818;\n border-color: #343434;\n }\n /* docs.github.com: \"#eff3f6\", \"#e1e4e8\" */\n .pagination a:focus, .pagination a:hover, .pagination em:focus,\n .pagination em:hover, .pagination span:focus, .pagination span:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* docs.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover, .pagination [aria-current],\n .pagination [aria-current]:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#d1d5da\", \"#fafbfc\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover, .pagination [aria-disabled=true],\n .pagination [aria-disabled=true]:hover {\n color: #404040;\n background-color: #181818;\n }\n /* docs.github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* docs.github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 544px) {\n .border-sm {\n border-color: #343434 !important;\n }\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 768px) {\n .border-md {\n border-color: #343434 !important;\n }\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1012px) {\n .border-lg {\n border-color: #343434 !important;\n }\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* docs.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1280px) {\n .border-xl {\n border-color: #343434 !important;\n }\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* docs.github.com: \"#0366d6\" */\n .border-blue {\n border-color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* docs.github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* docs.github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* docs.github.com: \"#cea0a5\" */\n .border-red, .border-red-light {\n border-color: #d82828 !important;\n }\n /* docs.github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* docs.github.com: \"#d9d0a5\" */\n .border-yellow {\n border-color: #542 !important;\n }\n /* docs.github.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* docs.github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* docs.github.com: \"rgba(27,31,35,.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* docs.github.com: \"rgba(255,255,255,.5)\" */\n .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* docs.github.com: \"rgba(27,31,35,.1)\" */\n .box-shadow {\n box-shadow: 0 1px 1px #000 !important;\n }\n /* docs.github.com: \"rgba(27,31,35,.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* docs.github.com: \"rgba(27,31,35,.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* docs.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* docs.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .bg-blue {\n background-color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* docs.github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* docs.github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* docs.github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* docs.github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* docs.github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* docs.github.com: \"#ffdce0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* docs.github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* docs.github.com: \"#dbab09\" */\n .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* docs.github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* docs.github.com: \"#fafbfc\" */\n .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .bg-gray-1 {\n background-color: #222 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .color-gray-2 {\n color: #343434 !important;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* docs.github.com: \"#d1d5da\" */\n .color-gray-3 {\n color: #404040 !important;\n }\n /* docs.github.com: \"#d1d5da\" */\n .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* docs.github.com: \"color: #959da5 !important\" */\n .color-gray-4 {\n color: #767676 !important;\n }\n /* docs.github.com: \"color: #6a737d !important\" */\n .color-gray-5 {\n color: #949494 !important;\n }\n /* docs.github.com: \"#6a737d\" */\n .bg-gray-5 {\n background-color: #444 !important;\n }\n /* docs.github.com: \"color: #586069 !important\" */\n .color-gray-6 {\n color: #afafaf !important;\n }\n /* docs.github.com: \"#586069\" */\n .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* docs.github.com: \"color: #444d56 !important\" */\n .color-gray-7 {\n color: #afafaf !important;\n }\n /* docs.github.com: \"color: #2f363d !important\" */\n .color-gray-8 {\n color: #bebebe !important;\n }\n /* docs.github.com: \"#2f363d\" */\n .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* docs.github.com: \"color: #24292e !important\" */\n .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* docs.github.com: \"#24292e\" */\n .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* docs.github.com: \"#dbedff\" */\n .bg-blue-0, .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* docs.github.com: \"#c8e1ff\" */\n .color-blue-2 {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#c8e1ff\" */\n .bg-blue-2 {\n background-color: #246 !important;\n }\n /* docs.github.com: \"#79b8ff\" */\n .color-blue-3 {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#79b8ff\" */\n .bg-blue-3 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#2188ff\" */\n .color-blue-4 {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#2188ff\" */\n .bg-blue-4 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .color-blue-5 {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .bg-blue-5 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#005cc5\" */\n .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* docs.github.com: \"#005cc5\" */\n .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* docs.github.com: \"#044289\" */\n .color-blue-7 {\n color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* docs.github.com: \"#044289\" */\n .bg-blue-7 {\n background-color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* docs.github.com: \"color: #032f62 !important\" */\n .color-blue-8 {\n color: #9daccc !important;\n }\n /* docs.github.com: \"#032f62\" */\n .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* docs.github.com: \"color: #05264c !important\" */\n .color-blue-9 {\n color: #bebebe !important;\n }\n /* docs.github.com: \"#05264c\" */\n .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* docs.github.com: \"#f0fff4\" */\n .color-green-0 {\n color: #002800 !important;\n }\n /* docs.github.com: \"#f0fff4\" */\n .bg-green-0 {\n background-color: #002800 !important;\n }\n /* docs.github.com: \"#dcffe4\" */\n .color-green-1 {\n color: #002800 !important;\n }\n /* docs.github.com: \"#dcffe4\" */\n .bg-green-1 {\n background-color: #002800 !important;\n }\n /* docs.github.com: \"#34d058\" */\n .color-green-4 {\n color: #373 !important;\n }\n /* docs.github.com: \"#34d058\" */\n .bg-green-4 {\n background-color: #373 !important;\n }\n /* docs.github.com: \"#28a745\" */\n .color-green-5 {\n color: #484 !important;\n }\n /* docs.github.com: \"#28a745\" */\n .bg-green-5 {\n background-color: #484 !important;\n }\n /* docs.github.com: \"#22863a\" */\n .color-green-6 {\n color: #6cc644 !important;\n }\n /* docs.github.com: \"#22863a\" */\n .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* docs.github.com: \"#165c26\" */\n .color-green-8 {\n color: #6cc644 !important;\n }\n /* docs.github.com: \"#165c26\" */\n .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* docs.github.com: \"#144620\" */\n .color-green-9 {\n color: #6cc644 !important;\n }\n /* docs.github.com: \"#144620\" */\n .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* docs.github.com: \"#fffdef\" */\n .color-yellow-0 {\n color: #261d08 !important;\n }\n /* docs.github.com: \"#fffdef\" */\n .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* docs.github.com: \"#fffbdd\" */\n .color-yellow-1 {\n color: #261d08 !important;\n }\n /* docs.github.com: \"#fffbdd\" */\n .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* docs.github.com: \"#fff5b1\" */\n .color-yellow-2 {\n color: #651 !important;\n }\n /* docs.github.com: \"#fff5b1\" */\n .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* docs.github.com: \"#ffea7f\" */\n .color-yellow-3 {\n color: #542 !important;\n }\n /* docs.github.com: \"#ffea7f\" */\n .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* docs.github.com: \"#ffd33d\" */\n .color-yellow-5 {\n color: #cb4 !important;\n }\n /* docs.github.com: \"#ffd33d\" */\n .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#f9c513\" */\n .color-yellow-6 {\n color: #cb4 !important;\n }\n /* docs.github.com: \"#f9c513\" */\n .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#dbab09\" */\n .color-yellow-7 {\n color: #cb4 !important;\n }\n /* docs.github.com: \"#dbab09\" */\n .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#b08800\" */\n .color-yellow-8 {\n color: #cb4 !important;\n }\n /* docs.github.com: \"#b08800\" */\n .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* docs.github.com: \"#735c0f\" */\n .color-yellow-9 {\n color: #bba257 !important;\n }\n /* docs.github.com: \"#735c0f\" */\n .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* docs.github.com: \"#fb8532\" */\n .color-orange-4 {\n color: #fb8532 !important;\n }\n /* docs.github.com: \"#fb8532\" */\n .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* docs.github.com: \"#e36209\" */\n .color-orange-6 {\n color: #fb8532 !important;\n }\n /* docs.github.com: \"#e36209\" */\n .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* docs.github.com: \"#d15704\" */\n .color-orange-7 {\n color: #f3582c !important;\n }\n /* docs.github.com: \"#d15704\" */\n .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* docs.github.com: \"#a04100\" */\n .color-orange-9 {\n color: #f3582c !important;\n }\n /* docs.github.com: \"#a04100\" */\n .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* docs.github.com: \"#ffeef0\" */\n .color-red-0 {\n color: #300 !important;\n }\n /* docs.github.com: \"#ffeef0\" */\n .bg-red-0 {\n background-color: #300 !important;\n }\n /* docs.github.com: \"#ffdce0\" */\n .color-red-1 {\n color: #300 !important;\n }\n /* docs.github.com: \"#ffdce0\" */\n .bg-red-1 {\n background-color: #300 !important;\n }\n /* docs.github.com: \"#f97583\" */\n .color-red-3 {\n color: #f88 !important;\n }\n /* docs.github.com: \"#f97583\" */\n .bg-red-3 {\n background-color: #f88 !important;\n }\n /* docs.github.com: \"#d73a49\" */\n .color-red-5 {\n color: #d82828 !important;\n }\n /* docs.github.com: \"#d73a49\" */\n .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* docs.github.com: \"#cb2431\" */\n .color-red-6 {\n color: #d82828 !important;\n }\n /* docs.github.com: \"#cb2431\" */\n .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* docs.github.com: \"#86181d\" */\n .color-red-9 {\n color: #d82828 !important;\n }\n /* docs.github.com: \"#86181d\" */\n .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* docs.github.com: \"#f5f0ff\" */\n .color-purple-0 {\n color: #213 !important;\n }\n /* docs.github.com: \"#f5f0ff\" */\n .bg-purple-0 {\n background-color: #213 !important;\n }\n /* docs.github.com: \"#8a63d2\" */\n .color-purple-4 {\n color: #53387a !important;\n }\n /* docs.github.com: \"#8a63d2\" */\n .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* docs.github.com: \"#6f42c1\" */\n .color-purple-5 {\n color: #9378ba !important;\n }\n /* docs.github.com: \"#6f42c1\" */\n .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* docs.github.com: \"#ffeef8\" */\n .color-pink-0 {\n color: #170711 !important;\n }\n /* docs.github.com: \"#ffeef8\" */\n .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* docs.github.com: \"#ec6cb9\" */\n .color-pink-4 {\n color: #c49 !important;\n }\n /* docs.github.com: \"#ec6cb9\" */\n .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* docs.github.com: \"#99306f\" */\n .color-pink-8 {\n color: #e6b !important;\n }\n /* docs.github.com: \"#99306f\" */\n .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .text-blue {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* docs.github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* docs.github.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* docs.github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* docs.github.com: \"#28a745\" */\n .text-green {\n color: #484 !important;\n }\n /* docs.github.com: \"#b08800\" */\n .text-yellow {\n color: #cb4 !important;\n }\n /* docs.github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* docs.github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* docs.github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* docs.github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* docs.github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .link-gray:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* docs.github.com: \"#0366d6\" */\n .muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* docs.github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* docs.github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* docs.github.com: \"rgba(255,255,255,.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* docs.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* docs.github.com: \"#cb2431\" */\n .markdown-body .absent {\n color: #d82828;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .markdown-body hr {\n background-color: #343434;\n }\n /* docs.github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* docs.github.com: \"color: #1b1f23\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* docs.github.com: \"#eaecef\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"color: #6a737d\" */\n .markdown-body h6 {\n color: #949494;\n }\n /* docs.github.com: \"#dfe2e5\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* docs.github.com: \"#fff\", \"#c6cbd1\" */\n .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* docs.github.com: \"transparent\" */\n .markdown-body table img {\n background-color: transparent;\n }\n /* docs.github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* docs.github.com: \"transparent\" */\n .markdown-body .emoji {\n background-color: transparent;\n }\n /* docs.github.com: \"#dfe2e5\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* docs.github.com: \"color: #24292e\" */\n .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* docs.github.com: \"rgba(27,31,35,.05)\" */\n .markdown-body code, .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* docs.github.com: \"transparent\" */\n .markdown-body pre > code, .markdown-body pre code, .markdown-body pre tt {\n background-color: transparent;\n }\n /* docs.github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .markdown-body .csv-data th {\n background-color: #222;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .ais-SearchBox-input, .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* docs.github.com: \"#2188ff\", \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .ais-SearchBox-input:focus, .focus.ais-SearchBox-input, .form-control.focus,\n .form-control:focus, .form-select.focus, .form-select:focus {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* docs.github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* docs.github.com: \"color: #fff\" */\n .input-dark {\n color: #fff;\n }\n /* docs.github.com: \"rgba(27,31,35,.3)\" */\n .input-dark.focus, .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* docs.github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* docs.github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* docs.github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group dt label {\n color: #afafaf;\n }\n /* docs.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* docs.github.com: \"#fff\" */\n .form-group .ais-SearchBox-input, .form-group .ais-SearchBox-input:focus,\n .form-group .form-control, .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* docs.github.com: \"#cb2431\" */\n .form-group dd h4.is-error {\n color: #d82828;\n }\n /* docs.github.com: \"#28a745\" */\n .form-group dd h4.is-success {\n color: #484;\n }\n /* docs.github.com: \"#cb2431\" */\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* docs.github.com: \"#28a745\" */\n .form-group.successful .success {\n color: #484;\n }\n /* docs.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-group.warn .warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* docs.github.com: \"#fffbdd\" */\n .form-group.warn .warning::after {\n border-bottom-color: #261d08;\n }\n /* docs.github.com: \"#d9d0a5\" */\n .form-group.warn .warning::before {\n border-bottom-color: #542;\n }\n /* docs.github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* docs.github.com: \"#86181d\", \"#ffdce0\", \"#cea0a5\" */\n .form-group.errored .error {\n color: #d82828;\n background-color: #300;\n border-color: #d82828;\n }\n /* docs.github.com: \"#ffdce0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* docs.github.com: \"#cea0a5\" */\n .form-group.errored .error::before {\n border-bottom-color: #d82828;\n }\n /* docs.github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* docs.github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* docs.github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* docs.github.com: \"transparent\" */\n .inline-form .btn-plain {\n background-color: transparent;\n }\n /* docs.github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* docs.github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* docs.github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* docs.github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* docs.github.com: \"box-shadow: none\" */\n .upload-enabled.focused .ais-SearchBox-input,\n .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* docs.github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* docs.github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* docs.github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* docs.github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* docs.github.com: \"color: #24292e\", \"#d1d5da\" */\n .radio-label {\n color: #cdcdcd;\n border-color: #404040;\n }\n /* docs.github.com: \"#0366d6\" */\n :checked + .radio-label {\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#fff\", \"#d1d5da\" */\n .menu {\n background-color: #181818;\n border-color: #404040;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .menu-item {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .menu-item:hover {\n background-color: #222;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\" */\n .menu-item.selected, .menu-item[aria-current],\n .menu-item[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* docs.github.com: \"#e36209\" */\n .menu-item.selected::before, .menu-item[aria-current]::before,\n .menu-item[aria-selected=true]::before {\n background-color: #fb8532;\n }\n /* docs.github.com: \"color: #24292e\" */\n .menu-item .octicon {\n color: #cdcdcd;\n }\n /* docs.github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* docs.github.com: \"color: #586069\", \"#e1e4e8\" */\n .menu-heading {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"#d1d5da\" */\n .tabnav {\n border-bottom-color: #404040;\n }\n /* docs.github.com: \"color: #586069\", \"transparent\" */\n .tabnav-tab {\n color: #afafaf;\n background-color: transparent;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .tabnav-tab.selected, .tabnav-tab[aria-current],\n .tabnav-tab[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* docs.github.com: \"color: #24292e\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #cdcdcd;\n }\n /* docs.github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* docs.github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #586069\", \"transparent\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: transparent;\n }\n /* docs.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* docs.github.com: \"#eaecef\" */\n .filter-item:hover {\n background-color: #343434;\n }\n /* docs.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected, .filter-item[aria-current],\n .filter-item[aria-selected=true] {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* docs.github.com: \"#fafbfc\" */\n .SideNav {\n background-color: #181818;\n }\n /* docs.github.com: \"color: #586069\", \"transparent\", \"#e1e4e8\" */\n .SideNav-item {\n color: #afafaf;\n background-color: transparent;\n border-top-color: #343434;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .SideNav-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* docs.github.com: \"color: #24292e\", \"#f6f8fa\" */\n .SideNav-item:focus, .SideNav-item:hover {\n color: #cdcdcd;\n background-color: #222;\n }\n /* docs.github.com: \"#d1d5da\" */\n .SideNav-item:focus::before, .SideNav-item:hover::before {\n background-color: #404040;\n }\n /* docs.github.com: \"#fff\" */\n .SideNav-item:active {\n background-color: #181818;\n }\n /* docs.github.com: \"color: #24292e\", \"#fff\" */\n .SideNav-item[aria-current=page], .SideNav-item[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* docs.github.com: \"#e36209\" */\n .SideNav-item[aria-current=page]::before,\n .SideNav-item[aria-selected=true]::before {\n background-color: #fb8532;\n }\n /* docs.github.com: \"color: #6a737d\" */\n .SideNav-icon {\n color: #949494;\n }\n /* docs.github.com: \"#0366d6\", \"transparent\" */\n .SideNav-subItem {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* docs.github.com: \"color: #24292e\" */\n .SideNav-subItem:focus, .SideNav-subItem:hover,\n .SideNav-subItem[aria-current=page], .SideNav-subItem[aria-selected=true] {\n color: #cdcdcd;\n }\n /* docs.github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"color: #586069\", \"#e1e4e8\" */\n .subnav-item {\n color: #afafaf;\n border-color: #343434;\n }\n /* docs.github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* docs.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .subnav-item.selected, .subnav-item[aria-current],\n .subnav-item[aria-selected=true] {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* docs.github.com: \"#c6cbd1\" */\n .subnav-search-icon {\n color: #5a5a5a;\n }\n /* docs.github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* docs.github.com: \"#e1e4e8\" */\n .UnderlineNav {\n border-bottom-color: #343434;\n }\n /* docs.github.com: \"color: #586069\" */\n .UnderlineNav-item {\n color: #afafaf;\n }\n /* docs.github.com: \"color: #24292e\", \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n color: #cdcdcd;\n border-bottom-color: #404040;\n }\n /* docs.github.com: \"color: #6a737d\" */\n .UnderlineNav-item:focus .UnderlineNav-octicon,\n .UnderlineNav-item:hover .UnderlineNav-octicon {\n color: #949494;\n }\n /* docs.github.com: \"color: #24292e\", \"#e36209\" */\n .UnderlineNav-item.selected, .UnderlineNav-item[aria-current],\n .UnderlineNav-item[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* docs.github.com: \"color: #6a737d\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon,\n .UnderlineNav-item[aria-current] .UnderlineNav-octicon,\n .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* docs.github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* docs.github.com: \"color: #586069\", \"#e1e4e8\" */\n .pullquote {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* docs.github.com: \"color: #fff\", \"#1074e7\", \"#1074e7\" */\n .btn-mktg {\n color: #fff;\n border: 1px solid /*[[base-color]]*/;\n }\n /* docs.github.com: \"#0366d6\", \"#0366d6\" */\n .btn-mktg, .btn-mktg:hover {\n background-color: /*[[base-color]]*/;\n }\n .btn-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn-mktg:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* docs.github.com: \"#28a745\", \"#28a745\" */\n .btn-primary-mktg:hover {\n background-color: #484;\n border-color: #484;\n }\n /* docs.github.com: \"#0366d6\", \"rgba(255,255,255,0)\", \"#1074e7\" */\n .btn-outline-mktg, .btn-outline-mktg:hover {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n .btn-outline-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #fff\", \"transparent\", \"none\", \"rgba(255,255,255,.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: transparent;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* docs.github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* docs.github.com: \"#0366d6\" */\n .text-blue-mktg {\n color: /*[[base-color]]*/ !important;\n }\n /* docs.github.com: \"#d1d5da\",\"rgba(255, 255, 255, 0)\" */\n .underline-dashed {\n background-image: linear-gradient(to right, #404040 50%, transparent 0%);\n }\n /* docs.github.com: \"#032f62\" */\n .bg-blue-dark {\n background-color: #182030 !important;\n }\n /* docs.github.com: \"color: #24292e\" */\n .directory-toc h3 a {\n color: #cdcdcd;\n }\n /* docs.github.com: \"#005cc5\" */\n .header-notifications a {\n color: #4f8cc9;\n }\n /* docs.github.com: \"#fafbfc\", \"rgba(27,31,35,.15)\" */\n @media (max-width: 767px) {\n .nav-mobile-dropdown.js-open {\n background-color: #181818;\n box-shadow: 0 1px 15px #000;\n }\n }\n /* docs.github.com: \"#fff\", \"rgba(27,31,35,.15)\" */\n @media (min-width: 768px) {\n .nav-desktop-langDropdown, .nav-desktop-productDropdown {\n background-color: #181818;\n box-shadow: 0 1px 15px #000;\n }\n }\n /* docs.github.com: \"transparent\" */\n @media (min-width: 768px) {\n details.close-when-clicked-outside[open] > summary::before {\n background-color: transparent;\n }\n }\n /* docs.github.com: \"#0366d6\" */\n .directory-link-box.Box:hover, .directory-link-box:hover .Box {\n border: 1px solid /*[[base-color]]*/;\n }\n /* docs.github.com: \"color: #959da5\" */\n .breadcrumbs a:not(:last-child)::after {\n color: #767676;\n }\n /* docs.github.com: \"#eee\" */\n .markdown-body ol > li {\n border-top-color: #343434;\n }\n /* docs.github.com: \"#eee\" */\n .procedural-image-wrapper img {\n border-color: #343434;\n }\n /* docs.github.com: \"#fff\" */\n .ais-SearchBox-input {\n background-color: #181818;\n }\n /* docs.github.com: \"none\" */\n .ais-SearchBox-reset {\n background: none;\n }\n /* docs.github.com: \"#f1f8ff\" */\n .ais-Hits-item.active, .ais-Hits-item:hover {\n background-color: #182030;\n }\n /* docs.github.com: \"none\" */\n .ais-Highlight-highlighted, mark {\n background: none;\n }\n /* docs.github.com: \"#0366d6\" */\n .search-result-title .ais-Highlight-highlighted, .search-result-title mark {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#0366d6\" */\n .search-result-intro .ais-Highlight-highlighted, .search-result-intro mark {\n border-bottom: 1px solid /*[[base-color]]*/;\n }\n /* docs.github.com: \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.15)\" */\n @media (min-width: 768px) {\n header #search-results-container {\n background-color: #181818;\n box-shadow: 0 1px 15px #000;\n }\n header .search-overlay-desktop.js-open {\n background-color: rgba(220, 220, 220, .22);\n }\n }\n /* docs.github.com: \"color: #24292e\" */\n .extended-markdown.note pre code, .markdown-body .lead-mktg p,\n div.light-bg a, div.light-bg a h4 {\n color: #cdcdcd;\n }\n /* docs.github.com: \"color: #586069\" */\n div.light-bg a p {\n color: #afafaf;\n }\n /* docs.github.com: \"color: #fff\" */\n div.dark-bg a, div.dark-bg a h4 {\n color: #fff;\n }\n /* docs.github.com: \"#05264c\" */\n .sidebar {\n background-color: #182030;\n }\n /* docs.github.com: \"color: #fff\" */\n .sidebar-products .arrow, .sidebar-products a {\n color: #fff;\n }\n /* docs.github.com: \"#79b8ff\" */\n .sidebar-article.is-current-page > a, .sidebar-guide.is-current-page > a,\n .sidebar-guide > a, .sidebar-guide summary a,\n .sidebar-product.is-current-page > a, .sidebar-product > a,\n .sidebar-products .arrow:hover, .sidebar-products a:hover,\n .sidebar-product summary a, .sidebar-topic.is-current-page > a {\n color: /*[[base-color]]*/;\n }\n /* docs.github.com: \"#032f62\" */\n .sidebar-guide.active {\n background-color: #182030;\n }\n /* docs.github.com: \"#044289\" */\n .sidebar-topic .sidebar-article::before {\n border-left: 1px solid rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* docs.github.com: \"#044289\" */\n .sidebar-topic .sidebar-article.active::before {\n border-left: 3px solid rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* docs.github.com: \"#ddd\" */\n iframe#graphiql {\n border-color: #343434;\n }\n /* docs.github.com: \"color: #333\", \"#f8f8f8\" */\n .hljs {\n background-color: #202020;\n }\n /* docs.github.com: \"color: #333\" */\n .hljs, .hljs-keyword, .hljs-selector-tag, .hljs-subst {\n color: #bebebe;\n }\n /* docs.github.com: \"none\" */\n .markdown-body table code {\n background: none;\n }\n /* docs.github.com: \"#fff\" */\n .markdown-body table th {\n background-color: #181818;\n }\n /* docs.github.com: \"none\" */\n .markdown-body table tr:nth-child(2n) {\n background: none;\n }\n /* end docs.github.com rules */\n h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h4 a > strong code {\n color: #bebebe;\n }\n h3 a {\n color: /*[[base-color]]*/;\n }\n .directory-toc h3 a {\n color: #bebebe;\n }\n .nav-mobile-burgerIcon {\n filter: invert(100%) hue-rotate(180deg) !important;\n }\n /* Using #fff over currentColor because GH relies on browser default #000 */\n .hljs {\n color: var(--ghd-code-color);\n }\n .extended-markdown p code {\n background-color: #1e293c !important;\n }\n .extended-markdown.warning p code {\n background-color: #500 !important;\n }\n .markdown-body #article-contents table tr:nth-child(2n),\n .markdown-body #article-contents table tr,\n .markdown-body #article-contents table th {\n background: #202020 !important;\n }\n .markdown-body #article-contents table th {\n box-shadow: 0 3px 0 0 #343434 !important;\n }\n .octicon-mark-github {\n color: currentcolor;\n }\n .sidebar {\n background-color: #1c1c1c;\n border-right: 1px solid #343434;\n }\n .sidebar-guide.active {\n background: #242424;\n }\n .sidebar-products svg:not([fill]) {\n fill: #eee;\n }\n .sidebar-products a, .sidebar-products .arrow {\n color: #eee;\n }\n .sidebar-guide > a, .sidebar-guide summary a, .sidebar-product > a,\n .sidebar-product summary a {\n color: #ccc;\n }\n body.d-lg-flex .sidebar-products a:hover {\n opacity: 1;\n }\n .sidebar-topic a:hover {\n opacity: .9 !important;\n }\n .btn-blue.hover, .btn.btn-blue:hover {\n background-image: linear-gradient(-180deg, rgba(/*[[base-color-rgb]]*/, .9), rgba(/*[[base-color-rgb]]*/, .8) 90%) !important;\n border-color: rgba(/*[[base-color-rgb]]*/, .3) !important;\n }\n [style*=\"background-color: #fafbfc\"] {\n background: none !important;\n }\n}\n@-moz-document domain(\"github.com\"), domain(\"gist.github.com\") {\n /* begin refined-github rules */\n /* refined-github: \"#28a745\", \"#cb2431\", \"#fffbdd\" */\n html.refined-github :root {\n --github-green: #484;\n --github-red: #d82828;\n --github-faint-yellow: #261d08;\n }\n /* refined-github: \"color: #6a737d\" */\n html.refined-github .markdown-body del {\n color: #949494;\n }\n /* refined-github: \"#fff\", \"#d1d5da\" */\n html.refined-github .dashboard .js-all-activity-header + div {\n background-color: #181818;\n border-color: #404040;\n }\n /* refined-github: \"none\" */\n html.refined-github .dashboard .js-all-activity-header + div .Box {\n background: none;\n }\n /* refined-github: \"#e1e4e8\" */\n html.refined-github .dashboard-rollup-items .body {\n border-top-color: #343434;\n }\n /* refined-github: \"color: #666\" */\n html.refined-github body > .footer li a {\n color: #949494;\n }\n /* refined-github: \"transparent\" */\n html.refined-github .repository-content #readme:not(.blob) .Box-header {\n background-color: transparent !important;\n }\n /* refined-github: \"color: #fff !important\" */\n html.refined-github .js-issue-row [aria-label=\"Open draft pull request\"] svg {\n color: #fff !important;\n }\n /* refined-github: \"#d1d5da\", \"#e1e4e8\" */\n @media (min-width: 700px) {\n html.refined-github .js-pinned-issues-reorder-list {\n box-shadow: 0 0 0 1px #404040;\n }\n html.refined-github .pinned-issue-item {\n border-color: #343434 !important;\n }\n }\n /* refined-github: \"none\" */\n html.refined-github .rgh-no-navigation-highlight .Box-row.navigation-focus,\n html.refined-github .rgh-no-navigation-highlight .list-group-item.navigation-focus,\n html.refined-github .rgh-no-navigation-highlight .navigation-focus td {\n background: none !important;\n }\n /* refined-github: \"color: #586069\" */\n html.refined-github .rgh-useless-comments-note {\n color: #afafaf;\n }\n /* refined-github: \"none\", \"#24292e\" */\n html.refined-github .rgh-recently-pushed-branches .Header .RecentBranches,\n html.refined-github .rgh-recently-pushed-branches [data-url$=\"recently_touched_branches_list\"] .Box {\n background: none;\n background-color: #181818;\n }\n /* refined-github: \"color: #fff !important\" */\n html.refined-github .rgh-recently-pushed-branches .Header .RecentBranches-item-link,\n html.refined-github .rgh-recently-pushed-branches [data-url$=\"recently_touched_branches_list\"] .btn-link,\n html.refined-github .rgh-recently-pushed-branches [data-url$=\"recently_touched_branches_list\"] .link-gray-dark {\n color: #fff !important;\n }\n /* refined-github: \"#e1e4e8\", \"#e1e4e8\" */\n html.refined-github button.reaction-summary-item {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* refined-github: \"#efefef\", \"#fff\" */\n html.refined-github .reaction-summary-item a {\n background-color: #202020;\n box-shadow: 0 0 0 2px /*[[background, #181818]]*/;\n }\n /* refined-github: \"#0366d6\", \"color: #fff\", \"#0366d6\" */\n html.refined-github .js-expandable-line:hover .blob-num:not(:hover) + .blob-code,\n html.refined-github .js-expandable-line:hover .blob-num:not(:hover) .directional-expander:first-child {\n border-color: /*[[base-color]]*/;\n color: #fff;\n background: /*[[base-color]]*/;\n }\n /* refined-github: \"#f6f8fa\" */\n html.refined-github .rgh-split-issue-pr-combined.selected:hover {\n background-color: #222;\n }\n /* refined-github: \"#2cbe4e\" */\n html.refined-github a.timeline-chosen-answer {\n border-color: #373 !important;\n }\n /* refined-github: \"#c0d3eb\" */\n html.refined-github .rgh-collaborator {\n border-color: #246;\n }\n /* end refined-github rules */\n /* begin zenhub rules */\n /* zenhub: \"none\" */\n body.zh_logged_in .ui-datepicker .ui-datepicker-buttonpane {\n background-image: none;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .ui-dialog .ui-dialog-content {\n background: none;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .ui-dialog .ui-dialog-buttonpane {\n background-image: none;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .ui-spinner-input,\n body.zh_logged_in .ui-tabs .ui-tabs-panel {\n background: none;\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in #new_issue .discussion-sidebar h3 {\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-app--board-visible .zh-app--is-fullscreen {\n background-color: #181818;\n }\n /* zenhub: \"color: #24292e\" */\n body.zh_logged_in .zh-discussion-item .zh-estimate-is,\n body.zh_logged_in .zh-discussion-item .zh-estimate-was,\n body.zh_logged_in .zh-discussion-item .zh-issue,\n body.zh_logged_in .zh-discussion-item .zh-issue-event-workspace-name,\n body.zh_logged_in .zh-discussion-item .zh-pipeline-is,\n body.zh_logged_in .zh-discussion-item .zh-pipeline-was,\n body.zh_logged_in .zh-discussion-item .zh-release,\n body.zh_logged_in .zh-discussion-item strong {\n color: #cdcdcd;\n }\n /* zenhub: \"#fff\", \"#fff\" */\n body.zh_logged_in .zh-issue-event-item-icon .zh-icon-issue-added,\n body.zh_logged_in .zh-issue-event-item-icon .zh-icon-issue-removed {\n border-color: #181818;\n background-color: #181818;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zh-issue-event-toggle:hover {\n color: #f0f0f0;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-issue-event-dark {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .sidebar-zh-epic .discussion-sidebar-toggle:hover,\n body.zh_logged_in .sidebar-zh-epic .zh-discussion-sidebar-toggle:hover,\n body.zh_logged_in .sidebar-zh-estimate .discussion-sidebar-toggle:hover,\n body.zh_logged_in .sidebar-zh-estimate .zh-discussion-sidebar-toggle:hover {\n color: #5560d2;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-estimate-create-item {\n border-top-color: #343434;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in a.zh-topbar-item.selected {\n border-color: #3c4992 #343434 transparent;\n }\n /* zenhub: \"none\", \"#f9826c\" */\n body.zh_logged_in .zh-topbar-item.UnderlineNav-item.selected {\n background: none;\n border-bottom-color: #fff;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus,\n body.zh_logged_in .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus.selected {\n background-color: #242424;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .zh-connect-repository-container {\n background-color: #222;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-connect-repository-container a {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-toggle-button {\n background-color: #181818;\n }\n /* zenhub: \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zh-toggle-button.selected:active,\n body.zh_logged_in .zh-toggle-button:active {\n box-shadow: inset 0 1px 3px rgba(255, 255, 255, .7);\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .horizontal-scrollbar::-webkit-scrollbar-track {\n background-color: #242424;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .horizontal-scrollbar::-webkit-scrollbar-thumb {\n background-color: #383838;\n }\n /* zenhub: \"#f5f5f5\", \"#e5e5e5\" */\n body.zh_logged_in .zh-pipeline {\n background-color: #222;\n border-color: #343434;\n }\n /* zenhub: \"#f4f5f5\", \"#e5e5e5\" */\n body.zh_logged_in .zh-pipeline-heading-container {\n background-color: #242424;\n border-bottom-color: #343434;\n }\n /* zenhub: \"box-shadow: none !important\" */\n body.zh_logged_in .zh-pipeline-heading-edit {\n box-shadow: none !important;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-power .zh-pipeline-options {\n color: #bebebe;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-pipeline-issues::-webkit-scrollbar {\n background-color: #383838;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .zh-pipeline-issues::-webkit-scrollbar-track {\n background-color: #222;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-pipeline-issues::-webkit-scrollbar-thumb {\n background-color: #383838;\n }\n /* zenhub: \"#e5e5e5\", \"#fff\" */\n body.zh_logged_in .zh-pipeline-issue-content {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#4183c4\" */\n body.zh_logged_in .zh-pipeline-issue-toggler:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* zenhub: \"#efefef\" */\n body.zh_logged_in .zh-issue-placeholder,\n body.zh_logged_in .zh-pipeline-placeholder {\n background-color: #202020;\n }\n /* zenhub: \"rgba(255,255,255,0)\" */\n body.zh_logged_in .zh-issue-meta {\n background-color: transparent;\n }\n /* zenhub: \"color: #fff\", \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zh-issue-label.dark {\n color: #fff;\n text-shadow: 0 1px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-issue-estimate-badge {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-overlay {\n background-color: #181818;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zh-overlay-body {\n color: #f0f0f0;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .new-pipeline-column {\n background-color: #181818;\n }\n /* zenhub: \"#eee\", \"color: #333\" */\n body.zh_logged_in .zh-board-menu-item .btn {\n background: linear-gradient(#fcfcfc, #242424);\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"none\" */\n body.zh_logged_in .zh-board-menu-item .btn.disabled,\n body.zh_logged_in .zh-board-menu-item .btn.disabled:hover {\n background-color: #181818;\n background-image: none;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-pipeline-collapsed .zh-pipeline-heading-container {\n border-right-color: #343434;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-pipeline-collapsed .zh-pipeline-options.zh-pipeline-icon {\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\",\"#fff\" */\n body.zh_logged_in .zh-pipeline-expanded .zh-issue-meta {\n background-image: linear-gradient(to right, transparent 90%, #181818 99%);\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in .zh-epic-filter-container .btn {\n background: linear-gradient(#fcfcfc, #242424) !important;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .search-query {\n background-color: #222;\n }\n /* zenhub: \"#fff\", \"#fff\" */\n body.zh_logged_in .search-query:focus,\n body.zh_logged_in .zh-overlay-loading-board {\n background-color: #181818;\n }\n /* zenhub: \"#fff\", \"#ddd\" */\n body.zh_logged_in .zh-board-loading-message {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-board-readonly-banner {\n color: #fff;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-markdown-body {\n color: #767676;\n }\n /* zenhub: \"#e5e5e5\", \"#f8f8f8\" */\n body.zh_logged_in .zh-milestone-dates {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"#ddd\", \"#fff\" */\n body.zh_logged_in .zh-milestone-dates .milestone-start-calendar-container {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e5e5e5\", \"#e5e5e5\" */\n body.zh_logged_in .zh-burndown-chart-container {\n border-left-color: #343434;\n border-right-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .burndown-chart-tip {\n color: #949494;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-reports .stats-container {\n border-color: #343434;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-reports .stats-item {\n border-right-color: #343434;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-reports .stats-item--issues .zh-estimate-badge-closed,\n body.zh_logged_in .zh-reports .stats-item--issues strong {\n color: #767676;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-issue-list .table-list-title {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zh-issue-list .table-list-header {\n color: #949494;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-burndown-repo-selector {\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-reports .btn {\n color: #bebebe;\n }\n /* zenhub: \"#eee\",\"#ddd\", \"color: #333\" */\n body.zh_logged_in .zh-reports .btn:hover {\n background: linear-gradient(#242424, #383838);\n color: #bebebe;\n }\n /* zenhub: \"transparent\", \"none\" */\n body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn,\n body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn:hover {\n background-color: transparent;\n background-image: none;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn.selected,\n body.zh_logged_in .zh-repo-switcher .zh-repo-switcher-btn:hover {\n background-color: #181818;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-state {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-timeline-comment {\n background-color: #181818;\n }\n /* zenhub: \"color: #586069\", \"#ddd\",\"#eee\" */\n body.zh_logged_in .zh-timeline-comment-header {\n color: #afafaf;\n border-color: #343434;\n }\n /* zenhub: \"color: #555\" */\n body.zh_logged_in .zh-timeline-comment-header-text {\n color: #afafaf;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-dependency-manager-container.TimelineItem .zhc-dependency,\n body.zh_logged_in .zh-epic-issue-container.TimelineItem .zhc-epic-issue-list,\n body.zh_logged_in .zh-epic-issue-container.TimelineItem .zhc-epic-list {\n background-color: #181818;\n }\n /* zenhub: \"#e6ebf1\" */\n body.zh_logged_in .zh-collapse-manager-container--isExpanded .discussion-item:last-child {\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zh-collapse-control-container {\n background-color: transparent;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zh-collapse-control {\n color: #5560d2;\n }\n /* zenhub: \"#e5e5e5\", \"#fff\" */\n body.zh_logged_in .zh-collapse-control:hover,\n body.zh_logged_in .zh-collapse-control__main-icon,\n body.zh_logged_in .zh-issuecard-container {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#efefef\" */\n body.zh_logged_in .zh-issuecard-placeholder {\n background-color: #202020;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-issuecard-avatar-container .zh-issuecard-assignees {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-pipeline-action,\n body.zh_logged_in .zh-pipeline-issue-action {\n background-color: #181818;\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in .zh-pipeline-action:hover,\n body.zh_logged_in .zh-pipeline-issue-action:hover {\n background-color: #242424;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-issuecard-meta {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #fff\", \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zh-issuecard-label.dark {\n color: #fff;\n text-shadow: 0 1px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-top-banner, body.zh_logged_in .zh-top-banner a {\n color: #fff;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zh-merge-repository-body {\n background-color: transparent;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-merge-repository-body .zh-open-cross-organization-btn {\n color: #767676;\n }\n /* zenhub: \"#0366d6\" */\n body.zh_logged_in .zh-merge-repository-body .zh-open-cross-organization-btn:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-mergetool-pipelines-dialog {\n background-color: #181818;\n }\n /* zenhub: \"#f5f5f5\", \"color: #333\" */\n body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-mergetool-info {\n background-color: #222;\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"color: #333\" */\n body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline {\n background-color: #181818;\n color: #bebebe;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline-target {\n background-color: #222;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-source-pipeline-placeholder,\n body.zh_logged_in .zh-mergetool-pipelines-dialog .zh-miniboard-wrapper .zh-miniboard-pipeline-target.zh-miniboard-new-pipeline {\n background-color: #181818;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .btn.zh-multi-repo-show-all-btn,\n body.zh_logged_in .btn.zh-multi-repo-show-one-btn {\n background-image: none;\n }\n /* zenhub: \"#fff\", \"none\" */\n body.zh_logged_in .btn.zh-multi-repo-show-all-btn:hover,\n body.zh_logged_in .btn.zh-multi-repo-show-one-btn:hover {\n background-color: #181818;\n background-image: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-select-menu-modal-body .zh-select-menu-modal {\n background-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-onboarding-highlighted,\n body.zh_logged_in .zhe .zh-onboarding-highlighted {\n background-color: #181818 !important;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zhe .zh-onboarding-highlighted .header-nav-link {\n color: #f0f0f0;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zh-onboarding-modal {\n background-color: #181818;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-onboarding-modal__title {\n color: #bebebe;\n }\n /* zenhub: \"none\", \"color: #fff\" */\n body.zh_logged_in .zh-onboarding-modal__buttons .btn.btn--onboarding-cta {\n background-image: none;\n color: #fff;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .zh-epic-issue-header {\n color: #afafaf;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-epic-issue-header-title,\n body.zh_logged_in .zh-epic-issue-header strong {\n color: #bebebe;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .zh-epic-issue-progress-text {\n color: #afafaf;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-epic-issue-progress-text strong {\n color: #bebebe;\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in .zh-select-menu-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#0366d6\", \"color: #fff\" */\n body.zh_logged_in .zh-select-menu-item.navigation-focus,\n body.zh_logged_in .zh-select-menu-item:hover {\n background-color: /*[[base-color]]*/;\n color: #fff;\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .zh-select-menu-header {\n background-color: #242424;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-select-menu-header .zh-select-menu-title {\n color: #bebebe;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .zh-discussion-sidebar-heading {\n color: #afafaf;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zh-discussion-sidebar-toggle {\n background: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zh-discussion-sidebar-toggle:hover .zhc-svg-icon--extension {\n color: #5560d2;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .zh-select-menu-footer {\n background-color: #222;\n }\n /* zenhub: \"color: #666\", \"#fff\", \"rgba(0,0,0,0.15)\" */\n body.zh_logged_in .zh-select-menu-modal {\n color: #949494;\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zh-select-menu-filters {\n background-color: #202020;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-select-menu-text-filter {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-select-menu-text-filter input {\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-reload-update-prompt-container {\n background-color: #181818;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .zh-reload-update-prompt-content {\n color: #afafaf;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-issue-counter {\n background-color: #383838;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-progress-bar__completed {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-d3-tooltip .zh-tooltip-content,\n body.zh_logged_in .zh-tooltip {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-creator-page-visible .zh-epic-creator-container--fullscreen {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-epic-header .zh-estimate-is,\n body.zh_logged_in .zh-epic-header .zh-estimate-was,\n body.zh_logged_in .zh-epic-header .zh-issue,\n body.zh_logged_in .zh-epic-header .zh-pipeline-is,\n body.zh_logged_in .zh-epic-header .zh-pipeline-was {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-issue-list-item-md,\n body.zh_logged_in .zh-epic-issue-list-item-sm {\n background-color: #181818;\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .zh-epic-issue-list-item-md:hover {\n background-color: #242424;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-issue-list-item-lg {\n background-color: #181818;\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .zh-epic-issue-list-item-lg:hover {\n background-color: #242424;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zh-epic-issue-list-item-title-link {\n color: #bebebe;\n }\n /* zenhub: \"#0366d6\" */\n body.zh_logged_in .zh-epic-issue-list-item-title-link:hover {\n color: /*[[base-color]]*/;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-epic-issue-label.dark {\n color: #fff;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-epic-issue-list-item-number,\n body.zh_logged_in .zh-epic-issue-list-item-status {\n color: #767676;\n }\n /* zenhub: \"#ddd\", \"#f4f4f4\" */\n body.zh_logged_in .zh-pipeline-badge-light {\n background-color: #383838;\n background-color: #242424;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-pipeline-badge {\n background-color: #383838;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-epic-creator-header-label {\n color: #767676;\n }\n /* zenhub: \"#0366d6\" */\n body.zh_logged_in .zh-epic-creator-header-repo a {\n color: /*[[base-color]]*/;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-creator-title input {\n background-color: #181818;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zh-epic-creator-nav {\n border-bottom-color: #343434;\n }\n /* zenhub: \"initial\", \"color: #000\" */\n body.zh_logged_in .zh-epic-creator-tab {\n background-color: initial;\n color: #f0f0f0;\n }\n /* zenhub: \"#fff\", \"#ddd\", \"#fff\" */\n body.zh_logged_in .zh-epic-creator-tab.selected {\n background-color: #181818;\n border-color: #3e4b9e #343434 #181818;\n }\n /* zenhub: \"color: #333\", \"#f6f8fa\", \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zh-epic-creator-issue-list .zh-epic-creator-issue-list-not-in-workspace {\n color: #bebebe;\n background-color: #222;\n border-bottom-color: #343434;\n border-top-color: #343434;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-progress-title {\n color: #767676;\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in .zh-epic-creator-progress-bar {\n background-color: #242424;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-epic-creator-empty span {\n color: #767676;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zh-epic-creator-placeholder-bottom a {\n color: #949494;\n }\n /* zenhub: \"#eee\" */\n body.zh_logged_in .zh-board-menu {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-new-issue-button {\n color: #fff;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-epic-pipeline-selector-name {\n color: #767676;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-epic-issues-picker-new-issue {\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-picker-issue-placeholder:hover {\n background-color: #181818;\n }\n /* zenhub: \"#e5e5e5\" */\n body.zh_logged_in .zh-epic-issue-list-container,\n body.zh_logged_in .zh-epic-issue-list-footer {\n border-color: #343434;\n }\n /* zenhub: \"color: #767676\" */\n body.zh_logged_in .zh-epic-issue-list-empty span {\n color: #767676;\n }\n /* zenhub: \"color: #fff\", \"#eee\" */\n body.zh_logged_in .zh-epic-btn {\n color: #fff;\n background-color: #242424;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zh-epic-btn:active {\n background-image: none;\n }\n /* zenhub: \"color: #333\", \"#ddd\" */\n body.zh_logged_in .zh-epic-form-control,\n body.zh_logged_in .zh-epic-form-control-small {\n color: #bebebe;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-epic-form-control-small:focus,\n body.zh_logged_in .zh-epic-form-control:focus {\n background-color: #181818;\n }\n /* zenhub: \"rgba(27,31,35,0.2)\", \"color: #24292e\", \"#eff3f6\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn {\n border-color: rgba(220, 220, 220, .2);\n color: #cdcdcd;\n background-color: #242424;\n }\n /* zenhub: \"#e6ebf1\", \"#e6ebf1\", \"rgba(27,31,35,0.35)\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn:hover {\n background-color: #444;\n background-image: linear-gradient(-180deg, #f0f3f6 0%, #444 90%);\n border-color: rgba(220, 220, 220, .35);\n }\n /* zenhub: \"#e9ecef\", \"none\", \"rgba(27,31,35,0.35)\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn:active {\n background-color: #404040;\n background-image: none;\n border-color: rgba(220, 220, 220, .35);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* zenhub: \"color: #fff\", \"#28a745\", \"#34d058\",\"#28a745\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn-primary {\n color: #fff;\n background-color: #484;\n background-image: linear-gradient(-180deg, #373 0%, #484 90%);\n }\n /* zenhub: \"#269f42\", \"#2fcb53\",\"#269f42\", \"rgba(27,31,35,0.5)\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn-primary:hover {\n background-color: #595;\n background-image: linear-gradient(-180deg, #373 0%, #595 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* zenhub: \"#279f43\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .btn-primary:active {\n background-color: #595;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* zenhub: \"#f6f8fa\", \"#e1e4e8\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .table-list-header {\n background-color: #222;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus,\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus.selected {\n background-color: #242424;\n }\n /* zenhub: \"#f5f5f5\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .search-query {\n background-color: #222;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-webapp.zh-epic-creator-page-visible .search-query:focus {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-estimate-badge {\n color: #fff;\n }\n /* zenhub: \"color: #fff\", \"transparent\" */\n body.zh_logged_in .zh-estimate-badge-closed {\n color: #fff;\n background-color: transparent;\n }\n /* zenhub: \"color: #fff\", \"#ddd\", \"#ddd\" */\n body.zh_logged_in .zh-estimate-badge--epic-points {\n color: #fff;\n background-color: #383838;\n border-color: #343434;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zh-badge-value {\n color: #f0f0f0;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .PresetDateRangePicker_button__selected {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .SingleDatePicker_picker,\n body.zh_logged_in .SingleDatePicker_picker__fullScreenPortal,\n body.zh_logged_in .SingleDatePickerInput {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .DayPickerKeyboardShortcuts_showSpan {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .CalendarDay__default,\n body.zh_logged_in .DayPickerKeyboardShortcuts_panel {\n background-color: #181818;\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .CalendarDay__hovered_offset {\n background-color: #242424;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .CalendarDay__blocked_minimum_nights,\n body.zh_logged_in .CalendarDay__blocked_minimum_nights:active,\n body.zh_logged_in .CalendarDay__blocked_minimum_nights:hover,\n body.zh_logged_in .CalendarDay__outside {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .CalendarDay__selected,\n body.zh_logged_in .CalendarDay__selected:active,\n body.zh_logged_in .CalendarDay__selected:hover,\n body.zh_logged_in .CalendarDay__selected_span,\n body.zh_logged_in .CalendarDay__selected_span:active,\n body.zh_logged_in .CalendarDay__selected_span:hover {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .CalendarDay__blocked_out_of_range,\n body.zh_logged_in .CalendarDay__blocked_out_of_range:active,\n body.zh_logged_in .CalendarDay__blocked_out_of_range:hover,\n body.zh_logged_in .CalendarMonth, body.zh_logged_in .CalendarMonthGrid,\n body.zh_logged_in .DayPicker, body.zh_logged_in .DayPicker__horizontal,\n body.zh_logged_in .DayPickerNavigation_button__default,\n body.zh_logged_in .DayPickerNavigation_button__verticalDefault {\n background-color: #181818;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .DayPicker_portal__horizontal {\n box-shadow: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .DateInput, body.zh_logged_in .DateInput_input,\n body.zh_logged_in .DateInput_input__focused,\n body.zh_logged_in .DateRangePicker_picker,\n body.zh_logged_in .DateRangePicker_picker__fullScreenPortal,\n body.zh_logged_in .DateRangePickerInput,\n body.zh_logged_in .DayPicker_weekHeader__verticalScrollable {\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-markdown a {\n color: #5560d2;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-markdown h1, body.zh_logged_in .zhc-markdown h2 {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-markdown hr {\n background-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-markdown blockquote {\n border-left-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-markdown table td,\n body.zh_logged_in .zhc-markdown table th,\n body.zh_logged_in .zhc-markdown table tr {\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-markdown table tr {\n background-color: #181818;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-markdown pre code {\n background-color: transparent;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-markdown img {\n background-color: #181818;\n }\n /* zenhub: \"color: #444d56\", \"#c6cbd1\", \"#959da5\", \"box-shadow: inset 0 -1px 0 #959da5\" */\n body.zh_logged_in .zhc-markdown kbd {\n color: #afafaf;\n border-color: #5a5a5a #5a5a5a #484848;\n box-shadow: inset 0 -2px 0 #383838;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in img.gh-emoji {\n background-color: transparent;\n }\n /* zenhub: \"color: #333\", \"#f8f8f8\" */\n body.zh_logged_in .hljs {\n color: #bebebe;\n background-color: #202020;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .hljs-keyword, body.zh_logged_in .hljs-selector-tag,\n body.zh_logged_in .hljs-subst {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"color: #333\" */\n body.zh_logged_in .zhc-btn {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn, body.zh_logged_in .zhc-btn.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn[disabled],\n body.zh_logged_in .zhc-btn[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn[disabled]:active,\n body.zh_logged_in .zhc-btn[disabled]:focus,\n body.zh_logged_in .zhc-btn[disabled]:hover {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn:active, body.zh_logged_in .zhc-btn:focus,\n body.zh_logged_in .zhc-btn:hover {\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn:active {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-btn .zhc-btn__tag {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--default,\n body.zh_logged_in .zhc-btn--default.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--default.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--default.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--default[disabled],\n body.zh_logged_in .zhc-btn--default[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--default[disabled]:active,\n body.zh_logged_in .zhc-btn--default[disabled]:focus,\n body.zh_logged_in .zhc-btn--default[disabled]:hover {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn--default.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--default:active,\n body.zh_logged_in .zhc-btn--default:focus,\n body.zh_logged_in .zhc-btn--default:hover {\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--default.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--default:active {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-btn--action {\n color: #fff;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--action.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--action.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--action.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--action.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--action.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--action[disabled],\n body.zh_logged_in .zhc-btn--action[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--action[disabled]:active,\n body.zh_logged_in .zhc-btn--action[disabled]:focus,\n body.zh_logged_in .zhc-btn--action[disabled]:hover {\n background-color: #343434;\n }\n /* zenhub: \"color: #fff\", \"none\" */\n body.zh_logged_in .zhc-btn--danger {\n color: #fff;\n background-image: none !important;\n }\n /* zenhub: \"#fff\", \"none\" */\n body.zh_logged_in .zhc-btn--danger-bordered {\n background-color: #181818;\n background-image: none !important;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--danger-bordered.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--danger-bordered:active,\n body.zh_logged_in .zhc-btn--danger-bordered:focus,\n body.zh_logged_in .zhc-btn--danger-bordered:hover,\n body.zh_logged_in .zhc-btn--danger-bordered[disabled],\n body.zh_logged_in .zhc-btn--danger-bordered[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--danger-bordered[disabled]:active,\n body.zh_logged_in .zhc-btn--danger-bordered[disabled]:focus,\n body.zh_logged_in .zhc-btn--danger-bordered[disabled]:hover {\n background-color: #181818;\n }\n /* zenhub: \"rgba(0,0,0,0)\" */\n body.zh_logged_in .zhc-btn--minimal,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--minimal.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--minimal:active,\n body.zh_logged_in .zhc-btn--minimal:focus,\n body.zh_logged_in .zhc-btn--minimal:hover,\n body.zh_logged_in .zhc-btn--minimal[disabled],\n body.zh_logged_in .zhc-btn--minimal[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--minimal[disabled]:active,\n body.zh_logged_in .zhc-btn--minimal[disabled]:focus,\n body.zh_logged_in .zhc-btn--minimal[disabled]:hover {\n background-color: transparent;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-btn--primary {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--primary.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--primary.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--primary.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--primary.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--primary.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--primary[disabled],\n body.zh_logged_in .zhc-btn--primary[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--primary[disabled]:active,\n body.zh_logged_in .zhc-btn--primary[disabled]:focus,\n body.zh_logged_in .zhc-btn--primary[disabled]:hover {\n background-color: #5560d2;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\", \"#fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-btn--primary-bordered {\n color: #5560d2;\n }\n /* zenhub: \"#fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-btn--primary-bordered,\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--primary-bordered[disabled],\n body.zh_logged_in .zhc-btn--primary-bordered[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--primary-bordered[disabled]:active,\n body.zh_logged_in .zhc-btn--primary-bordered[disabled]:focus,\n body.zh_logged_in .zhc-btn--primary-bordered[disabled]:hover {\n background-color: #181818;\n border-color: #5560d2;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn--primary-bordered.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--primary-bordered:active,\n body.zh_logged_in .zhc-btn--primary-bordered:focus,\n body.zh_logged_in .zhc-btn--primary-bordered:hover {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\", \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--secondary {\n color: #949494;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--secondary,\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--secondary[disabled],\n body.zh_logged_in .zhc-btn--secondary[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary[disabled]:active,\n body.zh_logged_in .zhc-btn--secondary[disabled]:focus,\n body.zh_logged_in .zhc-btn--secondary[disabled]:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--secondary.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary:active,\n body.zh_logged_in .zhc-btn--secondary:focus,\n body.zh_logged_in .zhc-btn--secondary:hover {\n background-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"color: #666\", \"transparent\" */\n body.zh_logged_in .zhc-btn--secondary-bordered {\n background-color: #181818;\n border-color: #343434;\n color: #949494;\n background-color: transparent;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled],\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:active,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:hover {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered:active,\n body.zh_logged_in .zhc-btn--secondary-bordered:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered:hover {\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered:active {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered:active,\n body.zh_logged_in .zhc-btn--secondary-bordered:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered:hover {\n background-color: #202020;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled],\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:active,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:focus,\n body.zh_logged_in .zhc-btn--secondary-bordered[disabled]:hover {\n background-color: transparent;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--topbar:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-btn--text {\n background-color: transparent !important;\n }\n /* zenhub: \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-btn--text.zhc-btn--disabled,\n body.zh_logged_in .zhc-btn--text.zhc-btn--disabled.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--text.zhc-btn--disabled:active,\n body.zh_logged_in .zhc-btn--text.zhc-btn--disabled:focus,\n body.zh_logged_in .zhc-btn--text.zhc-btn--disabled:hover,\n body.zh_logged_in .zhc-btn--text[disabled],\n body.zh_logged_in .zhc-btn--text[disabled].zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--text[disabled]:active,\n body.zh_logged_in .zhc-btn--text[disabled]:focus,\n body.zh_logged_in .zhc-btn--text[disabled]:hover {\n background-color: transparent !important;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-btn--text-primary {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-btn--text-secondary-dark {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-btn--border-hover-only.zhc-btn--is-active,\n body.zh_logged_in .zhc-btn--border-hover-only:active,\n body.zh_logged_in .zhc-btn--border-hover-only:focus,\n body.zh_logged_in .zhc-btn--border-hover-only:hover,\n body.zh_logged_in .zhc-confirm-dialog {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-confirm-dialog__actions .zhc-btn--text {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\" */\n body.zh_logged_in .zhc-confirm-dialog__footer {\n border-top-color: #343434;\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-input {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-input--disabled {\n background-color: #242424;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-input--error:focus {\n box-shadow: none;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhu-blankslate {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhu-checkbox {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhu-checkbox:checked {\n background-color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhu-checkbox:checked::after {\n color: #fff;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhu-checkbox:focus {\n box-shadow: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhu-color-brand {\n color: #5560d2 !important;\n }\n /* zenhub: \"color: #333 !important\" */\n body.zh_logged_in .zhu-color-text {\n color: #bebebe !important;\n }\n /* zenhub: \"color: #666 !important\" */\n body.zh_logged_in .zhu-color-text-secondary-dark {\n color: #949494 !important;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhu-panel {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhu-tag-default {\n background-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhu-text-important {\n color: #bebebe;\n }\n /* zenhub: \"color: #fff !important\" */\n body.zh_logged_in .zhu-text-light {\n color: #fff !important;\n }\n /* zenhub: \"color: #666 !important\" */\n body.zh_logged_in .zhu-text-secondary-dark {\n color: #949494 !important;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-account-details__section {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-account-details__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-account-details__item--edit input {\n background-color: #242424;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-account-details__item--edit__info-message {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-account-details__banner-action {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-billing-history__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-billing-history__item:first-child {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-cancel-subscription-modal {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__cancellation-reason {\n color: #bebebe;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__missing-features {\n background-color: #202020;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__missing-features__feature .zhu-checkbox:not(:checked) {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__feedback,\n body.zh_logged_in .zhc-cancel-subscription-modal__note {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__other-comments__input {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-cancel-subscription-modal__warning,\n body.zh_logged_in .zhc-cancel-subscription-page__text {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-remove-licenses {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-remove-licenses__section {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-remove-licenses__subtext {\n color: #949494;\n }\n /* zenhub: \"color: #666\", \"#e9e9e9\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-remove-licenses__quantity {\n color: #949494;\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-remove-licenses__num-to-remove {\n color: #5560d2;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zhc-account-settings__section {\n background-color: #181818;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-account-settings__section h3,\n body.zh_logged_in .zhc-account-settings__section strong {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-account-settings__link {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-account-settings__link .zhu-panel {\n border-top-color: #343434;\n }\n /* zenhub: \"#fcf9e4\", \"#faebcc\" */\n body.zh_logged_in .zhc-account-settings__summary--warning {\n background-color: #261d08;\n border-color: #261d08;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-account-settings__banner-action {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-account-settings__icon {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-organization-admin-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-organization-admin-item__username {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\", \"color: #fff\" */\n body.zh_logged_in .zhc-organization-admin-item__admin-tag {\n background-color: #5560d2;\n color: #fff;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-beta-tag {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-avatar {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-badge {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"transparent\", \"#5e60ba\", \"#5e60ba\" */\n body.zh_logged_in .zhc-badge--estimate-closed {\n background-color: transparent;\n color: #5560d2;\n border-color: #5560d2;\n }\n /* zenhub: \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-badge--estimate-average {\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-badge--issue-count {\n background-color: #383838;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-badge--epic-points {\n background-color: transparent;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zhc-badge--epic-points .zhc-badge__value {\n color: #f0f0f0;\n }\n /* zenhub: \"color: #666\", \"#fcf9e4\", \"#faebcc\" */\n body.zh_logged_in .zhc-banner {\n color: #949494;\n background-color: #261d08;\n border-color: #261d08;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-banner strong {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-banner--neutral {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-board-loading__pipeline-section {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\", \"#fff\", \"#e9e9e9\", \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-board-loading__message {\n color: #949494;\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-board-loading__message .zhc-spinner-outline {\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-breadcrumbs--default .zhc-breadcrumbs__button--active,\n body.zh_logged_in .zhc-breadcrumbs--default .zhc-breadcrumbs__button:hover {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#f4f4f4\" */\n body.zh_logged_in .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button:hover {\n border-color: #343434;\n background-color: #242424;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button.zhc-breadcrumbs__button--untitled-workspace:hover {\n background-color: transparent;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button--active {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#ccc\", \"color: #fff\" */\n body.zh_logged_in .zhc-breadcrumbs__button__untitled-tag {\n background-color: #484848;\n color: #fff;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-breadcrumbs__divider {\n color: #949494;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-breadcrumbs--workspace-phase-3-off.zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button:hover {\n background-color: transparent;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-burndown-chart__placeholder {\n background-color: #181818;\n }\n /* zenhub: \"#fff\", \"#ddd\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-burndown-chart__placeholder__message {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-burndown-chart__stats {\n border-left-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-burndown-chart__stats:first-child {\n border-bottom-color: #343434;\n }\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-burndown-chart__stats__detail strong {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-burndown-report-header__divider-icon {\n color: #949494;\n }\n /* zenhub: \"color: #333\", \"#e9e9e9\", \"color: #fff\", \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button {\n color: #fff;\n background-color: #181818;\n border-color: #343434;\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button:active, body.zh_logged_in .zhc-button:focus,\n body.zh_logged_in .zhc-button:hover {\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button[disabled],\n body.zh_logged_in .zhc-button[disabled]:active,\n body.zh_logged_in .zhc-button[disabled]:focus,\n body.zh_logged_in .zhc-button[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"color: #333\", \"transparent\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button.zhc-button--variant-text {\n color: #bebebe;\n background-color: transparent;\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled],\n body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:active,\n body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:focus,\n body.zh_logged_in .zhc-button.zhc-button--variant-text[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"color: #333\", \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button.zhc-button--variant-text:active,\n body.zh_logged_in .zhc-button.zhc-button--variant-text:hover {\n color: #bebebe;\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button.zhc-button--variant-text:focus {\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-button--color-primary {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-primary[disabled],\n body.zh_logged_in .zhc-button--color-primary[disabled]:active,\n body.zh_logged_in .zhc-button--color-primary[disabled]:focus,\n body.zh_logged_in .zhc-button--color-primary[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#5e60ba\", \"transparent\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text {\n color: #5560d2;\n background-color: transparent;\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled],\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:active,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:focus,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text:active,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text:focus,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-text:hover {\n background-color: transparent;\n }\n /* zenhub: \"#fff\", \"#5e60ba\", \"#5e60ba\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined {\n background-color: #181818;\n color: #5560d2;\n border-color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled],\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:active,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:focus,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:active,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:focus,\n body.zh_logged_in .zhc-button--color-primary.zhc-button--variant-outlined:hover {\n background-color: #181818;\n border-color: #5560d2;\n }\n /* zenhub: \"color: #fff\", \"#f8f8f8\", \"#e9e9e9\", \"color: #666\" */\n body.zh_logged_in .zhc-button--color-secondary {\n color: #fff;\n background-color: #202020;\n border-color: #343434;\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-button--color-secondary:active,\n body.zh_logged_in .zhc-button--color-secondary:focus,\n body.zh_logged_in .zhc-button--color-secondary:hover {\n background-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-secondary[disabled],\n body.zh_logged_in .zhc-button--color-secondary[disabled]:active,\n body.zh_logged_in .zhc-button--color-secondary[disabled]:focus,\n body.zh_logged_in .zhc-button--color-secondary[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"color: #666\", \"transparent\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text {\n color: #949494;\n background-color: transparent;\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled],\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:active,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:focus,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"color: #333\", \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text:active,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text:hover {\n color: #bebebe;\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-text:focus {\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"#fff\", \"color: #333\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined {\n background-color: #181818;\n color: #bebebe;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled],\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:active,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:focus,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:active,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:focus,\n body.zh_logged_in .zhc-button--color-secondary.zhc-button--variant-outlined:hover {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-button--color-action {\n color: #fff;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-action[disabled],\n body.zh_logged_in .zhc-button--color-action[disabled]:active,\n body.zh_logged_in .zhc-button--color-action[disabled]:focus,\n body.zh_logged_in .zhc-button--color-action[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"transparent\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text {\n background-color: transparent;\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled],\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:active,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:focus,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text:active,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text:focus,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-text:hover {\n background-color: transparent;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined {\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled],\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:active,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:focus,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:active,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:focus,\n body.zh_logged_in .zhc-button--color-action.zhc-button--variant-outlined:hover {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-button--color-danger {\n color: #fff;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-danger[disabled],\n body.zh_logged_in .zhc-button--color-danger[disabled]:active,\n body.zh_logged_in .zhc-button--color-danger[disabled]:focus,\n body.zh_logged_in .zhc-button--color-danger[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"transparent\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text {\n background-color: transparent;\n box-shadow: none;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled],\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:active,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:focus,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text:active,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text:focus,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-text:hover {\n background-color: transparent;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined {\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled],\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:active,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:focus,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:hover {\n background-color: #202020;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:active,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:focus,\n body.zh_logged_in .zhc-button--color-danger.zhc-button--variant-outlined:hover {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\", \"#fff\", \"#e9e9e9\", \"color: #333\", \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-button--color-inactive {\n color: #fff;\n background-color: #181818;\n color: #bebebe;\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-button--color-inactive:active,\n body.zh_logged_in .zhc-button--color-inactive:focus,\n body.zh_logged_in .zhc-button--color-inactive:hover {\n background-color: #181818;\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-button-group > * {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-cancellation-notice__text {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-container {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-container__header {\n background-color: #242424;\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-chart-container__info-toggle {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-container__footer {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-legend__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-chart-legend__item:nth-child(even) {\n border-left-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 760px) and (max-width: 1019px) {\n body.zh_logged_in .zhc-chart-legend__item:not(:nth-child(4n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-chart-legend__item:not(:nth-child(5n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-chart-legend__item-icon.line {\n background-color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-stats__stat {\n border-right-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-info__wrapper {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-chart-info__close {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-legend::after {\n background-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-legend .zhc-dropdown,\n body.zh_logged_in .zhc-chart-legend display flex {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-chart-legend .zhc-dropdown:nth-child(odd),\n body.zh_logged_in .zhc-chart-legend display flex:nth-child(odd) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 760px) and (max-width: 1019px) {\n body.zh_logged_in .zhc-chart-legend .zhc-dropdown:not(:nth-child(4n)),\n body.zh_logged_in .zhc-chart-legend display flex:not(:nth-child(4n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-chart-legend .zhc-dropdown:not(:nth-child(5n)),\n body.zh_logged_in .zhc-chart-legend display flex:not(:nth-child(5n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"none\", \"#fff\" */\n body.zh_logged_in .zhc-chart-legend .zhc-dropdown .zhc-selection-button {\n background-image: none;\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-chart-legend-icon--line {\n background-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-chart-legend-icon--dashed {\n border-bottom-color: #5560d2;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-chart-legend-icon--check::after {\n border-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-chart-legend-icon--disabled {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-legend__labels {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-chart-legend__labels--notselected {\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-chart-legend__labels:nth-child(odd) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 760px) and (max-width: 1019px) {\n body.zh_logged_in .zhc-chart-legend__labels:not(:nth-child(4n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-chart-legend__labels:not(:nth-child(5n)) {\n border-right-color: #343434;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-chart-legend__labels-label-item:hover {\n background-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-chart-legend__labels-x {\n color: #949494;\n }\n /* zenhub: \"rgba(0,0,0,0.8)\" */\n body.zh_logged_in .zhc-chart-tooltip {\n background-color: #242424;\n }\n /* zenhub: \"#ccc\" */\n body.zh_logged_in .zhc-checkbox-toggle::before {\n background-color: #484848;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-checkbox-toggle::after {\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\", \"#5e60ba\" */\n body.zh_logged_in .zhc-checkbox-toggle--is-active::before {\n background-color: #5560d2;\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkbox-toggle--is-active::after {\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\",\"#fff\" */\n body.zh_logged_in .zhc-checkout-box__title input[type=\"radio\"] {\n box-shadow: 0 0 0 1px #5560d2, inset 0 0 0 3px #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__title input[type=\"radio\"]:checked {\n background-color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-checkout-box__input {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__input input {\n color: #5560d2;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-checkout-box__input input:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-checkout-box__input-button {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__update-quantity__content input {\n color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__update-quantity__input {\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__important-info,\n body.zh_logged_in .zhc-checkout-box__price {\n color: #5560d2;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-checkout-box__plan--active {\n background-color: #242424;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-checkout-box__meta {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-checkout-box__save-check {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-checkout-box__cancel,\n body.zh_logged_in .zhc-checkout-box__card-number {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\", \"color: #fff\" */\n body.zh_logged_in .zhc-chip {\n background-color: #5560d2;\n color: #fff;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-chip--outlined {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-choose-organization {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-choose-organization__section + .zhc-choose-organization__section {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#5e60ba\" */\n body.zh_logged_in .zhc-choose-organization__learn-more {\n border-top-color: #343434;\n color: #5560d2;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-organization-item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-organization-item__content .zhc-avatar {\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-organization-item__name {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-organization-item__personal {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-click-text-item {\n color: #5560d2;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-collapsible__content {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-collapsible-control {\n color: #5560d2;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-collapsible-control--button {\n background-color: transparent;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-collapsible-control:hover.zhc-collapsible-control--grey:not(.zhc-collapsible-control--border) {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-collapsible-control:hover.zhc-collapsible-control--border {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-collapsible-control {\n border-color: #343434;\n background-color: #181818;\n }\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-collapsible-control__main-icon {\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"color: #333\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-confetti-announcement {\n background-color: #181818;\n color: #bebebe;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-confetti-announcement .zhc-confetti-announcement__close:hover {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-confirmation-modal {\n background-color: #181818;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zhc-consent-form {\n background: #181818 url(\"data:image/svg+xml;charset=utf-8,%3C?xml version=%221.0%22 encoding=%22UTF-8%22?%3E %3Csvg width=%22834px%22 height=%22828px%22 viewBox=%220 0 834 828%22 version=%221.1%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22%3E %3Ctitle%3EHeader Content%3C/title%3E %3Cdefs%3E %3Cfilter x=%22-21.1%25%22 y=%22-21.3%25%22 width=%22142.1%25%22 height=%22142.5%25%22 filterUnits=%22objectBoundingBox%22 id=%22filter-1%22%3E %3CfeOffset dx=%220%22 dy=%220%22 in=%22SourceAlpha%22 result=%22shadowOffsetOuter1%22%3E%3C/feOffset%3E %3CfeGaussianBlur stdDeviation=%2235%22 in=%22shadowOffsetOuter1%22 result=%22shadowBlurOuter1%22%3E%3C/feGaussianBlur%3E %3CfeColorMatrix values=%220 0 0 0 0.0745098039 0 0 0 0 0.152941176 0 0 0 0 0.894117647 0 0 0 0.4 0%22 type=%22matrix%22 in=%22shadowBlurOuter1%22 result=%22shadowMatrixOuter1%22%3E%3C/feColorMatrix%3E %3CfeMerge%3E %3CfeMergeNode in=%22shadowMatrixOuter1%22%3E%3C/feMergeNode%3E %3CfeMergeNode in=%22SourceGraphic%22%3E%3C/feMergeNode%3E %3C/feMerge%3E %3C/filter%3E %3Cpath d=%22M358.656073,626.31342 C629.288262,598.927399 641.075125,280.234604 634.803507,85.4856777 C628.53189,-109.263248 498.056199,85.4856777 308.547968,117.999862 C119.039736,150.514046 4.54747351e-13,227.770029 4.54747351e-13,370.030172 C4.54747351e-13,512.290315 88.0238831,653.699442 358.656073,626.31342 Z%22 id=%22path-2%22%3E%3C/path%3E %3ClinearGradient x1=%2280.026983%25%22 y1=%2247.8317812%25%22 x2=%229.58568632%25%22 y2=%2255.1671395%25%22 id=%22linearGradient-4%22%3E %3Cstop stop-color=%22%235F7EFC%22 offset=%220%25%22%3E%3C/stop%3E %3Cstop stop-color=%22%237000E3%22 offset=%22100%25%22%3E%3C/stop%3E %3C/linearGradient%3E %3ClinearGradient x1=%2292.3736583%25%22 y1=%2255.3637741%25%22 x2=%2217.4842397%25%22 y2=%2250%25%22 id=%22linearGradient-5%22%3E %3Cstop stop-color=%22%23926BFF%22 offset=%220%25%22%3E%3C/stop%3E %3Cstop stop-color=%22%232041F4%22 offset=%22100%25%22%3E%3C/stop%3E %3C/linearGradient%3E %3ClinearGradient x1=%2296.8812482%25%22 y1=%2248.866548%25%22 x2=%220%25%22 y2=%2258.8238281%25%22 id=%22linearGradient-6%22%3E %3Cstop stop-color=%22%236341FA%22 offset=%220%25%22%3E%3C/stop%3E %3Cstop stop-color=%22%23674BF6%22 offset=%22100%25%22%3E%3C/stop%3E %3C/linearGradient%3E %3ClinearGradient x1=%2296.8812482%25%22 y1=%2249.1349627%25%22 x2=%220%25%22 y2=%2256.7342422%25%22 id=%22linearGradient-7%22%3E %3Cstop stop-color=%22%236341FA%22 offset=%220%25%22%3E%3C/stop%3E %3Cstop stop-color=%22%23674BF6%22 offset=%22100%25%22%3E%3C/stop%3E %3C/linearGradient%3E %3C/defs%3E %3Cg id=%22Sign-Up-workflow_Updated%22 stroke=%22none%22 stroke-width=%221%22 fill=%22none%22 fill-rule=%22evenodd%22%3E %3Cg id=%22W2.-GDPR-Privacy---Default%22 transform=%22translate(-739.000000, -6.000000)%22%3E %3Cg id=%22Privacy-Popup%22 transform=%22translate(455.000000, 102.000000)%22%3E %3Cg id=%22GDPR-Background%22%3E %3Cg id=%22Header-Content%22 transform=%22translate(383.000000, 3.000000)%22%3E %3Cg id=%22Group-Copy%22 filter=%22url(%23filter-1)%22%3E %3Cmask id=%22mask-3%22 fill=%22white%22%3E %3Cuse xlink:href=%22%23path-2%22%3E%3C/use%3E %3C/mask%3E %3Cuse id=%22Oval-7-Copy-5%22 fill=%22%236450F0%22 xlink:href=%22%23path-2%22%3E%3C/use%3E %3Cpath d=%22M454.906792,357.964338 C454.811253,215.601768 320.992938,174.447035 240.642945,157.044132 C202.757297,148.838527 163.787752,165.863729 130.360393,181.698548 C82.969362,204.148076 152.168249,305.594803 273.862803,303.211032 C395.557357,300.827262 454.950337,422.90292 454.906792,357.964338 Z%22 id=%22Oval-7-Copy-2%22 fill=%22url(%23linearGradient-4)%22 opacity=%220.717787591%22 mask=%22url(%23mask-3)%22 transform=%22translate(285.115365, 265.964877) rotate(-47.000000) translate(-285.115365, -265.964877) %22%3E%3C/path%3E %3Cpath d=%22M0.192642619,390.372313 C36.8588979,428.54067 70.6617568,447.914702 101.601219,448.494409 C167.285755,449.725128 213.154513,419.921551 268.383261,416.786279 C330.062705,413.284809 384.057302,425.86761 414.078788,448.494409 C465.25722,487.066919 421.657847,520.417185 421.657847,565.575204 C421.657847,595.68055 433.928981,618.957686 458.47125,635.406611 L0.192642619,635.406611 L0.192642619,390.372313 Z%22 id=%22Rectangle-3%22 fill=%22url(%23linearGradient-5)%22 mask=%22url(%23mask-3)%22%3E%3C/path%3E %3Cpath d=%22M6.37154986,493.286123 C25.4843023,479.088826 48.0525599,473.095079 74.0763228,475.304885 C118.503521,479.077416 129.100123,526.67466 168.808182,526.538364 C216.454799,526.374818 237.905804,501.305794 292.627239,511.797193 C347.348674,522.288593 366.459408,551.956017 372.728106,561.599967 C376.907238,568.029267 385.840909,591.663265 399.52912,632.501962 L6.37154986,640.02045 L6.37154986,493.286123 Z%22 id=%22Rectangle-2%22 fill=%22url(%23linearGradient-6)%22 opacity=%220.366168478%22 mask=%22url(%23mask-3)%22%3E%3C/path%3E %3Cpath d=%22M-24.974837,236.105886 C-2.08644173,221.916844 24.9456321,215.935528 56.1213845,218.16194 C109.343946,221.962821 122.062461,269.57846 169.629815,269.466627 C226.706981,269.332437 252.390832,244.270402 317.94862,254.798176 C383.506408,265.32595 428.776828,297.152719 436.291254,306.802939 C441.300871,313.236419 467.963564,338.35665 516.279333,382.163632 C407.391601,404.203608 328.828511,415.596305 280.590062,416.341722 C251.585469,416.789923 168.233416,383.509196 98.2837974,375.100258 C67.3599394,371.382771 26.2989458,373.97494 -24.8991834,382.876766 L-24.974837,236.105886 Z%22 id=%22Rectangle-2-Copy%22 fill=%22url(%23linearGradient-7)%22 opacity=%220.366168478%22 mask=%22url(%23mask-3)%22 transform=%22translate(245.652248, 317.027599) rotate(-205.000000) translate(-245.652248, -317.027599) %22%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E\") 280px -75px no-repeat;\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"color: #333\" */\n body.zh_logged_in .zhc-consent-form__title {\n border-top-color: #343434;\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-consent-form__checkbox input {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-consent-form__checkbox input:checked {\n background: #5560d2 url(\"data:image/svg+xml;charset=utf-8,%3Csvg height=%2216%22 viewBox=%220 0 16 16%22 width=%2216%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22%3E%3Cdefs%3E%3Cpath id=%22a%22 d=%22m3.80473785 7.72385763c-.26034952-.26034953-.68245951-.26034953-.94280904 0-.26034953.26034952-.26034953.68245951 0 .94280904l3.13807119 3.13807123c.26034953.2603495.68245951.2603495.94280904 0l5.99999996-6.00000005c.2603496-.26034952.2603496-.68245951 0-.94280904-.2603495-.26034953-.6824595-.26034953-.942809 0l-5.52859548 5.52859549z%22/%3E%3Cmask id=%22b%22 fill=%22%23fff%22%3E%3Cuse fill=%22%23fff%22 fill-rule=%22evenodd%22 xlink:href=%22%23a%22/%3E%3C/mask%3E%3C/defs%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22%3E%3Cuse fill=%22%23333%22 xlink:href=%22%23a%22/%3E%3Cg fill=%22%23fff%22 mask=%22url(%23b)%22%3E%3Cpath d=%22m0 0h16v16h-16z%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\") center no-repeat;\n }\n /* zenhub: \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-consent-form__checkbox input:focus {\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"box-shadow: none\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-control-chart .zhc-control-chart__left-axis {\n box-shadow: none;\n }\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-control-chart-report .zhc-dropdown--ccr-pipelines .zhc-selection-item--is-disabled {\n background-color: transparent;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-control-chart-report__chart_stat .zhc-chart-emphasis {\n color: #bebebe;\n }\n /* zenhub: \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-cumulative-chart__left-axis {\n box-shadow: 0 -8px 8px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"box-shadow: none\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-cumulative-chart__left-axis {\n box-shadow: none;\n }\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-api-tokens__form .zhc-icon {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-billing {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-billing__period,\n body.zh_logged_in .zhc-billing__title {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-dashboard-nav .zhc-org-dropdown__toggle-button {\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-dashboard-nav .zhc-org-dropdown__toggle-button:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-dashboard-nav__section {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dashboard-nav__item--secondary {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-dashboard-nav__item--is-active {\n color: #5560d2;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-dashboard-topbar {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-discount-text--bold-purple,\n body.zh_logged_in .zhc-plan-summary {\n color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .DateRangePickerInput {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (min-width: 760px) {\n body.zh_logged_in .DateRangePickerInput .DateRangePicker_picker {\n border-color: #343434;\n }\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .DateRangePickerInput_arrow::after {\n color: #949494;\n }\n /* zenhub: \"none\", \"color: #666\" */\n body.zh_logged_in .DateInput {\n background: none;\n color: #949494;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .DateInput .DateInput_input {\n background: none;\n }\n /* zenhub: \"#5e60ba\", \"color: #fff\" */\n body.zh_logged_in .DateInput .DateInput_input.DateInput_input__focused {\n background-color: #5560d2;\n color: #fff;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .DateInput .DateInput_input.DateInput_input__focused::placeholder {\n color: #fff;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .DateInput .DateInput_displayText__has-input {\n color: #949494;\n }\n /* zenhub: \"color: #666\", \"#e9e9e9\" */\n body.zh_logged_in .DayPicker__horizontal .DayPicker_nav__next,\n body.zh_logged_in .DayPicker__horizontal .DayPicker_nav__prev {\n color: #949494;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .CalendarMonth_caption {\n color: #949494;\n }\n /* zenhub: \"color: #666\", \"#e9e9e9\" */\n body.zh_logged_in .CalendarDay {\n color: #949494;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .CalendarDay__selected_end,\n body.zh_logged_in .CalendarDay__selected_end:active,\n body.zh_logged_in .CalendarDay__selected_end:hover,\n body.zh_logged_in .CalendarDay__selected_start,\n body.zh_logged_in .CalendarDay__selected_start:active,\n body.zh_logged_in .CalendarDay__selected_start:hover,\n body.zh_logged_in .CalenderDay__selected_span,\n body.zh_logged_in .CalenderDay__selected_span:active,\n body.zh_logged_in .CalenderDay__selected_span:hover {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .CalendarDay__hovered_span,\n body.zh_logged_in .CalendarDay__hovered_span.active,\n body.zh_logged_in .CalendarDay__hovered_span:hover,\n body.zh_logged_in .CalendarDay__selected_end,\n body.zh_logged_in .CalendarDay__selected_end.active,\n body.zh_logged_in .CalendarDay__selected_end:hover,\n body.zh_logged_in .CalendarDay__selected_span,\n body.zh_logged_in .CalendarDay__selected_span.active,\n body.zh_logged_in .CalendarDay__selected_span:hover,\n body.zh_logged_in .CalendarDay__selected_start,\n body.zh_logged_in .CalendarDay__selected_start.active,\n body.zh_logged_in .CalendarDay__selected_start:hover {\n color: #fff;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .CalendarDay.CalendarDay__selected:not(.CalendarDay__blocked_out_of_range),\n body.zh_logged_in .CalendarDay.CalendarDay__selected_end:not(.CalendarDay__blocked_out_of_range),\n body.zh_logged_in .CalendarDay:not(.CalendarDay__blocked_out_of_range).CalendarDay__selected,\n body.zh_logged_in .CalendarDay:not(.CalendarDay__blocked_out_of_range).CalendarDay__selected_start {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .DayPicker_weekHeader {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-date-selector .DayPicker,\n body.zh_logged_in .zhc-date-selector .DayPicker--horizontal {\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-date-selector .CalendarDay__button:hover {\n color: #fff;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-date-selector .CalendarDay--selected,\n body.zh_logged_in .zhc-date-selector .CalendarDay--selected-end,\n body.zh_logged_in .zhc-date-selector .CalendarDay--selected-start,\n body.zh_logged_in .zhc-date-selector .CalendarDay__button:active {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"#faebcc\", \"#fcf9e4\" */\n body.zh_logged_in .zhc-add-dependency__error-message {\n border-color: #261d08;\n background-color: #261d08;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-add-dependency__error-message .zhu-font-bold {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-color-grey {\n color: #949494;\n }\n /* zenhub: \"rgba(27,31,35,0.15)\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-dependency-issue-selector__search {\n box-shadow: 0 3px 12px #000;\n }\n }\n /* zenhub: \"transparent\" */\n @media (min-width: 760px) {\n body.zh_logged_in .zhc-dependency-issue-selector__search .zhc-search {\n background-color: transparent;\n }\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-dependency-issue-selector__search .zhc-search input[type=\"text\"]:focus {\n box-shadow: none;\n }\n /* zenhub: \"#fff\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-dependency-issue-selector__issues__container {\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-issue-selector__issue-item-pipeline .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-dependency-list__issue__title a {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-list__issue--completed .zhc-dependency-list__issue__title a {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-dependency-item-simple .zhc-selection-item:hover {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-item-simple a {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-dependency-item-simple__header {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-dependency {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-type-dropdown {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-dependency-type-dropdown__control {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dependency-type-dropdown__control .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-dependency-type-dropdown__list {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-dependency-type-dropdown__list__item {\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#fff\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-add-dependency {\n background-color: #181818;\n }\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-dropdown__clear-filter {\n background-color: transparent;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zhc-dropdown__clear-filter:hover {\n background-image: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-dropdown-switch-item__switch {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-due-date__edit {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-empty-state h1 {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-epic-list {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-epic-list .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-epic-list__epic-icon {\n background-color: #343434;\n border-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-epic-list-issue__title a,\n body.zh_logged_in .zhc-epic-meta__toggle {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-epic-pipeline-list--item__title,\n body.zh_logged_in .zhc-error-page__header__description,\n body.zh_logged_in .zhc-error-page__header__title {\n color: #bebebe;\n }\n /* zenhub: \"color: #fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-feature-alert {\n color: #fff;\n background-color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-feature-alert__footer a {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-feature-announcement {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-feature-announcement__x:hover {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-feature-announcement__image {\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-filter-expand-button {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-filter-tag {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-filter-tag .zhc-svg-icon--x {\n color: #949494;\n }\n /* zenhub: \"color: #666\", \"transparent\" */\n body.zh_logged_in .zhc-filter-tag__text {\n color: #949494;\n background-color: transparent;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-filter-tags__options {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\" */\n body.zh_logged_in .zhc-footer__wrapper {\n border-top-color: #343434;\n color: #949494;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-footer__terms a {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-footer__guides a {\n color: #5560d2;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-grid-table {\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-grid-table__row--is-data-row td {\n border-top-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-grid-table__cell {\n background-color: #242424;\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-grid-table__first-col {\n border-right-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-icon--has-notification::after {\n border-color: #181818;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zhc-info-alert {\n background-color: #181818;\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-info-alert--pointer--left::after {\n border-right-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-info-alert--pointer--right::after {\n border-left-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-info-alert--pointer--top::after {\n border-bottom-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-info-alert--pointer--bottom::after {\n border-top-color: #181818;\n }\n /* zenhub: \"#fff\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-integration-repo-selector__repos__container {\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-integrations .zhc-integrations-section {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-integrations .zhc-integrations-section input {\n background-color: #242424;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-integrations__generate-webhook {\n color: #5560d2;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-integrations-section .zhc-integrations-section__form--error input:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-integrations-section .zhc-integrations-section__form-label {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-integrations-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-integrations-item .zhc-integrations__hook:first-child:not(:last-child),\n body.zh_logged_in .zhc-integrations-item .zhc-integrations__repo,\n body.zh_logged_in .zhc-integrations-item .zhc-integrations__service {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-integrations-item .zhc-integrations__action {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\" */\n body.zh_logged_in .zhc-integrations-list__header {\n border-bottom-color: #343434;\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-invite-link-modal {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-invite-link-modal__sharing-link {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-invite-link-modal__sharing-link__link {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-invite-link-modal__icon {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .invite-link-footer {\n background-color: #202020;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .invite-link-footer__link .zhc-input {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-invite-your-team {\n background-color: #181818;\n }\n /* zenhub: \"#fff\",\"rgba(255,255,255,0)\",\"rgba(0,0,0,0)\" */\n body.zh_logged_in .zhc-invite-your-team__scrollable-section {\n background: linear-gradient(#181818 30%, transparent), linear-gradient(transparent, #181818 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, .15), transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, .15), transparent) 0 100%;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-invite-your-team-section--suggested:not(.zhc-invite-your-team-section--empty) {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-invite-your-team__controls {\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-invite-your-team-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#5e60ba\" */\n body.zh_logged_in .zhc-invite-your-team-item--toggle-text {\n border-color: #343434;\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-invitees-list {\n border-bottom-color: #343434;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-invitees-list input:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-invitee-input {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-card--options-open {\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-card--unread-notification::before {\n background-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card__action-notification {\n border-left-color: #5560d2;\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-issue-card__action-notification .zhc-icon--has-notification::after,\n body.zh_logged_in .zhc-issue-card__action-notification .zhc-icon--notification::after,\n body.zh_logged_in .zhc-issue-card__action-notification .zhc-issue-card__action-notification__has-notification::after {\n border-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-card--multi-active,\n body.zh_logged_in .zhc-issue-card--multi-active::after {\n border-color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\", \"#ddd\" */\n body.zh_logged_in .zhc-issue-card--is-dragging {\n background-color: #343434;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-issue-card__main {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card__meta {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-card__issue-title {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card__assignees .zhc-avatar,\n body.zh_logged_in .zhc-issue-card__assignees .zhc-issue-card__multiple-assignees {\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-issue-card__multiple-assignees {\n color: #fff;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-card__heading__main {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-card__select-icon--selected circle {\n fill: #5560d2;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card__actions__btn {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-card__epic-filter {\n color: #bebebe;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-card__connected-pull-request {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#fff\",\"rgba(255,255,255,0)\",\"rgba(0,0,0,0)\" */\n body.zh_logged_in .zhc-selection-list-deprecated--issue-card-actions .zhc-selection-list-deprecated__body .zhc-selection-list-deprecated__list {\n background: linear-gradient(#181818 30%, transparent), linear-gradient(transparent, #181818 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, .15), transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, .15), transparent) 0 100%;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-issue-cards:focus {\n box-shadow: none;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-issue-cards::-webkit-scrollbar,\n body.zh_logged_in .zhc-issue-cards::-webkit-scrollbar-thumb {\n background-color: #383838;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-issue-cards::-webkit-scrollbar-track {\n background-color: #242424;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-add-comment {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-add-comment__username {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-comment {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-comment__username {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-comment__timestamp,\n body.zh_logged_in .zhc-comment__timestamp a {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-edit-comment__file-upload,\n body.zh_logged_in .zhc-edit-comment__preview,\n body.zh_logged_in .zhc-edit-comment__textarea {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-edit-comment__tag-loading {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-discussion-events__body__icon {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-discussion-events__icon {\n border-color: #343434;\n }\n /* zenhub: \"#6a737d\" */\n body.zh_logged_in .zhc-discussion-events__icon--grey,\n body.zh_logged_in .zhc-discussion-events__icon--grey-dark {\n background-color: #444;\n }\n /* zenhub: \"#24292e\" */\n body.zh_logged_in .zhc-discussion-events__icon--grey-darker {\n background-color: #181818;\n }\n /* zenhub: \"transparent\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-edit-issue__title-input {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-issue-badge {\n color: #fff;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-badge--epic {\n background-color: #5560d2;\n }\n /* zenhub: \"#ffd33d\" */\n body.zh_logged_in .zhc-issue-badge--pr-draft {\n background-color: #cb4;\n color: #cdcdcd;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-description {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-meta {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-meta__username {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-modal__body.zhc-issue-modal__body--extension {\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issue-modal__header__issue-title a {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-issue-modal__header__toggle-sidebar .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issue-sidebar .zhc-sidebar-selector {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-new-issue-body__username {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-new-issue-body__title-input {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-new-issue-body__dropdown-divider {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-pr-header-info__link {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-issue-item .zhc-svg-icon--board {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issue-item__title {\n color: #bebebe;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zhc-sidebar-assignee-selector .zhc-sidebar-assignee-selector_active_assignees {\n background: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-assign-yourself:hover {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-assign-yourself--read-only:hover {\n color: #bebebe;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zhc-sidebar-selector {\n background: none;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-epic-selector .zhc-sidebar-active-epics a {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-create-estimate-item__content .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-pipeline-selector__label {\n color: #bebebe;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .discussion-sidebar-item .zhc-sidebar-pipeline-selector__label {\n color: #afafaf;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-active-pipeline__name {\n color: #bebebe;\n }\n /* zenhub: \"color: #333\", \"none\" */\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button {\n color: #bebebe;\n background: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button .zhc-svg-icon--gear-github:hover,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button .zhc-svg-icon--gear:hover {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:active,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:active .zhc-sidebar-active-pipeline__name,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:active .zhc-svg-icon--extension,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:focus,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:focus .zhc-sidebar-active-pipeline__name,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:focus .zhc-svg-icon--extension,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:hover,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:hover .zhc-sidebar-active-pipeline__name,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button:hover .zhc-svg-icon--extension {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:active,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:active .zhc-sidebar-active-pipeline__name,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:focus,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:focus .zhc-sidebar-active-pipeline__name,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:hover,\n body.zh_logged_in .zhc-sidebar-pipeline-selector__button--disabled:hover .zhc-sidebar-active-pipeline__name {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-sidebar-active-pipeline__direction .zhc-priority-icon--hovered:not(.zhc-priority-icon--has-priority) .zhc-priority-icon__pin-icon,\n body.zh_logged_in .zhc-sidebar-active-pipeline__direction .zhc-priority-icon:hover:not(.zhc-priority-icon--has-priority) .zhc-priority-icon__pin-icon {\n color: #949494;\n }\n /* zenhub: \"color: #586069\" */\n body.zh_logged_in .discussion-sidebar-item .zhc-sidebar-selector-button {\n color: #afafaf;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .discussion-sidebar-item .zhc-sidebar-selector-button:hover {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\", \"none\" */\n body.zh_logged_in .zhc-sidebar-selector-button {\n color: #bebebe;\n background: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-selector-button:active .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button:active .zhc-svg-icon--extension,\n body.zh_logged_in .zhc-sidebar-selector-button:focus .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button:focus .zhc-svg-icon--extension,\n body.zh_logged_in .zhc-sidebar-selector-button:hover .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button:hover .zhc-svg-icon--extension {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-selector-button:active:disabled .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button:focus:disabled .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button:hover:disabled .zhc-sidebar-selector-button__heading {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-sidebar-selector-button .zhc-svg-icon--gear:hover {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-selector-button--no-hover:active .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button--no-hover:focus .zhc-sidebar-selector-button__heading,\n body.zh_logged_in .zhc-sidebar-selector-button--no-hover:hover .zhc-sidebar-selector-button__heading {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issues-list {\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-issues-list__header {\n background-color: #242424;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-issues-list-item__wrapper {\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-issues-list-item {\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-issues-list-item:hover {\n background-color: #202020;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-issues-list-item__issue-icon .zhc-svg-icon--epic-line {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-issues-list-item__issue_number,\n body.zh_logged_in .zhc-issues-list-item__title a {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-item-table {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-item-table__header {\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-item-table__cell,\n body.zh_logged_in .zhc-item-table__column-title {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-item-table__row--closed {\n background-color: #202020;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-item-table__meta-title {\n color: #949494;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-link-button:active,\n body.zh_logged_in .zhc-link-button:focus,\n body.zh_logged_in .zhc-link-button:hover {\n box-shadow: none;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zhc-loading__header {\n color: #f0f0f0;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-mail-to {\n color: #5560d2;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-manage-plan__offer,\n body.zh_logged_in .zhc-manage-plan__summary {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-manage-plan__subtitle {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-manage-plan__banner-action,\n body.zh_logged_in .zhc-manage-plan__charge-amount {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-manage-plan__renewal-date {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-manage-plan__renewal-date strong {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-manage-plan__team-members {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-manage-plan__licensed-members,\n body.zh_logged_in .zhc-manage-plan__team-members-header {\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-team-member__options-icon-wrapper--active,\n body.zh_logged_in .zhc-team-member__options-icon-wrapper:hover {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#fcf9e4\", \"#faebcc\" */\n body.zh_logged_in .zhc-manage-plan__non-licensed-members {\n background-color: #261d08;\n border-color: #261d08;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-team-member__pending-license {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-markdown-toolbar__item:active,\n body.zh_logged_in .zhc-markdown-toolbar__item:focus,\n body.zh_logged_in .zhc-markdown-toolbar__item:hover {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-menu-bar-item--search-bar {\n border-top-color: #343434;\n }\n }\n /* zenhub: \"#fff\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-menu-container__modal--is-open .zhc-menu-container__modal-wrapper {\n background-color: #181818;\n }\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-menu-container__header,\n body.zh_logged_in .zhc-menu-container__modal--is-open .zhc-menu-bar-item:not(.zhc-menu-bar-item--filter-tags) .zhc-btn:not(.zhc-btn--action),\n body.zh_logged_in .zhc-menu-container__modal--is-open .zhc-menu-bar-item:not(.zhc-menu-bar-item--filter-tags) .zhc-btn:not(.zhc-btn--action):hover {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-merge-repo-finder {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-merge-repo-finder__container {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merge-repo-finder__header,\n body.zh_logged_in .zhc-merge-repo-finder__header__text {\n color: #bebebe;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-merge-repo-finder__cancel {\n background-color: transparent;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-merge-repo-finder__cancel .zhc-svg-icon--x:hover {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merge-repo-finder-input__label {\n color: #bebebe;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-merge-repo-finder-input__text-input {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-merging-tool {\n background-color: #202020;\n }\n /* zenhub: \"#fcf9e4\", \"#faebcc\", \"color: #666\" */\n body.zh_logged_in .zhc-merging-tool__warning {\n background-color: #261d08;\n border-bottom-color: #261d08;\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-merging-tool__buttons {\n background-color: #202020;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-merging-tool__repo-dropdown__arrow {\n background-color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-merging-tool__repo-dropdown__arrow .zhc-svg-icon--back-arrow {\n color: #fff;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-pipeline {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-pipeline--is-new {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-pipeline__header,\n body.zh_logged_in .zhc-merging-tool-pipeline__header--is-edit {\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-merging-tool-pipeline--placeholder,\n body.zh_logged_in .zhc-merging-tool-pipeline--placeholder .zhc-pipeline-header__main {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-merging-tool-pipeline--add__input {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"#ddd\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card--is-dragging .zhc-merging-tool-pipeline-card__body {\n background-color: #343434;\n border-color: #343434;\n box-shadow: none;\n }\n /* zenhub: \"#e9e9e9\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card__body {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card__repo-name {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card__issue-count {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card--all-issues .zhc-merging-tool-pipeline-card__issue-count {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-merging-tool-pipeline-card__buttons {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown::after {\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper .zhc-selection-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper .zhc-selection-item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper:first-child .zhc-selection-item:hover {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper:last-child .zhc-selection-item:hover {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-button {\n color: #bebebe;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown .zhc-selection-button:disabled {\n background-color: #242424;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown__org-name {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-merging-tool-repo-dropdown__repo-name {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-milestone-modal__characters-left {\n color: #949494;\n }\n /* zenhub: \"#4183c4\" */\n body.zh_logged_in .zhc-milestone-modal__connected-repos__select-repos {\n color: /*[[base-color]]*/;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-milestone-modal__info input,\n body.zh_logged_in .zhc-milestone-modal__info textarea {\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-milestone-modal__info input {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-milestone-panel {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-milestone-panel__title,\n body.zh_logged_in .zhc-milestone-start-date__date {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-milestone-start-date__edit {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-milestone-title__description {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-modal__header {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-modal__header--no-title {\n background-color: #202020;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-modal__header__close:hover {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-modal__header__close .zhc-svg-icon:hover {\n color: #bebebe;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-modal__body {\n background-color: #202020;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-multi-action-footer {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-multi-action-placeholder__primary-text {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-multi-action-status,\n body.zh_logged_in .zhc-my-info__delete p,\n body.zh_logged_in .zhc-my-info__gh-info-text,\n body.zh_logged_in .zhc-my-info__terms {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-app-notification {\n border-bottom-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-app-notification:hover {\n background-color: #202020;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-app-notification:focus {\n box-shadow: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-app-notification__status--unread {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-app-notification__title,\n body.zh_logged_in .zhc-notifications-body__header__title {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\", \"#5e60ba\" */\n body.zh_logged_in .zhc-notifications-body__manage {\n border-color: #343434;\n background-color: #181818;\n color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-notifications-empty__link {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-notifications-manager__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-notifications-manager__item-name {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-notifications-manager__item-status {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-notifications-manager__header {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-subscription-menu__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-subscription-menu__item:hover {\n background-color: #242424;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-notifications-sidebar__item,\n body.zh_logged_in .zhc-subscription-menu-item__title,\n body.zh_logged_in .zhc-subscription-menu__item-title {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-notifications-sidebar__item:hover {\n background-color: #343434;\n }\n /* zenhub: \"color: #fff !important\", \"#5e60ba\" */\n body.zh_logged_in .zhc-notifications-sidebar__item--active {\n color: #fff !important;\n background-color: #5560d2 !important;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-notifications-sidebar__header {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-repo-notifications {\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-repo-notifications__header {\n background-color: #242424;\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-repo-notifications--single-repo .zhc-repo-notifications__header {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-repo-notifications--single-repo .zhc-repo-notifications__load-more,\n body.zh_logged_in .zhc-repo-notifications--single-repo .zhc-repo-notifications__notification-list {\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-repo-notifications__load-more {\n border-top-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-onboarding-page .zhc-sidebar-container {\n background-color: #181818;\n border-right-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-org-dropdown__toggle-button .zhc-svg-icon--chevron-down-white {\n color: #fff;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-org-dropdown__toggle-button--bordered {\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-org-dropdown__search-item,\n body.zh_logged_in .zhc-org-dropdown__show-all {\n color: #5560d2;\n }\n /* zenhub: \"none\" */\n @media (max-width: 759px) {\n body.zh_logged_in .zhc-page-container {\n background-image: none;\n }\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-pipeline {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-pipeline--add__input {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-pipeline--add-placeholder .zhc-pipeline-header__main {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-pipeline--is-collapsed .zhc-pipeline-header__collapsed-actions {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#4183c4\" */\n body.zh_logged_in .zhc-pipeline__load-more {\n color: /*[[base-color]]*/;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-pipeline__button {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-pipeline-body {\n border-top-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-pipeline-sorted-placeholder {\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-pipeline-form {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"color: #333\" */\n body.zh_logged_in .zhc-pipeline-form__input,\n body.zh_logged_in .zhc-pipeline-form__text-area {\n border-color: #343434;\n color: #bebebe;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-pipeline-header {\n background-color: #242424;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-pipeline-header__form__edit {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-pipeline-header__meta {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-pipeline-sort-status {\n border-top-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-pipeline-sort-status__clear {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\", \"rgba(27,31,35,0.15)\", \"#fff\" */\n body.zh_logged_in .zhc-popover--deprecated_with_borders {\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-progress-bar {\n background-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-progress-bar--completed-story-points {\n background-color: #5560d2;\n }\n /* zenhub: \"#ccc\" */\n body.zh_logged_in .zhc-progress-dot {\n background-color: #484848;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-pr-issue-connector__icon {\n background-color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-pr-issue-connector__icon .zhc-svg-icon {\n color: #fff;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-pr-issue-connector__info::after {\n border-right-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-pr-issue-connector__issue-info .zhc-svg-icon--connected-pr {\n color: #fff;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-pr-issue-connector__issue-icon {\n background-color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-pr-issue-connector__issue__title a {\n color: #bebebe;\n }\n /* zenhub: \"#ccc\" */\n body.zh_logged_in .zhu-radio-button__container:hover input {\n background-color: #484848;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhu-radio-button__container input {\n border-color: #5560d2;\n }\n /* zenhub: \"#fff\",\"#5e60ba\" */\n body.zh_logged_in .zhu-radio-button__container input:checked {\n box-shadow: inset 0 0 0 1px #181818, inset 0 0 0 8px #5560d2;\n }\n /* zenhub: \"#fff\",\"#5e60ba\" */\n body.zh_logged_in .zhu-radio-button__container input:focus {\n box-shadow: inset 0 0 0 1px #181818, inset 0 0 0 8px #5560d2, 0 0 5px 2px #5e9ed6;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-readonly-banner {\n color: #fff;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-add-repos-dropdown__repo-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-add-repos-dropdown__repo-item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-add-repos-dropdown__repo-item:hover:first-child {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-add-repos-dropdown__repo-item:hover:last-child {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"color: #333\" */\n body.zh_logged_in .zhc-release-connected-repos-dropdown__repo-item {\n border-bottom-color: #343434;\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\" */\n body.zh_logged_in .zhc-release-event {\n border-bottom-color: #343434;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-release-event-link a,\n body.zh_logged_in .zhc-release-event__item--date--highlighted,\n body.zh_logged_in .zhc-release-event__item.zhc-release-event__item--author,\n body.zh_logged_in .zhc-release-event__item.zhc-release-event__item--scope {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-release-chart-completed-points .zhc-chart-areachart path {\n fill: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-release-chart-completed-points .zhc-chart-linechart__path {\n stroke: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-release-chart-completed-points .zhc-chart-scatterchart-plot {\n fill: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-progress__header {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-release-progress--diff,\n body.zh_logged_in .zhc-release-progress--no-prediction {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-progress__section {\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-progress__stats {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-release-issues .zhc-release-issues__info-alert {\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-release--no-issues {\n background-color: #202020;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-release--no-issues__content h2 {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-release-report__date {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-release-report__date .zhc-due-date,\n body.zh_logged_in .zhc-release-report__date .zhc-release-report__date__value {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-release-report-create__info,\n body.zh_logged_in .zhc-release-report__description {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-release-report-form__desc-textarea,\n body.zh_logged_in .zhc-release-report-form__title-input {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-remove-filter-item {\n color: #5560d2;\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zhc-repo-item__lock .zhc-svg-icon {\n color: #f0f0f0;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-repo-overlay {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-report-loading__title {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-reports-date-range .zhc-reports-date-range__date-range {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-reports-date-range .zhc-dropdown--reports-dates .zhc-selection-list-deprecated .zhc-reports-date-range__date-range {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-reports-date-range .zhc-dropdown--reports-dates .zhc-selection-button__title .zhc-reports-date-range__date-range {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-reports-date-range .DateRangePickerInput {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-reports-date-range .DateRangePickerInput .DateInput .DateInput_input {\n color: #bebebe;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-reports-date-range .DateRangePickerInput .DateInput .DateInput_input__focused,\n body.zh_logged_in .zhc-reports-date-range .DateRangePickerInput .DateInput .DateInput_input__focused::placeholder {\n color: #fff;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-reports-date-range .CalendarMonth_caption,\n body.zh_logged_in .zhc-reports-date-range .DayPicker_weekHeader {\n color: #bebebe;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-reports-date-range .CalendarDay.CalendarDay__hovered_span,\n body.zh_logged_in .zhc-reports-date-range .CalendarDay .CalendarDay__selected_start {\n color: #fff;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-report-card {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-report-card__title {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-report-card__secondary-cta,\n body.zh_logged_in .zhc-report-card__section {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-report-tabs {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\", \"#f4f4f4\" */\n body.zh_logged_in .zhc-report-tabs__nav {\n border-bottom-color: #343434;\n color: #949494;\n background-color: #242424;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-report-tabs__nav .zhc-report-tabs__nav__item:hover {\n color: #bebebe;\n }\n /* zenhub: \"color: #333\", \"#5e60ba\" */\n body.zh_logged_in .zhc-report-tabs__nav .zhc-report-tabs__nav__item--active {\n color: #bebebe;\n border-bottom-color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-report-tabs__nav .zhc-report-tabs__nav__item--active:hover {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"color: #666\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-report-tabs__filters {\n border-bottom-color: #343434;\n color: #949494;\n background-color: #202020;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-request-license-text {\n color: #bebebe;\n }\n /* zenhub: \"#ccc\" */\n body.zh_logged_in .zhc-request-license__admin-list-container::after,\n body.zh_logged_in .zhc-request-license__admin-list-container::before {\n background-color: #484848;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-highlighter {\n background-color: #383838;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-search {\n background-color: #181818;\n }\n /* zenhub: \"transparent\", \"#ddd\" */\n body.zh_logged_in .zhc-search__input {\n background-color: transparent;\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#ddd\" */\n body.zh_logged_in .zhc-search--with-icon {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-search-bar .zhc-svg-icon--search {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-search-bar--is-active .zhc-search-bar__input {\n border-color: #5560d2;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-search-bar__input {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-selection-button--active-filter,\n body.zh_logged_in .zhc-selection-button--active-filter.zhc-selection-button--active-filter {\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-selection-button--active-filter.zhc-selection-button--active-filter .zhc-selection-button__title,\n body.zh_logged_in .zhc-selection-button--active-filter .zhc-selection-button__title {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-selectable-selection-item__icon .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-item--is-active {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-selection-item--is-disabled,\n body.zh_logged_in .zhc-selection-item--is-disabled.zhc-selection-item--is-active,\n body.zh_logged_in .zhc-selection-item--is-disabled:hover,\n body.zh_logged_in .zhc-selection-item:disabled,\n body.zh_logged_in .zhc-selection-item:disabled.zhc-selection-item--is-active,\n body.zh_logged_in .zhc-selection-item:disabled:hover {\n background-color: transparent;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-selection-list__item__user__text {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"rgba(27,31,35,0.15)\", \"#fff\" */\n body.zh_logged_in .zhc-selection-list__layout {\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n background-color: #181818;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list__item {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-selection-list__item__selection-icon {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list__item--is-highlighted {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list__item--is-highlighted:first-child {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-selection-list__header,\n body.zh_logged_in .zhc-selection-list__header__close:hover {\n color: #bebebe;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list__search-bar .zhc-selection-list__search-bar__content {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-selection-list__search-bar .zhc-selection-list__search-bar__content input {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated--footer {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-selection-list-deprecated-header {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-seleciton-list-action-modifier {\n color: #5560d2;\n border-color: transparent transparent #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-seleciton-list-action-modifier:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhnc-selection-list-item {\n border-color: transparent transparent #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhnc-selection-list-item--is-hovering,\n body.zh_logged_in .zhnc-selection-list-item:not(.zhnc-selection-list-item--disable-hover):hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-selection-filter {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-filter__input {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-selection-list-deprecated {\n color: #949494;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated--simple .zhc-selection-list-item:hover:not(.zhc-selection-item--is-disabled) {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated--issue-card-actions .zhc-issue-card__actions__dependency-section {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated--issue-card-actions .zhc-issue-card__actions__quick-action-section {\n border-top-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated:not(.zhc-selection-list-deprecated--has-search) .zhc-selectable-selection-item:hover:not(.zhc-selection-item--is-disabled),\n body.zh_logged_in .zhc-selection-list-deprecated:not(.zhc-selection-list-deprecated--has-search) .zhc-selection-list-item:hover:not(.zhc-selection-item--is-disabled) {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-selection-list-deprecated__body {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active {\n background-color: #242424;\n border-left-color: #343434;\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:first-child {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active {\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:last-child {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:not(:first-child)::after,\n body.zh_logged_in .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:not(:first-child)::before {\n border-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-selection-list-deprecated__header {\n color: #bebebe;\n }\n /* zenhub: \"initial\" */\n body.zh_logged_in .zhc-selection-list-deprecated__header--light {\n background-color: initial;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-selection-list-deprecated__header__text {\n color: #bebebe;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-selection-list-deprecated__cancel {\n background-color: transparent;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-selection-list-deprecated__cancel:hover {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-selection-list-deprecated__cancel .zhc-svg-icon--x:hover {\n color: #949494;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-selection-list-deprecated__list .zhc-selection-list-deprecated__header {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__footer {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item--is-active {\n background-color: #242424;\n border-left-color: #343434;\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item--is-active:first-child,\n body.zh_logged_in .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-dependency-banner + .zhc-selection-item--is-active:nth-child(2),\n body.zh_logged_in .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-dependency-banner + .zhc-selection-item:hover:nth-child(2),\n body.zh_logged_in .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-issue-card__action-notification {\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-shortcut-indicator {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-shortcut-indicators,\n body.zh_logged_in .zhc-shortcuts-guide__nav-item {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-shortcuts-guide__nav-item:hover {\n background-color: #343434;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-shortcuts-guide__nav-item:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-shortcuts-guide__section {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-shortcuts-guide__section h2 {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-shortcuts-guide__shortcuts-list {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\", \"#5e60ba\" */\n body.zh_logged_in .zhc-shortcuts-guide__webapp-only-tag {\n color: #5560d2;\n border-color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-board-settings-item {\n color: #949494;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-board-settings-item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-collapse-toggle {\n background-color: #5560d2;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-collapse-toggle--is-active {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-collapse-toggle--is-active:hover {\n background-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-headway #headway:hover + a {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-divider__bar {\n background-color: #343434;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-link-item .zhc-sidebar-link-item__label a:hover {\n color: #5560d2;\n }\n /* zenhub: \"initial\" */\n body.zh_logged_in .user-has-feelings .zhc-sidebar-nav-item:not(.zhc-sidebar-nav-item--is-active):hover {\n background-color: initial;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-nav-item {\n color: #bebebe;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-sidebar-nav-item:hover {\n background-color: #202020;\n }\n /* zenhub: \"#f8f8f8\", \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-nav-item--is-active {\n background-color: #202020;\n border-left-color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-nav-item__link {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-sidebar-nav-item__action--is-active,\n body.zh_logged_in .zhc-sidebar-nav-item__action:hover {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-nav-item__sub-item:hover {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-nav-item__sub-item--is-active,\n body.zh_logged_in .zhc-sidebar-nav-item__sub-item--is-active:hover {\n color: #5560d2;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-sidebar-profile {\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-sidebar-profile--is-active .zhc-sidebar-profile__toggle,\n body.zh_logged_in .zhc-sidebar-profile__toggle:hover {\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-profile__header {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-sidebar-profile__name {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-sidebar-profile__item {\n color: #949494;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-sidebar-profile__item:focus {\n box-shadow: none;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-profile__item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#fcf9e4\", \"#faebcc\" */\n body.zh_logged_in .zhc-sidebar-warning {\n background-color: #261d08;\n border-color: #261d08;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-sidebar-warning a {\n color: #5560d2;\n }\n /* zenhub: \"rgba(27,31,35,0.15)\", \"color: #fff\" */\n body.zh_logged_in .zhc-tutorial-tooltip {\n box-shadow: 0 3px 12px #000;\n color: #fff;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-workspace-header:hover {\n background-color: #202020;\n }\n /* zenhub: \"#fff\",\"rgba(255,255,255,0)\",\"rgba(0,0,0,0)\" */\n body.zh_logged_in .zhc-sidebar--is-dropdown-open .zhc-sidebar__navigation,\n body.zh_logged_in .zhc-sidebar--is-full-width .zhc-sidebar__navigation,\n body.zh_logged_in .zhc-sidebar--is-hovered .zhc-sidebar__navigation {\n background: linear-gradient(#181818 30%, transparent), linear-gradient(transparent, #181818 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, .15), transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, .15), transparent) 0 100%;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar--is-dropdown-open .zhc-sidebar__container .zhc-sidebar__container__inner,\n body.zh_logged_in .zhc-sidebar--is-full-width .zhc-sidebar__container .zhc-sidebar__container__inner,\n body.zh_logged_in .zhc-sidebar--is-hovered .zhc-sidebar__container .zhc-sidebar__container__inner {\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar--is-wide-screen .zhc-sidebar__footer,\n body.zh_logged_in .zhc-sidebar:not(.zhc-sidebar--is-wide-screen):hover .zhc-sidebar__footer {\n border-top-color: #343434;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-sidebar a:focus {\n box-shadow: none;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-sidebar__overlay {\n background-color: transparent;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar__container {\n background-color: #181818;\n border-right-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-sidebar__container__inner {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar__footer-left {\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-skeleton-avatar, body.zh_logged_in .zhc-skeleton-row {\n background-image: linear-gradient(90deg, #343434 0, rgba(0, 0, 0, .15) 40px, #343434 80px);\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-skeleton-avatar-description-container--with-border,\n body.zh_logged_in .zhc-skeleton-paragraph--with-border {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-skeleton-content-box {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-skeleton-title {\n background-image: linear-gradient(90deg, #343434 0, rgba(0, 0, 0, .15) 40px, #343434 80px);\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-skeleton-input-box {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-spinner:not(.zhc-spinner--no-outline) {\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-spinner--purple {\n box-shadow: none;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-spinner--purple .zhc-spinner__path {\n stroke: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n @-webkit-keyframes changeColors {\n 0% {\n stroke: #5560d2;\n }\n }\n /* zenhub: \"#5e60ba\" */\n @keyframes changeColors {\n 0% {\n stroke: #5560d2;\n }\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-status-tag {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"color: #000\" */\n body.zh_logged_in .zhc-status-tag strong {\n color: #f0f0f0;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-status-tag button {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\", \"#f4f4f4\" */\n body.zh_logged_in .zhc-stripe-billing .StripeElement,\n body.zh_logged_in .zhc-stripe-billing input {\n border-color: #343434;\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-table {\n border-top-color: #343434;\n border-right-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-table .zhc-table__cell {\n border-bottom-color: #343434;\n border-left-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-table .zhc-table__cell--header {\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-table-expand-button {\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-table-expand-button .zhc-btn:active {\n background-color: #181818;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-table-expand-button .zhc-btn .zhc-btn__content {\n color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-tabs-nav--dropdown {\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\", \"color: #666\" */\n body.zh_logged_in .zhc-tab-navitem {\n background-color: transparent;\n color: #949494;\n }\n /* zenhub: \"transparent\", \"color: #000\" */\n body.zh_logged_in .zhc-tab-navitem--large--active,\n body.zh_logged_in .zhc-tab-navitem--large:hover,\n body.zh_logged_in .zhc-tab-navitem--lined--active,\n body.zh_logged_in .zhc-tab-navitem--lined:hover {\n background-color: transparent;\n color: #f0f0f0;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-tab-navitem--large--active::after,\n body.zh_logged_in .zhc-tab-navitem--lined--active::after {\n background-color: #5560d2;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-tab-navitem--full {\n border-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-tab-navitem--full:hover {\n background-color: #242424;\n }\n /* zenhub: \"#5e60ba\", \"#5e60ba\", \"color: #fff\" */\n body.zh_logged_in .zhc-tab-navitem--full--active,\n body.zh_logged_in .zhc-tab-navitem--full--active:hover {\n background-color: #5560d2;\n border-color: #5560d2;\n color: #fff;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-tab-navitem--dropdown,\n body.zh_logged_in .zhc-tab-navitem--dropdown:hover {\n background-color: transparent;\n }\n /* zenhub: \"color: #333\", \"#fff\", \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-tab-navitem--dropdown--active,\n body.zh_logged_in .zhc-tab-navitem--dropdown--active:hover {\n color: #bebebe;\n background-color: #181818;\n border-color: #343434 #343434 #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-tag {\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-team-member-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-team-members .zhc-svg-icon--check-green {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#fff\" */\n body.zh_logged_in .zhc-team-members__content {\n border-color: #343434;\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-team-members__searchbar {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-team-members__searchbar input {\n background-color: #202020;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-team-members__searchbar input:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-team-members__searchbar .zhc-svg-icon--search {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-team-member {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#5e60ba\", \"color: #fff\" */\n body.zh_logged_in .zhc-team-member__admin-tag {\n background-color: #5560d2;\n color: #fff;\n }\n /* zenhub: \"#5e60ba\", \"#5e60ba\" */\n body.zh_logged_in .zhc-toggle-button--purple-when-active--is-active {\n border-color: #5560d2;\n color: #5560d2;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-tooltip__content {\n color: #fff;\n }\n /* zenhub: \"transparent\",\"none\" */\n body.zh_logged_in .zhc-tooltip__content::before {\n background-color: transparent;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-tooltip--info-tip .zhc-tooltip__content {\n background-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-tooltip--info-tip.zhc-tooltip--right .zhc-tooltip__content::before {\n border-right-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-tooltip--info-tip.zhc-tooltip--left .zhc-tooltip__content::before {\n border-left-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-tooltip--info-tip.zhc-tooltip--top .zhc-tooltip__content::before {\n border-top-color: #181818;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-tooltip--info-tip.zhc-tooltip--bottom .zhc-tooltip__content::before {\n border-bottom-color: #181818;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-topbar {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-topbar__sidebar-toggle {\n border-right-color: #343434;\n }\n /* zenhub: \"#ccc\", \"color: #fff\" */\n body.zh_logged_in .zhc-untitled-tag {\n background-color: #484848;\n color: #fff;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-upgrade-to-growth__subtext {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-upgrade-to-growth__monthly-pricing__price,\n body.zh_logged_in .zhc-upgrade-to-growth__monthly-pricing__user {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-upgrade-to-growth__list {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-user-load-failed__troubleshoot-guide-link {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-username {\n color: #bebebe;\n }\n /* zenhub: \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-chart-velocity__left-axis {\n box-shadow: 0 0 8px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"box-shadow: none\" */\n @media (min-width: 1020px) {\n body.zh_logged_in .zhc-chart-velocity__left-axis {\n box-shadow: none;\n }\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-workspace-badge {\n color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form-input__text-input {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-workspace-form-input__icon-right--check .zhc-svg-icon {\n color: #fff;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-form-input__icon-right--lock .zhc-svg-icon,\n body.zh_logged_in .zhc-workspace-form-loading__header {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form-repo-item {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-form-repo-item__name {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form-section--connected-repos {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\", \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form-section__tip {\n color: #949494;\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form-section__title {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-workspace-form {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-form__load-warning--moderate .zhc-svg-icon,\n body.zh_logged_in .zhc-workspace-form__subtext {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form__load-info {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-form__load-info .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#f4f4f4\" */\n body.zh_logged_in .zhc-workspace-form__close:hover {\n border-color: #343434;\n background-color: #242424;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-workspace-form__footer {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-form__footer__actions {\n border-top-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-form__footer__actions-learn-link .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#f4f4f4\" */\n body.zh_logged_in .zhc-workspace-switcher__x:hover {\n border-color: #343434;\n background-color: #242424;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\", \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-workspace-import {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-import__header {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-workspace-import__valid-icon .zhc-svg-icon {\n color: #fff;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-import-sidebar__main .zhc-svg-icon {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-current-workspace {\n border-color: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-current-workspace__name {\n color: #5560d2;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-current-workspace__description {\n color: #949494;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-current-workspace__cta {\n color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-switcher-search__input {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-workspace-switcher-search__input:focus {\n box-shadow: none;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-switcher-query-info,\n body.zh_logged_in .zhc-workspace-switcher-search-results__no-results__header,\n body.zh_logged_in .zhc-workspace-switcher-search__icon {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-workspace-switcher-empty__title {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-switcher-empty__body {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#fff\" */\n body.zh_logged_in .zhc-workspace-switcher__header {\n background-color: #181818;\n box-shadow: 0 0 4px 4px #181818;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workspace-switcher__close:hover,\n body.zh_logged_in .zhc-workspace-switcher__header .zhc-org-dropdown:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"color: #333\" */\n body.zh_logged_in .zhc-workspace-switcher-item {\n border-color: transparent transparent #343434;\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-workspace-switcher-item:hover {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-workspace-switcher-item__subtitle {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-workspace-switcher-item__search-terms {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-workspace-switcher {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-account-settings__arrow {\n color: #bebebe;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-account-settings__button-link {\n color: #5560d2;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-dashboard-enterprise-integrations-page .zhc-org-dropdown__toggle-button:hover {\n background-color: #242424;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zhc-enterprise-manage-plan__section {\n background-color: #181818;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-enterprise-manage-plan__section h3 {\n color: #bebebe;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-enterprise-manage-plan__header,\n body.zh_logged_in .zhc-enterprise-manage-plan__item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-enterprise-manage-plan__item .zhu-font-bold,\n body.zh_logged_in .zhc-enterprise-manage-plan__radio label {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-no-access-container__icon-container {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-dashboard-enterprise-container .zhu-font-bold {\n color: #bebebe;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-seated-user-options-button--is-open.zhc-seated-user-options-button--is-open,\n body.zh_logged_in .zhc-seated-user-options-button:hover {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-seated-user-options-list {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-banner--zhc-renewal-notice-section {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-collapsible-team-member-list__header,\n body.zh_logged_in .zhc-team-members-page__container {\n background-color: #181818;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-unlicensed-team-list {\n background-color: #242424;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-unlicensed-team-list > .zhc-collapsible-team-member-list__header {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#fcf9e4\", \"#faebcc\" */\n body.zh_logged_in .zhc-unlicensed-team-list__requested-team-list {\n background-color: #261d08;\n border-color: #261d08;\n }\n /* zenhub: \"#fcf9e4\" */\n body.zh_logged_in .zhc-unlicensed-team-list__requested-team-list .zhc-collapsible-team-member-list__header {\n background-color: #261d08;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-unlicensed-team-list__default-team-list {\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-team-members-page__search {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-epic-builder__assignee-count {\n color: #949494;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-epic-issue-list {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-epic-issue-list-table__cell--dark {\n background-color: #202020;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-epic-issue-list-table__cell--light {\n background-color: #181818;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-issue-list-table__assignee-count {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-epic-builder-pipeline-cell,\n body.zh_logged_in .zhc-issue-list-table__first-col {\n background-color: #202020;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-floating-tooltip {\n color: #fff;\n }\n /* zenhub: \"none\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-floating-tooltip__popover {\n background: none;\n box-shadow: none;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-onboarding-tutorials {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-onboarding-tutorials > header {\n color: #fff;\n }\n /* zenhub: \"none\", \"color: #fff\" */\n body.zh_logged_in .zhc-onboarding-tutorials__close-button {\n background: none;\n color: #fff;\n }\n /* zenhub: \"none\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-onboarding-tutorials__launch-button {\n background: none;\n border-top-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-onboarding-tutorials__launch-button:hover {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-onboarding-tutorials__help-link {\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-onboarding-welcome {\n background-color: #181818;\n }\n /* zenhub: \"none\", \"color: #666\" */\n body.zh_logged_in .zhc-onboarding-welcome__close-button {\n background: none;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-onboarding-welcome__close-button:hover {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-onboarding-welcome__text {\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-onboarding-welcome__text b {\n color: #bebebe;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-onboarding-highlight__arrow-icon {\n color: #fff;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-roadmap-calendar.zhc-popover .DateRangePicker .DateRangePicker_picker .DayPicker.DayPicker__horizontal {\n box-shadow: none;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-onboarding__fake-add-button {\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-body-empty {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-body-empty-panel-divider {\n border-right-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-roadmap-body-empty-panel__desc {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-roadmap-sidebar-empty {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-sidebar-empty-placeholder__square,\n body.zh_logged_in .zhc-roadmap-sidebar-empty-placeholder__topLine {\n background-color: #343434;\n }\n /* zenhub: \"#f4f4f4\" */\n body.zh_logged_in .zhc-roadmap-sidebar-empty-placeholder__bottomLine {\n background-color: #242424;\n }\n /* zenhub: \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-body__roadmap-item {\n box-shadow: 0 1px 1px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"#f8f8f8\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-body__roadmap-item--complete-sub-colorless {\n background-image: -webkit-repeating-linear-gradient(135deg, #e5e5e5, #e5e5e5 10px, #202020 10px, #202020 20px);\n background-image: repeating-linear-gradient(-45deg, #e5e5e5, #e5e5e5 10px, #202020 10px, #202020 20px);\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-roadmap-item-title__no-epics-string {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .roadmap-loading-state__body,\n body.zh_logged_in .zhc-roadmap-item-predicted-end-date .zhc-roadmap-predicted-end-date-clock-icon__wrapper {\n background-color: #181818;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-temp-project-overlay {\n background-color: #202020;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-roadmap-temp-project__item {\n background-color: #343434;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-roadmap {\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap .zhc-roadmap-header {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body,\n body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body-view--root,\n body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body__subheader {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body-view--sub-item {\n background-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-options-selector-section {\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-row {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--color-secondary {\n background-color: #383838;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--color-primary {\n background-color: #202020;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--modifier-last-sub-item {\n border-bottom-color: #343434;\n }\n /* zenhub: \"#e9e9e9\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--size-large {\n border-bottom-color: #343434;\n border-top-color: #343434;\n }\n /* zenhub: \"transparent\", \"transparent\" */\n body.zh_logged_in .zhc-roadmap-row.zhc-roadmap-row--modifier-striped::before {\n background-image: -webkit-repeating-linear-gradient(135deg, #999, #999 10px, transparent 10px, transparent 20px);\n background-image: repeating-linear-gradient(-45deg, #999, #999 10px, transparent 10px, transparent 20px);\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-selection-item {\n border-color: transparent transparent #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-selection-item--is-active {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-add-epics-dropdown__footer {\n border-top-color: #343434;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-item-add-to-project {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-add-panel {\n color: #fff;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-add-panel__divider {\n border-top-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-item-add {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-sidebar-expand-toggle {\n background-color: transparent;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-expand-toggle--enabled:hover,\n body.zh_logged_in .zhc-sidebar-expand-toggle--enabled:hover .zhc-sidebar-expand-toggle__title {\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-sidebar-input__char-count {\n color: #949494;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-input__input {\n border-color: #343434;\n }\n /* zenhub: \"#fff\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-options-panel {\n background-color: #181818;\n border-color: #343434;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-options-panel__actions-section {\n border-top-color: #343434;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-sidebar-project-display__toggle--collapsed {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-roadmap-add-epic-item__title {\n color: #949494;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-roadmap-sidebar {\n background-color: #181818;\n }\n /* zenhub: \"#e9e9e9\", \"rgba(0,0,0,0.2)\" */\n body.zh_logged_in .zhc-roadmap-sidebar__body {\n border-color: #343434;\n box-shadow: -5px 0 30px 0 rgba(255, 255, 255, .7);\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-roadmap-sidebar__body--empty {\n box-shadow: none;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-roadmap-title--color-default {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-roadmap-title--color-primary {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap__title {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .zhc-roadmap__title--secondary {\n background-color: #383838;\n }\n /* zenhub: \"#e9e9e9\" */\n body.zh_logged_in .zhc-roadmap-date-strip {\n border-bottom-color: #343434;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-roadmap-date-strip__unit-top {\n color: #949494;\n }\n /* zenhub: \"#f8f8f8\", \"#e9e9e9\", \"#eee\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-roadmap-subheader {\n border-bottom-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-date-preview,\n body.zh_logged_in .zhc-roadmap-today-indicator__label {\n color: #fff;\n }\n /* zenhub: \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-roadmap-track::after {\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-roadmap-track--expandable:not(.react-draggable-dragging):not(.zhc-roadmap-track--resizable):hover .zhc-roadmap-track__drag-handle,\n body.zh_logged_in .zhc-roadmap-track__drag-handle--has-background,\n body.zh_logged_in .zhc-roadmap-track__drag-handle:hover {\n background-color: #181818;\n }\n /* zenhub: \"#faebcc\", \"#fcf9e4\", \"color: #666\" */\n body.zh_logged_in .zhc-roadmap-warning-body {\n border-color: #261d08;\n background-color: #261d08;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-roadmap-warning-body .zhc-roadmap-warning-body__warning {\n color: #bebebe;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-roadmap-warning {\n background-color: #181818;\n }\n /* zenhub: \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-toast {\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-toast--info-message, body.zh_logged_in .zhc-toast b {\n color: #fff;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zhc-toast .zhc-btn--zhc-toast__button {\n background-color: transparent;\n }\n /* zenhub: \"none\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-toast--no-background {\n background: none;\n box-shadow: none;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-toast-action,\n body.zh_logged_in .zhc-toast-dependency-fetch-error,\n body.zh_logged_in .zhc-toast-loading {\n color: #fff;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-toast-tutorial {\n background-color: #202020;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zhc-toast-tutorial__content {\n background-color: #181818;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-toast-tutorial__content h3 {\n color: #bebebe;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zhc-toast-tutorial__content p {\n color: #949494;\n }\n /* zenhub: \"box-shadow: none\" */\n body.zh_logged_in .zhc-toast-tutorial__action-buttons {\n box-shadow: none;\n }\n /* zenhub: \"#fff\", \"color: #666\" */\n body.zh_logged_in .zhc-toast-tutorial__controls button {\n background-color: #181818;\n color: #949494;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .zhc-toast-tutorial__controls button:hover {\n color: #bebebe;\n }\n /* zenhub: \"#fff\", \"rgba(27,31,35,0.15)\" */\n body.zh_logged_in .zhc-workflows-connection-bar {\n background-color: #181818;\n box-shadow: 0 3px 12px #000;\n }\n /* zenhub: \"none\", \"box-shadow: none\" */\n body.zh_logged_in .zhc-workflows-connection-bar .zhc-button--variant-contained {\n background: none;\n box-shadow: none;\n }\n /* zenhub: \"#e9e9e9\", \"#f8f8f8\" */\n body.zh_logged_in .zhc-workflows-connection-bar .zhc-button--variant-contained:hover {\n border-color: #343434;\n background-color: #202020;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .workflows-destination-pipeline-icon {\n color: #fff;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .workflows-destination-pipeline-icon__triangle path {\n stroke: #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-workflows-pipeline--highlighted,\n body.zh_logged_in .zhc-workflows-pipeline--selected {\n outline: solid 2px #5560d2;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-workflows-pipeline--selected .zhc-workflows-pipeline__button {\n color: #5560d2;\n }\n /* zenhub: \"color: #333\", \"#fff\" */\n body.zh_logged_in .zhc-workflows-pipeline--disabled .zhc-workflows-pipeline__button {\n color: #bebebe;\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zhc-workflows-pipeline__selected-icon {\n color: #fff;\n }\n /* zenhub: \"#5e60ba\" */\n body.zh_logged_in .zhc-workflows-pipeline__selected-icon circle {\n fill: #5560d2;\n }\n /* zenhub: \"#fff\", \"#5e60ba\" */\n body.zh_logged_in .workflows-source-pipeline-icon {\n background-color: #181818;\n border-color: #5560d2;\n }\n /* zenhub: \"#f8f8f8\" */\n body.zh_logged_in .zhc-workflows {\n background-color: #202020;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zhc-workflows-workspace {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"color: #333\", \"#ddd\" */\n body.zh_logged_in .zh-form-control, body.zh_logged_in .zh-form-control-small {\n color: #bebebe;\n border-color: #343434;\n }\n /* zenhub: \"#fff\" */\n body.zh_logged_in .zh-form-control-small:focus,\n body.zh_logged_in .zh-form-control:focus {\n background-color: #181818;\n }\n /* zenhub: \"color: #fff\" */\n @media only screen and (max-width: 768px) {\n body.zh_logged_in .zh-logo {\n color: #fff;\n }\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .zh-logo.short {\n color: #fff;\n }\n /* zenhub: \"#f4f5f5\" */\n body.zh_logged_in .zh-boxie-modal {\n background-color: #242424 !important;\n }\n /* zenhub: \"color: #586069 !important\" */\n body.zh_logged_in .zh-muted-link {\n color: #afafaf !important;\n }\n /* zenhub: \"#0366d6\" */\n body.zh_logged_in .zh-muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* zenhub: \"color: #586069 !important\" */\n body.zh_logged_in .zh-text-muted {\n color: #afafaf !important;\n }\n /* zenhub: \"color: #fff\" */\n body.zh_logged_in .icon-light {\n color: #fff;\n }\n /* zenhub: \"color: #333\" */\n body.zh_logged_in .icon-dark {\n color: #bebebe;\n }\n /* zenhub: \"#eeeeee\" */\n body.zh_logged_in .icon-border {\n border-color: #343434;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .dropdown-menu > .active > a > [class*=\" icon-\"],\n body.zh_logged_in .dropdown-menu > .active > a > [class^=\"icon-\"],\n body.zh_logged_in .dropdown-menu > li > a:hover > [class*=\" icon-\"],\n body.zh_logged_in .dropdown-menu > li > a:hover > [class^=\"icon-\"],\n body.zh_logged_in .dropdown-submenu:hover > a > [class*=\" icon-\"],\n body.zh_logged_in .dropdown-submenu:hover > a > [class^=\"icon-\"],\n body.zh_logged_in .icon-white,\n body.zh_logged_in .nav-list > .active > a > [class*=\" icon-\"],\n body.zh_logged_in .nav-list > .active > a > [class^=\"icon-\"],\n body.zh_logged_in .nav-pills > .active > a > [class*=\" icon-\"],\n body.zh_logged_in .nav-pills > .active > a > [class^=\"icon-\"],\n body.zh_logged_in .navbar-inverse .nav > .active > a > [class*=\" icon-\"],\n body.zh_logged_in .navbar-inverse .nav > .active > a > [class^=\"icon-\"],\n body.zh_logged_in [class*=\" icon-\"], body.zh_logged_in [class^=\"icon-\"] {\n background-image: none;\n }\n /* zenhub: \"#fff\", \"color: #fff\" */\n body.zh_logged_in .zh-menu-header {\n background-color: #181818;\n color: #fff;\n }\n /* zenhub: \"color: #fff\", \"#eee\" */\n body.zh_logged_in .zh-btn {\n color: #fff;\n background-color: #242424;\n }\n /* zenhub: \"none\" */\n body.zh_logged_in .zh-btn:active {\n background-image: none;\n }\n /* zenhub: \"#ddd\" */\n body.zh_logged_in .disabled {\n background-color: #383838;\n }\n /* zenhub: \"color: #666\" */\n body.zh_logged_in .zh-menu-content__item {\n color: #949494;\n }\n /* zenhub: \"#f4f4f4\", \"#e9e9e9\" */\n body.zh_logged_in .zh-menu-content__item:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* zenhub: \"transparent\" */\n body.zh_logged_in .zh-menu-content__item--disabled:hover {\n background-color: transparent;\n }\n /* end zenhub rules */\n /* begin github-hovercard rules */\n /* github-hovercard: \"rgba(0, 0, 0, .8)\", \"color: #fff\" */\n html[class^=\"ghh\"] .tooltipster-box {\n background-color: #242424;\n color: #fff;\n }\n /* github-hovercard: \"color: #fff\" */\n html[class^=\"ghh\"] .tooltipster-content {\n color: #fff;\n }\n /* github-hovercard: \"rgba(0, 0, 0, .8)\" */\n html[class^=\"ghh\"] .tooltipster-bottom .tooltipster-arrow-border {\n border-bottom-color: #242424;\n }\n /* github-hovercard: \"rgba(0, 0, 0, .8)\" */\n html[class^=\"ghh\"] .tooltipster-left .tooltipster-arrow-border {\n border-left-color: #242424;\n }\n /* github-hovercard: \"rgba(0, 0, 0, .8)\" */\n html[class^=\"ghh\"] .tooltipster-right .tooltipster-arrow-border {\n border-right-color: #242424;\n }\n /* github-hovercard: \"rgba(0, 0, 0, .8)\" */\n html[class^=\"ghh\"] .tooltipster-top .tooltipster-arrow-border {\n border-top-color: #242424;\n }\n /* github-hovercard: \"#b4d6fe\" */\n html[class^=\"ghh\"] .ghh a {\n color: /*[[base-color]]*/;\n }\n /* github-hovercard: \"transparent\" */\n html[class^=\"ghh\"] .windows .ghh ::-webkit-scrollbar,\n html[class^=\"ghh\"] .windows .ghh ::-webkit-scrollbar-corner {\n background-color: transparent;\n }\n /* github-hovercard: \"#dfe2e5\", \"color: #6a737d\" */\n html[class^=\"ghh\"] .ghh-issue-body blockquote,\n html[class^=\"ghh\"] .ghh-readme blockquote {\n border-left-color: #343434;\n color: #949494;\n }\n /* github-hovercard: \"rgba(27,31,35,0.05)\" */\n html[class^=\"ghh\"] .ghh-issue-body code,\n html[class^=\"ghh\"] .ghh-issue-body tt, html[class^=\"ghh\"] .ghh-readme code,\n html[class^=\"ghh\"] .ghh-readme tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* github-hovercard: \"transparent\" */\n html[class^=\"ghh\"] .ghh-issue-body pre code,\n html[class^=\"ghh\"] .ghh-issue-body pre tt,\n html[class^=\"ghh\"] .ghh-readme pre code,\n html[class^=\"ghh\"] .ghh-readme pre tt {\n background-color: transparent;\n }\n /* github-hovercard: \"#fff\" */\n html[class^=\"ghh\"] .ghh-issue-body a[href^=\"https://saucelabs.com/\"] img,\n html[class^=\"ghh\"] .ghh-readme a[href^=\"https://saucelabs.com/\"] img {\n background-color: #181818;\n }\n /* github-hovercard: \"#eaecef\" */\n .ghh-theme-github .ghh-issue-body h1, .ghh-theme-github .ghh-issue-body h2,\n .ghh-theme-github .ghh-readme h1, .ghh-theme-github .ghh-readme h2 {\n border-bottom-color: #343434;\n }\n /* github-hovercard: \"#fff\", \"#c6cbd1\" */\n .ghh-theme-github .ghh-issue-body tr, .ghh-theme-github .ghh-readme tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* github-hovercard: \"#f6f8fa\" */\n .ghh-theme-github .ghh-issue-body tr:nth-child(2n),\n .ghh-theme-github .ghh-readme tr:nth-child(2n) {\n background-color: #222;\n }\n /* github-hovercard: \"#dfe2e5\" */\n .ghh-theme-github .ghh-issue-body td, .ghh-theme-github .ghh-issue-body th,\n .ghh-theme-github .ghh-readme td, .ghh-theme-github .ghh-readme th {\n border-color: #343434;\n }\n /* github-hovercard: \"#0366d6\" */\n .ghh-theme-github .ghh .ghh-issue-body a,\n .ghh-theme-github .ghh .ghh-readme a {\n color: /*[[base-color]]*/;\n }\n /* github-hovercard: \"color: #24292e\" */\n .ghh-theme-github .ghh .ghh-issue-body .user-mention,\n .ghh-theme-github .ghh .ghh-readme .user-mention {\n color: #cdcdcd;\n }\n /* github-hovercard: \"transparent\" */\n .ghh-theme-classic .ghh-issue-body pre code,\n .ghh-theme-classic .ghh-issue-body pre tt,\n .ghh-theme-classic .ghh-readme pre code,\n .ghh-theme-classic .ghh-readme pre tt {\n background-color: transparent;\n }\n /* github-hovercard: \"color: #fff !important\" */\n .ghh-theme-classic .ghh-issue-body .text-gray-light,\n .ghh-theme-classic .ghh-readme .text-gray-light {\n color: #fff !important;\n }\n /* github-hovercard: \"transparent\" */\n .ghh-theme-classic .ghh-issue-body .bg-white,\n .ghh-theme-classic .ghh-readme .bg-white {\n background-color: transparent !important;\n }\n /* github-hovercard: \"rgba(255,255,255,0.5)\" */\n .ghh-theme-classic .ghh-issue-body .blob-num,\n .ghh-theme-classic .ghh-readme .blob-num {\n color: hsla(0, 0%, 0%, .5) !important;\n }\n /* github-hovercard: \"color: #fff !important\" */\n .ghh-theme-classic .ghh-issue-body .blob-code-inner,\n .ghh-theme-classic .ghh-readme .blob-code-inner {\n color: #fff !important;\n }\n /* github-hovercard: \"color: #fff\" */\n html[class^=\"ghh\"] .ghh button {\n color: #fff;\n }\n /* github-hovercard: \"#0366d6\" */\n html[class^=\"ghh\"] .ghh button.ghh-primary:hover {\n background-color: /*[[base-color]]*/;\n }\n /* github-hovercard: \"rgba(255,255,255,0.8)\" */\n html[class^=\"ghh\"] .ghh button.ghh-aux {\n color: hsla(0, 0%, 100%, .8);\n }\n /* github-hovercard: \"color: #fff\" */\n html[class^=\"ghh\"] .ghh .ghh-state,\n html[class^=\"ghh\"] .ghh button.ghh-aux:hover {\n color: #fff;\n }\n /* github-hovercard: \"#2cbe4e\" */\n html[class^=\"ghh\"] .ghh .ghh-state-open {\n background-color: #373;\n }\n /* github-hovercard: \"#cb2431\" */\n html[class^=\"ghh\"] .ghh .ghh-state-closed {\n background-color: #d82828;\n }\n /* github-hovercard: \"#6f42c1\" */\n html[class^=\"ghh\"] .ghh .ghh-state-merged {\n background-color: #9378ba;\n }\n /* github-hovercard: \"#6a737d\" */\n html[class^=\"ghh\"] .ghh .ghh-state-draft {\n background-color: #444;\n }\n /* github-hovercard: \"#dbab09\" */\n html[class^=\"ghh\"] .ghh .ghh-state-warning {\n color: #cb4;\n }\n /* github-hovercard: \"#28a745\" */\n html[class^=\"ghh\"] .ghh .ghh-state-verified {\n background-color: #484;\n }\n /* github-hovercard: \"#fff\" */\n html[class^=\"ghh\"] .ghh-avatar {\n background-color: #181818;\n }\n /* github-hovercard: \"color: #fff\" */\n html[class^=\"ghh\"] .ghh-pull-meta .ghh-reviews .ghh-state-icon,\n html[class^=\"ghh\"] .ghh-stats span, html[class^=\"ghh\"] .ghh-topic {\n color: #fff;\n }\n /* github-hovercard: \"#dbab09\" */\n html[class^=\"ghh\"] .ghh-pull-meta .ghh-reviews .ghh-state-icon-warning {\n background-color: #cb4;\n }\n /* github-hovercard: \"#6a737d\" */\n html[class^=\"ghh\"] .ghh-pull-meta .ghh-reviews .ghh-state-icon-problem {\n background-color: #444;\n }\n /* github-hovercard: \"#fff\" */\n html[class^=\"ghh\"] .ghh-overlay form {\n background-color: #181818;\n }\n /* github-hovercard: \"#eee\" */\n html[class^=\"ghh\"] .ghh-overlay form h3 {\n border-bottom-color: #343434;\n }\n /* github-hovercard: \"rgba(27,31,35,0.15)\", \"#fff\", \"#d1d5da\", \"color: #586069\" */\n .ghh-theme-github .tooltipster-box .tooltipster-content {\n box-shadow: 0 1px 15px #000;\n background-color: #181818;\n border-color: #404040;\n color: #afafaf;\n }\n /* github-hovercard: \"#fff\" */\n .ghh-theme-github .tooltipster-right .tooltipster-arrow-background {\n border-right-color: #181818;\n }\n /* github-hovercard: \"#d1d5da\" */\n .ghh-theme-github .tooltipster-right .tooltipster-arrow-border {\n border-right-color: #404040;\n }\n /* github-hovercard: \"#fff\" */\n .ghh-theme-github .tooltipster-left .tooltipster-arrow-background {\n border-left-color: #181818;\n }\n /* github-hovercard: \"#d1d5da\" */\n .ghh-theme-github .tooltipster-left .tooltipster-arrow-border {\n border-left-color: #404040;\n }\n /* github-hovercard: \"#fff\" */\n .ghh-theme-github .tooltipster-top .tooltipster-arrow-background {\n border-top-color: #181818;\n }\n /* github-hovercard: \"#d1d5da\" */\n .ghh-theme-github .tooltipster-top .tooltipster-arrow-border {\n border-top-color: #404040;\n }\n /* github-hovercard: \"#fff\" */\n .ghh-theme-github .tooltipster-bottom .tooltipster-arrow-background {\n border-bottom-color: #181818;\n }\n /* github-hovercard: \"#d1d5da\" */\n .ghh-theme-github .tooltipster-bottom .tooltipster-arrow-border {\n border-bottom-color: #404040;\n }\n /* github-hovercard: \"color: #24292e\" */\n .ghh-theme-github .ghh a {\n color: #cdcdcd;\n }\n /* github-hovercard: \"#0366d6\" */\n .ghh-theme-github .ghh a:hover {\n color: /*[[base-color]]*/;\n }\n /* github-hovercard: \"color: #fff\" */\n .ghh-theme-github .ghh button.ghh-aux, .ghh-theme-github .ghh button:hover {\n color: #fff;\n }\n /* github-hovercard: \"#dfe2e5\" */\n .ghh-theme-github .ghh-markdown-separator {\n border-bottom-color: #343434;\n }\n /* github-hovercard: \"#dfe2e5\" */\n .ghh-theme-github .ghh .ghh-stats > a + a {\n border-left-color: #343434;\n }\n /* github-hovercard: \"color: #24292e\" */\n .ghh-theme-github .ghh .ghh-stats span {\n color: #cdcdcd;\n }\n /* github-hovercard: \"#dfe2e5\" */\n .ghh-theme-github .ghh .ghh-more-separator {\n border-bottom-color: #343434;\n }\n /* github-hovercard: \"#22863a\", \"#e1e4e8\", \"#fff\" */\n .ghh-theme-github .ghh .ghh-state-verified {\n color: #6cc644;\n border-color: #343434;\n background-color: #181818;\n }\n /* github-hovercard: \"#2cbe4e\" */\n .ghh-theme-github .ghh-commit-meta .text-diff-added,\n .ghh-theme-github .ghh-pull-meta .text-diff-added {\n color: #373 !important;\n }\n /* github-hovercard: \"#cb2431\" */\n .ghh-theme-github .ghh-commit-meta .text-diff-deleted,\n .ghh-theme-github .ghh-pull-meta .text-diff-deleted {\n color: #d82828 !important;\n }\n /* github-hovercard: \"#cb2431\" */\n .ghh-theme-github .ghh-reviews .ghh-state-alert {\n color: #d82828;\n }\n /* github-hovercard: \"#2cbe4e\" */\n .ghh-theme-github .ghh-reviews .ghh-state-success {\n color: #373;\n }\n /* github-hovercard: \"#b08800\" */\n .ghh-theme-github .ghh-reviews .ghh-state-warning {\n color: #cb4;\n }\n /* github-hovercard: \"#cb2431\" */\n .ghh-theme-github .ghh-reviews .ghh-state-icon-alert {\n background-color: #d82828;\n }\n /* github-hovercard: \"#2cbe4e\" */\n .ghh-theme-github .ghh-reviews .ghh-state-icon-success {\n background-color: #373;\n }\n /* github-hovercard: \"#b08800\" */\n .ghh-theme-github .ghh-reviews .ghh-state-icon-warning {\n background-color: #cb4;\n }\n /* github-hovercard: \"#6a737d\" */\n .ghh-theme-github .ghh-reviews .ghh-state-icon-problem {\n background-color: #444;\n }\n /* end github-hovercard rules */\n /* begin gitako rules */\n /* gitako: \"#24292e\" */\n .gitako-ready .js-header-wrapper {\n background-color: #181818;\n }\n /* gitako: \"#e1e4e8\" */\n .gitako-ready main > *:first-child {\n box-shadow: inset 0 -1px 0 #343434;\n }\n /* gitako: \"#d1d5da\", \"#fafbfc\" */\n body.gitako-ready .markdown-body .clippy-wrapper .clippy {\n border-color: #404040;\n background-color: #181818;\n }\n /* gitako: \"#fafbfc\" */\n body.gitako-ready .markdown-body .clippy-wrapper .clippy:active,\n body.gitako-ready .markdown-body .clippy-wrapper .clippy:hover {\n background-color: #181818;\n }\n /* gitako: \"#e1e4e8\", \"#f6f8fa\" */\n body.gitako-ready .gitako-toggle-show-button-wrapper.collapsed {\n border-color: #343434;\n background-color: #222;\n }\n /* gitako: \"#0366d6\" */\n body.gitako-ready .gitako-toggle-show-button-wrapper.collapsed .action-icon {\n color: /*[[base-color]]*/;\n }\n /* gitako: \"color: #6a737d\" */\n body.gitako-ready .gitako-toggle-show-button-wrapper .action-icon {\n color: #949494;\n }\n /* gitako: \"#d73a49\" */\n body.gitako-ready .gitako-toggle-show-button-wrapper.error .action-icon {\n color: #d82828;\n }\n /* gitako: \"transparent\" */\n body.gitako-ready .gitako-side-bar a {\n background-color: transparent;\n }\n /* gitako: \"color: #1b1f23\" */\n body.gitako-ready .gitako-side-bar mark {\n color: #dcdcdc;\n }\n /* gitako: \"color: #24292e\", \"#fff\" */\n body.gitako-ready .gitako-side-bar body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gitako: \"#0366d6\" */\n body.gitako-ready .gitako-side-bar a {\n color: /*[[base-color]]*/;\n }\n /* gitako: \"transparent\", \"#dfe2e5\" */\n body.gitako-ready .gitako-side-bar .rule,\n body.gitako-ready .gitako-side-bar hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* gitako: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n body.gitako-ready .gitako-side-bar kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* gitako: \"#f6f8fa\", \"#d1d5da\" */\n body.gitako-ready .gitako-side-bar .gitako-resize-handler {\n background-color: #222;\n border-right-color: #404040;\n }\n /* gitako: \"#fafbfc\", \"#d1d5da\" */\n body.gitako-ready .gitako-side-bar .gitako-resize-handler:active,\n body.gitako-ready .gitako-side-bar .gitako-resize-handler:hover {\n background-color: #181818;\n border-left-color: #404040;\n }\n /* gitako: \"#fafbfc\", \"#e1e4e8\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body {\n background-color: #181818;\n border-left-color: #343434;\n }\n /* gitako: \"rgba(3,47,98,.55)\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .octicon,\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .octicon-color {\n color: /*[[base-color]]*/;\n }\n /* gitako: \"#f1f8ff\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .meta-bar {\n background-color: #182030;\n }\n /* gitako: \"#e1e4e8\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .description,\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .loading-indicator-container {\n border-top-color: #343434;\n }\n /* gitako: \"box-shadow: none\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .search-input-wrapper .search-input {\n box-shadow: none;\n }\n /* gitako: \"#d73a49\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .search-input-wrapper .search-input.error {\n border-color: #d82828;\n }\n /* gitako: \"#fff\", \"#0366d6\", \"#eaecef\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item {\n background-color: #181818;\n color: /*[[base-color]]*/;\n border-bottom-color: #343434;\n }\n /* gitako: \"#fafbfc\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item:hover {\n background-color: #181818;\n }\n /* gitako: \"#f6f8fa\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item.focused,\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item:active {\n background-color: #222;\n }\n /* gitako: \"color: #959da5\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item.disabled .node-item {\n color: #767676;\n }\n /* gitako: \"transparent\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item .go-to-button {\n background-color: transparent;\n }\n /* gitako: \"#fafbfc\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar {\n background-color: #181818;\n }\n /* gitako: \"#eaecef\", \"rgba(0,0,0,.2)\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-title {\n border-top-color: #343434;\n box-shadow: 0 1px 8px 0 rgba(255, 255, 255, .7), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 3px 3px -2px rgba(0, 0, 0, .12);\n }\n /* gitako: \"#fafbfc\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .shadow-shelter {\n background-color: #181818;\n }\n /* gitako: \"#fff\", \"#e1e4e8\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .settings-section .field select {\n background-color: #181818;\n border-color: #343434;\n }\n /* gitako: \"color: #6a737d\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar .hint {\n color: #949494;\n }\n /* gitako: \"#eaecef\" */\n body.gitako-ready .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar .header-row {\n border-top-color: #343434;\n }\n /* end gitako rules */\n /* begin npmhub rules */\n /* npmhub: \"#DDD\" */\n .npmhub-deps > li {\n border-bottom-color: #343434;\n }\n /* end npmhub rules */\n /* begin notifications-preview rules */\n /* notifications-preview: \"color: rgb(36,41,46)\" */\n :root:root .NPG-dropdown {\n color: rgb(210, 210, 210) !important;\n }\n /* notifications-preview: \"#e6ebf1\" */\n .participating .js-notifications-browser::before {\n background-color: #444;\n }\n /* end notifications-preview rules */\n /* Refined GitHub - https://github.com/sindresorhus/refined-github\n * See #540\n * See #881 */\n .refined-github-diff-signs .blob-code-addition::before,\n .refined-github-diff-signs .blob-code-deletion::before {\n color: #7b7b7b !important;\n }\n .refined-github .dashboard .border-gray.flex-items-baseline.py-3,\n .refined-github .dashboard .js-all-activity-header + div {\n background: #181818 !important;\n }\n .refined-github .dashboard .js-all-activity-header + div {\n border-color: #343434 !important;\n }\n /* https://github.com/StylishThemes/GitHub-Dark/issues/1035 */\n .refined-github .reaction-summary-item.user-has-reacted {\n --background: transparent !important;\n }\n .refined-github .reaction-summary-item a {\n box-shadow: none;\n }\n /* https://github.com/musically-ut/lovely-forks */\n .lovely-forks-addon {\n color: #808080 !important;\n }\n /* https://github.com/npmhub/npmhub */\n .npmhub-deps > li {\n border-color: #343434 !important;\n }\n /* ZenHub */\n body.zh_logged_in .zh-login-status {\n background: #181818 !important;\n border-color: #484848 !important;\n color: #bebebe !important;\n }\n body.zh_logged_in [style*=\"background-color: rgb(244, 244, 244)\"] {\n background: #222 !important;\n }\n /* zenhub gradients */\n body.zh_logged_in .zhc-sidebar__navigation {\n background: none !important;\n }\n body.zh_logged_in .zhc-workspace-switcher__header {\n box-shadow: none !important;\n }\n body.zh_logged_in .zhc-btn--minimal {\n background: none !important;\n border: none !important;\n }\n body.zh_logged_in .zh-icon-circled-bolt, body.zh_logged_in .zh-icon-bolt,\n body.zh_logged_in .zh-octicon-x {\n filter: invert(40%) brightness(120%) !important;\n }\n body.zh_logged_in a.zh-topbar-item.selected .zh-icon-zenhub {\n filter: invert(40%) brightness(169%) !important;\n }\n body.zh_logged_in a.zh-topbar-item .zh-icon-zenhub {\n filter: brightness(64%) !important;\n }\n body.zh_logged_in .zhc-icon:not([class$=\"-red\"]):not([class$=\"-white\"]):not([class$=\"-light\"]):not([class$=\"-purple\"]),\n body.zh_logged_in [class*=\"zh-octicon\"],\n body.zh_logged_in .zh-epic-creator-tab-icon,\n body.zh_logged_in .zhc-burndown-chart__placeholder,\n body.zh_logged_in .zhc-selection-button__container::after,\n body.zh_logged_in .zhc-icon--grey-light {\n filter: invert(100%) hue-rotate(180deg) !important;\n }\n body.zh_logged_in .zhc-selection-item:hover .zhc-icon:not([class$=\"-red\"]):not([class$=\"-white\"]):not([class$=\"-light\"]):not([class$=\"-purple\"]),\n body.zh_logged_in [class*=\"zhc-image--placeholder\"] {\n filter: invert(100%) brightness(1.4) !important;\n }\n body.zh_logged_in .zhc-info-alert img {\n filter: invert(96%) hue-rotate(180deg);\n }\n /* move expanded zenhub board toolbar when octotree exists\n * see https://github.com/buunguyen/octotree/issues/242 */\n html.octotree:not(.octotree-show) .zhc-board--is-fullscreen .zhc-menu-bar {\n margin-left: 30px;\n margin-top: -8px;\n }\n /* octotree */\n .octotree-sidebar {\n background: #181818 !important;\n border-color: #343434 !important;\n }\n .octotree-views, .octotree-sidebar .octotree-bottom {\n background: #181818 !important;\n border-color: #484848 !important;\n }\n .octotree-toggle:hover {\n background: linear-gradient(#303030, #282828) !important;\n border-color: #484848 !important;\n }\n .octotree-view-header, .octotree-toggle {\n background: linear-gradient(#202020, #181818) !important;\n border-color: #383838 !important;\n }\n .octotree-github-sidebar a.octotree-toggle,\n a.octotree-toggle:not(.octotree-loading):hover > span::after {\n color: #dcdcdc !important;\n }\n .octotree-github-sidebar a.octotree-opts .settings::before,\n .octotree-help > span::before, .octotree-patch-files {\n color: #bebebe !important;\n }\n .octotree-views .octotree-treeview .jstree-anchor .jstree-icon.tree::before,\n .octotree-github-sidebar a.octotree-toggle:hover,\n .octotree-github-sidebar a.octotree-opts:hover .settings::before,\n .octotree-github-sidebar a.octotree-opts.selected:hover .settings::before,\n .octotree-sidebar.octotree-github-sidebar .octotree-views .octotree-tree-view .jstree .jstree-anchor,\n .octotree-github-sidebar a.octotree-toggle:not(.octotree-loading):hover,\n .octotree-sidebar.octotree-github-sidebar .octotree-views .octotree-view,\n .octotree-sidebar.octotree-github-sidebar .octotree-toggle > span,\n .octotree-sidebar.octotree-github-sidebar .octotree-toggle > .octotree-toggle-icon::before {\n color: /*[[base-color]]*/ !important;\n }\n .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup {\n background-color: #181818 !important;\n border-color: #404040 !important;\n box-shadow: 0 1px 15px #000 !important;\n }\n .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup > .arrow,\n .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup > .arrow::after {\n border-bottom-color: #404040 !important;\n }\n /* Github User Info userscript - see #481 */\n .GithubUserInfo, .GithubUserInfo > div {\n background: #202020 !important;\n border-color: #343434 !important;\n }\n /* GitHub Notifications Dropdown userscript - see #478 */\n .notifications-dropdown {\n background: #202020 !important;\n border: 1px solid #343434 !important;\n }\n a.notifications-dropdown-see-all {\n background: #242424 !important;\n color: /*[[base-color]]*/ !important;\n }\n a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover {\n background: /*[[base-color]]*/ !important;\n color: #e2e2e2 !important;\n }\n .notifications-dropdown-arrow {\n border-bottom-color: #333 !important;\n }\n}\n@-moz-document domain(\"graphql.github.com\") {\n /* begin graphql.github.com rules */\n /* graphql.github.com: \"color: #141823\" */\n .graphiql-container, .graphiql-container button, .graphiql-container input {\n color: #dcdcdc;\n }\n /* graphql.github.com: \"linear-gradient(#f7f7f7, #e2e2e2)\", \"#d0d0d0\" */\n .graphiql-container .topBar {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"linear-gradient(#f7f7f7, #e2e2e2)\", \"#d0d0d0\", \"#3B5998\" */\n .graphiql-container .docExplorerShow, .graphiql-container .historyShow {\n background-color: #222;\n border-bottom-color: #343434;\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"rgba(0,0,0,0.2)\" */\n .graphiql-container .docExplorerShow {\n border-left-color: rgba(255, 255, 255, .7);\n }\n /* graphql.github.com: \"rgba(0,0,0,0.2)\" */\n .graphiql-container .historyShow {\n border-right-color: rgba(255, 255, 255, .7);\n }\n /* graphql.github.com: \"#3B5998\", \"#3B5998\" */\n .graphiql-container .docExplorerShow::before {\n border-left: 2px solid /*[[base-color]]*/;\n border-top: 2px solid /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#e0e0e0\" */\n .graphiql-container .resultWrap {\n border-left-color: #343434;\n }\n /* graphql.github.com: \"white\", \"rgba(0,0,0,0.15)\" */\n .graphiql-container .docExplorerWrap, .graphiql-container .historyPaneWrap {\n background-color: #181818;\n box-shadow: 0 0 8px #000;\n }\n /* graphql.github.com: \"#eeeeee\", \"#d6d6d6\", \"#e0e0e0\" */\n .graphiql-container .variable-editor-title {\n background-color: #242424;\n border-bottom-color: #343434;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#e0e0e0\", \"#e0e0e0\" */\n .graphiql-container .footer {\n border-left-color: #343434;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#eeeeee\" */\n .graphiql-container .footer::before {\n background-color: #242424;\n }\n /* graphql.github.com: \"#fdfdfd\", \"linear-gradient(#f9f9f9, #ececec)\", \"rgba(0,0,0,0.2)\",\"#fff\", \"color: #555\" */\n .graphiql-container .toolbar-button {\n background-color: #181818;\n background: linear-gradient(#303030, #282828);\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7), 0 1px 0 rgba(255, 255, 255, .7), inset 0 1px #181818;\n color: #afafaf;\n }\n /* graphql.github.com: \"linear-gradient(#ececec, #d5d5d5)\", \"box-shadow: 0 1px 0 rgba(255,255,255,0.7),inset 0 0 0 1px rgba(0,0,0,0.1),inset 0 1px 1px 1px rgba(0,0,0,0.12),inset 0 0 5px rgba(0,0,0,0.1)\" */\n .graphiql-container .toolbar-button:active {\n background: linear-gradient(#404040, #383838);\n box-shadow: 0 0 0 1px #484848;\n }\n /* graphql.github.com: \"linear-gradient(#fdfdfd, #d2d3d6)\", \"#fff\" */\n .graphiql-container .execute-button {\n background: linear-gradient(#303030, #282828);\n box-shadow: 0 1px 0 #181818;\n }\n /* graphql.github.com: \"linear-gradient(#e6e6e6, #c3c3c3)\", \"#fff\",\"rgba(0,0,0,0.2)\" */\n .graphiql-container .execute-button:active {\n background: linear-gradient(#404040, #383838);\n box-shadow: 0 1px 0 #181818, inset 0 0 2px rgba(255, 255, 255, .7), inset 0 0 6px rgba(0, 0, 0, .1);\n }\n /* graphql.github.com: \"#fff\" */\n .graphiql-container .execute-options,\n .graphiql-container .toolbar-menu-items,\n .graphiql-container .toolbar-select-options {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\" */\n .graphiql-container .execute-options > li.selected,\n .graphiql-container .history-contents > p:active,\n .graphiql-container .history-contents > p:hover,\n .graphiql-container .toolbar-menu-items > li.hover,\n .graphiql-container .toolbar-menu-items > li:active,\n .graphiql-container .toolbar-menu-items > li:hover,\n .graphiql-container .toolbar-select-options > li.hover,\n .graphiql-container .toolbar-select-options > li:active,\n .graphiql-container .toolbar-select-options > li:hover {\n color: #fff;\n }\n /* graphql.github.com: \"rgba(255,255,255,0)\", \"rgba(255,255,255,0)\" */\n @keyframes insertionFade {\n from, to {\n background-color: transparent;\n border-color: transparent;\n }\n }\n /* graphql.github.com: \"none\" */\n @keyframes blink {\n 50% {\n background: none;\n }\n }\n /* graphql.github.com: \"white\" */\n .graphiql-container .doc-explorer {\n background-color: #181818;\n }\n /* graphql.github.com: \"#3B5998\" */\n .graphiql-container .doc-explorer-back {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#3B5998\", \"#3B5998\" */\n .graphiql-container .doc-explorer-back::before {\n border-left: 2px solid /*[[base-color]]*/;\n border-top: 2px solid /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#ffffff\", \"#d6d6d6\" */\n .graphiql-container .doc-explorer-contents,\n .graphiql-container .history-contents {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#e0e0e0\" */\n .graphiql-container .doc-category-title {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #555\" */\n .graphiql-container .doc-category-item {\n color: #afafaf;\n }\n /* graphql.github.com: \"#B11A04\" */\n .graphiql-container .keyword {\n color: #d82828;\n }\n /* graphql.github.com: \"#CA9800\" */\n .graphiql-container .type-name {\n color: #cb4;\n }\n /* graphql.github.com: \"#1F61A0\" */\n .graphiql-container .field-name {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#8B2BB9\" */\n .graphiql-container .arg-name {\n color: #73589a;\n }\n /* graphql.github.com: \"color: #555\" */\n .graphiql-container .show-btn {\n color: #afafaf;\n }\n /* graphql.github.com: \"#d3d6db\" */\n .graphiql-container .search-box {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #fff\" */\n .graphiql-container .search-box .search-box-clear {\n color: #fff;\n }\n /* graphql.github.com: \"#e0e0e0\" */\n .graphiql-container .history-contents p {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"transparent\" */\n a {\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #000\" */\n mark {\n color: #f0f0f0;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* graphql.github.com: \"#0366d6\" */\n a {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n kbd {\n color: #afafaf;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* graphql.github.com: \"#fff\", \"#d1d5da\" */\n .Box, kbd {\n background-color: #181818;\n border-color: #404040;\n }\n /* graphql.github.com: \"#f6f8fa\", \"#d1d5da\" */\n .Box-header {\n background-color: #222;\n border-color: #404040;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: 2px 0 0 /*[[base-color]]*/ inset;\n }\n /* graphql.github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* graphql.github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* graphql.github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* graphql.github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width: 768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: /*[[base-color]]*/;\n }\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* graphql.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* graphql.github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* graphql.github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* graphql.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* graphql.github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* graphql.github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .breadcrumb-item::after {\n color: #343434;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.2)\" */\n .btn {\n border-color: rgba(220, 220, 220, .2);\n }\n /* graphql.github.com: \"color: #586069\", \"rgba(27,31,35,0.1)\" */\n .btn .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .17);\n }\n /* graphql.github.com: \"none\" */\n .btn.selected, .btn:active {\n background-image: none;\n }\n /* graphql.github.com: \"color: #24292e\", \"#eff3f6\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn {\n color: #cdcdcd;\n background-color: #242424;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* graphql.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* graphql.github.com: \"#e6ebf1\", \"#e6ebf1\", \"rgba(27,31,35,0.35)\" */\n .btn.hover, .btn:hover {\n background-color: #444;\n background-image: linear-gradient(-180deg, #f0f3f6 0%, #444 90%);\n border-color: rgba(220, 220, 220, .35);\n }\n /* graphql.github.com: \"#e9ecef\", \"none\", \"rgba(27,31,35,0.35)\", \"rgba(27,31,35,0.15)\" */\n .btn.selected, .btn:active, [open] > .btn {\n background-color: #404040;\n background-image: none;\n border-color: rgba(220, 220, 220, .35);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* graphql.github.com: \"color: rgba(36,41,46,.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn.disabled, .btn:disabled {\n color: rgba(210, 210, 210, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* graphql.github.com: \"color: #fff\", \"#28a745\", \"#34d058\",\"#28a745\" */\n .btn-primary {\n color: #fff;\n background-color: #484;\n background-image: linear-gradient(-180deg, #373 0%, #484 90%);\n }\n /* graphql.github.com: \"rgba(52,208,88,0.4)\" */\n .btn-primary.focus, .btn-primary:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* graphql.github.com: \"#269f42\", \"#2fcb53\",\"#269f42\", \"rgba(27,31,35,0.5)\" */\n .btn-primary.hover, .btn-primary:hover {\n background-color: #595;\n background-image: linear-gradient(-180deg, #373 0%, #595 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* graphql.github.com: \"#279f43\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-primary.selected, .btn-primary:active, [open] > .btn-primary {\n background-color: #595;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* graphql.github.com: \"#94d3a2\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-primary.disabled, .btn-primary:disabled {\n background-color: #040;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* graphql.github.com: \"#fff\" */\n .btn-primary .Counter {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: linear-gradient(-180deg, /*[[base-color]]*/ 0%, /*[[base-color]]*/ 90%);\n }\n /* graphql.github.com: \"rgba(27,31,35,0.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* graphql.github.com: \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-blue.selected, .btn-blue:active, [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* graphql.github.com: \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* graphql.github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* graphql.github.com: \"#cb2431\", \"#fafbfc\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn-danger {\n color: #d82828;\n background-color: #181818;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* graphql.github.com: \"rgba(203,36,49,0.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 .2em rgba(255, 68, 68, .4);\n }\n /* graphql.github.com: \"color: #fff\", \"#cb2431\", \"#cb2431\", \"rgba(27,31,35,0.5)\" */\n .btn-danger:hover {\n color: #fff;\n background-color: #d82828;\n background-image: linear-gradient(-180deg, #de4450 0%, #d82828 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* graphql.github.com: \"color: #fff\" */\n .btn-danger:hover .Counter {\n color: #fff;\n }\n /* graphql.github.com: \"color: #fff\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-danger.selected, .btn-danger:active, [open] > .btn-danger {\n color: #fff;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* graphql.github.com: \"rgba(203,36,49,0.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-danger.disabled, .btn-danger:disabled {\n color: rgba(255, 68, 68, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* graphql.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-outline {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\", \"none\", \"#0366d6\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n [open] > .btn-outline {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#0366d6\", \"#fff\" */\n .btn-outline.selected .Counter, .btn-outline:active .Counter,\n .btn-outline:hover .Counter, [open] > .btn-outline .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* graphql.github.com: \"#0366d6\" */\n .btn-outline:focus {\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline.disabled, .btn-outline:disabled {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* graphql.github.com: \"#0366d6\", \"transparent\" */\n .btn-link {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* graphql.github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* graphql.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-invisible {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* graphql.github.com: \"#0366d6\", \"none\", \"box-shadow: none\" */\n .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,\n .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,\n .btn-invisible:focus, .btn-invisible:hover {\n color: /*[[base-color]]*/;\n background: none;\n box-shadow: none;\n }\n /* graphql.github.com: \"color: #586069\", \"transparent\" */\n .btn-octicon {\n color: #afafaf;\n background-color: transparent;\n }\n /* graphql.github.com: \"#0366d6\" */\n .btn-octicon:hover {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #959da5\" */\n .btn-octicon.disabled, .btn-octicon.disabled:hover {\n color: #767676;\n }\n /* graphql.github.com: \"#cb2431\" */\n .btn-octicon-danger:hover {\n color: #d82828;\n }\n /* graphql.github.com: \"transparent\" */\n .close-button {\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* graphql.github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* graphql.github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,0.2)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .2);\n }\n /* graphql.github.com: \"#0366d6\" */\n .social-count:hover {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* graphql.github.com: \"#2188ff\", \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .form-control.focus, .form-control:focus, .form-select.focus,\n .form-select:focus {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* graphql.github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\" */\n .input-dark {\n color: #fff;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.3)\" */\n .input-dark.focus, .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* graphql.github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* graphql.github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* graphql.github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group dt label {\n color: #afafaf;\n }\n /* graphql.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* graphql.github.com: \"#fff\" */\n .form-group .form-control, .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* graphql.github.com: \"#cb2431\" */\n .form-group dd h4.is-error {\n color: #d82828;\n }\n /* graphql.github.com: \"#28a745\" */\n .form-group dd h4.is-success {\n color: #484;\n }\n /* graphql.github.com: \"#cb2431\" */\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* graphql.github.com: \"#28a745\" */\n .form-group.successful .success {\n color: #484;\n }\n /* graphql.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-group.warn .warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* graphql.github.com: \"#fffbdd\" */\n .form-group.warn .warning::after {\n border-bottom-color: #261d08;\n }\n /* graphql.github.com: \"#d9d0a5\" */\n .form-group.warn .warning::before {\n border-bottom-color: #542;\n }\n /* graphql.github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* graphql.github.com: \"#86181d\", \"#ffdce0\", \"#cea0a5\" */\n .form-group.errored .error {\n color: #d82828;\n background-color: #300;\n border-color: #d82828;\n }\n /* graphql.github.com: \"#ffdce0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* graphql.github.com: \"#cea0a5\" */\n .form-group.errored .error::before {\n border-bottom-color: #d82828;\n }\n /* graphql.github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* graphql.github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* graphql.github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* graphql.github.com: \"transparent\" */\n .inline-form .btn-plain {\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* graphql.github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* graphql.github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* graphql.github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* graphql.github.com: \"box-shadow: none\" */\n .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* graphql.github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* graphql.github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* graphql.github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* graphql.github.com: \"#fff\", \"#d1d5da\" */\n .menu {\n background-color: #181818;\n border-color: #404040;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .menu-item {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .menu-item:hover {\n background-color: #222;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\" */\n .menu-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* graphql.github.com: \"#e36209\" */\n .menu-item.selected::before {\n background-color: #fb8532;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .menu-item .octicon {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* graphql.github.com: \"color: #586069\", \"#e1e4e8\" */\n .menu-heading {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .tabnav {\n border-bottom-color: #404040;\n }\n /* graphql.github.com: \"color: #586069\", \"transparent\" */\n .tabnav-tab {\n color: #afafaf;\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .tabnav-tab.selected, .tabnav-tab[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* graphql.github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #586069\", \"transparent\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* graphql.github.com: \"#eaecef\" */\n .filter-item:hover {\n background-color: #343434;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* graphql.github.com: \"#fafbfc\" */\n .SideNav {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #586069\", \"transparent\", \"#e1e4e8\" */\n .SideNav-item {\n color: #afafaf;\n background-color: transparent;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .SideNav-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* graphql.github.com: \"color: #24292e\", \"#f6f8fa\" */\n .SideNav-item:focus, .SideNav-item:hover {\n color: #cdcdcd;\n background-color: #222;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .SideNav-item:focus::before, .SideNav-item:hover::before {\n background-color: #404040;\n }\n /* graphql.github.com: \"#fff\" */\n .SideNav-item:active {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\" */\n .SideNav-item[aria-current=\"page\"], .SideNav-item[aria-selected=\"true\"] {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* graphql.github.com: \"#e36209\" */\n .SideNav-item[aria-current=\"page\"]::before,\n .SideNav-item[aria-selected=\"true\"]::before {\n background-color: #fb8532;\n }\n /* graphql.github.com: \"color: #6a737d\" */\n .SideNav-icon {\n color: #949494;\n }\n /* graphql.github.com: \"#0366d6\", \"transparent\" */\n .SideNav-subItem {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .SideNav-subItem:focus, .SideNav-subItem:hover,\n .SideNav-subItem[aria-current=\"page\"],\n .SideNav-subItem[aria-selected=\"true\"] {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\", \"#e1e4e8\" */\n .subnav-item {\n color: #afafaf;\n border-color: #343434;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .subnav-item.selected, .subnav-item.selected:focus,\n .subnav-item.selected:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* graphql.github.com: \"#c6cbd1\" */\n .subnav-search-icon {\n color: #5a5a5a;\n }\n /* graphql.github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .UnderlineNav {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\" */\n .UnderlineNav-item {\n color: #afafaf;\n }\n /* graphql.github.com: \"color: #24292e\", \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n color: #cdcdcd;\n border-bottom-color: #404040;\n }\n /* graphql.github.com: \"color: #6a737d\" */\n .UnderlineNav-item:focus .UnderlineNav-octicon,\n .UnderlineNav-item:hover .UnderlineNav-octicon {\n color: #949494;\n }\n /* graphql.github.com: \"color: #24292e\", \"#e36209\" */\n .UnderlineNav-item.selected, .UnderlineNav-item[aria-current],\n .UnderlineNav-item[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* graphql.github.com: \"color: #6a737d\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon,\n .UnderlineNav-item[aria-current] .UnderlineNav-octicon,\n .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* graphql.github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* graphql.github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .pagination a, .pagination em, .pagination span {\n color: /*[[base-color]]*/;\n background-color: #181818;\n border-color: #343434;\n }\n /* graphql.github.com: \"#eff3f6\", \"#e1e4e8\" */\n .pagination a:focus, .pagination a:hover, .pagination em:focus,\n .pagination em:hover, .pagination span:focus, .pagination span:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#d1d5da\", \"#fafbfc\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover {\n color: #404040;\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* graphql.github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 544px) {\n .border-sm {\n border-color: #343434 !important;\n }\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 768px) {\n .border-md {\n border-color: #343434 !important;\n }\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1012px) {\n .border-lg {\n border-color: #343434 !important;\n }\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* graphql.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1280px) {\n .border-xl {\n border-color: #343434 !important;\n }\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* graphql.github.com: \"#0366d6\" */\n .border-blue {\n border-color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* graphql.github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* graphql.github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* graphql.github.com: \"#cea0a5\" */\n .border-red, .border-red-light {\n border-color: #d82828 !important;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* graphql.github.com: \"#d9d0a5\" */\n .border-yellow {\n border-color: #542 !important;\n }\n /* graphql.github.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* graphql.github.com: \"rgba(255,255,255,0.5)\" */\n .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.1)\" */\n .box-shadow {\n box-shadow: 0 1px 1px #000 !important;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* graphql.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* graphql.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .bg-blue {\n background-color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* graphql.github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* graphql.github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* graphql.github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* graphql.github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* graphql.github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* graphql.github.com: \"#ffdce0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* graphql.github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* graphql.github.com: \"#dbab09\" */\n .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* graphql.github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* graphql.github.com: \"#fafbfc\" */\n .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .bg-gray-1 {\n background-color: #222 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .color-gray-2 {\n color: #343434 !important;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .color-gray-3 {\n color: #404040 !important;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* graphql.github.com: \"color: #959da5 !important\" */\n .color-gray-4 {\n color: #767676 !important;\n }\n /* graphql.github.com: \"color: #6a737d !important\" */\n .color-gray-5 {\n color: #949494 !important;\n }\n /* graphql.github.com: \"#6a737d\" */\n .bg-gray-5 {\n background-color: #444 !important;\n }\n /* graphql.github.com: \"color: #586069 !important\" */\n .color-gray-6 {\n color: #afafaf !important;\n }\n /* graphql.github.com: \"#586069\" */\n .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* graphql.github.com: \"color: #444d56 !important\" */\n .color-gray-7 {\n color: #afafaf !important;\n }\n /* graphql.github.com: \"color: #2f363d !important\" */\n .color-gray-8 {\n color: #bebebe !important;\n }\n /* graphql.github.com: \"#2f363d\" */\n .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* graphql.github.com: \"color: #24292e !important\" */\n .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* graphql.github.com: \"#24292e\" */\n .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* graphql.github.com: \"#dbedff\" */\n .bg-blue-0, .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* graphql.github.com: \"#c8e1ff\" */\n .color-blue-2 {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#c8e1ff\" */\n .bg-blue-2 {\n background-color: #246 !important;\n }\n /* graphql.github.com: \"#79b8ff\" */\n .color-blue-3 {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#79b8ff\" */\n .bg-blue-3 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#2188ff\" */\n .color-blue-4 {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#2188ff\" */\n .bg-blue-4 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .color-blue-5 {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .bg-blue-5 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#005cc5\" */\n .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* graphql.github.com: \"#005cc5\" */\n .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* graphql.github.com: \"#044289\" */\n .color-blue-7 {\n color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* graphql.github.com: \"#044289\" */\n .bg-blue-7 {\n background-color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* graphql.github.com: \"color: #032f62 !important\" */\n .color-blue-8 {\n color: #9daccc !important;\n }\n /* graphql.github.com: \"#032f62\" */\n .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* graphql.github.com: \"color: #05264c !important\" */\n .color-blue-9 {\n color: #bebebe !important;\n }\n /* graphql.github.com: \"#05264c\" */\n .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* graphql.github.com: \"#f0fff4\" */\n .color-green-0 {\n color: #002800 !important;\n }\n /* graphql.github.com: \"#f0fff4\" */\n .bg-green-0 {\n background-color: #002800 !important;\n }\n /* graphql.github.com: \"#dcffe4\" */\n .color-green-1 {\n color: #002800 !important;\n }\n /* graphql.github.com: \"#dcffe4\" */\n .bg-green-1 {\n background-color: #002800 !important;\n }\n /* graphql.github.com: \"#34d058\" */\n .color-green-4 {\n color: #373 !important;\n }\n /* graphql.github.com: \"#34d058\" */\n .bg-green-4 {\n background-color: #373 !important;\n }\n /* graphql.github.com: \"#28a745\" */\n .color-green-5 {\n color: #484 !important;\n }\n /* graphql.github.com: \"#28a745\" */\n .bg-green-5 {\n background-color: #484 !important;\n }\n /* graphql.github.com: \"#22863a\" */\n .color-green-6 {\n color: #6cc644 !important;\n }\n /* graphql.github.com: \"#22863a\" */\n .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* graphql.github.com: \"#165c26\" */\n .color-green-8 {\n color: #6cc644 !important;\n }\n /* graphql.github.com: \"#165c26\" */\n .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* graphql.github.com: \"#144620\" */\n .color-green-9 {\n color: #6cc644 !important;\n }\n /* graphql.github.com: \"#144620\" */\n .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* graphql.github.com: \"#fffdef\" */\n .color-yellow-0 {\n color: #261d08 !important;\n }\n /* graphql.github.com: \"#fffdef\" */\n .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* graphql.github.com: \"#fffbdd\" */\n .color-yellow-1 {\n color: #261d08 !important;\n }\n /* graphql.github.com: \"#fffbdd\" */\n .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* graphql.github.com: \"#fff5b1\" */\n .color-yellow-2 {\n color: #651 !important;\n }\n /* graphql.github.com: \"#fff5b1\" */\n .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* graphql.github.com: \"#ffea7f\" */\n .color-yellow-3 {\n color: #542 !important;\n }\n /* graphql.github.com: \"#ffea7f\" */\n .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* graphql.github.com: \"#ffd33d\" */\n .color-yellow-5 {\n color: #cb4 !important;\n }\n /* graphql.github.com: \"#ffd33d\" */\n .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#f9c513\" */\n .color-yellow-6 {\n color: #cb4 !important;\n }\n /* graphql.github.com: \"#f9c513\" */\n .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#dbab09\" */\n .color-yellow-7 {\n color: #cb4 !important;\n }\n /* graphql.github.com: \"#dbab09\" */\n .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#b08800\" */\n .color-yellow-8 {\n color: #cb4 !important;\n }\n /* graphql.github.com: \"#b08800\" */\n .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* graphql.github.com: \"#735c0f\" */\n .color-yellow-9 {\n color: #bba257 !important;\n }\n /* graphql.github.com: \"#735c0f\" */\n .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* graphql.github.com: \"#fb8532\" */\n .color-orange-4 {\n color: #fb8532 !important;\n }\n /* graphql.github.com: \"#fb8532\" */\n .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* graphql.github.com: \"#e36209\" */\n .color-orange-6 {\n color: #fb8532 !important;\n }\n /* graphql.github.com: \"#e36209\" */\n .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* graphql.github.com: \"#d15704\" */\n .color-orange-7 {\n color: #f3582c !important;\n }\n /* graphql.github.com: \"#d15704\" */\n .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* graphql.github.com: \"#a04100\" */\n .color-orange-9 {\n color: #f3582c !important;\n }\n /* graphql.github.com: \"#a04100\" */\n .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* graphql.github.com: \"#ffeef0\" */\n .color-red-0 {\n color: #300 !important;\n }\n /* graphql.github.com: \"#ffeef0\" */\n .bg-red-0 {\n background-color: #300 !important;\n }\n /* graphql.github.com: \"#ffdce0\" */\n .color-red-1 {\n color: #300 !important;\n }\n /* graphql.github.com: \"#ffdce0\" */\n .bg-red-1 {\n background-color: #300 !important;\n }\n /* graphql.github.com: \"#f97583\" */\n .color-red-3 {\n color: #f88 !important;\n }\n /* graphql.github.com: \"#f97583\" */\n .bg-red-3 {\n background-color: #f88 !important;\n }\n /* graphql.github.com: \"#d73a49\" */\n .color-red-5 {\n color: #d82828 !important;\n }\n /* graphql.github.com: \"#d73a49\" */\n .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* graphql.github.com: \"#cb2431\" */\n .color-red-6 {\n color: #d82828 !important;\n }\n /* graphql.github.com: \"#cb2431\" */\n .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* graphql.github.com: \"#86181d\" */\n .color-red-9 {\n color: #d82828 !important;\n }\n /* graphql.github.com: \"#86181d\" */\n .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* graphql.github.com: \"#f5f0ff\" */\n .color-purple-0 {\n color: #213 !important;\n }\n /* graphql.github.com: \"#f5f0ff\" */\n .bg-purple-0 {\n background-color: #213 !important;\n }\n /* graphql.github.com: \"#8a63d2\" */\n .color-purple-4 {\n color: #53387a !important;\n }\n /* graphql.github.com: \"#8a63d2\" */\n .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .color-purple-5 {\n color: #9378ba !important;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* graphql.github.com: \"#ffeef8\" */\n .color-pink-0 {\n color: #170711 !important;\n }\n /* graphql.github.com: \"#ffeef8\" */\n .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* graphql.github.com: \"#ec6cb9\" */\n .color-pink-4 {\n color: #c49 !important;\n }\n /* graphql.github.com: \"#ec6cb9\" */\n .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* graphql.github.com: \"#99306f\" */\n .color-pink-8 {\n color: #e6b !important;\n }\n /* graphql.github.com: \"#99306f\" */\n .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .text-blue {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* graphql.github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* graphql.github.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* graphql.github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* graphql.github.com: \"#28a745\" */\n .text-green {\n color: #484 !important;\n }\n /* graphql.github.com: \"#b08800\" */\n .text-yellow {\n color: #cb4 !important;\n }\n /* graphql.github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* graphql.github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* graphql.github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* graphql.github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .link-gray:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* graphql.github.com: \"#0366d6\" */\n .muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* graphql.github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"rgba(255,255,255,0.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* graphql.github.com: \"color: #032f62\", \"#dbedff\", \"rgba(27,31,35,0.15)\" */\n .flash {\n color: #9daccc;\n background-color: #182030;\n border-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"none\" */\n .flash-close {\n background: none;\n }\n /* graphql.github.com: \"#735c0f\", \"#fffbdd\", \"rgba(27,31,35,0.15)\" */\n .flash-warn {\n color: #bba257;\n background-color: #261d08;\n }\n /* graphql.github.com: \"#86181d\", \"#ffdce0\", \"rgba(27,31,35,0.15)\" */\n .flash-error, .flash-warn {\n border-color: rgba(220, 220, 220, .15);\n }\n .flash-error {\n color: #d82828;\n background-color: #300;\n }\n /* graphql.github.com: \"#165c26\", \"#dcffe4\", \"rgba(27,31,35,0.15)\" */\n .flash-success {\n color: #6cc644;\n background-color: #002800;\n border-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fffbdd\" */\n .warning {\n background-color: #261d08;\n }\n /* graphql.github.com: \"#fff\", \"rgba(255,255,255,0.8)\" */\n .avatar-child {\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* graphql.github.com: \"#fff\" */\n .avatar-child, .AvatarStack-body {\n background-color: #181818;\n }\n /* graphql.github.com: \"#fff\", \"#fff\" */\n .AvatarStack-body .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .avatar.avatar-more {\n background-color: #222;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .avatar.avatar-more::before {\n background-color: #343434;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .avatar.avatar-more::after, .AvatarStack--right .avatar.avatar-more {\n background-color: #404040;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .AvatarStack--right .avatar.avatar-more::after {\n background-color: #222;\n }\n /* graphql.github.com: \"#fff\" */\n .AvatarStack--right .avatar {\n border-left-color: #181818;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .DashedConnection::before {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"#fff\", \"#eaecef\" */\n .blankslate code {\n background-color: #181818;\n border-color: #343434;\n }\n /* graphql.github.com: \"color: #a3aab1\" */\n .blankslate-icon {\n color: #767676;\n }\n /* graphql.github.com: \"color: rgba(27,31,35,.6)\", \"#eaf5ff\" */\n .branch-name {\n color: rgba(230, 230, 230, .6);\n background-color: #182030;\n }\n /* graphql.github.com: \"#0366d6\" */\n a.branch-name {\n color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#fff\", \"rgba(27,31,35,0.15)\", \"rgba(27,31,35,0.15)\" */\n .dropdown-menu {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 15px #000;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .dropdown-item {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\" */\n .dropdown-item:focus, .dropdown-item:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"none\" */\n .dropdown-signout {\n background: none;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .dropdown-divider {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\" */\n .dropdown-header {\n color: #afafaf;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-w::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .dropdown-menu-w::after {\n border-left-color: #181818;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-e::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .dropdown-menu-e::after {\n border-right-color: #181818;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-ne::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .dropdown-menu-ne::after {\n border-top-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\", \"#2f363d\", \"#444d56\", \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-dark {\n color: #fff;\n background-color: #282828;\n border-color: #484848;\n box-shadow: 0 1px 15px #000;\n }\n /* graphql.github.com: \"#444d56\" */\n .dropdown-menu-dark::before {\n border-bottom-color: #484848;\n }\n /* graphql.github.com: \"#2f363d\" */\n .dropdown-menu-dark::after {\n border-bottom-color: #282828;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .dropdown-menu-dark .dropdown-header {\n color: #404040;\n }\n /* graphql.github.com: \"#444d56\" */\n .dropdown-menu-dark .dropdown-divider {\n border-top-color: #484848;\n }\n /* graphql.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-w::before {\n border-color: transparent transparent transparent #484848;\n }\n /* graphql.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-w::after {\n border-color: transparent transparent transparent #282828;\n }\n /* graphql.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-e::before {\n border-color: transparent #484848 transparent transparent;\n }\n /* graphql.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-e::after {\n border-color: transparent #282828 transparent transparent;\n }\n /* graphql.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-ne::before {\n border-color: #484848 transparent transparent;\n }\n /* graphql.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-ne::after {\n border-color: #282828 transparent transparent;\n }\n /* graphql.github.com: \"#24292e\" */\n .Header {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\" */\n .Header-link, .label, .Label {\n color: #fff;\n }\n /* graphql.github.com: \"color: #586069\", \"#eaecef\" */\n .Label--gray {\n color: #afafaf;\n background-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\", \"transparent\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .Label--outline {\n color: #afafaf;\n background-color: transparent;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* graphql.github.com: \"#28a745\", \"#34d058\" */\n .Label--outline-green {\n color: #484;\n border-color: #373;\n }\n /* graphql.github.com: \"#6a737d\" */\n .Label--gray-darker {\n background-color: #444;\n }\n /* graphql.github.com: \"#d15704\" */\n .Label--orange {\n background-color: #f3582c;\n }\n /* graphql.github.com: \"color: #fff\", \"#6a737d\" */\n .state, .State {\n color: #fff;\n background-color: #444;\n }\n /* graphql.github.com: \"#2cbe4e\" */\n .State--green {\n background-color: #373;\n }\n /* graphql.github.com: \"#6f42c1\" */\n .State--purple {\n background-color: #9378ba;\n }\n /* graphql.github.com: \"#cb2431\" */\n .State--red {\n background-color: #d82828;\n }\n /* graphql.github.com: \"color: #586069\", \"rgba(27,31,35,0.08)\" */\n .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"color: #24292e\", \"rgba(27,31,35,0.15)\" */\n .Counter--gray-light {\n color: #cdcdcd;\n background-color: rgba(220, 220, 220, .22);\n }\n /* graphql.github.com: \"color: #fff\", \"#6a737d\" */\n .Counter--gray {\n color: #fff;\n background-color: #444;\n }\n /* graphql.github.com: \"color: #586069\" */\n .diffstat {\n color: #afafaf;\n }\n /* graphql.github.com: \"#cb2431\" */\n .diffstat-block-deleted {\n background-color: #d82828;\n }\n /* graphql.github.com: \"#2cbe4e\" */\n .diffstat-block-added {\n background-color: #373;\n }\n /* graphql.github.com: \"#d1d5da\" */\n .diffstat-block-neutral {\n background-color: #404040;\n }\n /* graphql.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* graphql.github.com: \"#cb2431\" */\n .markdown-body .absent {\n color: #d82828;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .markdown-body hr {\n background-color: #343434;\n }\n /* graphql.github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* graphql.github.com: \"color: #1b1f23\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* graphql.github.com: \"#eaecef\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #6a737d\" */\n .markdown-body h6 {\n color: #949494;\n }\n /* graphql.github.com: \"#dfe2e5\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* graphql.github.com: \"#fff\", \"#c6cbd1\" */\n .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* graphql.github.com: \"transparent\" */\n .markdown-body table img {\n background-color: transparent;\n }\n /* graphql.github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* graphql.github.com: \"transparent\" */\n .markdown-body .emoji {\n background-color: transparent;\n }\n /* graphql.github.com: \"#dfe2e5\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.05)\" */\n .markdown-body code, .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* graphql.github.com: \"transparent\" */\n .markdown-body pre > code, .markdown-body pre code, .markdown-body pre tt {\n background-color: transparent;\n }\n /* graphql.github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* graphql.github.com: \"#f6f8fa\" */\n .markdown-body .csv-data th {\n background-color: #222;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .Popover-message::after {\n border-bottom-color: #181818;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--bottom-left::before,\n .Popover-message--bottom-right::before, .Popover-message--bottom::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .Popover-message--bottom-left::after, .Popover-message--bottom-right::after,\n .Popover-message--bottom::after {\n border-top-color: #181818;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--right-bottom::before, .Popover-message--right-top::before,\n .Popover-message--right::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .Popover-message--right-bottom::after, .Popover-message--right-top::after,\n .Popover-message--right::after {\n border-left-color: #181818;\n }\n /* graphql.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--left-bottom::before, .Popover-message--left-top::before,\n .Popover-message--left::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* graphql.github.com: \"#fff\" */\n .Popover-message--left-bottom::after, .Popover-message--left-top::after,\n .Popover-message--left::after {\n border-right-color: #181818;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .Progress {\n background-color: #343434;\n }\n /* graphql.github.com: \"#f6f8fa\", \"rgba(0,0,0,0.4)\" */\n .SelectMenu-modal {\n background-color: #222;\n box-shadow: 0 0 18px #000;\n }\n /* graphql.github.com: \"#d1d5da\", \"rgba(27,31,35,0.15)\" */\n @media (min-width: 544px) {\n .SelectMenu-modal {\n border-color: #404040;\n box-shadow: 0 1px 5px #000;\n }\n }\n /* graphql.github.com: \"color: #6a737d\", \"transparent\" */\n .SelectMenu-closeButton {\n color: #949494;\n background-color: transparent;\n }\n /* graphql.github.com: \"#fff\", \"#e1e4e8\" */\n .SelectMenu-filter, .SelectMenu-list {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\", \"#fff\" */\n .SelectMenu-item, .SelectMenu-list {\n background-color: #181818;\n }\n .SelectMenu-item {\n color: #afafaf;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .SelectMenu-item + .SelectMenu-item, .SelectMenu-tabs {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"color: #6a737d\", \"transparent\", \"#e1e4e8\" */\n .SelectMenu-tab {\n color: #949494;\n background-color: transparent;\n box-shadow: inset 0 -1px 0 #343434;\n }\n /* graphql.github.com: \"color: #24292e\", \"#fff\", \"#e1e4e8\" */\n .SelectMenu-tab[aria-selected=\"true\"] {\n color: #cdcdcd;\n background-color: #181818;\n box-shadow: 0 0 0 1px #343434;\n }\n /* graphql.github.com: \"#e1e4e8\", \"box-shadow: none\" */\n @media (min-width: 544px) {\n .SelectMenu-tab[aria-selected=\"true\"] {\n border-color: #343434;\n box-shadow: none;\n }\n }\n /* graphql.github.com: \"#fff\" */\n .SelectMenu-blankslate, .SelectMenu-loading, .SelectMenu-message {\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #6a737d\", \"#f6f8fa\", \"#e1e4e8\", \"#e1e4e8\" */\n .SelectMenu-divider {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"color: #6a737d\", \"#e1e4e8\" */\n .SelectMenu-divider, .SelectMenu-footer {\n color: #949494;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#eaecef\" */\n .SelectMenu--hasFilter .SelectMenu-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* graphql.github.com: \"color: #24292e\" */\n .SelectMenu-item[aria-checked=\"true\"] {\n color: #cdcdcd;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\", \"#2188ff\", \"#dbedff\", \"color: #24292e\", \"#e1e4e8\", \"#f6f8fa\" */\n @media (hover: hover) {\n .SelectMenu-item:active, .SelectMenu-item:hover,\n body:not(.intent-mouse) .SelectMenu-item:focus {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n body:not(.intent-mouse) .SelectMenu-tab:focus {\n background-color: #182030;\n }\n .SelectMenu-tab:not([aria-checked=\"true\"]):hover {\n color: #cdcdcd;\n background-color: #343434;\n }\n .SelectMenu-tab:not([aria-checked=\"true\"]):active {\n color: #cdcdcd;\n background-color: #222;\n }\n }\n /* graphql.github.com: \"#fafbfc\", \"rgba(209,213,218,0.5)\" */\n @media (hover: none) {\n .SelectMenu-item:active, .SelectMenu-item:focus {\n background-color: #181818;\n }\n .SelectMenu-item {\n -webkit-tap-highlight-color: rgba(90, 90, 90, .5);\n }\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .Subhead {\n border-bottom-color: #343434;\n }\n /* graphql.github.com: \"#cb2431\" */\n .Subhead-heading--danger {\n color: #d82828;\n }\n /* graphql.github.com: \"color: #586069\" */\n .Subhead-description {\n color: #afafaf;\n }\n /* graphql.github.com: \"#e1e4e8\" */\n .TimelineItem::before {\n background-color: #343434;\n }\n /* graphql.github.com: \"#2188ff\", \"#c8e1ff\" */\n .TimelineItem:target .TimelineItem-badge {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 .2em /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #444d56\", \"#e1e4e8\", \"#fff\" */\n .TimelineItem-badge {\n color: #afafaf;\n background-color: #343434;\n border-color: #181818;\n }\n /* graphql.github.com: \"color: #444d56\" */\n .TimelineItem-body {\n color: #afafaf;\n }\n /* graphql.github.com: \"#fff\", \"#e1e4e8\" */\n .TimelineItem-break {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* graphql.github.com: \"color: #959da5\", \"#fff\" */\n .TimelineItem--condensed .TimelineItem-badge {\n color: #767676;\n background-color: #181818;\n }\n /* graphql.github.com: \"color: #1b1f23\", \"#fff\", \"#d1d5da\",\"rgba(27,31,35,0.15)\" */\n .Toast {\n color: #dcdcdc;\n background-color: #181818;\n box-shadow: inset 0 0 0 1px #404040, 0 1px 5px #000;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\" */\n .Toast-icon {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"transparent\" */\n .Toast-dismissButton {\n background-color: transparent;\n }\n /* graphql.github.com: \"color: #586069\" */\n .Toast-dismissButton:focus, .Toast-dismissButton:hover {\n color: #afafaf;\n }\n /* graphql.github.com: \"color: #959da5\" */\n .Toast-dismissButton:active {\n color: #767676;\n }\n /* graphql.github.com: \"#d73a49\" */\n .Toast--error .Toast-icon {\n background-color: #d82828;\n }\n /* graphql.github.com: \"color: #24292e\", \"#f9c513\" */\n .Toast--warning .Toast-icon {\n color: #cdcdcd;\n background-color: #cb4;\n }\n /* graphql.github.com: \"#28a745\" */\n .Toast--success .Toast-icon {\n background-color: #484;\n }\n /* graphql.github.com: \"#586069\" */\n .Toast--loading .Toast-icon {\n background-color: #343434;\n }\n /* graphql.github.com: \"color: #586069\", \"#e1e4e8\" */\n .pullquote {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* graphql.github.com: \"color: #fff\", \"#1074e7\", \"#1074e7\" */\n .btn-mktg {\n color: #fff;\n border: 1px solid /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#0366d6\", \"#0366d6\" */\n .btn-mktg, .btn-mktg:hover {\n background-color: /*[[base-color]]*/;\n }\n .btn-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn-mktg:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* graphql.github.com: \"#28a745\", \"#28a745\" */\n .btn-primary-mktg:hover {\n background-color: #484;\n border-color: #484;\n }\n /* graphql.github.com: \"#0366d6\", \"rgba(255,255,255,0)\", \"#1074e7\" */\n .btn-outline-mktg, .btn-outline-mktg:hover {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n .btn-outline-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"color: #fff\", \"transparent\", \"none\", \"rgba(255,255,255,0.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: transparent;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* graphql.github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* graphql.github.com: \"color: #fff\", \"#0366d6\" */\n .alpha-badge {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* graphql.github.com: \"#e0e0e0\" */\n .graphiql-ide {\n border-top-color: #343434;\n }\n /* graphql.github.com: \"#ddd\" */\n .graphiql-ide.signed-out::after {\n background-color: #383838;\n }\n /* end graphql.github.com rules */\n}\n@-moz-document regexp(\"^https?://github\\.com/features/(security|actions)\") {\n img[src*=\"security-vulnerability.svg\"],\n img[src*=\"security-vulnerability-alert.svg\"], img[src*=\"security-policy.svg\"],\n img[src*=\"security-workspace-bg.svg\"],\n img[src*=\"security-workspace-comment-1.svg\"],\n img[src*=\"security-workspace-comment-2.svg\"],\n img[src*=\"security-workspace-changes.svg\"],\n img[src*=\"security-workspace-merge.svg\"], .section-security-alerts svg,\n img[src*=\"security-dependabot.svg\"], img.security-pr-merge,\n .section-security-patches-graph, img[src*=\"security-token-scanning.svg\"],\n img[src*=\"security-lgtm-vulnerability.svg\"],\n img[src*=\"security-lgtm-alert.svg\"], .actions-pr-checks {\n filter: invert(90%) hue-rotate(-180deg) !important;\n }\n .section-security-alerts-graph svg, .section-security-patches-graph {\n filter: none !important;\n }\n [style=\"background: #fff; box-shadow: 0 10px 50px 30px #fff;\"] {\n background: none !important;\n box-shadow: none !important;\n }\n [stroke=\"#E1E4E8\"] {\n stroke: #484848;\n }\n [stroke=\"#B08800\"] {\n stroke: #652;\n }\n [fill=\"#FFFDEF\"] {\n fill: #321;\n }\n [fill=\"#6A737D\"] {\n fill: #444;\n }\n [fill=\"white\"]:not([d*=\"M279.27\"]) {\n fill: #111;\n }\n [fill=\"black\"] {\n fill: #eee;\n }\n svg.security-hero, .actions-hero {\n filter: brightness(200%) contrast(80%);\n }\n .section-actions-workflow-logs::before, .actions-pricing-private::before {\n filter: brightness(60%);\n }\n}\n@-moz-document regexp(\"^https?://github\\.com/(features|security).*\") {\n img[src*=\"img-\"], img[src*=\"security\"] {\n filter: invert(90%) hue-rotate(-180deg) !important;\n }\n img[src*=\"img-share-achievements.png\"] {\n filter: invert(100%) hue-rotate(-85deg) !important;\n }\n .jumbotron-codelines {\n color: #dcdcdc;\n }\n}\n@-moz-document domain(\"stylishthemes.github.io\") {\n * {\n box-sizing: border-box;\n }\n body {\n color: #e0e0e0;\n background-color: #202020;\n background-image: var(--ghd-bg-img);\n background-clip: border-box;\n background-origin: padding-box;\n background-attachment: /*[[bg-attachment]]*/;\n /*[[bg-options]]*/\n }\n .markdown-body img {\n background-color: #181818;\n background: none;\n }\n a {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4,\n .markdown-body h5, .markdown-body h6 {\n border-bottom: 1px solid #444;\n }\n .border-gray-light, hr {\n border-color: #444 !important;\n }\n .markdown-body table th, .markdown-body table td {\n border: 1px solid #444;\n }\n .text-gray {\n color: #aaa !important;\n }\n .markdown-body table tr {\n background-color: #181818;\n border-top: 1px solid #444;\n }\n .markdown-body table tr:nth-child(2n) {\n background-color: #202020;\n }\n /* style 404 page e.g. http://stylishthemes.github.io/ */\n p {\n color: #bebebe;\n }\n #suggestions a {\n color: #9e9e9e;\n }\n}\n@-moz-document url-prefix(\"https?://github.com/personal\") {\n .bg-blue-4, .illflow-blue .selected {\n background: #182030 !important;\n }\n}\n@-moz-document regexp(\"^https?://(education|lab)\\.github\\.com\") {\n .btn-blue {\n background-image: linear-gradient(-180deg, rgba(/*[[base-color-rgb]]*/, 1), rgba(/*[[base-color-rgb]]*/, .9) 90%) !important;\n }\n .btn-blue.hover, .btn.btn-blue:hover {\n background-image: linear-gradient(-180deg, rgba(/*[[base-color-rgb]]*/, .9), rgba(/*[[base-color-rgb]]*/, .8) 90%) !important;\n border-color: rgba(/*[[base-color-rgb]]*/, .3) !important;\n }\n}\n@-moz-document regexp(\"^https?://(render)\\.githubusercontent\\.com\\/render\\/math\") {\n svg {\n background: #222;\n }\n svg #surface1 g[style*=\"fill\"] {\n fill: #eee !important;\n }\n}\n@-moz-document domain(\"camo.githubusercontent.com\") {\n svg {\n background: #222;\n }\n}\n@-moz-document regexp(\"^https?://www\\.zuora\\.com.*github\\.com.*\") {\n /* Styles the payment form iframe */\n body, label, .popup {\n background: transparent !important;\n color: #bebebe !important;\n }\n input, select {\n background: #181818 !important;\n color: #bebebe !important;\n border-color: #343434 !important;\n }\n select {\n background: #181818 url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAQAAAAua3X8AAAARklEQVR4AWNABWcazjQg8zGl/wNhA15piBL80gglmNKYSjClMZUgpDGVwKXxKBl4QNiRBLxJIKAIBzXhyCIc3YQTDMEkBwBplPJRxEMa4wAAAABJRU5ErkJggg==\") no-repeat right 8px center !important;\n background-size: 8px 10px !important;\n }\n input:focus, select:focus {\n border-color: /*[[base-color]]*/ !important;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ !important;\n outline-color: /*[[base-color]]*/ !important;\n }\n .btn-submit {\n background: linear-gradient(#407045, #305530) !important;\n border-color: #083 !important;\n }\n .btn-submit:hover {\n background: linear-gradient(#508055, #407045) !important;\n }\n}\n@-moz-document domain(\"render.githubusercontent.com\") {\n /* begin render.githubusercontent.com rules */\n /* render.githubusercontent.com: \"#ddd\", \"#ddd\" */\n .pdf-page {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* render.githubusercontent.com: \"#fff\", \"#ddd\" */\n .click-for-more {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* render.githubusercontent.com: \"color: #333\", \"#eee\", \"#eee\" */\n .click-for-more .button {\n color: #bebebe;\n background-color: #242424;\n background-image: linear-gradient(#fcfcfc, #242424);\n }\n /* render.githubusercontent.com: \"#ddd\", \"#eee\",\"#ddd\" */\n .click-for-more .button:hover {\n background-color: #383838;\n background-image: linear-gradient(#242424, #383838);\n }\n /* render.githubusercontent.com: \"#fff\" */\n body {\n background-color: #181818;\n }\n /* render.githubusercontent.com: \"#ddd\" */\n .is-embedded .render-shell {\n border-color: #343434;\n }\n /* render.githubusercontent.com: \"rgba(0,0,0,0.8)\", \"#eee\" */\n .render-info .message {\n background-color: #242424;\n border-color: #343434;\n }\n /* render.githubusercontent.com: \"#4183c4\" */\n .render-info .message a {\n color: /*[[base-color]]*/;\n }\n /* render.githubusercontent.com: \"color: #000\" */\n .render-attribution:hover .symbol, .render-health:hover .symbol {\n color: #f0f0f0;\n }\n /* render.githubusercontent.com: \"#ddd\" */\n .render-bar {\n border-top-color: #343434;\n }\n /* render.githubusercontent.com: \"color: #666\" */\n .render-message a {\n color: #949494;\n }\n /* render.githubusercontent.com: \"none\" */\n .render-view-modes {\n background: none;\n }\n /* render.githubusercontent.com: \"none\", \"color: #666\" */\n .render-view-modes li {\n background: none;\n color: #949494;\n }\n /* render.githubusercontent.com: \"#fff\" */\n .slider .slider-track {\n border-top-color: #181818;\n }\n /* render.githubusercontent.com: \"#fff\", \"#eee\" */\n .render-shell img, img.asset {\n border-color: #181818;\n background-color: #242424;\n }\n /* render.githubusercontent.com: \"#fff\" */\n div.border-wrap {\n background-color: #181818;\n }\n /* render.githubusercontent.com: \"#eee\" */\n .render-shell {\n background-color: #242424;\n }\n /* render.githubusercontent.com: \"transparent\" */\n .onion-skin .controls .slider {\n background-color: transparent;\n }\n /* end render.githubusercontent.com rules */\n}\n@-moz-document domain(\"githubstatus.com\") {\n /* begin githubstatus.com rules */\n /* githubstatus.com: \"#bbb\", \"white\" */\n ._2NFgh0Z6tkGorUToiId47k [class^=\"Content__ChildWrapper\"] > [class^=\"Content\"],\n ._3c5eahGieigDTmRHO-d7l3 [class^=\"Content__ChildWrapper\"] > [class^=\"Content\"] {\n border-color: #484848;\n background-color: #181818;\n }\n /* githubstatus.com: \"white\" */\n ._2NFgh0Z6tkGorUToiId47k .status-dropdown__option::before,\n ._3c5eahGieigDTmRHO-d7l3 .status-dropdown__option::before {\n background-color: #181818;\n }\n /* githubstatus.com: \"transparent\" */\n .ak-editor-wrapper pre code, .markdown-display pre code {\n background-color: transparent;\n }\n /* githubstatus.com: \"#ddd\" */\n .ak-editor-wrapper table, .markdown-display table {\n border-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n .ak-editor-wrapper table td, .markdown-display table td {\n border-top-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n .ak-editor-wrapper table td + td, .ak-editor-wrapper table th + th,\n .markdown-display table td + td, .markdown-display table th + th {\n border-left-color: #343434;\n }\n /* githubstatus.com: \"color: #fff\" */\n ._3DswDMo3rPhwmGGm-RnGoI td[aria-selected=\"true\"] div {\n color: #fff;\n }\n /* githubstatus.com: \"#d0d0d0\" */\n ._2-I6T1F9kpUp2j9G31LMYN {\n border-color: #343434;\n }\n /* githubstatus.com: \"#bbb\" */\n ._1JN3aEKlPD7X5jqB1dXYzx input {\n border-color: #484848;\n }\n /* githubstatus.com: \"white\" */\n ._2dv0LNfUzjAAPh-wPACjXb {\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #fff\" */\n .wPHh9nW_2p42Vk16HDf2n {\n color: #fff;\n }\n /* githubstatus.com: \"transparent\" */\n abbr, address, article, aside, audio, b, blockquote, body, canvas, caption,\n cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption,\n figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i,\n iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p,\n pre, q, samp, section, small, span, strong, sub, summary, sup, time, ul, var,\n video {\n background-color: transparent;\n }\n /* githubstatus.com: \"#ffffff\", \"color: #333\", \"#fff\" */\n body {\n color: #bebebe;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .well {\n border-color: #343434;\n }\n /* githubstatus.com: \"#e5e5e5\" */\n hr {\n border-top-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n abbr {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#f5f5f5\" */\n pre.code-display {\n background-color: #222;\n }\n /* githubstatus.com: \"transparent\" */\n pre.code-display code {\n background-color: transparent;\n }\n /* githubstatus.com: \"#bbb\" */\n .chzn-container-single .chzn-single, input[type=\"email\"],\n input[type=\"number\"], input[type=\"password\"], input[type=\"text\"], select,\n textarea {\n border-color: #484848;\n }\n /* githubstatus.com: \"color: #666\" */\n .chzn-container-single .chzn-single, input[type=\"email\"],\n input[type=\"password\"], input[type=\"text\"], textarea {\n color: #949494;\n }\n /* githubstatus.com: \"#f5f5f5\", \"#ddd\" */\n input[disabled], select[disabled], select[readonly], textarea[disabled] {\n background-color: #222;\n border-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n input[disabled]:hover, select[disabled]:hover, select[readonly]:hover,\n textarea[disabled]:hover {\n border-color: #343434;\n }\n /* githubstatus.com: \"white\", \"#f4f4f4\", \"color: #666\" */\n .controls.append label, .controls.prepend label {\n box-shadow: 0 1px 0 #181818 inset;\n background-color: #242424;\n color: #949494;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .form-bordered .control-group {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .form-bordered .control-group.first-border {\n border-top-color: #343434;\n }\n /* githubstatus.com: \"#eee\" */\n .fa-border {\n border-color: #343434;\n }\n /* githubstatus.com: \"color: #fff\" */\n .cpt-admin-callout.uptime-edit .label.set, .fa-inverse,\n .tooltipster-sidetip .tooltipster-content {\n color: #fff;\n }\n /* githubstatus.com: \"#BBB\" */\n .cpt-admin-simple-search-form button {\n border-color: #484848;\n }\n /* githubstatus.com: \"color: #fff\", \"#ffffff\" */\n .carousel-control {\n color: #fff;\n border-color: #181818;\n }\n /* githubstatus.com: \"color: #fff\" */\n .carousel-caption h4, .carousel-caption p, .carousel-control:hover {\n color: #fff;\n }\n /* githubstatus.com: \"#f8f8f8\" */\n .component-statuses .component-status-container .component-dropdown-selector.dropdown-open .component-status-display {\n background-color: #202020;\n }\n /* githubstatus.com: \"#d0d0d0\", \"#fff\" */\n .component-statuses .component-status-container .component-dropdown-selector .status-dropdown {\n border-color: #343434;\n background-color: #181818;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"#fff\" */\n .component-statuses .component-status-container .component-dropdown-selector .status-dropdown .status-option:hover,\n .datepicker {\n background-color: #181818;\n }\n .datepicker {\n box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -moz-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -webkit-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -o-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -ms-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n border-color: rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\" */\n .datepicker::before {\n border-bottom-color: rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"#fff\" */\n .datepicker::after {\n border-bottom-color: #181818;\n }\n /* githubstatus.com: \"#eee\" */\n .datepicker td.day:hover {\n background-color: #242424;\n }\n /* githubstatus.com: \"color: #fff\" */\n .datepicker td.active, .datepicker td.active:hover {\n color: #fff;\n }\n /* githubstatus.com: \"#eee\" */\n .datepicker td span:hover {\n background-color: #242424;\n }\n /* githubstatus.com: \"color: #fff\" */\n .datepicker td span.active {\n color: #fff;\n }\n /* githubstatus.com: \"#eee\" */\n .datepicker thead tr:first-child th:hover {\n background-color: #242424;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"#ffffff\", \"rgba(0,0,0,0.2)\" */\n .dropdown .dropdown-menu {\n box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -moz-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -webkit-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -o-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -ms-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n background-color: #181818;\n border-color: rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"#f8f8f8\" */\n .dropdown .dropdown-menu li:hover {\n background-color: #202020;\n }\n /* githubstatus.com: \"color: #333\" */\n .dropdown .dropdown-menu li a {\n color: #bebebe;\n }\n /* githubstatus.com: \"white\" */\n .es-menu {\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #333\" */\n .es-menu .item div .fa, .es-menu .item div i.component-status {\n color: #bebebe;\n }\n /* githubstatus.com: \"color: #666\" */\n .es-highlight {\n color: #949494;\n }\n /* githubstatus.com: \"box-shadow: none !important\" */\n #es-search-field {\n box-shadow: none !important;\n }\n /* githubstatus.com: \"#bbb\" */\n .grouped-items-selector {\n border-color: #484848;\n }\n /* githubstatus.com: \"box-shadow: none\" */\n .grouped-items-selector.inline {\n box-shadow: none;\n }\n /* githubstatus.com: \"#ddd\" */\n .grouped-items-selector.inline .border-color {\n border-color: #343434;\n }\n /* githubstatus.com: \"color: #333\" */\n .grouped-items-selector.inline .grouped-item.active {\n color: #bebebe;\n }\n /* githubstatus.com: \"#ddd\" */\n .grouped-items-selector .body .grouped-items .grouped-item,\n .grouped-items-selector .body .grouped-items .grouped-item.open {\n border-color: #343434;\n }\n /* githubstatus.com: \"rgba(255,255,255,0.8)\" */\n .loader-overlay {\n background-color: hsla(0, 0%, 100%, .8);\n }\n /* githubstatus.com: \"#ffffff\" */\n .modal {\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #000\" */\n .modal .headless-close, .modal .headless-close:hover {\n color: #f0f0f0;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .modal .modal-header {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"color: #000\" */\n .modal .modal-header .close, .modal .modal-header .close:hover {\n color: #f0f0f0;\n }\n /* githubstatus.com: \"#f5f5f5\", \"#ddd\" */\n .modal .modal-footer {\n background-color: #222;\n border-top-color: #343434;\n }\n /* githubstatus.com: \"color: #fff\" */\n .cpt-notification {\n color: #fff;\n }\n /* githubstatus.com: \"rgba(255,255,255,0.8)\" */\n .cpt-notification .close {\n color: hsla(0, 0%, 100%, .8);\n }\n /* githubstatus.com: \"color: #fff\" */\n .cpt-notification .close:hover, .cpt-notification a:not(.close),\n .cpt-notification a:not(.close):hover {\n color: #fff;\n }\n /* githubstatus.com: \"#fff\" */\n .panel {\n background-color: #181818;\n }\n /* githubstatus.com: \"#ddd\" */\n .panel.panel-default {\n border-color: #343434;\n }\n /* githubstatus.com: \"color: #333\", \"#f5f5f5\", \"#ddd\" */\n .panel.panel-default .panel-heading {\n color: #bebebe;\n background-color: #222;\n border-color: #343434;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"#ffffff\", \"rgba(0,0,0,0.2)\" */\n .popover {\n box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -moz-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -webkit-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -o-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n -ms-box-shadow: 0 5px 10px rgba(255, 255, 255, .7);\n background-color: #181818;\n border-color: rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"#ffffff\" */\n .popover.top .arrow::after {\n border-top-color: #181818;\n }\n /* githubstatus.com: \"#ffffff\" */\n .popover.right .arrow::after {\n border-right-color: #181818;\n }\n /* githubstatus.com: \"#ffffff\" */\n .popover.bottom .arrow::after {\n border-bottom-color: #181818;\n }\n /* githubstatus.com: \"#ffffff\" */\n .popover.left .arrow::after {\n border-left-color: #181818;\n }\n /* githubstatus.com: \"#f5f5f5\", \"#eee\" */\n .popover .popover-title {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.15)\", \"color: #fff\" */\n .cpt-progress .bar {\n box-shadow: inset 0 -1px 0 #000;\n color: #fff;\n }\n /* githubstatus.com: \"#fff\" */\n .cpt-table .content {\n background-color: #181818;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .cpt-table .content .table-row.blank-state {\n border-color: #343434 !important;\n }\n /* githubstatus.com: \"#ddd\" */\n .cpt-tabular-table {\n border-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n .cpt-tabular-table td {\n border-top-color: #343434;\n }\n /* githubstatus.com: \"#ddd\" */\n .cpt-tabular-table td + td, .cpt-tabular-table th + th {\n border-left-color: #343434;\n }\n /* githubstatus.com: \"#f9f9f9\" */\n .cpt-tabular-table.striped tbody tr:nth-child(odd) td,\n .cpt-tabular-table .table-striped tbody tr:nth-child(odd) th {\n background-color: #181818;\n }\n /* githubstatus.com: \"#ddd\" */\n .cpt-tabs:not(.unstyled) {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#eee\", \"color: #666\" */\n .cpt-tabs:not(.unstyled) li:not(.active) a:hover {\n background-color: #242424;\n color: #949494;\n }\n /* githubstatus.com: \"transparent\" */\n .cpt-tabs:not(.unstyled) li:not(.active) a:hover.disabled {\n background-color: transparent;\n }\n /* githubstatus.com: \"color: #333\", \"#ffffff\", \"#ddd\" */\n .cpt-tabs:not(.unstyled) li.active a {\n color: #bebebe;\n background-color: #181818;\n border-color: #343434;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .cpt-tabs:not(.unstyled).mobile {\n border-color: #343434;\n }\n /* githubstatus.com: \"#e0e0e0\" */\n .cpt-tabs:not(.unstyled).mobile.open li:last-of-type {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#e0e0e0\", \"#e0e0e0\" */\n .cpt-tabs:not(.unstyled).mobile.open li a {\n border-left-color: #343434;\n border-right-color: #343434;\n }\n /* githubstatus.com: \"#fff\" */\n .cpt-tabs:not(.unstyled).mobile li.active a,\n .cpt-tabs:not(.unstyled).mobile li:not(.active) a:hover,\n .cpt-tabs:not(.unstyled).mobile li a {\n background-color: #181818;\n }\n /* githubstatus.com: \"box-shadow: none\", \"none\" */\n .cpt-toggle {\n box-shadow: none;\n background: none;\n }\n /* githubstatus.com: \"white\" */\n .cpt-toggle .bubble {\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #fff\" */\n .cpt-toggle.on .text {\n color: #fff;\n }\n /* githubstatus.com: \"color: #666\", \"#e0e0e0\" */\n .tooltip-base {\n border-color: #343434;\n }\n /* githubstatus.com: \"color: #666\" */\n .tooltip-base, .tooltip-base:hover {\n color: #949494;\n }\n /* githubstatus.com: \"color: #fff\" */\n .tooltip .tooltip-inner {\n color: #fff;\n }\n /* githubstatus.com: \"color: #fff\", \"color: #fff !important\" */\n .cpt-button {\n color: #fff;\n color: #fff !important;\n }\n /* githubstatus.com: \"color: #fff\" */\n .cpt-button:hover {\n color: #fff;\n }\n /* githubstatus.com: \"#ffffff\" */\n .cpt-button .caret {\n border-top-color: #181818;\n }\n /* githubstatus.com: \"box-shadow: none\", \"transparent\", \"rgba(255,255,255,0.8)\" */\n .cpt-button.style-outline {\n box-shadow: none;\n background-color: transparent;\n border-color: hsla(0, 0%, 100%, .8);\n }\n /* githubstatus.com: \"white\" */\n .cpt-button.style-outline:hover {\n border-color: #181818;\n }\n /* githubstatus.com: \"#bbb\" */\n .cpt-button.style-outline.color-grey {\n border-color: #484848;\n }\n /* githubstatus.com: \"box-shadow: none\" */\n .cpt-button.disabled {\n box-shadow: none;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\" */\n .cpt-button.pressed, .cpt-button:active {\n box-shadow: inset 0 0 5px rgba(255, 255, 255, .7);\n -moz-box-shadow: inset 0 0 5px rgba(255, 255, 255, .7);\n -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, .7);\n -o-box-shadow: inset 0 0 5px rgba(255, 255, 255, .7);\n -ms-box-shadow: inset 0 0 5px rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"#CCCCCC\" */\n .domain-helper .domain-header.domain-unset {\n background-color: #484848;\n }\n /* githubstatus.com: \"color: #fff\" */\n .domain-helper .domain-header.domain-deprecated,\n .domain-helper .domain-header.domain-invalid,\n .domain-helper .domain-header.domain-valid {\n color: #fff;\n }\n /* githubstatus.com: \"#EEEEEE\" */\n .domain-helper .dns-records {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#EEEEEE\" */\n .domain-helper .dns-records .dns-records-header {\n background-color: #242424;\n }\n /* githubstatus.com: \"#EEEEEE\" */\n .domain-helper .dns-records .dns-records-row {\n border-color: #343434;\n }\n /* githubstatus.com: \"#fff\" */\n .cpt-pill-group button.pill {\n background-color: #181818;\n }\n /* githubstatus.com: \"#E0E0E0\", \"color: #333\" */\n .cpt-pill-group button.pill.active {\n border-color: #343434;\n color: #bebebe;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\" */\n .updates-dropdown-container .updates-dropdown {\n box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n -moz-box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n -o-box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n -ms-box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\" */\n .updates-dropdown-container .updates-dropdown .updates-dropdown-nav {\n border-color: rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"#f8f8f8\", \"#e0e0e0\", \"#e0e0e0\" */\n .updates-dropdown-container .updates-dropdown .updates-dropdown-nav a {\n background-color: #202020;\n border-right-color: #343434;\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"color: #666 !important\" */\n .updates-dropdown-container .updates-dropdown .updates-dropdown-nav a:last-of-type {\n color: #949494 !important;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"#fff\" */\n .updates-dropdown-container .updates-dropdown .updates-dropdown-section {\n border-color: rgba(255, 255, 255, .7);\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #fff\" */\n .activate-page-prompt, .activate-page-prompt a, .pau-preview {\n color: #fff;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.15)\", \"color: #fff\" */\n .flat-button,\n .layout-content.status .masthead-container .updates-dropdown-container .show-updates-dropdown {\n box-shadow: 0 -2px 0 #000 inset;\n color: #fff;\n }\n /* githubstatus.com: \"color: #fff\" */\n .flat-button:hover,\n .layout-content.status .masthead-container .updates-dropdown-container .show-updates-dropdown:hover {\n color: #fff;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.8)\" */\n .layout-content.status .masthead-container.premium .masthead .text-container {\n background-color: #242424;\n }\n /* githubstatus.com: \"color: #fff\" */\n .layout-content.status .masthead-container.premium .masthead .text-container .page-name,\n .layout-content.status .masthead-container.premium .masthead .text-container .page-name a {\n color: #fff;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\" */\n .layout-content.status.status-index .unresolved-incidents .unresolved-incident .incident-title {\n text-shadow: 0 1px 0 rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"color: #fff\" */\n .layout-content.status.status-index .page-status .status,\n .layout-content.status.status-index .unresolved-incidents .unresolved-incident .incident-title a,\n .layout-content.status.status-index .unresolved-incidents .unresolved-incident .incident-title a:hover {\n color: #fff;\n }\n /* githubstatus.com: \"rgba(255,255,255,0.8)\" */\n .layout-content.status.status-index .page-status .last-updated-stamp {\n color: hsla(0, 0%, 100%, .8);\n }\n /* githubstatus.com: \"color: #fff\" */\n .layout-content.status.status-full-history .show-filter.open {\n color: #fff;\n }\n /* githubstatus.com: \"white\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\" */\n .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip {\n background-color: #181818;\n border-color: rgba(255, 255, 255, .7);\n box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"white\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\" */\n .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip #box-arrow {\n background-color: #181818;\n border-left-color: rgba(255, 255, 255, .7);\n border-top-color: rgba(255, 255, 255, .7);\n box-shadow: 0 0 10px rgba(255, 255, 255, .7);\n }\n /* githubstatus.com: \"box-shadow: none\" */\n .layout-content.status.status-full-history .uptime-calendar #uptime-tooltip .tooltip-box {\n box-shadow: none;\n }\n /* githubstatus.com: \"#e0e0e0\", \"color: #333\" */\n .layout-content.status-internal {\n border-color: #343434;\n color: #bebebe;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"rgba(0,0,0,0.2)\", \"#fff\" */\n .layout-content.status-internal .message-container {\n box-shadow: 0 0 25px rgba(255, 255, 255, .7);\n -moz-box-shadow: 0 0 25px rgba(255, 255, 255, .7);\n -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, .7);\n -o-box-shadow: 0 0 25px rgba(255, 255, 255, .7);\n -ms-box-shadow: 0 0 25px rgba(255, 255, 255, .7);\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #fff\" */\n .layout-content.status-internal .powered-by-container,\n .layout-content.status-internal .powered-by-container a,\n .layout-content.status-internal .powered-by-container a:hover {\n color: #fff;\n }\n /* githubstatus.com: \"white\" */\n #uptime-tooltip .pointer-smaller {\n border-bottom-color: #181818;\n }\n /* githubstatus.com: \"rgba(0,0,0,0.15)\", \"rgba(0,0,0,0.2)\", \"white\" */\n #uptime-tooltip .tooltip-box {\n box-shadow: 0 3px 6px #000;\n border-color: rgba(255, 255, 255, .7);\n background-color: #181818;\n }\n /* githubstatus.com: \"rgba(255,255,255,0)\" */\n #uptime-tooltip .outage-field {\n border-color: transparent;\n }\n /* githubstatus.com: \"color: #333\" */\n #uptime-tooltip .related-events .related-event .related-event-link {\n color: #bebebe;\n }\n /* githubstatus.com: \"transparent\", \"#0366d6\" */\n a {\n background-color: transparent;\n color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"color: #000\" */\n mark {\n color: #f0f0f0;\n }\n /* githubstatus.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* githubstatus.com: \"#dfe2e5\" */\n .rule, hr {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* githubstatus.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .border-blue {\n border-color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* githubstatus.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* githubstatus.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* githubstatus.com: \"#cea0a5\" */\n .border-red, .border-red-light {\n border-color: #d82828 !important;\n }\n /* githubstatus.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* githubstatus.com: \"#d9d0a5\" */\n .border-yellow {\n border-color: #542 !important;\n }\n /* githubstatus.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* githubstatus.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* githubstatus.com: \"rgba(27, 31, 35, 0.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* githubstatus.com: \"rgba(27, 31, 35, 0.1)\" */\n .box-shadow {\n box-shadow: 0 1px 1px #000 !important;\n }\n /* githubstatus.com: \"rgba(27, 31, 35, 0.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* githubstatus.com: \"rgba(27, 31, 35, 0.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* githubstatus.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* githubstatus.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .bg-blue {\n background-color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* githubstatus.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* githubstatus.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* githubstatus.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* githubstatus.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* githubstatus.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* githubstatus.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* githubstatus.com: \"#ffdce0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* githubstatus.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* githubstatus.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* githubstatus.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* githubstatus.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .text-blue {\n color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* githubstatus.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* githubstatus.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* githubstatus.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* githubstatus.com: \"#28a745\" */\n .text-green {\n color: #484 !important;\n }\n /* githubstatus.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* githubstatus.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* githubstatus.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* githubstatus.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* githubstatus.com: \"#dbab09\" */\n .bg-pending, .text-pending {\n color: #cb4 !important;\n }\n /* githubstatus.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .link-gray:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* githubstatus.com: \"#0366d6\" */\n .muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* githubstatus.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* githubstatus.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* githubstatus.com: \"rgba(255, 255, 255, 0.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* githubstatus.com: \"#f6f8fa\" */\n body {\n background-color: #222;\n }\n /* githubstatus.com: \"rgba(0, 0, 0, 0.125)\" */\n .layout-content.status.status-index .unresolved-incidents .unresolved-incident.impact-none .updates,\n .markdown-display table, .tooltip-base,\n body.status .layout-content.status .border-color, hr {\n border-color: rgba(220, 220, 220, .125);\n }\n /* githubstatus.com: \"rgba(0, 0, 0, 0.125)\" */\n .header {\n border-bottom-color: rgba(220, 220, 220, .125);\n }\n /* githubstatus.com: \"#fff\" */\n .component-container, .incident-title + .updates {\n background-color: #181818;\n }\n /* githubstatus.com: \"#e6ebf1\" */\n .page-footer {\n border-top-color: #343434 !important;\n }\n /* githubstatus.com: \"#f6f8fa\" */\n .component-items-selector .grouped-item:hover {\n background-color: #222;\n }\n /* githubstatus.com: \"color: #fff\", \"#0366d6\" */\n .component-items-selector .active, .component-items-selector .active:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"#e6ebf1\" */\n .incident-list::before, .status-day::before {\n background-color: #444;\n }\n /* githubstatus.com: \"#24292e\" */\n .status-day > .date::before {\n background-color: #181818;\n }\n /* githubstatus.com: \"#e6ebf1\" */\n .month-title {\n border-bottom-color: #343434 !important;\n }\n /* githubstatus.com: \"#e6ebf1\" */\n .incident-container::before {\n background-color: #444;\n }\n /* githubstatus.com: \"#e6ebf1\", \"#f6f8fa\" */\n .incident-container .incident-title::before {\n background-color: #444;\n border-color: #202020;\n }\n /* githubstatus.com: \"#dbab09\" */\n .update.investigating > strong {\n color: #cb4;\n }\n /* githubstatus.com: \"#28a745\" */\n .update.resolved > strong {\n color: #484;\n }\n /* githubstatus.com: \"#eff3f6\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\", \"rgba(27, 31, 35, 0.2)\", \"color: #24292e !important\", \"rgba(0, 0, 0, 0.15)\" */\n .flat-button, .history-header .show-filter {\n background-color: #242424 !important;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%) !important;\n border-color: rgba(220, 220, 220, .2) !important;\n color: #cdcdcd !important;\n box-shadow: #000 0 0 0 inset !important;\n }\n /* githubstatus.com: \"#fff\" */\n .updates-dropdown-container .updates-dropdown {\n background-color: #181818;\n }\n /* githubstatus.com: \"color: #24292e\", \"rgba(0, 0, 0, 0.125)\" */\n .updates-dropdown-container .updates-dropdown-nav::before {\n color: #cdcdcd;\n border-bottom-color: rgba(220, 220, 220, .125);\n }\n /* githubstatus.com: \"transparent\" */\n .updates-dropdown-container #updates-dropdown-close-btn {\n background-color: transparent;\n }\n /* githubstatus.com: \"#ffffff\" */\n #uptime-tooltip .tooltip-box, .grouped-items-selector,\n .layout-content.status.status-api .section .example-container .example-opener .color-secondary,\n .layout-content.status.status-full-history .history-nav a.current, body,\n div[id^=\"subscribe-modal\"], div[id^=\"subscribe-modal\"] .modal-footer {\n background-color: #181818;\n }\n /* githubstatus.com: \"#ffffff\" */\n #uptime-tooltip .pointer-container .pointer-smaller {\n border-bottom-color: #181818;\n }\n /* githubstatus.com: \"color: #24292e\" */\n #uptime-tooltip .tooltip-box .tooltip-content .related-events .related-event a.related-event-link,\n .color-primary, .color-primary:hover, .incident-history .impact-none,\n .layout-content.status-full-history .month .incident-container .impact-none,\n .layout-content.status-index .status-day .update-title.impact-none a,\n .layout-content.status-index .status-day .update-title.impact-none a:hover,\n .layout-content.status-index .timeframes-container .timeframe.active,\n .layout-content.status .grouped-items-selector.inline .grouped-item.active,\n .layout-content.status.status-full-history .history-nav a.current,\n .layout-content.status.status-full-history .history-nav a:not(.current):hover,\n .layout-content.status.status-index .components-statuses .component-container .name,\n .layout-content.status.status-index .incidents-list .incident-title.impact-none a,\n body.status, div[id^=\"subscribe-modal\"] .modal-header .close {\n color: #cdcdcd;\n }\n /* githubstatus.com: \"color: #6a737d\" */\n #uptime-tooltip .tooltip-box .tooltip-content .related-events #related-event-header,\n .color-secondary,\n .layout-content.status .grouped-items-selector.inline .grouped-item,\n .layout-content.status.status-full-history .history-footer .pagination a.disabled,\n .layout-content.status.status-full-history .history-nav a,\n .layout-content.status .table-row .date, small {\n color: #949494;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n #uptime-tooltip .tooltip-box, .markdown-display table, .tooltip-base,\n body.status .layout-content.status .border-color, div[id^=\"subscribe-modal\"],\n hr {\n border-color: #343434;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .markdown-display table td, div[id^=\"subscribe-modal\"] .modal-footer {\n border-top-color: #343434;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n div[id^=\"subscribe-modal\"] .modal-header .close:hover {\n color: #343434;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n .markdown-display table td + td, .markdown-display table th + th {\n border-left-color: #343434;\n }\n /* githubstatus.com: \"#e1e4e8\" */\n #uptime-tooltip .pointer-container .pointer-larger,\n div[id^=\"subscribe-modal\"] .modal-header {\n border-bottom-color: #343434;\n }\n /* githubstatus.com: \"rgba(225,228,232,0.31)\" */\n #uptime-tooltip .tooltip-box .outage-field {\n background-color: #282828;\n }\n /* githubstatus.com: \"#e36209\" */\n .layout-content.status.status-index .page-status.status-major,\n .layout-content.status.status-index .status-day .update-title.impact-major a,\n .layout-content.status.status-index .status-day .update-title.impact-major a:hover,\n .layout-content.status.status-index .unresolved-incident.impact-major .incident-title {\n background-color: #fb8532;\n }\n /* githubstatus.com: \"#e36209\" */\n .components-container .component-inner-container.status-orange .component-status,\n .components-container .component-inner-container.status-orange .icon-indicator,\n .incident-history .impact-major,\n .layout-content.status-full-history .month .incident-container .impact-major,\n .layout-content.status-incident .incident-name.impact-major,\n .layout-content.status-index .components-statuses .component-container.status-orange::after,\n .layout-content.status.status-index .incidents-list .incident-title.impact-major a,\n .status-orange .icon-indicator {\n color: #fb8532;\n }\n /* githubstatus.com: \"#e36209\" */\n .layout-content.status.status-index .unresolved-incident.impact-major .updates {\n border-color: #fb8532;\n }\n /* githubstatus.com: \"#dbab09\" */\n .layout-content.status.status-index .page-status.status-minor,\n .layout-content.status.status-index .scheduled-incidents-container .tab,\n .layout-content.status.status-index .status-day .update-title.impact-minor a,\n .layout-content.status.status-index .status-day .update-title.impact-minor a:hover,\n .layout-content.status.status-index .unresolved-incident.impact-minor .incident-title {\n background-color: #cb4;\n }\n /* githubstatus.com: \"#dbab09\" */\n .components-container .component-inner-container.status-yellow .component-status,\n .components-container .component-inner-container.status-yellow .icon-indicator,\n .incident-history .impact-minor,\n .layout-content.status-full-history .month .incident-container .impact-minor,\n .layout-content.status-incident .incident-name.impact-minor,\n .layout-content.status-index .components-statuses .component-container.status-yellow::after,\n .layout-content.status.manage-subscriptions .confirmation-infobox .fa,\n .layout-content.status.status-index .incidents-list .incident-title.impact-minor a,\n .status-yellow .icon-indicator {\n color: #cb4;\n }\n /* githubstatus.com: \"#dbab09\" */\n .layout-content.status.status-index .scheduled-incidents-container,\n .layout-content.status.status-index .unresolved-incident.impact-minor .updates {\n border-color: #cb4;\n }\n /* githubstatus.com: \"#0366d6\" */\n .layout-content.status.status-index .page-status.status-maintenance,\n .layout-content.status.status-index .scheduled-incidents-container .tab,\n .layout-content.status.status-index .status-day .update-title.impact-maintenance a,\n .layout-content.status.status-index .status-day .update-title.impact-maintenance a:hover,\n .layout-content.status.status-index .unresolved-incident.impact-maintenance .incident-title {\n background-color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"#0366d6\" */\n .components-container .component-inner-container.status-blue .component-status,\n .components-container .component-inner-container.status-blue .icon-indicator,\n .incident-history .impact-maintenance,\n .layout-content.status-full-history .month .incident-container .impact-maintenance,\n .layout-content.status-incident .incident-name.impact-maintenance,\n .layout-content.status-index .components-statuses .component-container.status-blue::after,\n .layout-content.status.status-index .incidents-list .incident-title.impact-maintenance a,\n .status-blue .icon-indicator {\n color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"#0366d6\" */\n .layout-content.status.status-index .scheduled-incidents-container,\n .layout-content.status.status-index .unresolved-incident.impact-maintenance .updates {\n border-color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"#28a745\" */\n .layout-content.status.status-index .page-status.status-none {\n background-color: #484;\n }\n /* githubstatus.com: \"#28a745\" */\n .components-container .component-inner-container.status-green .component-status,\n .components-container .component-inner-container.status-green .icon-indicator,\n .layout-content.status-index .components-statuses .component-container.status-green::after,\n .status-green .icon-indicator {\n color: #484;\n }\n /* githubstatus.com: \"#0366d6\" */\n .layout-content.status-incident .subheader a:hover,\n .layout-content.status-index .page-footer span a:hover,\n .layout-content.status-index .timeframes-container .timeframe:not(.active):hover,\n a, a:hover {\n color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"#0366d6\" */\n .flat-button, .layout-content.status-full-history .show-filter.open,\n .masthead .updates-dropdown-container .show-updates-dropdown {\n background-color: /*[[base-color]]*/;\n }\n /* githubstatus.com: \"color: #6a737d\" */\n .components-section .components-uptime-link,\n .layout-content.status .shared-partial.uptime-90-days-wrapper .legend .legend-item,\n .layout-content.status .shared-partial.uptime-90-days-wrapper .legend .legend-item.light {\n color: #949494;\n }\n /* githubstatus.com: \"#6a737d\" */\n .layout-content.status .shared-partial.uptime-90-days-wrapper .legend .spacer {\n background-color: #444;\n }\n /* end githubstatus.com rules */\n .illo-desktop-header {\n filter: invert(90%) hue-rotate(-180deg) !important;\n }\n .status-day > .date::before {\n background-color: #444 !important;\n }\n .layout-content.status .shared-partial.uptime-90-days-wrapper .legend .legend-item.light {\n opacity: .7;\n }\n .page-title .impact-minor::before {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.89307 1.50072C8.70961 1.19027 8.37325 1 8.00632 1C7.63938 1 7.30302 1.19027 7.11956 1.50072L0.137601 13.4979C-0.0458669 13.8083 -0.0458669 14.1888 0.137601 14.4993C0.331261 14.8097 0.667618 15 1.02436 15H14.9883C15.3552 15 15.6916 14.8097 15.8648 14.4993C16.0381 14.1888 16.0483 13.8083 15.875 13.4979L8.89307 1.50072ZM9.02558 12.9971H6.98705V10.9943H9.02558V12.9971ZM9.02558 9.99285H6.98705V5.98712H9.02558V9.99285Z' fill='%23cb4'/%3E%3C/svg%3e\");\n }\n .page-title .impact-major::before {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.89307 1.50072C8.70961 1.19027 8.37325 1 8.00632 1C7.63938 1 7.30302 1.19027 7.11956 1.50072L0.137601 13.4979C-0.0458669 13.8083 -0.0458669 14.1888 0.137601 14.4993C0.331261 14.8097 0.667618 15 1.02436 15H14.9883C15.3552 15 15.6916 14.8097 15.8648 14.4993C16.0381 14.1888 16.0483 13.8083 15.875 13.4979L8.89307 1.50072ZM9.02558 12.9971H6.98705V10.9943H9.02558V12.9971ZM9.02558 9.99285H6.98705V5.98712H9.02558V9.99285Z' fill='%23f3582c'/%3E%3C/svg%3e\");\n }\n .page-title .impact-critical::before {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.89307 1.50072C8.70961 1.19027 8.37325 1 8.00632 1C7.63938 1 7.30302 1.19027 7.11956 1.50072L0.137601 13.4979C-0.0458669 13.8083 -0.0458669 14.1888 0.137601 14.4993C0.331261 14.8097 0.667618 15 1.02436 15H14.9883C15.3552 15 15.6916 14.8097 15.8648 14.4993C16.0381 14.1888 16.0483 13.8083 15.875 13.4979L8.89307 1.50072ZM9.02558 12.9971H6.98705V10.9943H9.02558V12.9971ZM9.02558 9.99285H6.98705V5.98712H9.02558V9.99285Z' fill='%23f44'/%3E%3C/svg%3e\");\n }\n .page-title .impact-maintenance::before {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.48 7.27001C4.74 7.53001 5.76 8.60001 5.76 8.60001L6.32 8.02001L5.44 7.11001L7.13 5.31001C7.13 5.31001 6.37 4.57001 6.7 4.86001C7.02 3.67001 6.73 2.35001 5.83 1.42001C4.93 0.500006 3.66 0.200006 2.52 0.510006L4.45 2.51001L3.94 4.47001L2.05 4.99001L0.12 2.99001C-0.19 4.17001 0.1 5.48001 1 6.40001C1.94 7.38001 3.29 7.66001 4.48 7.27001ZM10.92 9.21001L8.59 11.51L12.43 15.49C12.74 15.82 13.16 15.98 13.57 15.98C13.98 15.98 14.39 15.82 14.71 15.49C15.34 14.84 15.34 13.79 14.71 13.14L10.92 9.21001ZM16 2.53L13.55 0L6.33 7.46L7.21 8.37L2.9 12.83L1.91 13.36L0.519998 15.63L0.869998 16L3.07 14.56L3.58 13.54L7.9 9.08L8.78 9.99L16 2.53Z' fill='rgb(/*[[base-color-rgb]]*/)'/%3E%3C/svg%3e\");\n }\n .page-footer > a:first-child::before {\n background: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='8' height='16' viewBox='0 0 8 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 3L7 4.5L3.25 8L7 11.5L5.5 13L0.5 8L5.5 3Z' fill='rgb(/*[[base-color-rgb]]*/)'/%3E%3C/svg%3e\") no-repeat center center !important;\n }\n .incident-container .incident-title::before {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.99999 2.3C10.14 2.3 12.7 4.86 12.7 8C12.7 11.14 10.14 13.7 6.99999 13.7C3.85999 13.7 1.29999 11.14 1.29999 8C1.29999 4.86 3.85999 2.3 6.99999 2.3ZM7 1C3.14 1 0 4.14 0 8C0 11.86 3.14 15 7 15C10.86 15 14 11.86 14 8C14 4.14 10.86 1 7 1ZM8 4H6V9H8V4ZM8 10H6V12H8V10Z' fill='%23bebebe'/%3E%3C/svg%3e\");\n }\n .select-input__control[class*=\"css-\"] {\n background-color: #181818;\n border-color: #333;\n }\n .select-input__single-value[class*=\"css-\"] {\n color: #bebebe;\n }\n body.status div[class*=\"css-\"] {\n background-color: #181818;\n }\n .layout-content.status.status-full-history .history-nav a.current.border-color {\n margin-top: 1px;\n border-bottom: 1px solid transparent !important;\n }\n .layout-content.status.status-full-history .history-nav a.button.border-color:not(.current) {\n border-bottom: 1px solid #333 !important;\n margin-top: 1px;\n }\n .select-input__option:not(.select-input__option--is-selected):hover {\n background-color: #282828;\n color: #eee;\n }\n .select-input__option--is-selected[class*=\"css-\"] {\n background-color: #182030 !important;\n }\n svg [fill=\"#EAEAEA\"] {\n fill: #555;\n }\n}\n@-moz-document domain(\"support.github.com\") {\n /* begin support.github.com rules */\n /* support.github.com: \"transparent\" */\n a {\n background-color: transparent;\n }\n /* support.github.com: \"color: #1b1f23\" */\n mark {\n color: #dcdcdc;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* support.github.com: \"#0366d6\" */\n a {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* support.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\", \"#d1d5da\" */\n kbd {\n color: #afafaf;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* support.github.com: \"#fff\", \"#d1d5da\" */\n .Box, kbd {\n background-color: #181818;\n border-color: #404040;\n }\n /* support.github.com: \"#f6f8fa\", \"#d1d5da\" */\n .Box-header {\n background-color: #222;\n border-color: #404040;\n }\n /* support.github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* support.github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* support.github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: 2px 0 0 /*[[base-color]]*/ inset;\n }\n /* support.github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* support.github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* support.github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* support.github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* support.github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* support.github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width: 768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: /*[[base-color]]*/;\n }\n }\n /* support.github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* support.github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* support.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* support.github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* support.github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* support.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* support.github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* support.github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* support.github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* support.github.com: \"#e1e4e8\" */\n .breadcrumb-item::after {\n color: #343434;\n }\n /* support.github.com: \"color: #586069\" */\n .breadcrumb-item-selected, .breadcrumb-item[aria-current] {\n color: #afafaf;\n }\n /* support.github.com: \"rgba(27,31,35,0.2)\" */\n .btn {\n border-color: rgba(220, 220, 220, .2);\n }\n /* support.github.com: \"color: #586069\", \"rgba(27,31,35,0.1)\" */\n .btn .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .17);\n }\n /* support.github.com: \"none\" */\n .btn.selected, .btn:active, .btn[aria-selected=true] {\n background-image: none;\n }\n /* support.github.com: \"color: #24292e\", \"#eff3f6\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn {\n color: #cdcdcd;\n background-color: #242424;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* support.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* support.github.com: \"#e6ebf1\", \"#e6ebf1\", \"rgba(27,31,35,0.35)\" */\n .btn.hover, .btn:hover {\n background-color: #444;\n background-image: linear-gradient(-180deg, #f0f3f6 0%, #444 90%);\n border-color: rgba(220, 220, 220, .35);\n }\n /* support.github.com: \"#e9ecef\", \"none\", \"rgba(27,31,35,0.35)\", \"rgba(27,31,35,0.15)\" */\n .btn.selected, .btn:active, .btn[aria-selected=true], [open] > .btn {\n background-color: #404040;\n background-image: none;\n border-color: rgba(220, 220, 220, .35);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* support.github.com: \"color: rgba(36,41,46,.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn.disabled, .btn:disabled, .btn[aria-disabled=true] {\n color: rgba(210, 210, 210, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* support.github.com: \"color: #fff\", \"#28a745\", \"#34d058\",\"#28a745\" */\n .btn-primary {\n color: #fff;\n background-color: #484;\n background-image: linear-gradient(-180deg, #373 0%, #484 90%);\n }\n /* support.github.com: \"rgba(52,208,88,0.4)\" */\n .btn-primary.focus, .btn-primary:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* support.github.com: \"#269f42\", \"#2fcb53\",\"#269f42\", \"rgba(27,31,35,0.5)\" */\n .btn-primary.hover, .btn-primary:hover {\n background-color: #595;\n background-image: linear-gradient(-180deg, #373 0%, #595 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* support.github.com: \"#279f43\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-primary.selected, .btn-primary:active, .btn-primary[aria-selected=true],\n [open] > .btn-primary {\n background-color: #595;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* support.github.com: \"#94d3a2\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-primary.disabled, .btn-primary:disabled,\n .btn-primary[aria-disabled=true] {\n background-color: #040;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* support.github.com: \"#fff\" */\n .btn-primary .Counter {\n background-color: #181818;\n }\n /* support.github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: linear-gradient(-180deg, /*[[base-color]]*/ 0%, /*[[base-color]]*/ 90%);\n }\n /* support.github.com: \"rgba(27,31,35,0.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* support.github.com: \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-blue.selected, .btn-blue:active, .btn-blue[aria-selected=true],\n [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* support.github.com: \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled, .btn-blue[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* support.github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* support.github.com: \"#cb2431\", \"#fafbfc\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn-danger {\n color: #d82828;\n background-color: #181818;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* support.github.com: \"rgba(203,36,49,0.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 .2em rgba(255, 68, 68, .4);\n }\n /* support.github.com: \"color: #fff\", \"#cb2431\", \"#cb2431\", \"rgba(27,31,35,0.5)\" */\n .btn-danger:hover {\n color: #fff;\n background-color: #d82828;\n background-image: linear-gradient(-180deg, #de4450 0%, #d82828 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* support.github.com: \"color: #fff\" */\n .btn-danger:hover .Counter {\n color: #fff;\n }\n /* support.github.com: \"color: #fff\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-danger.selected, .btn-danger:active, .btn-danger[aria-selected=true],\n [open] > .btn-danger {\n color: #fff;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* support.github.com: \"rgba(203,36,49,0.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-danger.disabled, .btn-danger:disabled, .btn-danger[aria-disabled=true] {\n color: rgba(255, 68, 68, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* support.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-outline {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\", \"none\", \"#0366d6\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n .btn-outline[aria-selected=true], [open] > .btn-outline {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#0366d6\", \"#fff\" */\n .btn-outline.selected .Counter, .btn-outline:active .Counter,\n .btn-outline:hover .Counter, .btn-outline[aria-selected=true] .Counter,\n [open] > .btn-outline .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* support.github.com: \"#0366d6\" */\n .btn-outline:focus {\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline.disabled, .btn-outline:disabled,\n .btn-outline[aria-disabled=true] {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* support.github.com: \"#0366d6\", \"transparent\" */\n .btn-link {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* support.github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover, .btn-link[aria-disabled=true],\n .btn-link[aria-disabled=true]:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* support.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-invisible {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* support.github.com: \"#0366d6\", \"none\", \"box-shadow: none\" */\n .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,\n .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,\n .btn-invisible:focus, .btn-invisible:hover,\n .btn-invisible[aria-selected=true] {\n color: /*[[base-color]]*/;\n background: none;\n box-shadow: none;\n }\n /* support.github.com: \"color: #586069\", \"transparent\" */\n .btn-octicon {\n color: #afafaf;\n background-color: transparent;\n }\n /* support.github.com: \"#0366d6\" */\n .btn-octicon:hover {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #959da5\" */\n .btn-octicon.disabled, .btn-octicon.disabled:hover,\n .btn-octicon[aria-disabled=true], .btn-octicon[aria-disabled=true]:hover {\n color: #767676;\n }\n /* support.github.com: \"#cb2431\" */\n .btn-octicon-danger:hover {\n color: #d82828;\n }\n /* support.github.com: \"transparent\" */\n .close-button {\n background-color: transparent;\n }\n /* support.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* support.github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* support.github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,0.2)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .2);\n }\n /* support.github.com: \"#0366d6\" */\n .social-count:hover {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n #q, .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* support.github.com: \"#2188ff\", \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n #q:focus, .focus#q, .form-control.focus, .form-control:focus,\n .form-select.focus, .form-select:focus {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* support.github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* support.github.com: \"color: #fff\" */\n .input-dark {\n color: #fff;\n }\n /* support.github.com: \"rgba(27,31,35,0.3)\" */\n .input-dark.focus, .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* support.github.com: \"color: #6a737d\" */\n ::-webkit-input-placeholder {\n color: #949494;\n }\n /* support.github.com: \"color: #6a737d\" */\n :-ms-input-placeholder {\n color: #949494;\n }\n /* support.github.com: \"color: #6a737d\" */\n ::-ms-input-placeholder {\n color: #949494;\n }\n /* support.github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* support.github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* support.github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group .form-group-header label,\n .hfields .form-group dt label {\n color: #afafaf;\n }\n /* support.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* support.github.com: \"#fff\" */\n .form-group #q, .form-group #q:focus, .form-group .form-control,\n .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* support.github.com: \"#cb2431\" */\n .form-group .form-group-body h4.is-error, .form-group dd h4.is-error {\n color: #d82828;\n }\n /* support.github.com: \"#28a745\" */\n .form-group .form-group-body h4.is-success, .form-group dd h4.is-success {\n color: #484;\n }\n /* support.github.com: \"#cb2431\" */\n .form-group.required .form-group-header label::after,\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* support.github.com: \"#28a745\" */\n .form-group.successful .success {\n color: #484;\n }\n /* support.github.com: \"#144620\", \"#dcffe4\", \"#34d058\" */\n .form-group.successed .success {\n color: #6cc644;\n background-color: #002800;\n border-color: #373;\n }\n /* support.github.com: \"#dcffe4\" */\n .form-group.successed .success::after {\n border-bottom-color: #002800;\n }\n /* support.github.com: \"#34d058\" */\n .form-group.successed .success::before {\n border-bottom-color: #373;\n }\n /* support.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-group.warn .warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* support.github.com: \"#fffbdd\" */\n .form-group.warn .warning::after {\n border-bottom-color: #261d08;\n }\n /* support.github.com: \"#d9d0a5\" */\n .form-group.warn .warning::before {\n border-bottom-color: #542;\n }\n /* support.github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* support.github.com: \"#86181d\", \"#ffdce0\", \"#cea0a5\" */\n .form-group.errored .error {\n color: #d82828;\n background-color: #300;\n border-color: #d82828;\n }\n /* support.github.com: \"#ffdce0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* support.github.com: \"#cea0a5\" */\n .form-group.errored .error::before {\n border-bottom-color: #d82828;\n }\n /* support.github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* support.github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* support.github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* support.github.com: \"transparent\" */\n .inline-form .btn-plain {\n background-color: transparent;\n }\n /* support.github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* support.github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* support.github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* support.github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* support.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* support.github.com: \"box-shadow: none\" */\n .upload-enabled.focused #q, .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* support.github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* support.github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* support.github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* support.github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* support.github.com: \"color: #24292e\", \"#d1d5da\" */\n .radio-label {\n color: #cdcdcd;\n border-color: #404040;\n }\n /* support.github.com: \"#0366d6\" */\n :checked + .radio-label {\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#fff\", \"#d1d5da\" */\n .menu {\n background-color: #181818;\n border-color: #404040;\n }\n /* support.github.com: \"#e1e4e8\" */\n .menu-item {\n border-bottom-color: #343434;\n }\n /* support.github.com: \"#f6f8fa\" */\n .menu-item:hover {\n background-color: #222;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\" */\n .menu-item.selected, .menu-item[aria-current],\n .menu-item[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* support.github.com: \"#e36209\" */\n .menu-item.selected::before, .menu-item[aria-current]::before,\n .menu-item[aria-selected=true]::before {\n background-color: #fb8532;\n }\n /* support.github.com: \"color: #24292e\" */\n .menu-item .octicon {\n color: #cdcdcd;\n }\n /* support.github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* support.github.com: \"color: #586069\", \"#e1e4e8\" */\n .menu-heading {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* support.github.com: \"#d1d5da\" */\n .tabnav {\n border-bottom-color: #404040;\n }\n /* support.github.com: \"color: #586069\", \"transparent\" */\n .tabnav-tab {\n color: #afafaf;\n background-color: transparent;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .tabnav-tab.selected, .tabnav-tab[aria-current],\n .tabnav-tab[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* support.github.com: \"color: #24292e\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #cdcdcd;\n }\n /* support.github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* support.github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #586069\", \"transparent\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: transparent;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* support.github.com: \"#eaecef\" */\n .filter-item:hover {\n background-color: #343434;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected, .filter-item[aria-current],\n .filter-item[aria-selected=true] {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* support.github.com: \"#fafbfc\" */\n .SideNav {\n background-color: #181818;\n }\n /* support.github.com: \"color: #586069\", \"transparent\", \"#e1e4e8\" */\n .SideNav-item {\n color: #afafaf;\n background-color: transparent;\n border-top-color: #343434;\n }\n /* support.github.com: \"#e1e4e8\" */\n .SideNav-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* support.github.com: \"color: #24292e\", \"#f6f8fa\" */\n .SideNav-item:focus, .SideNav-item:hover {\n color: #cdcdcd;\n background-color: #222;\n }\n /* support.github.com: \"#d1d5da\" */\n .SideNav-item:focus::before, .SideNav-item:hover::before {\n background-color: #404040;\n }\n /* support.github.com: \"#fff\" */\n .SideNav-item:active {\n background-color: #181818;\n }\n /* support.github.com: \"color: #24292e\", \"#fff\" */\n .SideNav-item[aria-current=\"page\"], .SideNav-item[aria-selected=\"true\"] {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* support.github.com: \"#e36209\" */\n .SideNav-item[aria-current=\"page\"]::before,\n .SideNav-item[aria-selected=\"true\"]::before {\n background-color: #fb8532;\n }\n /* support.github.com: \"color: #6a737d\" */\n .SideNav-icon {\n color: #949494;\n }\n /* support.github.com: \"#0366d6\", \"transparent\" */\n .SideNav-subItem {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n /* support.github.com: \"color: #24292e\" */\n .SideNav-subItem:focus, .SideNav-subItem:hover,\n .SideNav-subItem[aria-current=\"page\"],\n .SideNav-subItem[aria-selected=\"true\"] {\n color: #cdcdcd;\n }\n /* support.github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* support.github.com: \"color: #586069\", \"#e1e4e8\" */\n .subnav-item {\n color: #afafaf;\n border-color: #343434;\n }\n /* support.github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .subnav-item.selected, .subnav-item[aria-current],\n .subnav-item[aria-selected=true] {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* support.github.com: \"#c6cbd1\" */\n .subnav-search-icon {\n color: #5a5a5a;\n }\n /* support.github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* support.github.com: \"#e1e4e8\" */\n .UnderlineNav {\n border-bottom-color: #343434;\n }\n /* support.github.com: \"color: #586069\", \"transparent\" */\n .UnderlineNav-item {\n color: #afafaf;\n background-color: transparent;\n }\n /* support.github.com: \"color: #24292e\", \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n color: #cdcdcd;\n border-bottom-color: #404040;\n }\n /* support.github.com: \"color: #6a737d\" */\n .UnderlineNav-item:focus .UnderlineNav-octicon,\n .UnderlineNav-item:hover .UnderlineNav-octicon {\n color: #949494;\n }\n /* support.github.com: \"color: #24292e\", \"#e36209\" */\n .UnderlineNav-item.selected, .UnderlineNav-item[aria-current],\n .UnderlineNav-item[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* support.github.com: \"color: #6a737d\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon,\n .UnderlineNav-item[aria-current] .UnderlineNav-octicon,\n .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* support.github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* support.github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .pagination a, .pagination em, .pagination span {\n color: /*[[base-color]]*/;\n background-color: #181818;\n border-color: #343434;\n }\n /* support.github.com: \"#eff3f6\", \"#e1e4e8\" */\n .pagination a:focus, .pagination a:hover, .pagination em:focus,\n .pagination em:hover, .pagination span:focus, .pagination span:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover, .pagination [aria-current],\n .pagination [aria-current]:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#d1d5da\", \"#fafbfc\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover, .pagination [aria-disabled=true],\n .pagination [aria-disabled=true]:hover {\n color: #404040;\n background-color: #181818;\n }\n /* support.github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* support.github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* support.github.com: \"color: #032f62\", \"#dbedff\", \"rgba(27,31,35,0.15)\" */\n .flash {\n color: #9daccc;\n background-color: #182030;\n border-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"none\" */\n .flash-close {\n background: none;\n }\n /* support.github.com: \"#735c0f\", \"#fffbdd\", \"rgba(27,31,35,0.15)\" */\n .flash-warn {\n color: #bba257;\n background-color: #261d08;\n }\n /* support.github.com: \"#86181d\", \"#ffdce0\", \"rgba(27,31,35,0.15)\" */\n .flash-error, .flash-warn {\n border-color: rgba(220, 220, 220, .15);\n }\n .flash-error {\n color: #d82828;\n background-color: #300;\n }\n /* support.github.com: \"#165c26\", \"#dcffe4\", \"rgba(27,31,35,0.15)\" */\n .flash-success {\n color: #6cc644;\n background-color: #002800;\n border-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"#fffbdd\" */\n .warning {\n background-color: #261d08;\n }\n /* support.github.com: \"color: #fff\", \"#1074e7\", \"#1074e7\" */\n .btn-mktg {\n color: #fff;\n border: 1px solid /*[[base-color]]*/;\n }\n /* support.github.com: \"#0366d6\", \"#0366d6\" */\n .btn-mktg, .btn-mktg:hover {\n background-color: /*[[base-color]]*/;\n }\n .btn-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn-mktg:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* support.github.com: \"#28a745\", \"#28a745\" */\n .btn-primary-mktg:hover {\n background-color: #484;\n border-color: #484;\n }\n /* support.github.com: \"#0366d6\", \"rgba(255,255,255,0)\", \"#1074e7\" */\n .btn-outline-mktg, .btn-outline-mktg:hover {\n color: /*[[base-color]]*/;\n background-color: transparent;\n }\n .btn-outline-mktg:hover {\n border-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #fff\", \"transparent\", \"none\", \"rgba(255,255,255,0.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: transparent;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* support.github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* support.github.com: \"#e1e4e8\" */\n .Progress, .TimelineItem::before {\n background-color: #343434;\n }\n /* support.github.com: \"#2188ff\", \"#c8e1ff\" */\n .TimelineItem:target .TimelineItem-badge {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 .2em /*[[base-color]]*/;\n }\n /* support.github.com: \"color: #444d56\", \"#e1e4e8\", \"#fff\" */\n .TimelineItem-badge {\n color: #afafaf;\n background-color: #343434;\n border-color: #181818;\n }\n /* support.github.com: \"color: #444d56\" */\n .TimelineItem-body {\n color: #afafaf;\n }\n /* support.github.com: \"#fff\", \"#e1e4e8\" */\n .TimelineItem-break {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* support.github.com: \"color: #959da5\", \"#fff\" */\n .TimelineItem--condensed .TimelineItem-badge {\n color: #767676;\n background-color: #181818;\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n #site-search-results .search-result, .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 544px) {\n .border-sm {\n border-color: #343434 !important;\n }\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 768px) {\n .border-md {\n border-color: #343434 !important;\n }\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1012px) {\n .border-lg {\n border-color: #343434 !important;\n }\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* support.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1280px) {\n .border-xl {\n border-color: #343434 !important;\n }\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* support.github.com: \"#0366d6\" */\n .border-blue {\n border-color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* support.github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* support.github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* support.github.com: \"#cea0a5\" */\n .border-red, .border-red-light {\n border-color: #d82828 !important;\n }\n /* support.github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* support.github.com: \"#d9d0a5\" */\n .border-yellow {\n border-color: #542 !important;\n }\n /* support.github.com: \"#eaecef\" */\n #site-search-results .search-result, .border-gray-light {\n border-color: #343434 !important;\n }\n /* support.github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* support.github.com: \"rgba(255,255,255,0.5)\" */\n .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* support.github.com: \"rgba(27,31,35,0.1)\" */\n .box-shadow {\n box-shadow: 0 1px 1px #000 !important;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* support.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* support.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* support.github.com: \"#0366d6\" */\n .bg-blue {\n background-color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* support.github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* support.github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* support.github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* support.github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* support.github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* support.github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* support.github.com: \"#ffdce0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* support.github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* support.github.com: \"#dbab09\" */\n .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* support.github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* support.github.com: \"#fafbfc\" */\n .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* support.github.com: \"#f6f8fa\" */\n .bg-gray-1 {\n background-color: #222 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .color-gray-2 {\n color: #343434 !important;\n }\n /* support.github.com: \"#e1e4e8\" */\n .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* support.github.com: \"#d1d5da\" */\n .color-gray-3 {\n color: #404040 !important;\n }\n /* support.github.com: \"#d1d5da\" */\n .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* support.github.com: \"color: #959da5 !important\" */\n .color-gray-4 {\n color: #767676 !important;\n }\n /* support.github.com: \"color: #6a737d !important\" */\n .color-gray-5 {\n color: #949494 !important;\n }\n /* support.github.com: \"#6a737d\" */\n .bg-gray-5 {\n background-color: #444 !important;\n }\n /* support.github.com: \"color: #586069 !important\" */\n .color-gray-6 {\n color: #afafaf !important;\n }\n /* support.github.com: \"#586069\" */\n .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* support.github.com: \"color: #444d56 !important\" */\n .color-gray-7 {\n color: #afafaf !important;\n }\n /* support.github.com: \"color: #2f363d !important\" */\n .color-gray-8 {\n color: #bebebe !important;\n }\n /* support.github.com: \"#2f363d\" */\n .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* support.github.com: \"color: #24292e !important\" */\n .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* support.github.com: \"#24292e\" */\n .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* support.github.com: \"#dbedff\" */\n .bg-blue-0, .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* support.github.com: \"#c8e1ff\" */\n .color-blue-2 {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#c8e1ff\" */\n .bg-blue-2 {\n background-color: #246 !important;\n }\n /* support.github.com: \"#79b8ff\" */\n .color-blue-3 {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#79b8ff\" */\n .bg-blue-3 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#2188ff\" */\n .color-blue-4 {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#2188ff\" */\n .bg-blue-4 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#0366d6\" */\n .color-blue-5 {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#0366d6\" */\n .bg-blue-5 {\n background-color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#005cc5\" */\n .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* support.github.com: \"#005cc5\" */\n .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* support.github.com: \"#044289\" */\n .color-blue-7 {\n color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* support.github.com: \"#044289\" */\n .bg-blue-7 {\n background-color: rgba(/*[[base-color-rgb]]*/, .5) !important;\n }\n /* support.github.com: \"color: #032f62 !important\" */\n .color-blue-8 {\n color: #9daccc !important;\n }\n /* support.github.com: \"#032f62\" */\n .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* support.github.com: \"color: #05264c !important\" */\n .color-blue-9 {\n color: #bebebe !important;\n }\n /* support.github.com: \"#05264c\" */\n .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* support.github.com: \"#f0fff4\" */\n .color-green-0 {\n color: #002800 !important;\n }\n /* support.github.com: \"#f0fff4\" */\n .bg-green-0 {\n background-color: #002800 !important;\n }\n /* support.github.com: \"#dcffe4\" */\n .color-green-1 {\n color: #002800 !important;\n }\n /* support.github.com: \"#dcffe4\" */\n .bg-green-1 {\n background-color: #002800 !important;\n }\n /* support.github.com: \"#34d058\" */\n .color-green-4 {\n color: #373 !important;\n }\n /* support.github.com: \"#34d058\" */\n .bg-green-4 {\n background-color: #373 !important;\n }\n /* support.github.com: \"#28a745\" */\n .color-green-5 {\n color: #484 !important;\n }\n /* support.github.com: \"#28a745\" */\n .bg-green-5 {\n background-color: #484 !important;\n }\n /* support.github.com: \"#22863a\" */\n .color-green-6 {\n color: #6cc644 !important;\n }\n /* support.github.com: \"#22863a\" */\n .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* support.github.com: \"#165c26\" */\n .color-green-8 {\n color: #6cc644 !important;\n }\n /* support.github.com: \"#165c26\" */\n .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* support.github.com: \"#144620\" */\n .color-green-9 {\n color: #6cc644 !important;\n }\n /* support.github.com: \"#144620\" */\n .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* support.github.com: \"#fffdef\" */\n .color-yellow-0 {\n color: #261d08 !important;\n }\n /* support.github.com: \"#fffdef\" */\n .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* support.github.com: \"#fffbdd\" */\n .color-yellow-1 {\n color: #261d08 !important;\n }\n /* support.github.com: \"#fffbdd\" */\n .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* support.github.com: \"#fff5b1\" */\n .color-yellow-2 {\n color: #651 !important;\n }\n /* support.github.com: \"#fff5b1\" */\n .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* support.github.com: \"#ffea7f\" */\n .color-yellow-3 {\n color: #542 !important;\n }\n /* support.github.com: \"#ffea7f\" */\n .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* support.github.com: \"#ffd33d\" */\n .color-yellow-5 {\n color: #cb4 !important;\n }\n /* support.github.com: \"#ffd33d\" */\n .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#f9c513\" */\n .color-yellow-6 {\n color: #cb4 !important;\n }\n /* support.github.com: \"#f9c513\" */\n .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#dbab09\" */\n .color-yellow-7 {\n color: #cb4 !important;\n }\n /* support.github.com: \"#dbab09\" */\n .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#b08800\" */\n .color-yellow-8 {\n color: #cb4 !important;\n }\n /* support.github.com: \"#b08800\" */\n .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* support.github.com: \"#735c0f\" */\n .color-yellow-9 {\n color: #bba257 !important;\n }\n /* support.github.com: \"#735c0f\" */\n .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* support.github.com: \"#fb8532\" */\n .color-orange-4 {\n color: #fb8532 !important;\n }\n /* support.github.com: \"#fb8532\" */\n .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* support.github.com: \"#e36209\" */\n .color-orange-6 {\n color: #fb8532 !important;\n }\n /* support.github.com: \"#e36209\" */\n .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* support.github.com: \"#d15704\" */\n .color-orange-7 {\n color: #f3582c !important;\n }\n /* support.github.com: \"#d15704\" */\n .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* support.github.com: \"#a04100\" */\n .color-orange-9 {\n color: #f3582c !important;\n }\n /* support.github.com: \"#a04100\" */\n .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* support.github.com: \"#ffeef0\" */\n .color-red-0 {\n color: #300 !important;\n }\n /* support.github.com: \"#ffeef0\" */\n .bg-red-0 {\n background-color: #300 !important;\n }\n /* support.github.com: \"#ffdce0\" */\n .color-red-1 {\n color: #300 !important;\n }\n /* support.github.com: \"#ffdce0\" */\n .bg-red-1 {\n background-color: #300 !important;\n }\n /* support.github.com: \"#f97583\" */\n .color-red-3 {\n color: #f88 !important;\n }\n /* support.github.com: \"#f97583\" */\n .bg-red-3 {\n background-color: #f88 !important;\n }\n /* support.github.com: \"#d73a49\" */\n .color-red-5 {\n color: #d82828 !important;\n }\n /* support.github.com: \"#d73a49\" */\n .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* support.github.com: \"#cb2431\" */\n .color-red-6 {\n color: #d82828 !important;\n }\n /* support.github.com: \"#cb2431\" */\n .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* support.github.com: \"#86181d\" */\n .color-red-9 {\n color: #d82828 !important;\n }\n /* support.github.com: \"#86181d\" */\n .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* support.github.com: \"#f5f0ff\" */\n .color-purple-0 {\n color: #213 !important;\n }\n /* support.github.com: \"#f5f0ff\" */\n .bg-purple-0 {\n background-color: #213 !important;\n }\n /* support.github.com: \"#8a63d2\" */\n .color-purple-4 {\n color: #53387a !important;\n }\n /* support.github.com: \"#8a63d2\" */\n .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* support.github.com: \"#6f42c1\" */\n .color-purple-5 {\n color: #9378ba !important;\n }\n /* support.github.com: \"#6f42c1\" */\n .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* support.github.com: \"#ffeef8\" */\n .color-pink-0 {\n color: #170711 !important;\n }\n /* support.github.com: \"#ffeef8\" */\n .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* support.github.com: \"#ec6cb9\" */\n .color-pink-4 {\n color: #c49 !important;\n }\n /* support.github.com: \"#ec6cb9\" */\n .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* support.github.com: \"#99306f\" */\n .color-pink-8 {\n color: #e6b !important;\n }\n /* support.github.com: \"#99306f\" */\n .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* support.github.com: \"#0366d6\" */\n .text-blue {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* support.github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* support.github.com: \"color: #586069 !important\" */\n #site-search-results .search-result-intro,\n #site-search-results .search-result-section,\n #site-search-results .search-result-title, .text-gray {\n color: #afafaf !important;\n }\n /* support.github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* support.github.com: \"#28a745\" */\n .text-green {\n color: #484 !important;\n }\n /* support.github.com: \"#b08800\" */\n .text-yellow {\n color: #cb4 !important;\n }\n /* support.github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* support.github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* support.github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* support.github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* support.github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* support.github.com: \"#0366d6\" */\n .link-gray:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* support.github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* support.github.com: \"#0366d6\" */\n .muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* support.github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* support.github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* support.github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* support.github.com: \"rgba(255,255,255,0.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* support.github.com: \"#fff\", \"rgba(27,31,35,0.15)\", \"rgba(27,31,35,0.15)\" */\n .dropdown-menu {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 15px #000;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"#fff\" */\n .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* support.github.com: \"color: #24292e\" */\n .dropdown-item {\n color: #cdcdcd;\n }\n /* support.github.com: \"color: #fff\", \"#0366d6\" */\n .dropdown-item:focus, .dropdown-item:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* support.github.com: \"none\" */\n .dropdown-signout {\n background: none;\n }\n /* support.github.com: \"#e1e4e8\" */\n .dropdown-divider {\n border-top-color: #343434;\n }\n /* support.github.com: \"color: #586069\" */\n .dropdown-header {\n color: #afafaf;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-w::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"#fff\" */\n .dropdown-menu-w::after {\n border-left-color: #181818;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-e::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"#fff\" */\n .dropdown-menu-e::after {\n border-right-color: #181818;\n }\n /* support.github.com: \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-ne::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* support.github.com: \"#fff\" */\n .dropdown-menu-ne::after {\n border-top-color: #181818;\n }\n /* support.github.com: \"color: #fff\", \"#2f363d\", \"#444d56\", \"rgba(27,31,35,0.15)\" */\n .dropdown-menu-dark {\n color: #fff;\n background-color: #282828;\n border-color: #484848;\n box-shadow: 0 1px 15px #000;\n }\n /* support.github.com: \"#444d56\" */\n .dropdown-menu-dark::before {\n border-bottom-color: #484848;\n }\n /* support.github.com: \"#2f363d\" */\n .dropdown-menu-dark::after {\n border-bottom-color: #282828;\n }\n /* support.github.com: \"#d1d5da\" */\n .dropdown-menu-dark .dropdown-header {\n color: #404040;\n }\n /* support.github.com: \"#444d56\" */\n .dropdown-menu-dark .dropdown-divider {\n border-top-color: #484848;\n }\n /* support.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-w::before {\n border-color: transparent transparent transparent #484848;\n }\n /* support.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-w::after {\n border-color: transparent transparent transparent #282828;\n }\n /* support.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-e::before {\n border-color: transparent #484848 transparent transparent;\n }\n /* support.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-e::after {\n border-color: transparent #282828 transparent transparent;\n }\n /* support.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-ne::before {\n border-color: #484848 transparent transparent;\n }\n /* support.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-ne::after {\n border-color: #282828 transparent transparent;\n }\n /* support.github.com: \"#f1f8ff\" */\n #site-search-results .search-result:hover {\n background-color: #182030;\n }\n /* support.github.com: \"#0366d6\" */\n #site-search-results .search-result-title em {\n color: /*[[base-color]]*/;\n }\n /* support.github.com: \"#0366d6\" */\n #site-search-results .search-result-intro em {\n border-bottom: 1px solid /*[[base-color]]*/;\n }\n /* support.github.com: \"#fff\", \"#444d56\", \"rgba(0,0,0,0.4)\" */\n details-dialog {\n background-color: #181818;\n border-color: #484848;\n box-shadow: 0 0 18px #000;\n }\n /* support.github.com: \"color: #6a737d\" */\n .gh-subheading {\n color: #949494;\n }\n /* support.github.com: \"color: #fff\" */\n .State {\n color: #fff;\n }\n /* support.github.com: \"#6f42c1\" */\n #ticket-title .State--open {\n background-color: #9378ba;\n }\n /* support.github.com: \"#cb2431\" */\n #ticket-title .State--closed {\n background-color: #d82828;\n }\n /* support.github.com: \"#2cbe4e\" */\n #ticket-title .State--pending {\n background-color: #373;\n }\n /* support.github.com: \"#cb2431\" */\n .octicon-state-closed {\n color: #d82828;\n }\n /* support.github.com: \"#6f42c1\" */\n .octicon-state-open {\n color: #9378ba;\n }\n /* support.github.com: \"#2cbe4e\" */\n .octicon-state-pending {\n color: #373;\n }\n /* support.github.com: \"#d1d5da\" */\n #ticket .placeholder.write {\n border-color: #404040;\n }\n /* support.github.com: \"color: #333\" */\n #ticket-comments .attachment-name a, .attachment-name a:hover,\n .attachment-upload-preview .link, .link:hover {\n color: #bebebe;\n }\n /* support.github.com: \"none\" */\n @media only screen and (min-width: 544px) {\n .ticket-faq-accordion input + .accordion-label {\n background: none;\n }\n }\n /* end support.github.com rules */\n .input-block #query {\n background: url('data:image/svg+xml;utf8,') no-repeat 6px;\n }\n #q {\n background: url('data:image/svg+xml;utf8,') no-repeat 6px;\n }\n}\n@-moz-document domain(\"vscode-auth.github.com\") {\n /* begin vscode-auth.github.com rules */\n /* vscode-auth.github.com: \"transparent\" */\n a {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: #000\" */\n mark {\n color: #f0f0f0;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n a {\n color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#fff\", \"#d1d5da\" */\n .Box {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#f6f8fa\", \"#d1d5da\" */\n .Box, .Box-header {\n border-color: #404040;\n }\n .Box-header {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: 2px 0 0 /*[[base-color]]*/ inset;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width: 768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: /*[[base-color]]*/;\n }\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* vscode-auth.github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* vscode-auth.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* vscode-auth.github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* vscode-auth.github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* vscode-auth.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* vscode-auth.github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* vscode-auth.github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .breadcrumb-item::after {\n color: #343434;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.2)\" */\n .btn {\n border-color: rgba(220, 220, 220, .2);\n }\n /* vscode-auth.github.com: \"color: #586069\", \"rgba(27,31,35,0.1)\" */\n .btn .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .17);\n }\n /* vscode-auth.github.com: \"none\" */\n .btn.selected, .btn:active {\n background-image: none;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#eff3f6\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn {\n color: #cdcdcd;\n background-color: #242424;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* vscode-auth.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .5);\n }\n /* vscode-auth.github.com: \"#e6ebf1\", \"#e6ebf1\", \"rgba(27,31,35,0.35)\" */\n .btn.hover, .btn:hover {\n background-color: #444;\n background-image: linear-gradient(-180deg, #f0f3f6 0%, #444 90%);\n border-color: rgba(220, 220, 220, .35);\n }\n /* vscode-auth.github.com: \"#e9ecef\", \"none\", \"rgba(27,31,35,0.35)\", \"rgba(27,31,35,0.15)\" */\n .btn.selected, .btn:active, [open] > .btn {\n background-color: #404040;\n background-image: none;\n border-color: rgba(220, 220, 220, .35);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"color: rgba(36,41,46,.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn.disabled, .btn:disabled {\n color: rgba(210, 210, 210, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#28a745\", \"#34d058\",\"#28a745\" */\n .btn-primary {\n color: #fff;\n background-color: #484;\n background-image: linear-gradient(-180deg, #373 0%, #484 90%);\n }\n /* vscode-auth.github.com: \"rgba(52,208,88,0.4)\" */\n .btn-primary.focus, .btn-primary:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* vscode-auth.github.com: \"#269f42\", \"#2fcb53\",\"#269f42\", \"rgba(27,31,35,0.5)\" */\n .btn-primary.hover, .btn-primary:hover {\n background-color: #595;\n background-image: linear-gradient(-180deg, #373 0%, #595 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* vscode-auth.github.com: \"#279f43\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-primary.selected, .btn-primary:active, [open] > .btn-primary {\n background-color: #595;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"#94d3a2\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-primary.disabled, .btn-primary:disabled {\n background-color: #040;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .btn-primary .Counter {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n .btn-purple {\n color: #fff;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.5)\" */\n .btn-purple.hover, .btn-purple:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-purple.selected, .btn-purple:active, [open] > .btn-purple {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-purple.disabled, .btn-purple:disabled {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .btn-purple .Counter {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: linear-gradient(-180deg, /*[[base-color]]*/ 0%, /*[[base-color]]*/ 90%);\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-blue.selected, .btn-blue:active, [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#cb2431\", \"#fafbfc\", \"linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%)\" */\n .btn-danger {\n color: #d82828;\n background-color: #181818;\n background-image: linear-gradient(-180deg, #202020 0%, #181818 90%);\n }\n /* vscode-auth.github.com: \"rgba(203,36,49,0.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 .2em rgba(255, 68, 68, .4);\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#cb2431\", \"#cb2431\", \"rgba(27,31,35,0.5)\" */\n .btn-danger:hover {\n color: #fff;\n background-color: #d82828;\n background-image: linear-gradient(-180deg, #de4450 0%, #d82828 90%);\n border-color: rgba(220, 220, 220, .5);\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n .btn-danger:hover .Counter {\n color: #fff;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-danger.selected, .btn-danger:active, [open] > .btn-danger {\n color: #fff;\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"rgba(203,36,49,0.4)\", \"#eff3f6\", \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-danger.disabled, .btn-danger:disabled {\n color: rgba(255, 68, 68, .4);\n background-color: #242424;\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#0366d6\", \"#fff\", \"none\" */\n .btn-outline {\n color: /*[[base-color]]*/;\n background-color: #181818;\n background-image: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0366d6\", \"none\", \"#0366d6\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n [open] > .btn-outline {\n color: #fff;\n background-color: /*[[base-color]]*/;\n background-image: none;\n border-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"#0366d6\", \"#fff\" */\n .btn-outline.selected .Counter, .btn-outline:active .Counter,\n .btn-outline:hover .Counter, [open] > .btn-outline .Counter {\n color: /*[[base-color]]*/;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .btn-outline:focus {\n border-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline.disabled, .btn-outline:disabled {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,0.2)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .2);\n }\n /* vscode-auth.github.com: \"#0366d6\", \"transparent\" */\n .btn-link, .social-count:hover {\n color: /*[[base-color]]*/;\n }\n .btn-link {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* vscode-auth.github.com: \"#2188ff\", \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .form-control.focus, .form-control:focus, .form-select.focus,\n .form-select:focus {\n border-color: /*[[base-color]]*/;\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* vscode-auth.github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"color: #6a737d\" */\n :-ms-input-placeholder {\n color: #949494;\n }\n /* vscode-auth.github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* vscode-auth.github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group dt label {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* vscode-auth.github.com: \"#fff\", \"none\" */\n .form-select {\n background-image: none \\9;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .form-group .form-control, .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .form-group dd h4.is-error {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"#28a745\" */\n .form-group dd h4.is-success {\n color: #484;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"#28a745\" */\n .form-group.successful .success {\n color: #484;\n }\n /* vscode-auth.github.com: \"#735c0f\", \"#fffbdd\", \"#d9d0a5\" */\n .form-group.warn .warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #542;\n }\n /* vscode-auth.github.com: \"#fffbdd\" */\n .form-group.warn .warning::after {\n border-bottom-color: #261d08;\n }\n /* vscode-auth.github.com: \"#d9d0a5\" */\n .form-group.warn .warning::before {\n border-bottom-color: #542;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"#86181d\", \"#ffdce0\", \"#cea0a5\" */\n .form-group.errored .error {\n color: #d82828;\n background-color: #300;\n border-color: #d82828;\n }\n /* vscode-auth.github.com: \"#ffdce0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* vscode-auth.github.com: \"#cea0a5\" */\n .form-group.errored .error::before {\n border-bottom-color: #d82828;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* vscode-auth.github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* vscode-auth.github.com: \"transparent\" */\n .inline-form .btn-plain {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, .3);\n }\n /* vscode-auth.github.com: \"box-shadow: none\" */\n .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* vscode-auth.github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* vscode-auth.github.com: \"#fff\", \"#d1d5da\" */\n .menu {\n background-color: #181818;\n border-color: #404040;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .menu-item {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .menu-item:hover {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#fff\" */\n .menu-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#e36209\" */\n .menu-item.selected::before {\n background-color: #fb8532;\n }\n /* vscode-auth.github.com: \"color: #24292e\" */\n .menu-item .octicon {\n color: #cdcdcd;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"#e1e4e8\" */\n .menu-heading {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#d1d5da\" */\n .tabnav {\n border-bottom-color: #404040;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"transparent\" */\n .tabnav-tab {\n color: #afafaf;\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .tabnav-tab.selected {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* vscode-auth.github.com: \"color: #24292e\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #cdcdcd;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"transparent\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#eaecef\" */\n .filter-item:hover {\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected {\n color: #fff;\n background-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* vscode-auth.github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"#e1e4e8\" */\n .subnav-item {\n color: #afafaf;\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .subnav-item.selected, .subnav-item.selected:focus,\n .subnav-item.selected:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#c6cbd1\" */\n .subnav-search-icon {\n color: #5a5a5a;\n }\n /* vscode-auth.github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .UnderlineNav {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .UnderlineNav-item {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n color: #cdcdcd;\n border-bottom-color: #404040;\n }\n /* vscode-auth.github.com: \"color: #6a737d\" */\n .UnderlineNav-item:focus .UnderlineNav-octicon,\n .UnderlineNav-item:hover .UnderlineNav-octicon {\n color: #949494;\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"#e36209\" */\n .UnderlineNav-item.selected {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* vscode-auth.github.com: \"color: #6a737d\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon {\n color: #949494;\n }\n /* vscode-auth.github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* vscode-auth.github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .pagination a, .pagination em, .pagination span {\n color: /*[[base-color]]*/;\n background-color: #181818;\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"#eff3f6\", \"#e1e4e8\" */\n .pagination a:focus, .pagination a:hover, .pagination em:focus,\n .pagination em:hover, .pagination span:focus, .pagination span:hover {\n background-color: #242424;\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover {\n color: #fff;\n background-color: /*[[base-color]]*/;\n border-color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"#d1d5da\", \"#fafbfc\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover {\n color: #404040;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* vscode-auth.github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .border-blue {\n border-color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* vscode-auth.github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* vscode-auth.github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* vscode-auth.github.com: \"#cea0a5\" */\n .border-red, .border-red-light {\n border-color: #d82828 !important;\n }\n /* vscode-auth.github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* vscode-auth.github.com: \"#d9d0a5\" */\n .border-yellow {\n border-color: #542 !important;\n }\n /* vscode-auth.github.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 544px) {\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 768px) {\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1012px) {\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width: 1280px) {\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.1)\" */\n .box-shadow {\n box-shadow: 0 1px 1px #000 !important;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-medium {\n box-shadow: 0 1px 5px #000 !important;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .box-shadow-large {\n box-shadow: 0 1px 15px #000 !important;\n }\n /* vscode-auth.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .bg-blue {\n background-color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* vscode-auth.github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* vscode-auth.github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* vscode-auth.github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* vscode-auth.github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* vscode-auth.github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* vscode-auth.github.com: \"#ffdce0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* vscode-auth.github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* vscode-auth.github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* vscode-auth.github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* vscode-auth.github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .text-blue {\n color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* vscode-auth.github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* vscode-auth.github.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* vscode-auth.github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* vscode-auth.github.com: \"#28a745\" */\n .text-green {\n color: #484 !important;\n }\n /* vscode-auth.github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* vscode-auth.github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* vscode-auth.github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* vscode-auth.github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* vscode-auth.github.com: \"#dbab09\" */\n .bg-pending, .text-pending {\n color: #cb4 !important;\n }\n /* vscode-auth.github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .link-gray:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n .muted-link:hover {\n color: /*[[base-color]]*/ !important;\n }\n /* vscode-auth.github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* vscode-auth.github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* vscode-auth.github.com: \"rgba(255,255,255,0.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* vscode-auth.github.com: \"color: #032f62\", \"#dbedff\", \"rgba(27,31,35,0.15)\" */\n .flash {\n color: #9daccc;\n background-color: #182030;\n border-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"none\" */\n .flash-close {\n background: none;\n }\n /* vscode-auth.github.com: \"#735c0f\", \"#fffbdd\", \"rgba(27,31,35,0.15)\" */\n .flash-warn {\n color: #bba257;\n background-color: #261d08;\n }\n /* vscode-auth.github.com: \"#86181d\", \"#ffdce0\", \"rgba(27,31,35,0.15)\" */\n .flash-error, .flash-warn {\n border-color: rgba(220, 220, 220, .15);\n }\n .flash-error {\n color: #d82828;\n background-color: #300;\n }\n /* vscode-auth.github.com: \"#165c26\", \"#dcffe4\", \"rgba(27,31,35,0.15)\" */\n .flash-success {\n color: #6cc644;\n background-color: #002800;\n border-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"#fffbdd\" */\n .warning {\n background-color: #261d08;\n }\n /* vscode-auth.github.com: \"#fff\", \"rgba(255,255,255,0.8)\" */\n .avatar-child {\n background-color: #181818;\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* vscode-auth.github.com: \"#fff\", \"#fff\" */\n .avatar-stack .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* vscode-auth.github.com: \"transparent\" */\n .avatar-stack .avatar:only-child {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .AvatarStack-body {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#fff\", \"#fff\" */\n .AvatarStack-body .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .avatar.avatar-more {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .avatar.avatar-more::before {\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"#d1d5da\" */\n .avatar.avatar-more::after, .AvatarStack--right .avatar.avatar-more {\n background-color: #404040;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .AvatarStack--right .avatar.avatar-more::after {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .AvatarStack--right .avatar {\n border-left-color: #181818;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .DashedConnection::before {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#fff\", \"#eaecef\" */\n .blankslate, .blankslate code {\n background-color: #181818;\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #a3aab1\" */\n .blankslate-icon {\n color: #767676;\n }\n /* vscode-auth.github.com: \"none\", \"box-shadow: none\" */\n .blankslate-clean-background {\n background: none;\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"color: rgba(27,31,35,.6)\", \"#eaf5ff\" */\n .branch-name {\n color: rgba(230, 230, 230, .6);\n background-color: #182030;\n }\n /* vscode-auth.github.com: \"#0366d6\" */\n a.branch-name {\n color: /*[[base-color]]*/;\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n .label, .Label {\n color: #fff;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"#eaecef\" */\n .Label--gray {\n color: #afafaf;\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"transparent\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .Label--outline {\n color: #afafaf;\n background-color: transparent;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#28a745\", \"#34d058\" */\n .Label--outline-green {\n color: #484;\n border-color: #373;\n }\n /* vscode-auth.github.com: \"#6a737d\" */\n .Label--gray-darker {\n background-color: #444;\n }\n /* vscode-auth.github.com: \"#d15704\" */\n .Label--orange {\n background-color: #f3582c;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#6a737d\" */\n .state, .State {\n color: #fff;\n background-color: #444;\n }\n /* vscode-auth.github.com: \"#2cbe4e\" */\n .State--green {\n background-color: #373;\n }\n /* vscode-auth.github.com: \"#6f42c1\" */\n .State--purple {\n background-color: #9378ba;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .State--red {\n background-color: #d82828;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"rgba(27,31,35,0.08)\" */\n .Counter {\n color: #afafaf;\n background-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"color: #24292e\", \"rgba(27,31,35,0.15)\" */\n .Counter--gray-light {\n color: #cdcdcd;\n background-color: rgba(220, 220, 220, .22);\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#6a737d\" */\n .Counter--gray {\n color: #fff;\n background-color: #444;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .markdown-body .absent {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .markdown-body hr {\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #444d56\", \"#fafbfc\", \"#c6cbd1\", \"#959da5\", \"box-shadow: inset 0 -1px 0 #959da5\" */\n .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #5a5a5a #5a5a5a #484848;\n box-shadow: inset 0 -2px 0 #383838;\n }\n /* vscode-auth.github.com: \"color: #1b1f23\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* vscode-auth.github.com: \"#eaecef\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #6a737d\" */\n .markdown-body h6 {\n color: #949494;\n }\n /* vscode-auth.github.com: \"#dfe2e5\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"#fff\", \"#c6cbd1\" */\n .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"transparent\" */\n .markdown-body table img {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"transparent\" */\n .markdown-body .emoji {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"#dfe2e5\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #24292e\" */\n .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.05)\" */\n .markdown-body code, .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* vscode-auth.github.com: \"transparent\" */\n .markdown-body pre > code, .markdown-body pre code, .markdown-body pre tt {\n background-color: transparent;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#f6f8fa\" */\n .markdown-body .csv-data th {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"#fff\" */\n .Popover-message::after {\n border-bottom-color: #181818;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--bottom-left::before,\n .Popover-message--bottom-right::before, .Popover-message--bottom::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"#fff\" */\n .Popover-message--bottom-left::after, .Popover-message--bottom-right::after,\n .Popover-message--bottom::after {\n border-top-color: #181818;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--right-bottom::before, .Popover-message--right-top::before,\n .Popover-message--right::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"#fff\" */\n .Popover-message--right-bottom::after, .Popover-message--right-top::after,\n .Popover-message--right::after {\n border-left-color: #181818;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.15)\" */\n .Popover-message--left-bottom::before, .Popover-message--left-top::before,\n .Popover-message--left::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* vscode-auth.github.com: \"#fff\" */\n .Popover-message--left-bottom::after, .Popover-message--left-top::after,\n .Popover-message--left::after {\n border-right-color: #181818;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .Progress {\n background-color: #343434;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .Subhead {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#cb2431\" */\n .Subhead-heading--danger {\n color: #d82828;\n }\n /* vscode-auth.github.com: \"color: #586069\", \"#e1e4e8\" */\n .pullquote, .Subhead-description {\n color: #afafaf;\n }\n .pullquote {\n border-left-color: #343434;\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n .btn-orange {\n color: #fff;\n }\n /* vscode-auth.github.com: \"rgba(27,31,35,0.5)\" */\n .btn-orange.hover, .btn-orange:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.5)\", \"rgba(27,31,35,0.15)\" */\n .btn-orange.selected, .btn-orange:active, [open] > .btn-orange {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* vscode-auth.github.com: \"none\", \"rgba(27,31,35,0.2)\", \"box-shadow: none\" */\n .btn-orange.disabled, .btn-orange:disabled {\n background-image: none;\n border-color: rgba(220, 220, 220, .2);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#6f42c1\", \"#fff\", \"none\" */\n .btn-orange .Counter, .btn-outline-purple {\n background-color: #181818;\n }\n .btn-outline-purple {\n color: #9378ba;\n background-image: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#6f42c1\", \"none\", \"#6f42c1\" */\n .btn-outline-purple.selected, .btn-outline-purple:active,\n .btn-outline-purple:hover, [open] > .btn-outline-purple {\n color: #fff;\n background-color: #9378ba;\n background-image: none;\n border-color: #9378ba;\n }\n /* vscode-auth.github.com: \"#6f42c1\", \"#fff\" */\n .btn-outline-purple.selected .Counter, .btn-outline-purple:active .Counter,\n .btn-outline-purple:hover .Counter, [open] > .btn-outline-purple .Counter {\n color: #9378ba;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#6f42c1\" */\n .btn-outline-purple:focus {\n border-color: #9378ba;\n }\n /* vscode-auth.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline-purple.disabled, .btn-outline-purple:disabled {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#fff\", \"none\" */\n .btn-outline-orange {\n background-color: #181818;\n background-image: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"none\" */\n .btn-outline-orange.selected, .btn-outline-orange:active,\n .btn-outline-orange:hover, [open] > .btn-outline-orange {\n color: #fff;\n background-image: none;\n }\n /* vscode-auth.github.com: \"#fff\" */\n .btn-outline-orange.selected .Counter, .btn-outline-orange:active .Counter,\n .btn-outline-orange:hover .Counter, [open] > .btn-outline-orange .Counter {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline-orange.disabled, .btn-outline-orange:disabled {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"#28a745\", \"#fff\", \"none\" */\n .btn-outline-green {\n color: #484;\n background-color: #181818;\n background-image: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"#28a745\", \"none\", \"#28a745\" */\n .btn-outline-green.selected, .btn-outline-green:active,\n .btn-outline-green:hover, [open] > .btn-outline-green {\n color: #fff;\n background-color: #484;\n background-image: none;\n border-color: #484;\n }\n /* vscode-auth.github.com: \"#28a745\", \"#fff\" */\n .btn-outline-green.selected .Counter, .btn-outline-green:active .Counter,\n .btn-outline-green:hover .Counter, [open] > .btn-outline-green .Counter {\n color: #484;\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#28a745\" */\n .btn-outline-green:focus {\n border-color: #484;\n }\n /* vscode-auth.github.com: \"color: rgba(27,31,35,.3)\", \"#fff\", \"rgba(27,31,35,0.15)\", \"box-shadow: none\" */\n .btn-outline-green.disabled, .btn-outline-green:disabled {\n color: rgba(230, 230, 230, .3);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* vscode-auth.github.com: \"color: #fff\", \"transparent\", \"none\", \"rgba(255,255,255,0.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: transparent;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* vscode-auth.github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* vscode-auth.github.com: \"transparent\", \"rgba(0,0,0,0)\" */\n .jumbotron-shadow::after {\n background-color: transparent;\n background-image: linear-gradient(transparent, rgba(0, 0, 0, .05));\n }\n /* vscode-auth.github.com: \"#24292e\" */\n .jumbotron-photo {\n background-color: #181818;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .data-table {\n border-color: #343434;\n }\n /* vscode-auth.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .data-table td, .data-table th {\n border-right-color: #343434;\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#e1e4e8\" */\n .data-table tbody td, .data-table tbody th,\n .data-table tbody tr:last-child td, .data-table tbody tr:last-child th {\n border-bottom-color: #343434;\n }\n /* vscode-auth.github.com: \"#f5f5f5\" */\n .footer {\n background-color: #222;\n }\n /* vscode-auth.github.com: \"color: #fff\" */\n #token {\n color: #fff;\n }\n /* vscode-auth.github.com: \"white\" */\n .token-did-copy {\n background-color: #181818;\n }\n /* end vscode-auth.github.com rules */\n .footer {\n background: #202020;\n }\n #token {\n background: #182030;\n border-color: #343434;\n }\n .token-did-copy {\n background: #181818;\n }\n .failed {\n border-color: #343434;\n }\n}\n", - "sections": [ - { - "code": ":root {\n --ghd-bg-custom: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAAAAABURb1YAAAFnklEQVR4AWWXCY4cwXbE6h4JMhCvMPc/ov+3Ox9QsLCGpKlFHILd+UQ559AGDkBSFXWmomonqkL/XuUcIPUcONjHCJyE36KaqNiaRnVCG9TGpgIU9hIfohCBVGj24ammo04lU3Fy0NZDAyZi5AElHjgEGlRbG1WjraIt7TmADQkAaoEHsOXAAaeqat9RVTqjosyEH5W+DQCQt8BzIJMfXJI3e5tGRefSlRn3NrO3scnvNl26FN5RITGNfjm3GM/+FhQgnlQeImC+dEm8rzHVTNGL9EADVsTAIfGJBziRy7RlmcZU1IYpHIj+4JrWym8/XSwzompmFNVOFdTOAAfs61KZ6eXcp57fykQUOxNBmTesz2HpCnCg3UV/bA7VRpWGNqKtrYLTs0ilCjgxiZxjeLC5dDPBFn4Pn2ja6BRUL10DTgET4Focq8rn8casxV4E5tIlZvytqtfivCOKZrqc38G7egnkXecyPZdzubc57VtUnbfL+a0u3b1N3d9Mci7cKocHoh3xihLQ6fXUlgTOOfVkXSUFINoWHhqxE23RTmCqtoEJaITkIrUCkU9fnqpqm+40VSXS3CLaSzfGBb4rPuOSfN0ylLve6/jpcrbL2dTlnOdv5AamKjLvLN1XruMNS/cul/hx8twKpKYRaE2DOp8+c+lW7uVXVQ7Vx0x1G3HXjNocsHCac7NbWc6egwJVHu2kRTVNC2pqv2U4XNsv5/yWJlV9+NJ1C7xluInlcr7rK+Kg+qy7onQqgnbi7UHcS3qXjdw3bO5tumycYlVssMI5EXXpRnatPK362KodtVU60cm+eQT10sVLFwJYlVaf7UGSoi5dQF3DvnTX3UvXTPO8quKH7jsXhm/PxfKWZXqBM5sS33kmKtC31Q05fI095i5IPpyzRXqSy1Sr17p1F7NE8vMtnNbLpVVtk8c0OrfF0sKxHnIpYgHW4puMomTz8mgmrSjpvrxhX97l7LqLpl7bW9BH9/MNzF8XwRqL8/m7c30eFYV5VX3QTquK06XbLt16F4ks+8Z9m6gPtpcuk3OvibCekng4lzMHi9MoqZmKj9tdbQCbc7bcEA+oEJduRNNL1waf1tuI9MDBUK8t3k9uFz3rrqadO9Ln9TL/ezlwDvky3TW7ZmXfpc77TN0yhOXnP939LvVDV9s+tgLTm0TqYd1lea3PRFuVjLa562HdPbCfascGrvO3DMeIATVqVRO8vfHrbupdfo1dzlXUdkVLZsS1mLPG3rWcl+4B1l1537h0VXzU1tyLG7cCu+LSrSqo06hocy3WCcil65qHDbuEYzQN2HpT3jFt9LEFvHTP1nxbXOEkbhkKmd+6BTfVZ/I143z/Fyz6Za92o0I7I6gzfeYAHPwy/Rb43L9TLtMt8CtwW1xvQvbR1g9n7qJRNN1kdxcdH7cM58Szxq679MdLOhE72t6VNEpHHkzwRyjBcGth+dE99pIkVbWaEWmvnQ8Yl7Mp59zpRWXdNo6odrO754Zzvxf/010nP7onb1TR+bgbVPB9PcADJvH/043Kvk0UzLRxQ6UiaeTAcyxYl2lyrrvZv8v2wE7U1uVcST0821jJeIDKWuyxiqnuko7q3+zJYXJ46nV3D67EyL+lQ9F2qkr+3kUafQpwYE8T329p6y7OX1TF97fQv/c+l87zj7Hsgpig4qRLd9fMPs74rLGyCzRbhmVqpy7nqvPmTD1gvKe7b2U8u1QzmtuDuEtbgT3c8QBJveo6cueFkUwv59nVmfFw1jl4/unuOT9qERV76ers8n23z/c8/Xy7a4lwwLplmGusbRp33Up13+ZDN3KPxNVMhY62vUQyRTse6+cKHtZYjIfDh260Cjbb3Vy6R8H8SMBzqSwrsB1UTacoknlnOb8V4JD9Njfpwz/fHjpBUeevcAtcl65sqXPX9D87RUTLc/dfOgAAAABJRU5ErkJggg==);\n --ghd-bg-img: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAAAAABURb1YAAAFoUlEQVR4AWXWCY7kMJcDYd9DiCD4jLr/EWezJOT8vbMXy8ZngpVPlLUWbWABJFVRZyqqdqIq9O9V1gJS14KFfYzASvgS1UTF1jSqE9qgNjYVoNxLfIhCBFKhOTdPNR11KpmKk4W2LhowESMPKHHBItCg2tqoGm0VbWnXAmxIAFALPIAtCxY4VVX7jqrSGRVlJnwqfRsAIG+BZ0EmHy7Jm3NMo6KzdWXGc8ycY2zyHdOrW3hHhcQ0+uvcYlz3LQgQVyrPp2t+dUncjzHVTNFNuvhwK2Jgkfh856/INm05pjEVtWEKC6IfrmmtfPnpYZkRVTPjFztVUDsDLLCvR2WmX6RPXV/KRBQ7E0GZN5w+5+rKd2J7Ev1sFtVGlYY2oq2tgtN1SakCTkwiaxkebLZuJtjCd/OvyY1OQXXrGnAKfE67xbGq/NzemNviTWC2LjHjl6ruFucdUTTT4/wO7tQtkPd0LtO1ncs+ZrVvUXXeHue3Xt1zTD1vJlkbt8rigWhH3EUJ6HT31JYE1lp15XY1BSDaFh4asRNt0U5gqraB+UyFZJNagXh/qTxV1TY90VSVSLMX0W7dGA/4SfEZj+R7l6Hs9O6Orx5ne51Tj3Oev5E9MFWReefovrI73lzdnTziy8mTRjU1jZ99GtT52We2bmVfvqvKovqYqZ6N2GlGbRZYWM3CRKzX2bVQoMqjnbSopmlBTe3vMix227dzvqRJVR9+dT0LfJZhTyzbeaffIg6qz+muKJ2KoJ249yD3ku5kI/sJm31Mj41TrIoNVlgrolc33nTK06qPrdpRW6UTnZwnj6BuXdy6EMCqtPqcPUhS9OoC6mnYr+7p7tY10zyfLv7ovrMxfLs2y9trusGZMyW+80zU7z9Wz5D//8YusxMkP845i/Qk21Sru3W3u+aI5OtbWK3bpVVtk8c0OnuLpYVlXWQrYgFui0nAouTMy6OZtKKk5+EN9+GPs6e7aOpuewv6eL++gfnrIbiNdX7+bu0+j4rCvKo+aKdVxenV7dGtO3F1aRrP00R9sN26TNa+JsLpKYmLtZ1ZWJxGSc1UfDy7q/1Ms9ZdbuICFXJ1I5puXRt8WlXTpAsWhrrb4v7K7e3N7a5pZ4f0ed3mfy8L1iLzr3PmpDllv0nnfaaeZcj185/d/U3qj662fWwFpnsSqYvb3eN1+ky0Vclom50eTncXxA9x2cDu/F6GZcSAGrWqCe698be7qTv529jjXEVtT9GSGbktZp3G7nScj+4CTnflfXN1VXzU1uyLG88KnBSPblVBnUZFm91inYBsXW/zbG4SltE0YKtp1I5po4/tbWxYZ83PFldYiWcZCpkvaUc11Weu7iYwhltZfu3VnlGhnRHUmT6zABb+mv4u8Np/p1xTVd9XYG9x3RNybm39cWYnGkXTO9kn0fG5y7BWXKexp7v085JOxI62OyWN0pEHE/yEEgx7LSyf7rJbklTVakak3e18wHicTVlrRzeV9WzjiGrP7NqZAmt/Lv5nd518uitvVNH56W5Qwfd1AQ+YxP/UjXqfJgpm2tyhUpE0suBZFqzHNFm7uzl/l7sHnajtdf68Fs/ZWMm4gHpb/OliqjfRUf2bmBGYLJ66u5vJrpqRf5cORdupKvl7D2n06VdiMl3/sbvrdBfnL6ri+yX07933pfP801huIiaoOLm6J82c2xkfb2NPAs1Zhmva6XWuOm/W1P0+Hmz4XRnXTWpGs/cgN2nvZwsiPEBSd3Ud2XFjJNPtPCd1Zlys2zmef3Z3rU8tomK3rs5N73v3+ZXd4uY6E2GB9SzD7MbaprkJYN1rn1/dSCJrWc1U6GjbLZIp2nFZf67g4e6ucbH40Y1WwebsbrbuUjCfxGdzG/uldlA1naJI5p3j/FaARdxvZtKHfz49dIKizl9hL3Cvruf/3Sum/w07RUTLccAlwgAAAABJRU5ErkJggg==);\n --ghd-code-background: #141414;\n --ghd-code-color: #ccc;\n }", - "start": 276, - "regexps": [ - "^https?://((education|gist|graphql|guides|docs|raw|resources|status|developer|support|vscode-auth)\\.)?github\\.com/((?!generated_pages/preview).)*$" - ], - "domains": [ - "githubusercontent.com", - "www.githubstatus.com", - "stylishthemes.github.io" - ] - }, - { - "code": "button {\n color: #b5b5b5;\n }\n /* https://github.com/StylishThemes/GitHub-Dark/issues/968 */\n input, textarea {\n color: #bebebe;\n }\n svg {\n fill: #bebebe;\n }\n svg[fill=\"none\"] {\n fill: none;\n }\n .Popover-message::before {\n border-bottom-color: #343434;\n }\n .Popover-message::after {\n border-bottom-color: #181818;\n }\n .alert {\n background: #182030;\n border-color: #246;\n }\n .CircleBadge, .page-profile .user-status-container {\n background: #181818;\n }\n body[class=\"page-responsive\"] .list-options .list-item > .octicon {\n color: #181818;\n }\n /* begin gist.github.com rules */\n /* gist.github.com: \"initial\" */\n a {\n background-color: initial;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n mark {\n color: #dcdcdc;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n a {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n kbd {\n color: #afafaf;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .Box, kbd {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .Box, .Box-header {\n border-color: #343434;\n }\n .Box-header {\n background-color: #222;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* gist.github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* gist.github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width:768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* gist.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* gist.github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* gist.github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* gist.github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .breadcrumb-item::after {\n color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .breadcrumb-item-selected,\n .breadcrumb-item[aria-current]:not([aria-current=false]) {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .btn .octicon {\n color: #949494;\n }\n /* gist.github.com: \"rgba(27,31,35,.08)\" */\n .btn .Counter {\n background-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #24292e\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* gist.github.com: \"#f3f4f6\" */\n .btn.hover, .btn:hover, [open] > .btn {\n background-color: #242424;\n }\n /* gist.github.com: \"#edeff2\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n .btn.selected, .btn:active, .btn[aria-selected=true] {\n background-color: #343434;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #959da5\", \"#fafbfc\", \"rgba(27,31,35,.15)\" */\n .btn.disabled, .btn:disabled, .btn[aria-disabled=true] {\n color: #767676;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"color: #fff\", \"#2ea44f\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-primary {\n color: #fff;\n background-color: #373;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* gist.github.com: \"#2c974b\" */\n .btn-primary.hover, .btn-primary:hover, [open] > .btn-primary {\n background-color: #484;\n }\n /* gist.github.com: \"#2a8f47\" */\n .btn-primary.selected, .btn-primary:active, .btn-primary[aria-selected=true] {\n background-color: #595;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.8)\", \"#94d3a2\", \"rgba(27,31,35,.1)\", \"rgba(27,31,35,.1)\" */\n .btn-primary.disabled, .btn-primary:disabled,\n .btn-primary[aria-disabled=true] {\n color: hsla(0, 0%, 100%, .8);\n background-color: #040;\n border-color: rgba(220, 220, 220, .1);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* gist.github.com: \"hsla(0,0%,100%,.8)\" */\n .btn-primary .octicon {\n color: hsla(0, 0%, 100%, .8);\n }\n /* gist.github.com: \"#cb2431\" */\n .btn-danger {\n color: #d82828;\n }\n /* gist.github.com: \"color: #fff\", \"#cb2431\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-danger:hover, [open] > .btn-danger {\n background-color: #d82828;\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* gist.github.com: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n .btn-danger.selected, .btn-danger:active, .btn-danger:hover,\n .btn-danger[aria-selected=true], [open] > .btn-danger {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn-danger.disabled, .btn-danger:disabled, .btn-danger[aria-disabled=true] {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* gist.github.com: \"rgba(203,36,49,.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 68, 68, .4);\n }\n /* gist.github.com: \"#0366d6\" */\n .btn-outline {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-outline:hover, [open] > .btn-outline {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* gist.github.com: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n .btn-outline[aria-selected=true], [open] > .btn-outline {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"rgba(3,102,214,.5)\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn-outline.disabled, .btn-outline:disabled,\n .btn-outline[aria-disabled=true] {\n color: rgba(79, 140, 201, .5);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* gist.github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: rgb(79, 140, 201);\n background-image: linear-gradient(-180deg, rgb(79, 140, 201), rgb(79, 140, 201) 90%);\n }\n /* gist.github.com: \"rgba(27,31,35,.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* gist.github.com: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-blue.selected, .btn-blue:active, .btn-blue[aria-selected=true],\n [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* gist.github.com: \"none\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled, .btn-blue[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* gist.github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n background-color: #181818;\n }\n /* gist.github.com: \"#0366d6\", \"initial\" */\n .btn-blue .Counter, .btn-link {\n color: rgb(79, 140, 201);\n }\n .btn-link {\n background-color: initial;\n }\n /* gist.github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover, .btn-link[aria-disabled=true],\n .btn-link[aria-disabled=true]:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* gist.github.com: \"#0366d6\", \"initial\", \"box-shadow: none\" */\n .btn-invisible {\n color: rgb(79, 140, 201);\n background-color: initial;\n box-shadow: none;\n }\n /* gist.github.com: \"#0366d6\", \"none\", \"box-shadow: none\" */\n .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,\n .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,\n .btn-invisible:focus, .btn-invisible:hover,\n .btn-invisible[aria-selected=true] {\n color: rgb(79, 140, 201);\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #586069\", \"transparent\" */\n .btn-octicon {\n color: #afafaf;\n background-color: transparent;\n }\n /* gist.github.com: \"#0366d6\" */\n .btn-octicon:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #959da5\" */\n .btn-octicon.disabled, .btn-octicon.disabled:hover,\n .btn-octicon[aria-disabled=true], .btn-octicon[aria-disabled=true]:hover {\n color: #767676;\n }\n /* gist.github.com: \"#cb2431\" */\n .btn-octicon-danger:hover {\n color: #d82828;\n }\n /* gist.github.com: \"transparent\" */\n .close-button {\n background-color: transparent;\n }\n /* gist.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* gist.github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* gist.github.com: \"#0366d6\" */\n .social-count:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .social-count:focus {\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#e1e4e8\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #343434;\n box-shadow: none;\n }\n /* gist.github.com: \"#0366d6\", \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .form-control.focus, .form-control:focus, .form-select.focus,\n .form-select:focus {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"color: #959da5\", \"#f3f4f6\" */\n .form-control[disabled], .form-select[disabled] {\n color: #767676;\n background-color: #242424;\n }\n /* gist.github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff\", \"box-shadow: none\" */\n .input-dark {\n color: #fff;\n box-shadow: none;\n }\n /* gist.github.com: \"rgba(27,31,35,.3)\" */\n .input-dark.focus, .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* gist.github.com: \"color: #6a737d\" */\n :-ms-input-placeholder {\n color: #949494;\n }\n /* gist.github.com: \"color: #6a737d\" */\n ::-ms-input-placeholder {\n color: #949494;\n }\n /* gist.github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* gist.github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* gist.github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group .form-group-header label,\n .hfields .form-group dt label {\n color: #afafaf;\n }\n /* gist.github.com: \"#735c0f\", \"#fffbdd\", \"#f9c513\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #cb4;\n }\n /* gist.github.com: \"#fff\" */\n .form-group .form-control, .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* gist.github.com: \"#cb2431\" */\n .form-group .form-group-body h4.is-error, .form-group dd h4.is-error {\n color: #d82828;\n }\n /* gist.github.com: \"#22863a\" */\n .form-group .form-group-body h4.is-success, .form-group dd h4.is-success {\n color: #6cc644;\n }\n /* gist.github.com: \"#cb2431\" */\n .form-group.required .form-group-header label::after,\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* gist.github.com: \"#22863a\" */\n .form-group.successful .success {\n color: #6cc644;\n }\n /* gist.github.com: \"#144620\", \"#dcffe4\", \"#34d058\" */\n .form-group.successed .success {\n color: #6cc644;\n background-color: #002800;\n border-color: #373;\n }\n /* gist.github.com: \"#dcffe4\" */\n .form-group.successed .success::after {\n border-bottom-color: #002800;\n }\n /* gist.github.com: \"#34d058\" */\n .form-group.successed .success::before {\n border-bottom-color: #373;\n }\n /* gist.github.com: \"#f9c513\" */\n .form-group.warn .form-control {\n border-color: #cb4;\n }\n /* gist.github.com: \"#fff5b1\", \"#f9c513\" */\n .form-group.warn .warning {\n background-color: #651;\n border-color: #cb4;\n }\n /* gist.github.com: \"#fff5b1\" */\n .form-group.warn .warning::after {\n border-bottom-color: #651;\n }\n /* gist.github.com: \"#f9c513\" */\n .form-group.warn .warning::before {\n border-bottom-color: #cb4;\n }\n /* gist.github.com: \"#cb2431\" */\n .form-group.errored .form-control {\n border-color: #d82828;\n }\n /* gist.github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* gist.github.com: \"#ffeef0\", \"#f97583\" */\n .form-group.errored .error {\n background-color: #300;\n border-color: #f88;\n }\n /* gist.github.com: \"#ffeef0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* gist.github.com: \"#f97583\" */\n .form-group.errored .error::before {\n border-bottom-color: #f88;\n }\n /* gist.github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* gist.github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* gist.github.com: \"initial\" */\n .inline-form .btn-plain {\n background-color: initial;\n }\n /* gist.github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* gist.github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"box-shadow: none\" */\n .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* gist.github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* gist.github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #24292e\", \"#e1e4e8\" */\n .radio-label {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n :checked + .radio-label {\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .menu {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #1b1f23\", \"#eaecef\" */\n .menu-item {\n color: #dcdcdc;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .menu-item:focus, .menu-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"#fafbfc\" */\n .menu-item:active {\n background-color: #181818;\n }\n /* gist.github.com: \"#f9826c\" */\n .menu-item.selected::before,\n .menu-item[aria-current]:not([aria-current=false])::before,\n .menu-item[aria-selected=true]::before {\n background-color: #fff;\n }\n /* gist.github.com: \"color: #959da5\" */\n .menu-item .octicon {\n color: #767676;\n }\n /* gist.github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* gist.github.com: \"color: #1b1f23\", \"#eaecef\" */\n .menu-heading {\n color: #dcdcdc;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .menu-heading, .tabnav {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"initial\" */\n .tabnav-tab {\n color: #cdcdcd;\n background-color: initial;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .tabnav-tab.selected, .tabnav-tab[aria-current]:not([aria-current=false]),\n .tabnav-tab[aria-selected=true] {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .tabnav-tab:active {\n color: #949494;\n }\n /* gist.github.com: \"color: #959da5\" */\n .tabnav-tab .octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\", \"initial\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: initial;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .filter-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected, .filter-item[aria-current]:not([aria-current=false]),\n .filter-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* gist.github.com: \"#fafbfc\" */\n .SideNav {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #1b1f23\", \"initial\", \"#eaecef\" */\n .SideNav-item {\n color: #dcdcdc;\n background-color: initial;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .SideNav-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .SideNav-item:focus, .SideNav-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\" */\n .SideNav-item:active, .SideNav-item[aria-current]:not([aria-current=false]),\n .SideNav-item[aria-selected=true] {\n background-color: #181818;\n }\n /* gist.github.com: \"#f9826c\" */\n .SideNav-item[aria-current]:not([aria-current=false])::before,\n .SideNav-item[aria-selected=true]::before {\n background-color: #fff;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .SideNav-icon {\n color: #949494;\n }\n /* gist.github.com: \"#0366d6\", \"initial\" */\n .SideNav-subItem {\n color: rgb(79, 140, 201);\n background-color: initial;\n }\n /* gist.github.com: \"color: #24292e\" */\n .SideNav-subItem:focus, .SideNav-subItem:hover,\n .SideNav-subItem[aria-current]:not([aria-current=false]),\n .SideNav-subItem[aria-selected=true] {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"#e1e4e8\" */\n .subnav-item {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\", \"#005cc5\" */\n .subnav-item.selected, .subnav-item[aria-current]:not([aria-current=false]),\n .subnav-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: #4f8cc9;\n }\n /* gist.github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .subnav-search-icon {\n color: #767676;\n }\n /* gist.github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .UnderlineNav {\n box-shadow: inset 0 -1px 0 #343434;\n }\n /* gist.github.com: \"color: #1b1f23\", \"initial\", \"rgba(209,213,218,0)\" */\n .UnderlineNav-item {\n color: #dcdcdc;\n background-color: initial;\n border-bottom-color: transparent;\n }\n /* gist.github.com: \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n border-bottom-color: #404040;\n }\n /* gist.github.com: \"#f9826c\" */\n .UnderlineNav-item.selected,\n .UnderlineNav-item[aria-current]:not([aria-current=false]),\n .UnderlineNav-item[role=tab][aria-selected=true] {\n border-bottom-color: #fff;\n }\n /* gist.github.com: \"color: #586069\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon,\n .UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon,\n .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #24292e\" */\n .pagination a, .pagination em, .pagination span {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eaecef\" */\n .pagination a:active, .pagination a:focus, .pagination a:hover,\n .pagination em:active, .pagination em:focus, .pagination em:hover,\n .pagination span:active, .pagination span:focus, .pagination span:hover {\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .pagination .next_page, .pagination .previous_page {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover,\n .pagination [aria-current]:not([aria-current=false]) {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover, .pagination [aria-disabled=true],\n .pagination [aria-disabled=true]:hover {\n color: #949494;\n }\n /* gist.github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:544px) {\n .border-sm {\n border-color: #343434 !important;\n }\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:768px) {\n .border-md {\n border-color: #343434 !important;\n }\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1012px) {\n .border-lg {\n border-color: #343434 !important;\n }\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1280px) {\n .border-xl {\n border-color: #343434 !important;\n }\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* gist.github.com: \"#0366d6\" */\n .border-blue {\n border-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* gist.github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* gist.github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* gist.github.com: \"#d73a49\" */\n .border-red {\n border-color: #d82828 !important;\n }\n /* gist.github.com: \"#f97583\" */\n .border-red-light {\n border-color: #f88 !important;\n }\n /* gist.github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* gist.github.com: \"#f9c513\" */\n .border-yellow {\n border-color: #cb4 !important;\n }\n /* gist.github.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* gist.github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\" */\n .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* gist.github.com: \"rgba(27,31,35,.04)\" */\n .box-shadow {\n box-shadow: 0 1px 0 #000 !important;\n }\n /* gist.github.com: \"rgba(149,157,165,.15)\" */\n .box-shadow-medium {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15) !important;\n }\n /* gist.github.com: \"rgba(149,157,165,.2)\" */\n .box-shadow-large {\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2) !important;\n }\n /* gist.github.com: \"rgba(149,157,165,.3)\" */\n .box-shadow-extra-large {\n box-shadow: 0 12px 48px rgba(0, 0, 0, .3) !important;\n }\n /* gist.github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* gist.github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .bg-blue {\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* gist.github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* gist.github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* gist.github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* gist.github.com: \"#ffeef0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* gist.github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* gist.github.com: \"#dbab09\" */\n .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* gist.github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* gist.github.com: \"#fafbfc\" */\n .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .bg-gray-1 {\n background-color: #222 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .color-gray-2 {\n color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* gist.github.com: \"#d1d5da\" */\n .color-gray-3 {\n color: #404040 !important;\n }\n /* gist.github.com: \"#d1d5da\" */\n .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* gist.github.com: \"color: #959da5 !important\" */\n .color-gray-4 {\n color: #767676 !important;\n }\n /* gist.github.com: \"color: #6a737d !important\" */\n .color-gray-5 {\n color: #949494 !important;\n }\n /* gist.github.com: \"#6a737d\" */\n .bg-gray-5 {\n background-color: #444 !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .color-gray-6 {\n color: #afafaf !important;\n }\n /* gist.github.com: \"#586069\" */\n .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* gist.github.com: \"color: #444d56 !important\" */\n .color-gray-7 {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #2f363d !important\" */\n .color-gray-8 {\n color: #bebebe !important;\n }\n /* gist.github.com: \"#2f363d\" */\n .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"#24292e\" */\n .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#dbedff\" */\n .bg-blue-0, .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .color-blue-2 {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .bg-blue-2 {\n background-color: #246 !important;\n }\n /* gist.github.com: \"#79b8ff\" */\n .color-blue-3 {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#79b8ff\" */\n .bg-blue-3 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#2188ff\" */\n .color-blue-4 {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#2188ff\" */\n .bg-blue-4 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .color-blue-5 {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .bg-blue-5 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#005cc5\" */\n .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* gist.github.com: \"#005cc5\" */\n .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* gist.github.com: \"#044289\" */\n .color-blue-7 {\n color: rgba(79, 140, 201, .5) !important;\n }\n /* gist.github.com: \"#044289\" */\n .bg-blue-7 {\n background-color: rgba(79, 140, 201, .5) !important;\n }\n /* gist.github.com: \"color: #032f62 !important\" */\n .color-blue-8 {\n color: #9daccc !important;\n }\n /* gist.github.com: \"#032f62\" */\n .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"color: #05264c !important\" */\n .color-blue-9 {\n color: #bebebe !important;\n }\n /* gist.github.com: \"#05264c\" */\n .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"#f0fff4\" */\n .color-green-0 {\n color: #002800 !important;\n }\n /* gist.github.com: \"#f0fff4\" */\n .bg-green-0 {\n background-color: #002800 !important;\n }\n /* gist.github.com: \"#dcffe4\" */\n .color-green-1 {\n color: #002800 !important;\n }\n /* gist.github.com: \"#dcffe4\" */\n .bg-green-1 {\n background-color: #002800 !important;\n }\n /* gist.github.com: \"#34d058\" */\n .color-green-4 {\n color: #373 !important;\n }\n /* gist.github.com: \"#34d058\" */\n .bg-green-4 {\n background-color: #373 !important;\n }\n /* gist.github.com: \"#28a745\" */\n .color-green-5 {\n color: #484 !important;\n }\n /* gist.github.com: \"#28a745\" */\n .bg-green-5 {\n background-color: #484 !important;\n }\n /* gist.github.com: \"#22863a\" */\n .color-green-6 {\n color: #6cc644 !important;\n }\n /* gist.github.com: \"#22863a\" */\n .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* gist.github.com: \"#165c26\" */\n .color-green-8 {\n color: #6cc644 !important;\n }\n /* gist.github.com: \"#165c26\" */\n .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* gist.github.com: \"#144620\" */\n .color-green-9 {\n color: #6cc644 !important;\n }\n /* gist.github.com: \"#144620\" */\n .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* gist.github.com: \"#fffdef\" */\n .color-yellow-0 {\n color: #261d08 !important;\n }\n /* gist.github.com: \"#fffdef\" */\n .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* gist.github.com: \"#fffbdd\" */\n .color-yellow-1 {\n color: #261d08 !important;\n }\n /* gist.github.com: \"#fffbdd\" */\n .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* gist.github.com: \"#fff5b1\" */\n .color-yellow-2 {\n color: #651 !important;\n }\n /* gist.github.com: \"#fff5b1\" */\n .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* gist.github.com: \"#ffea7f\" */\n .color-yellow-3 {\n color: #542 !important;\n }\n /* gist.github.com: \"#ffea7f\" */\n .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* gist.github.com: \"#ffd33d\" */\n .color-yellow-5 {\n color: #cb4 !important;\n }\n /* gist.github.com: \"#ffd33d\" */\n .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#f9c513\" */\n .color-yellow-6 {\n color: #cb4 !important;\n }\n /* gist.github.com: \"#f9c513\" */\n .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#dbab09\" */\n .color-yellow-7 {\n color: #cb4 !important;\n }\n /* gist.github.com: \"#dbab09\" */\n .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#b08800\" */\n .color-yellow-8 {\n color: #cb4 !important;\n }\n /* gist.github.com: \"#b08800\" */\n .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* gist.github.com: \"#735c0f\" */\n .color-yellow-9 {\n color: #bba257 !important;\n }\n /* gist.github.com: \"#735c0f\" */\n .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* gist.github.com: \"#fb8532\" */\n .color-orange-4 {\n color: #fb8532 !important;\n }\n /* gist.github.com: \"#fb8532\" */\n .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* gist.github.com: \"#e36209\" */\n .color-orange-6 {\n color: #fb8532 !important;\n }\n /* gist.github.com: \"#e36209\" */\n .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* gist.github.com: \"#d15704\" */\n .color-orange-7 {\n color: #f3582c !important;\n }\n /* gist.github.com: \"#d15704\" */\n .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* gist.github.com: \"#a04100\" */\n .color-orange-9 {\n color: #f3582c !important;\n }\n /* gist.github.com: \"#a04100\" */\n .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* gist.github.com: \"#ffeef0\" */\n .color-red-0 {\n color: #300 !important;\n }\n /* gist.github.com: \"#ffeef0\" */\n .bg-red-0 {\n background-color: #300 !important;\n }\n /* gist.github.com: \"#ffdce0\" */\n .color-red-1 {\n color: #300 !important;\n }\n /* gist.github.com: \"#ffdce0\" */\n .bg-red-1 {\n background-color: #300 !important;\n }\n /* gist.github.com: \"#f97583\" */\n .color-red-3 {\n color: #f88 !important;\n }\n /* gist.github.com: \"#f97583\" */\n .bg-red-3 {\n background-color: #f88 !important;\n }\n /* gist.github.com: \"#d73a49\" */\n .color-red-5 {\n color: #d82828 !important;\n }\n /* gist.github.com: \"#d73a49\" */\n .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* gist.github.com: \"#cb2431\" */\n .color-red-6 {\n color: #d82828 !important;\n }\n /* gist.github.com: \"#cb2431\" */\n .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* gist.github.com: \"#86181d\" */\n .color-red-9 {\n color: #d82828 !important;\n }\n /* gist.github.com: \"#86181d\" */\n .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* gist.github.com: \"#f5f0ff\" */\n .color-purple-0 {\n color: #213 !important;\n }\n /* gist.github.com: \"#f5f0ff\" */\n .bg-purple-0 {\n background-color: #213 !important;\n }\n /* gist.github.com: \"#8a63d2\" */\n .color-purple-4 {\n color: #53387a !important;\n }\n /* gist.github.com: \"#8a63d2\" */\n .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* gist.github.com: \"#6f42c1\" */\n .color-purple-5 {\n color: #9378ba !important;\n }\n /* gist.github.com: \"#6f42c1\" */\n .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* gist.github.com: \"#ffeef8\" */\n .color-pink-0 {\n color: #170711 !important;\n }\n /* gist.github.com: \"#ffeef8\" */\n .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .color-pink-4 {\n color: #c49 !important;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* gist.github.com: \"#99306f\" */\n .color-pink-8 {\n color: #e6b !important;\n }\n /* gist.github.com: \"#99306f\" */\n .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .text-blue {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* gist.github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"#22863a\" */\n .text-green {\n color: #6cc644 !important;\n }\n /* gist.github.com: \"#b08800\" */\n .text-yellow {\n color: #cb4 !important;\n }\n /* gist.github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* gist.github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* gist.github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* gist.github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .link-gray:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .muted-link:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* gist.github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"initial\" */\n @keyframes blink {\n 50% {\n background-color: initial;\n }\n }\n /* gist.github.com: \"#fff\" */\n image-crop .crop-box {\n border-color: #181818;\n }\n /* gist.github.com: \"#fff\" */\n image-crop .handle::before {\n background-color: #181818;\n }\n /* gist.github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .ajax-pagination-form .ajax-pagination-btn {\n color: rgb(79, 140, 201);\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\", \"#f6f8fa\" */\n .ajax-pagination-form .ajax-pagination-btn:focus,\n .ajax-pagination-form .ajax-pagination-btn:hover {\n color: rgb(79, 140, 201);\n background-color: #222;\n }\n /* gist.github.com: \"#f6f8fa\", \"#d1d5da\" */\n .ajax-pagination-form.loading .ajax-pagination-btn {\n background-color: #222;\n border-color: #404040;\n }\n /* gist.github.com: \"box-shadow: none\" */\n body.intent-mouse [role=button]:focus,\n body.intent-mouse [role=tabpanel][tabindex=\"0\"]:focus,\n body.intent-mouse a:focus, body.intent-mouse button:focus,\n body.intent-mouse summary:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"#fffbdd\" */\n .conflict-gutter-marker {\n background-color: #261d08;\n }\n /* gist.github.com: \"#d73a49\" */\n .conflict-gutter-marker::after, .conflict-gutter-marker::before {\n background-color: #d82828;\n }\n /* gist.github.com: \"#959da5\" */\n .form-group:hover .form-field-hover, .placeholder-box {\n border-color: #484848;\n }\n /* gist.github.com: \"color: #24292e\" */\n .template-previews .discussion-sidebar-heading {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#0366d6\" */\n .template-previews .discussion-sidebar-heading:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#dfe2e5\" */\n .gollum-editor .comment-form-head.tabnav {\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\", \"none\" */\n .zeroclipboard-link {\n color: rgb(79, 140, 201);\n background: none;\n }\n /* gist.github.com: \"color: #fff\" */\n .auth-form-header, .auth-form-header h1 a {\n color: #fff;\n }\n /* gist.github.com: \"#fff\" */\n .auth-form-body {\n background-color: #181818;\n }\n /* gist.github.com: \"#eaeaea\" */\n .two-factor-help {\n border-color: #343434;\n }\n /* gist.github.com: \"#eaeaea\" */\n .u2f-auth-header:not(:last-child) {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#f9f9f9\" */\n .session-authentication {\n background-color: #181818;\n }\n /* gist.github.com: \"initial\" */\n .session-authentication .header-logged-out {\n background-color: initial;\n }\n /* gist.github.com: \"color: #333\" */\n .session-authentication .header-logo {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #333\", \"initial\" */\n .session-authentication .auth-form-header {\n color: #bebebe;\n background-color: initial;\n }\n /* gist.github.com: \"initial\" */\n .session-authentication.enterprise .header-logged-out,\n .session-authentication.hosted .header-logged-out {\n background-color: initial;\n }\n /* gist.github.com: \"#24292e\" */\n .Header-old {\n background-color: #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n /* gist.github.com: \"#fff\", \"rgba(27,31,35,.15)\" */\n .page-responsive .HeaderMenu--logged-out {\n background-color: #181818;\n box-shadow: 0 10px 50px #000;\n }\n /* gist.github.com: \"initial\", \"box-shadow: none\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out {\n background-color: initial;\n box-shadow: none;\n }\n }\n /* gist.github.com: \"box-shadow: none\" */\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: none;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n }\n /* gist.github.com: \"#eaecef\" */\n .page-responsive .HeaderMenu--logged-out .header-search-wrapper {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #444d56\", \"transparent\" */\n .page-responsive .HeaderMenu-link {\n color: #afafaf;\n background-color: transparent;\n }\n /* gist.github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu-link:hover {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link, .page-responsive .HeaderMenu-link:hover {\n color: #fff;\n }\n }\n /* gist.github.com: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\", \"transparent\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n background-color: transparent;\n }\n }\n /* gist.github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .HeaderMenu-link {\n color: #cdcdcd;\n }\n /* gist.github.com: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* gist.github.com: \"color: #fff\", \"transparent\" */\n .HeaderMenu-link {\n color: #fff;\n background-color: transparent;\n }\n /* gist.github.com: \"color: #fff\" */\n .HeaderMenu-link:hover {\n color: #fff;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\" */\n .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"color: #fff\" */\n .header-logo-invertocat, .header-logo-invertocat:hover {\n color: #fff;\n }\n /* gist.github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .notification-indicator .mail-status {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* gist.github.com: \"#0366d6\" */\n .notification-indicator:hover .mail-status {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\" */\n .header-nav-current-user .user-profile-link {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .feature-preview-indicator {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* gist.github.com: \"color: #fff\", \"box-shadow: none\" */\n .header-search-current .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .header-search-current .header-search-wrapper.focus {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-current .header-search-wrapper.focus .header-search-scope {\n color: #fff;\n }\n /* gist.github.com: \"none\", \"box-shadow: none\" */\n .header-search-current .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .header-search-current .header-search-input:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-current .header-search-scope:hover {\n color: #fff;\n }\n /* gist.github.com: \"color: #24292e !important\", \"#fafbfc\" */\n .header-search-current .jump-to-field-active {\n color: #cdcdcd !important;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .header-search-current .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .header-search-current .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* gist.github.com: \"initial\" */\n .header-search-current .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus mark,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* gist.github.com: \"color: #fff\", \"box-shadow: none\" */\n .header-search-prototype .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* gist.github.com: \"#fafbfc\", \"box-shadow: none\" */\n .header-search-prototype .header-search-wrapper:focus-within {\n background-color: #181818;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-prototype .header-search-wrapper:focus-within .header-search-scope {\n color: #fff;\n }\n /* gist.github.com: \"none\", \"box-shadow: none\" */\n .header-search-prototype .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .header-search-prototype .header-search-input:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-prototype .header-search-scope:hover {\n color: #fff;\n }\n /* gist.github.com: \"color: #24292e\" */\n .header-search-prototype .code-search-filter-text-expander {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .header-search-prototype .search-filter-header,\n .header-search-prototype .search-refine-dropdown-header {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-prototype .site-search-close-button .site-search-close-x {\n color: #fff;\n }\n /* gist.github.com: \"none\" */\n .header-search-prototype .site-search-filter-button {\n background: none;\n }\n /* gist.github.com: \"#fff\" */\n .header-search-prototype .ems-refine-details-dialog {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .header-search-prototype .ems-refine-details-dialog .ems-menu-item {\n color: #dcdcdc;\n }\n /* gist.github.com: \"color: #24292e\" */\n .header-search-prototype .ems-refine-details-dialog .ems-result-type-item {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .header-search-prototype .ems-result-types {\n border-right-color: #343434;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .header-search-prototype .jump-to-field-active {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .header-search-prototype .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .header-search-prototype .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* gist.github.com: \"initial\" */\n .header-search-prototype .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus mark,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* gist.github.com: \"color: #586069\", \"#e1e4e8\" */\n .pullquote {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* gist.github.com: \"color: #fff\", \"#1074e7\", \"#1074e7\" */\n .btn-mktg {\n color: #fff;\n border: 1px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"#0366d6\", \"#0366d6\" */\n .btn-mktg, .btn-mktg:hover {\n background-color: rgb(79, 140, 201);\n }\n .btn-mktg:hover {\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn-mktg:focus {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"#28a745\", \"#28a745\" */\n .btn-primary-mktg:hover {\n background-color: #484;\n border-color: #484;\n }\n /* gist.github.com: \"#0366d6\", \"hsla(0,0%,100%,0)\", \"#1074e7\" */\n .btn-outline-mktg, .btn-outline-mktg:hover {\n color: rgb(79, 140, 201);\n background-color: transparent;\n }\n .btn-outline-mktg:hover {\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"initial\", \"none\", \"hsla(0,0%,100%,.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: initial;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .lead-mktg-fluid {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .btn-black-mktg-fluid, .btn-lg-mktg-fluid, .btn-mktg-fluid,\n .btn-purple-mktg-fluid {\n color: #fff;\n }\n /* gist.github.com: \"none\" */\n .btn-outline-mktg-fluid, .btn-outline-mktg-fluid.hover,\n .btn-outline-mktg-fluid.selected, .btn-outline-mktg-fluid:active,\n .btn-outline-mktg-fluid:hover, .btn-outline-mktg-fluid[aria-selected=true],\n .btn-purple-outline-mktg-fluid, .btn-purple-outline-mktg-fluid.hover,\n .btn-purple-outline-mktg-fluid.selected,\n .btn-purple-outline-mktg-fluid:active, .btn-purple-outline-mktg-fluid:hover,\n .btn-purple-outline-mktg-fluid[aria-selected=true],\n [open] > .btn-outline-mktg-fluid, [open] > .btn-purple-outline-mktg-fluid {\n background: none;\n }\n /* gist.github.com: \"color: #fff\", \"none\" */\n .btn-white-outline-mktg-fluid {\n color: #fff;\n background: none;\n }\n /* gist.github.com: \"color: #fff\", \"none\", \"hsla(0,0%,100%,.5)\" */\n .btn-white-outline-mktg-fluid.hover, .btn-white-outline-mktg-fluid.selected,\n .btn-white-outline-mktg-fluid:active, .btn-white-outline-mktg-fluid:hover,\n .btn-white-outline-mktg-fluid[aria-selected=true],\n [open] > .btn-white-outline-mktg-fluid {\n color: #fff;\n background: none;\n box-shadow: inset 0 0 0 2px hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,.5)\" */\n .btn-white-outline-mktg-fluid.focus, .btn-white-outline-mktg-fluid:focus {\n box-shadow: inset 0 0 0 2px #181818, 0 0 0 4px hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"none\" */\n .btn-invisible-mktg-fluid, .btn-invisible-mktg-fluid::before,\n .btn-invisible-mktg-fluid:hover, .btn-lg-invisible-mktg-fluid,\n .btn-lg-invisible-mktg-fluid::before, .btn-lg-invisible-mktg-fluid:hover {\n background: none !important;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .btn-invisible-mktg-fluid.focus, .btn-invisible-mktg-fluid:focus,\n .btn-lg-invisible-mktg-fluid.focus, .btn-lg-invisible-mktg-fluid:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"rgba(27,31,35,.3)\" */\n .box-shadow-border-mktg {\n box-shadow: 0 0 1px 0 #000 !important;\n }\n /* gist.github.com: \"rgba(27,31,35,.3)\" */\n .box-shadow-card-border-mktg {\n box-shadow: 0 3px 2px rgba(0, 0, 0, .04), 0 7px 5px rgba(0, 0, 0, .02), 0 13px 10px rgba(0, 0, 0, .02), 0 22px 17px rgba(0, 0, 0, .02), 0 0 1px 0 #000 !important;\n }\n /* gist.github.com: \"#fff\" */\n .testimonial-avatar {\n border-color: #181818;\n }\n /* gist.github.com: \"transparent\" */\n .customer-story-overlay {\n background-image: linear-gradient(180deg, #000 -5%, transparent 50%);\n }\n /* gist.github.com: \"none\" */\n .page-nav .page-nav-trigger {\n background: none;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .page-nav-item {\n color: #949494;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .page-nav-item::before {\n background-color: #222;\n }\n /* gist.github.com: \"color: #444d56 !important\" */\n .page-nav-item:hover {\n color: #afafaf !important;\n }\n /* gist.github.com: \"color: #24292e\" */\n .page-nav-item.selected {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eee\" */\n hr {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#032f62\" */\n .bg-blue-dark {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"#fb8532\" */\n .bg-orange {\n background-color: #fb8532 !important;\n }\n /* gist.github.com: \"#79b8ff\" */\n .text-blue-light, .text-blue-mktg {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #808891\" */\n .text-gray-light-ultra {\n color: #767676;\n }\n /* gist.github.com: \"#d1d5da\",\"hsla(0,0%,100%,0)\" */\n .underline-dashed {\n background-image: linear-gradient(90deg, #404040 50%, transparent 0);\n }\n /* gist.github.com: \"#1074e7\", \"box-shadow: 0 1px 0 0 rgba(16,116,231,.5)\" */\n .link-mktg {\n box-shadow: 0 1px 0 0 rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"#0366d6\", \"#1074e7\" */\n .link-mktg, .link-mktg:hover {\n color: rgb(79, 140, 201);\n }\n .link-mktg:hover {\n box-shadow: 0 1px 0 0 rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"hsla(0,0%,100%,.5)\" */\n .link-white-mktg {\n color: #fff;\n box-shadow: 0 1px 0 0 hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"#fff\" */\n .link-white-mktg:hover {\n box-shadow: 0 1px 0 0 #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .Tile {\n background-color: #222;\n }\n /* gist.github.com: \"#fafbfc\" */\n .bg-hero-dots-gray::before, .Tile:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"#fafbfc\" */\n @media (max-width:1012px) {\n .enterprise-section-container {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"#fff\" */\n .enterprise-garden-container::after {\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .sponsors-discussion::after {\n background-color: #343434;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .sponsors-popover::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .sponsors-popover::after {\n border-top-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .sponsors-listing-featured-item .item-handle {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .subnav-link {\n color: #949494;\n }\n /* gist.github.com: \"color: #24292e\", \"#e1e4e8\" */\n .subnav-link:hover {\n color: #cdcdcd;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #1b1f23 !important\", \"#1074e7\" */\n .subnav-link.selected {\n color: #dcdcdc !important;\n border-bottom-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"transparent\" */\n .subnav-btn {\n background-color: transparent;\n }\n /* gist.github.com: \"color: #fff\", \"#1074e7\" */\n @media (min-width:768px) {\n .subnav-btn {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"transparent\" */\n .subnav-btn:hover {\n background-color: transparent;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n @media (min-width:768px) {\n .subnav-btn:hover {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"#e1e4e8\" */\n @media (min-width:768px) {\n .subnav-primary:hover {\n border-bottom-color: #343434;\n }\n }\n /* gist.github.com: \"#1074e7\" */\n @media (min-width:768px) {\n .subnav-primary.selected {\n border-bottom-color: rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"color: #24292e\" */\n .site-subnav-nav .selected {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eaecef\" */\n .pricing-table td, .pricing-table thead th {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#eaecef\", \"#eaecef\" */\n .pricing-table td + td {\n border-right-color: #343434;\n border-left-color: #343434;\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .fade-img-to-white-bg::before {\n background: linear-gradient(180deg, #181818 0, transparent);\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .fade-img-to-white-bg::after {\n background: linear-gradient(0deg, #181818 0, transparent);\n }\n /* gist.github.com: \"color: #fff\", \"#005cc5\" */\n .pricing-plan-tab {\n color: #fff;\n background-color: #4f8cc9;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\" */\n .pricing-plan-tab-active {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"initial\" */\n .pricing-testimonial-logo {\n background-color: initial;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .pricing-testimonial-logo-active {\n background-color: #343434;\n }\n /* gist.github.com: \"initial\" */\n .pricing-matrix-row-button {\n background-color: initial;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .pricing-matrix-row:hover .pricing-matrix-column-feature,\n .pricing-matrix-row:hover .pricing-matrix-row-text {\n background-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .pricing-matrix-column-tier {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .pricing-matrix-row:hover .pricing-matrix-column-tier {\n background-color: #222;\n }\n /* gist.github.com: \"color: #959da5\" */\n .codespaces-subtitle {\n color: #767676;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .codespaces-develop-time {\n background-color: #343434;\n }\n /* gist.github.com: \"color: #fff\" */\n .section-codespaces-develop-night .codespaces-develop-header {\n color: #fff;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.8)\" */\n .section-codespaces-develop-night .codespaces-develop-text {\n color: hsla(0, 0%, 100%, .8) !important;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .section-codespaces-develop-night .codespaces-sun {\n box-shadow: none;\n }\n /* gist.github.com: \"#24292e\" */\n .bg-gradient-gray {\n background-image: linear-gradient(175.44deg, #383838 1.44%, #181818 96.23%);\n }\n /* gist.github.com: \"#fff\" */\n .bg-radial-white {\n background: radial-gradient(145.3% 145.3% at 65.91% 0, #181818 0, #f0f0f0 100%);\n }\n /* gist.github.com: \"hsla(0,0%,100%,.6)\" */\n .jumbotron-codelines {\n color: hsla(0, 0%, 0%, .6);\n }\n /* gist.github.com: \"#24292e\" */\n .jumbotron-netneutrality {\n background-color: #181818;\n }\n /* gist.github.com: \"#24292e\" */\n @media (min-width:768px) {\n .jumbotron-netneutrality {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"#f5f0ff\", \"#6f42c1\" */\n @media (min-width:768px) {\n .illflow-purple .selected {\n background-color: #213;\n }\n .illflow-purple .selected::after {\n border-color: transparent transparent #213;\n }\n .illflow-purple .illflow-item .illflow-item-heading {\n color: #9378ba;\n }\n }\n /* gist.github.com: \"#f1f8ff\", \"#0366d6\" */\n @media (min-width:768px) {\n .illflow-blue .selected {\n background-color: #182030;\n }\n .illflow-blue .selected::after {\n border-color: transparent transparent #182030;\n }\n .illflow-blue .illflow-item .illflow-item-heading {\n color: rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"color: #444d56\" */\n .illflow-item .illflow-item-heading {\n color: #afafaf;\n }\n /* gist.github.com: \"#fafbfc\", \"color: #24292e\" */\n @media (min-width:768px) {\n .illflow-item:not(.selected):hover {\n background-color: #181818;\n }\n .illflow-item.selected .illflow-item-heading {\n color: #cdcdcd;\n }\n }\n /* gist.github.com: \"#444d56\" */\n .IconNav-item.selected {\n border-color: #484848;\n }\n /* gist.github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg:-ms-input-placeholder {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg::-ms-input-placeholder {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg::placeholder {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .home-hero-signup .form-control-note {\n color: #949494;\n }\n /* gist.github.com: \"color: #959da5\" */\n .home-hero-signup .form-control-note .notice-highlight {\n color: #767676;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .customer-story-card {\n box-shadow: 0 2px 4px #000;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .card-mktg {\n box-shadow: 0 1px 15px #000, 0 0 1px rgba(106, 115, 125, .35);\n }\n /* gist.github.com: \"#fb8532\" */\n .border-orange {\n border-color: #fb8532 !important;\n }\n /* gist.github.com: \"color: #032f62 !important\" */\n .text-blue-dark {\n color: #9daccc !important;\n }\n /* gist.github.com: \"color: #959da5\" */\n .actions-event-token {\n color: #767676;\n }\n /* gist.github.com: \"#d1d5da\" */\n .actions-event-token span {\n color: #404040;\n }\n /* gist.github.com: \"#0366d6\" */\n .actions-template-card:hover .actions-template-repo {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #959da5\" */\n .actions-template-repo {\n color: #767676;\n }\n /* gist.github.com: \"color: #24292e !important\", \"#e1e4e8\" */\n .selected .security-nav-item {\n color: #cdcdcd !important;\n box-shadow: inset 0 -3px 0 #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .security-nav-icon {\n color: #404040;\n }\n /* gist.github.com: \"initial\" */\n @media (min-width:1012px) {\n .insights-hero-text {\n background-color: initial;\n }\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\" */\n .insights-hero-text::after {\n background-image: linear-gradient(hsla(0, 0%, 100%, .85), transparent);\n }\n /* gist.github.com: \"#fff\" */\n @media (min-width:1012px) {\n .insights-dashboard-callout {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"#0366d6\", \"#2188ff\" */\n .insights-dash-dot-ripple > span {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 0 5px rgb(79, 140, 201), inset 0 0 5px rgb(79, 140, 201);\n }\n /* gist.github.com: \"#2188ff\" */\n .insights-dash-dot-ripple > div {\n border: 2px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"#34d058\" */\n .packages-badge {\n background-color: #373;\n }\n /* gist.github.com: \"transparent\" */\n .gpr-cli-tab {\n background-color: transparent;\n }\n /* gist.github.com: \"#24292e\" */\n .gpr-cli-tab:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .MarketingBody > p {\n color: #afafaf;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .MarketingBody blockquote, .MarketingBody blockquote::before {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .MarketingBody ol, .MarketingBody ul {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .MarketingBody ol strong, .MarketingBody ul strong {\n color: #dcdcdc;\n }\n /* gist.github.com: \"color: #2f363d !important\" */\n .MarketingBody-lead > p:first-child {\n color: #bebebe !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .MarketingBody-lead a, .MarketingBody-lead a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#c8e1ff\",\"#79b8ff\" */\n .section-mobile-notification::after {\n background: linear-gradient(#246, rgb(79, 140, 201), #246);\n }\n /* gist.github.com: \"#fff\" */\n .phone-buttons, .phone-buttons::after, .phone-buttons::before {\n background-color: #181818;\n }\n /* gist.github.com: \"#fff\", \"rgba(0,0,0,.15)\" */\n .phone-background {\n border-color: #181818;\n box-shadow: 0 2px 30px #000, inset 30px 0 20px 20px rgba(0, 0, 0, .01);\n }\n /* gist.github.com: \"#f6f8fa\" */\n .phone-background::before {\n border-color: #202020;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .animate-mobile-triage .mobile-triage-overlay {\n filter: drop-shadow(-7px 10px 6px #343434);\n }\n /* gist.github.com: \"#dbedff\" */\n .mobile-work-overlay-bluetap {\n background-color: #182030;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .mobile-particle-square-pink {\n background-color: #c49;\n }\n /* gist.github.com: \"#fb8532\" */\n .mobile-particle-square-orange {\n background-color: #fb8532;\n }\n /* gist.github.com: \"#2188ff\" */\n .mobile-particle-circle-blue, .mobile-particle-circle-blue-2 {\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#8a63d2\" */\n .mobile-particle-circle-purple {\n background-color: #53387a;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .mobile-particle-circle-orange, .mobile-particle-circle-pink {\n background-color: #c49;\n }\n /* gist.github.com: \"#fb8532\" */\n .mobile-particle-circle-orange {\n background-color: #fb8532;\n }\n /* gist.github.com: \"#8a63d2\" */\n .mobile-particle-square-purple {\n background-color: #53387a;\n }\n /* gist.github.com: \"#34d058\" */\n .mobile-particle-circle-green {\n background-color: #373;\n }\n /* gist.github.com: \"#d1d5da\", \"rgba(149,157,165,.2)\" */\n @media (min-width:544px) {\n .summarylink:active .summarylink-btn, .summarylink:hover .summarylink-btn {\n border-color: #404040;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n }\n /* gist.github.com: \"#8a63d2\" */\n .particle-square-purple {\n background-color: #53387a;\n }\n /* gist.github.com: \"#2188ff\" */\n .particle-circle-blue {\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#34d058\" */\n .particle-circle-green {\n background-color: #373;\n }\n /* gist.github.com: \"#fb8532\" */\n .particle-circle-orange, .particle-circle-orange-2 {\n background-color: #fb8532;\n }\n /* gist.github.com: \"#34d058\" */\n .particle-circle-green-2 {\n background-color: #373;\n }\n /* gist.github.com: \"#2188ff\" */\n .particle-circle-blue-2 {\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#8a63d2\" */\n .particle-square-purple-2 {\n background-color: #53387a;\n }\n /* gist.github.com: \"rgba(0,0,0,.2)\" */\n .apps-cluster .CircleBadge.tooltipped:hover {\n box-shadow: 0 3px 8px 0 rgba(255, 255, 255, .7);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .apps-quadrangle .CircleBadge::after {\n background-color: #343434;\n }\n /* gist.github.com: \"#24292e\" */\n .DeveloperVideo-data {\n background-color: #181818;\n }\n /* gist.github.com: \"none\", \"transparent\" */\n @media (min-width:768px) {\n .DeveloperVideo-data {\n background: none;\n background-image: linear-gradient(transparent, rgba(27, 31, 35, .95));\n }\n }\n /* gist.github.com: \"#2f363d\" */\n .btf-border {\n border-top-color: #282828;\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\",\"#fff\",\"#eaf5ff\" */\n .signup-prompt-bg {\n background-image: linear-gradient(180deg, transparent 50%, #181818), linear-gradient(70deg, #182030 32%, #f6fff8);\n }\n /* gist.github.com: \"color: #586069\" */\n .SegmentedNav .selected {\n color: #afafaf;\n }\n /* gist.github.com: \"#fafbfc\" */\n .home-enterprise-wrapper::before {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .choose-team-lp {\n background-color: #222;\n }\n /* gist.github.com: \"color: #2f363d\" */\n .choose-team-lp .lead-mktg {\n color: #bebebe;\n }\n /* gist.github.com: \"#044289\" */\n .choose-team-lp .hero-form {\n background-color: rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"color: #fff\" */\n .choose-team-lp .hero-form .tooltipped {\n color: #fff;\n }\n /* gist.github.com: \"#fff\" */\n .choose-team-lp .landing-page-section.features {\n background-color: #181818;\n }\n /* gist.github.com: \"#2188ff\" */\n .choose-team-lp .landing-page-section.customers {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #2f363d\" */\n .choose-team-lp .feature-list {\n color: #bebebe;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .choose-team-lp .customer-quote {\n box-shadow: 0 4px 12px #000;\n }\n /* gist.github.com: \"#044289\" */\n .choose-team-lp .landing-page-footer {\n background-color: rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"#032f62\" */\n .choose-team-lp .landing-page-sub-footer {\n background-color: #182030;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .choose-team-lp .footer-link {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\" */\n .team-octicon {\n background-color: #181818;\n }\n /* gist.github.com: \"#d1d5da\" */\n .team-collaboration-box::before {\n border-bottom-color: #404040;\n }\n /* gist.github.com: \"#fff\" */\n .team-collaboration-box::after {\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"#d1d5da\", \"#fff\" */\n @media (min-width:768px) {\n .team-collaboration-box--left::before {\n border-left-color: #404040;\n }\n .team-collaboration-box--left::after {\n border-left-color: #181818;\n }\n }\n /* gist.github.com: \"#d1d5da\", \"#fff\" */\n @media (min-width:768px) {\n .team-collaboration-box--right::before {\n border-right-color: #404040;\n }\n .team-collaboration-box--right::after {\n border-right-color: #181818;\n }\n }\n /* gist.github.com: \"color: #24292e\" */\n .flash {\n color: #cdcdcd;\n }\n /* gist.github.com: \"none\" */\n .flash-close {\n background: none;\n }\n /* gist.github.com: \"#dbedff\", \"rgba(4,66,137,.2)\" */\n .flash {\n background-color: #182030;\n border-color: #246;\n }\n /* gist.github.com: \"rgba(4,66,137,.6)\" */\n .flash .octicon {\n color: #4f8cc9;\n }\n /* gist.github.com: \"#fffbdd\" */\n .flash-warn {\n background-color: #261d08;\n }\n /* gist.github.com: \"#b08800\" */\n .flash-warn .octicon {\n color: #cb4;\n }\n /* gist.github.com: \"#dcffe4\" */\n .flash-success {\n background-color: #002800;\n }\n /* gist.github.com: \"#fffbdd\" */\n .warning {\n background-color: #261d08;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\",\"rgba(149,157,165,.15)\" */\n .autocomplete-results {\n background-color: #181818;\n box-shadow: inset 0 0 0 1px #343434, 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\" */\n .autocomplete-item {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .autocomplete-item.navigation-focus, .autocomplete-item.selected,\n .autocomplete-item:hover, .autocomplete-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\", \"rgba(149,157,165,.15)\" */\n .suggester {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* gist.github.com: \"#eaecef\" */\n .suggester li {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .suggester li small {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .suggester li.navigation-focus, .suggester li:hover,\n .suggester li[aria-selected=true] {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .suggester li.navigation-focus small, .suggester li:hover small,\n .suggester li[aria-selected=true] small {\n color: #fff;\n }\n /* gist.github.com: \"#fff\", \"hsla(0,0%,100%,.8)\" */\n .avatar-child {\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* gist.github.com: \"#fff\" */\n .avatar-child, .AvatarStack-body {\n background-color: #181818;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .AvatarStack-body .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .avatar.avatar-more {\n background-color: #222;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .avatar.avatar-more::before {\n background-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .avatar.avatar-more::after, .AvatarStack--right .avatar.avatar-more {\n background-color: #404040;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .AvatarStack--right .avatar.avatar-more::after {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\" */\n .AvatarStack--right .avatar {\n border-left-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .DashedConnection::before {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fff\", \"#eaecef\" */\n .blankslate code {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n .blankslate-icon {\n color: #767676;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.6)\", \"#eaf5ff\" */\n .branch-name {\n color: rgba(230, 230, 230, .6);\n background-color: #182030;\n }\n /* gist.github.com: \"#0366d6\" */\n a.branch-name {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n .dropdown-menu {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\" */\n .dropdown-item {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .dropdown-item:focus, .dropdown-item:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"none\" */\n .dropdown-signout {\n background: none;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .dropdown-divider {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .dropdown-header {\n color: #afafaf;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-w::before {\n border-color: transparent transparent transparent rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .dropdown-menu-w::after {\n border-color: transparent transparent transparent #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-e::before {\n border-color: transparent rgba(220, 220, 220, .15) transparent transparent;\n }\n /* gist.github.com: \"#fff\" */\n .dropdown-menu-e::after {\n border-color: transparent #181818 transparent transparent;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-ne::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .dropdown-menu-ne::after {\n border-top-color: #181818;\n }\n /* gist.github.com: \"color: #fff\", \"#2f363d\", \"#444d56\", \"rgba(149,157,165,.2)\" */\n .dropdown-menu-dark {\n color: #fff;\n background-color: #282828;\n border-color: #484848;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"#444d56\" */\n .dropdown-menu-dark::before {\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"#2f363d\" */\n .dropdown-menu-dark::after {\n border-bottom-color: #282828;\n }\n /* gist.github.com: \"#d1d5da\" */\n .dropdown-menu-dark .dropdown-header {\n color: #404040;\n }\n /* gist.github.com: \"#444d56\" */\n .dropdown-menu-dark .dropdown-divider {\n border-top-color: #484848;\n }\n /* gist.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-w::before {\n border-color: transparent transparent transparent #484848;\n }\n /* gist.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-w::after {\n border-color: transparent transparent transparent #282828;\n }\n /* gist.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-e::before {\n border-color: transparent #484848 transparent transparent;\n }\n /* gist.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-e::after {\n border-color: transparent #282828 transparent transparent;\n }\n /* gist.github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-ne::before {\n border-color: #484848 transparent transparent;\n }\n /* gist.github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-ne::after {\n border-color: #282828 transparent transparent;\n }\n /* gist.github.com: \"#24292e\" */\n .Header {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff\" */\n .Header-link {\n color: #fff;\n }\n /* gist.github.com: \"initial\", \"#e1e4e8\" */\n .label, .Label {\n background-color: initial !important;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\", \"#e1e4e8\" */\n .Label--gray, .Label--outline {\n color: #afafaf;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .Label--gray-darker {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#735c0f\", \"#f9c513\" */\n .Label--yellow {\n color: #bba257;\n border-color: #cb4;\n }\n /* gist.github.com: \"#cb2431\", \"#cb2431\" */\n .Label--red {\n color: #d82828;\n border-color: #d82828;\n }\n /* gist.github.com: \"#22863a\", \"#28a745\" */\n .Label--green, .Label--outline-green {\n color: #6cc644;\n border-color: #484;\n }\n /* gist.github.com: \"#0366d6\", \"#0366d6\" */\n .Label--blue {\n color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#6f42c1\", \"#8a63d2\" */\n .Label--purple {\n color: #9378ba;\n border-color: #53387a;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .Label--pink {\n border-color: #c49;\n }\n /* gist.github.com: \"color: #fff\", \"#6a737d\" */\n .state, .State {\n color: #fff;\n background-color: #444;\n }\n /* gist.github.com: \"#28a745\" */\n .State--green {\n background-color: #484;\n }\n /* gist.github.com: \"#d73a49\" */\n .State--red {\n background-color: #d82828;\n }\n /* gist.github.com: \"#6f42c1\" */\n .State--purple {\n background-color: #9378ba;\n }\n /* gist.github.com: \"color: #24292e\", \"rgba(209,213,218,.5)\" */\n .Counter {\n color: #cdcdcd;\n background-color: rgba(90, 90, 90, .5);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .Counter--gray-light {\n color: #949494;\n }\n /* gist.github.com: \"color: #fff\", \"#6a737d\" */\n .Counter--gray {\n color: #fff;\n background-color: #444;\n }\n /* gist.github.com: \"color: #586069\" */\n .diffstat {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .diffstat-block-deleted {\n background-color: #d82828;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .diffstat-block-added {\n background-color: #373;\n }\n /* gist.github.com: \"#d1d5da\" */\n .diffstat-block-neutral {\n background-color: #404040;\n }\n /* gist.github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* gist.github.com: \"#cb2431\" */\n .markdown-body .absent {\n color: #d82828;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .markdown-body hr {\n background-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* gist.github.com: \"color: #1b1f23\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* gist.github.com: \"#eaecef\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .markdown-body h6 {\n color: #949494;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\", \"#c6cbd1\" */\n .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* gist.github.com: \"initial\" */\n .markdown-body table img {\n background-color: initial;\n }\n /* gist.github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* gist.github.com: \"initial\" */\n .markdown-body .emoji {\n background-color: initial;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* gist.github.com: \"rgba(27,31,35,.05)\" */\n .markdown-body code, .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* gist.github.com: \"transparent\" */\n .markdown-body pre > code {\n background-color: transparent;\n }\n /* gist.github.com: \"initial\" */\n .markdown-body pre code, .markdown-body pre tt {\n background-color: initial;\n }\n /* gist.github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .markdown-body .csv-data th {\n background-color: #222;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .Popover-message::after {\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--bottom-left::before,\n .Popover-message--bottom-right::before, .Popover-message--bottom::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .Popover-message--bottom-left::after, .Popover-message--bottom-right::after,\n .Popover-message--bottom::after {\n border-top-color: #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--right-bottom::before, .Popover-message--right-top::before,\n .Popover-message--right::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .Popover-message--right-bottom::after, .Popover-message--right-top::after,\n .Popover-message--right::after {\n border-left-color: #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--left-bottom::before, .Popover-message--left-top::before,\n .Popover-message--left::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#fff\" */\n .Popover-message--left-bottom::after, .Popover-message--left-top::after,\n .Popover-message--left::after {\n border-right-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .Progress {\n background-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .SelectMenu-modal {\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n @media (min-width:544px) {\n .SelectMenu-modal {\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n }\n /* gist.github.com: \"#eaecef\" */\n .SelectMenu-header {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #959da5\", \"initial\" */\n .SelectMenu-closeButton {\n color: #767676;\n background-color: initial;\n }\n /* gist.github.com: \"#eaecef\" */\n .SelectMenu-filter {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#eaecef\" */\n .SelectMenu-item, .SelectMenu-list {\n background-color: #181818;\n }\n .SelectMenu-item {\n color: #cdcdcd;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\", \"initial\", \"#eaecef\" */\n .SelectMenu-tab, .SelectMenu-tabs {\n box-shadow: inset 0 -1px 0 #343434;\n }\n .SelectMenu-tab {\n color: #949494;\n background-color: initial;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#eaecef\" */\n .SelectMenu-tab[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n box-shadow: 0 0 0 1px #343434;\n }\n /* gist.github.com: \"#eaecef\", \"box-shadow: none\" */\n @media (min-width:544px) {\n .SelectMenu-tab[aria-selected=true] {\n border-color: #343434;\n box-shadow: none;\n }\n }\n /* gist.github.com: \"#fff\", \"#eaecef\" */\n .SelectMenu-message {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .SelectMenu-blankslate, .SelectMenu-loading, .SelectMenu-message {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #6a737d\", \"#f6f8fa\", \"#eaecef\" */\n .SelectMenu-divider {\n color: #949494;\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\", \"#eaecef\" */\n .SelectMenu-footer, .SelectMenu-list--borderless .SelectMenu-divider {\n border-top-color: #343434;\n }\n .SelectMenu-footer {\n color: #949494;\n }\n /* gist.github.com: \"color: #24292e\" */\n .SelectMenu-item[aria-checked=true] {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .SelectMenu-item:disabled, .SelectMenu-item[aria-disabled=true] {\n color: #949494;\n }\n /* gist.github.com: \"color: #24292e\", \"color: #586069\", \"#f6f8fa\", \"#fafbfc\", \"#dbedff\", \"#f6f8fa\" */\n @media (hover:hover) {\n .SelectMenu-closeButton:hover,\n body:not(.intent-mouse) .SelectMenu-closeButton:focus {\n color: #cdcdcd;\n }\n .SelectMenu-closeButton:active {\n color: #afafaf;\n }\n .SelectMenu-item:hover, body:not(.intent-mouse) .SelectMenu-item:focus {\n background-color: #222;\n }\n .SelectMenu-item:active {\n background-color: #181818;\n }\n body:not(.intent-mouse) .SelectMenu-tab:focus {\n background-color: #182030;\n }\n .SelectMenu-tab:hover {\n color: #cdcdcd;\n }\n .SelectMenu-tab:not([aria-selected=true]):active {\n color: #cdcdcd;\n background-color: #222;\n }\n }\n /* gist.github.com: \"#fafbfc\", \"rgba(209,213,218,.5)\" */\n @media (hover:none) {\n .SelectMenu-item:active, .SelectMenu-item:focus {\n background-color: #181818;\n }\n .SelectMenu-item {\n -webkit-tap-highlight-color: rgba(90, 90, 90, .5);\n }\n }\n /* gist.github.com: \"#e1e4e8\" */\n .Subhead {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#cb2431\" */\n .Subhead-heading--danger {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .Subhead-description {\n color: #afafaf;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .TimelineItem::before {\n background-color: #343434;\n }\n /* gist.github.com: \"#2188ff\", \"#c8e1ff\" */\n .TimelineItem:target .TimelineItem-badge {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 .2em rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #444d56\", \"#e1e4e8\", \"#fff\" */\n .TimelineItem-badge {\n color: #afafaf;\n background-color: #343434;\n border-color: #181818;\n }\n /* gist.github.com: \"color: #444d56\" */\n .TimelineItem-body {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .TimelineItem-break {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #959da5\", \"#fff\" */\n .TimelineItem--condensed .TimelineItem-badge {\n color: #767676;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #1b1f23\", \"#fff\", \"#e1e4e8\",\"rgba(149,157,165,.2)\" */\n .Toast {\n color: #dcdcdc;\n background-color: #181818;\n box-shadow: inset 0 0 0 1px #343434, 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .Toast-icon {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"initial\" */\n .Toast-dismissButton {\n background-color: initial;\n }\n /* gist.github.com: \"color: #586069\" */\n .Toast-dismissButton:focus, .Toast-dismissButton:hover {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .Toast-dismissButton:active {\n color: #767676;\n }\n /* gist.github.com: \"#d73a49\" */\n .Toast--error .Toast-icon {\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #24292e\", \"#f9c513\" */\n .Toast--warning .Toast-icon {\n color: #cdcdcd;\n background-color: #cb4;\n }\n /* gist.github.com: \"#28a745\" */\n .Toast--success .Toast-icon {\n background-color: #484;\n }\n /* gist.github.com: \"color: #fff\" */\n .boxed-group .Counter {\n color: #fff;\n }\n /* gist.github.com: \"#f6f8fa\", \"rgba(27,31,35,.15)\" */\n .boxed-group .heading, .boxed-group > h3 {\n background-color: #222;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #586069\" */\n .boxed-group .heading a.boxed-group-breadcrumb,\n .boxed-group > h3 a.boxed-group-breadcrumb {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\" */\n .boxed-group .tabnav.heading li:first-child .selected {\n border-left-color: #181818;\n }\n /* gist.github.com: \"color: #fff\", \"#d73a49\" */\n .boxed-group.dangerzone > h3 {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #586069\", \"#fff\", \"#d1d5da\" */\n .boxed-group-inner {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .boxed-group-inner .help, .boxed-group-inner .tabnav-tab.selected {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .boxed-group-inner .help {\n color: #afafaf;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .boxed-group-list > li {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .boxed-group-list > li:first-child {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#dcffe4\" */\n .boxed-group-list > li.selected {\n background-color: #002800;\n }\n /* gist.github.com: \"#fafbfc\", \"#eaecef\" */\n .boxed-group-table th {\n background-color: #181818;\n }\n /* gist.github.com: \"#eaecef\" */\n .boxed-group-table td, .boxed-group-table th {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.85)\", \"#fffbdd\", \"rgba(27,31,35,.15)\" */\n .boxed-group-warning {\n color: rgba(230, 230, 230, .85);\n background-color: #261d08;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .list-group-item {\n border-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\" */\n .list-group-item.closed {\n background-color: #181818;\n }\n /* gist.github.com: \"#fffdef\" */\n .list-group-item.selected {\n background-color: #261d08;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .list-group-item.navigation-focus, .list-group-item[aria-selected=true] {\n background-color: #182030;\n }\n /* gist.github.com: \"color: #586069\" */\n .list-group-item .list-group-item-summary a {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .list-group-item .list-group-item-summary a.quiet {\n color: #949494;\n }\n /* gist.github.com: \"color: #24292e\" */\n .list-group-item-link {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .draft.octicon {\n color: #949494;\n }\n /* gist.github.com: \"#cb2431\" */\n .closed.octicon, .reverted.octicon {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .open.octicon {\n color: #484;\n }\n /* gist.github.com: \"#6f42c1\" */\n .merged.octicon {\n color: #9378ba;\n }\n /* gist.github.com: \"#eaecef\" */\n .progress-bar {\n background-color: #343434;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .progress-bar .progress {\n background-color: #373;\n }\n /* gist.github.com: \"#e1e4e8\", \"#28a745\",\"#005cc5\",\"#cb2431\" */\n .reverse-progress-container {\n background-color: #343434;\n background-image: linear-gradient(90deg, #484, #4f8cc9, #3a1d6e, #d82828, #f66a0a);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .reverse-progress-bar {\n background-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .select-menu-button.primary::after {\n border-top-color: #181818;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.8)\" */\n .select-menu-loading-overlay {\n background-color: hsla(0, 0%, 100%, .8);\n }\n /* gist.github.com: \"color: #586069\", \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.15)\" */\n .select-menu-modal {\n color: #afafaf;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 3px 12px #000;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .select-menu-divider, .select-menu-header {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-divider, .select-menu-header .select-menu-title {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .select-menu-divider {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .select-menu-header .close-button, .select-menu-header .octicon {\n color: #5a5a5a;\n }\n /* gist.github.com: \"color: #444d56\" */\n .select-menu-header .close-button:hover, .select-menu-header .octicon:hover {\n color: #afafaf;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .select-menu-filters {\n background-color: #222;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .select-menu-text-filter:first-child:last-child {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .select-menu-text-filter input {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input:-ms-input-placeholder {\n color: #767676;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input::-ms-input-placeholder {\n color: #767676;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input::placeholder {\n color: #767676;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .select-menu-tabs {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\", \"transparent\" */\n .select-menu-tabs .select-menu-tab-nav, .select-menu-tabs a {\n color: #949494;\n background-color: transparent;\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-tabs .select-menu-tab-nav:hover, .select-menu-tabs a:hover {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#dfe2e5\",\"#fff\" */\n .select-menu-tabs .select-menu-tab-nav.selected,\n .select-menu-tabs .select-menu-tab-nav[aria-selected=true],\n .select-menu-tabs a.selected, .select-menu-tabs a[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #343434 #343434 #181818;\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-blankslate h3 {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eaecef\" */\n .select-menu-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .select-menu-item.disabled, .select-menu-item.disabled .description,\n .select-menu-item.disabled.selected,\n .select-menu-item.disabled.selected .description,\n .select-menu-item[aria-disabled=true],\n .select-menu-item[aria-disabled=true] .description,\n .select-menu-item[disabled], .select-menu-item[disabled] .description {\n color: #949494;\n }\n /* gist.github.com: \"color: #6a737d !important\" */\n .select-menu-item.selected .octicon-circle-slash.select-menu-item-icon {\n color: #949494 !important;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .select-menu-item .octicon-circle-slash {\n color: #949494;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .select-menu-item.excluded {\n background-color: #222;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .select-menu-item.navigation-focus,\n .select-menu-item.navigation-focus .description-inline,\n .select-menu-item.navigation-focus.select-menu-action,\n .select-menu-item.navigation-focus.selected,\n .select-menu-item.navigation-focus[aria-checked=true],\n .select-menu-item:focus, .select-menu-item:focus .description-inline,\n .select-menu-item:focus.select-menu-action, .select-menu-item:focus.selected,\n .select-menu-item:hover, .select-menu-item:hover .description-inline,\n .select-menu-item:hover.select-menu-action, .select-menu-item:hover.selected,\n .select-menu-item[aria-checked=true]:focus,\n .select-menu-item[aria-checked=true]:hover,\n .select-menu-item[aria-selected=true] .description-inline,\n .select-menu-item[aria-selected=true].select-menu-action,\n .select-menu-item[aria-selected=true]:focus,\n .select-menu-item[aria-selected=true]:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .select-menu-item.navigation-focus .description,\n .select-menu-item.navigation-focus .description-inline .description,\n .select-menu-item.navigation-focus .description-inline .description-warning,\n .select-menu-item.navigation-focus .description-inline > .octicon,\n .select-menu-item.navigation-focus .description-warning,\n .select-menu-item.navigation-focus.select-menu-action .description,\n .select-menu-item.navigation-focus.select-menu-action .description-warning,\n .select-menu-item.navigation-focus.select-menu-action > .octicon,\n .select-menu-item.navigation-focus.selected .description,\n .select-menu-item.navigation-focus.selected .description-warning,\n .select-menu-item.navigation-focus.selected > .octicon,\n .select-menu-item.navigation-focus > .octicon,\n .select-menu-item.navigation-focus[aria-checked=true] .description,\n .select-menu-item.navigation-focus[aria-checked=true] .description-warning,\n .select-menu-item.navigation-focus[aria-checked=true] > .octicon,\n .select-menu-item:focus .description,\n .select-menu-item:focus .description-inline .description,\n .select-menu-item:focus .description-inline .description-warning,\n .select-menu-item:focus .description-inline > .octicon,\n .select-menu-item:focus .description-warning,\n .select-menu-item:focus.select-menu-action .description,\n .select-menu-item:focus.select-menu-action .description-warning,\n .select-menu-item:focus.select-menu-action > .octicon,\n .select-menu-item:focus.selected .description,\n .select-menu-item:focus.selected .description-warning,\n .select-menu-item:focus.selected > .octicon,\n .select-menu-item:focus > .octicon, .select-menu-item:hover .description,\n .select-menu-item:hover .description-inline .description,\n .select-menu-item:hover .description-inline .description-warning,\n .select-menu-item:hover .description-inline > .octicon,\n .select-menu-item:hover .description-warning,\n .select-menu-item:hover.select-menu-action .description,\n .select-menu-item:hover.select-menu-action .description-warning,\n .select-menu-item:hover.select-menu-action > .octicon,\n .select-menu-item:hover.selected .description,\n .select-menu-item:hover.selected .description-warning,\n .select-menu-item:hover.selected > .octicon,\n .select-menu-item:hover > .octicon,\n .select-menu-item[aria-checked=true]:focus .description,\n .select-menu-item[aria-checked=true]:focus .description-warning,\n .select-menu-item[aria-checked=true]:focus > .octicon,\n .select-menu-item[aria-checked=true]:hover .description,\n .select-menu-item[aria-checked=true]:hover .description-warning,\n .select-menu-item[aria-checked=true]:hover > .octicon,\n .select-menu-item[aria-selected=true] .description-inline .description,\n .select-menu-item[aria-selected=true] .description-inline .description-warning,\n .select-menu-item[aria-selected=true] .description-inline > .octicon,\n .select-menu-item[aria-selected=true].select-menu-action .description,\n .select-menu-item[aria-selected=true].select-menu-action .description-warning,\n .select-menu-item[aria-selected=true].select-menu-action > .octicon,\n .select-menu-item[aria-selected=true]:focus .description,\n .select-menu-item[aria-selected=true]:focus .description-warning,\n .select-menu-item[aria-selected=true]:focus > .octicon,\n .select-menu-item[aria-selected=true]:hover .description,\n .select-menu-item[aria-selected=true]:hover .description-warning,\n .select-menu-item[aria-selected=true]:hover > .octicon {\n color: #fff;\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\" */\n .select-menu-item.navigation-focus.disabled,\n .select-menu-item:hover.disabled,\n .select-menu-item[aria-disabled=true]:hover,\n .select-menu-item[aria-selected=true].disabled,\n .select-menu-item[disabled]:hover {\n color: hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"hsla(0,0%,100%,.6)\" */\n .select-menu-item.navigation-focus.disabled .description,\n .select-menu-item:hover.disabled .description,\n .select-menu-item[aria-disabled=true]:hover .description,\n .select-menu-item[aria-selected=true].disabled .description,\n .select-menu-item[disabled]:hover .description {\n color: hsla(0, 0%, 0%, .6);\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-item.selected,\n details-menu .select-menu-item[aria-checked=true],\n details-menu .select-menu-item[aria-selected=true] {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .select-menu-item.selected .description,\n details-menu .select-menu-item[aria-checked=true] .description,\n details-menu .select-menu-item[aria-selected=true] .description {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-item.selected > .octicon,\n details-menu .select-menu-item[aria-checked=true] > .octicon,\n details-menu .select-menu-item[aria-selected=true] > .octicon {\n color: #cdcdcd;\n }\n /* gist.github.com: \"initial\" */\n .select-menu.label-select-menu .select-menu-item:active {\n background-color: initial !important;\n }\n /* gist.github.com: \"color: #444d56\" */\n .select-menu-action {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .select-menu-action:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .select-menu-item-text .description,\n .select-menu-item-text .description-inline, .select-menu-no-results {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .select-menu-item-text .description-warning {\n color: #d82828;\n }\n /* gist.github.com: \"#0366d6\" */\n .select-menu-new-item-form .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\", \"#e1e4e8\" */\n .table-list {\n color: #949494;\n }\n /* gist.github.com: \"#eaecef\" */\n .table-list, .table-list-bordered {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .table-list-bordered .table-list-cell:first-child {\n border-left-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .table-list-bordered .table-list-cell:last-child {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .table-list-item.unread .table-list-cell:first-child {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* gist.github.com: \"#eaecef\" */\n .table-list-cell {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .table-list-header {\n background-color: #222;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .table-list-header-meta, .table-list-header-toggle .btn-link {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .table-list-header-toggle .btn-link.selected,\n .table-list-header-toggle .btn-link.selected:hover,\n .table-list-header-toggle .btn-link:hover,\n .table-list-header-toggle .select-menu-button.selected,\n .table-list-header-toggle .select-menu-button.selected:hover,\n .table-list-header-toggle .select-menu-button:hover {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#fff\", \"#444d56\", \"rgba(0,0,0,.4)\" */\n .Box--overlay {\n background-color: #181818;\n border-color: #484848;\n box-shadow: 0 0 18px #000;\n }\n /* gist.github.com: \"color: #586069\" */\n .Box-body .help, .breadcrumb {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .breadcrumb strong.final-path {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .capped-card {\n border-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .capped-card > p, .capped-card h3 {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .capped-card > p {\n color: #afafaf;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .capped-card-content {\n background-color: #222;\n }\n /* gist.github.com: \"initial\" */\n .comment-body .highlight {\n background-color: initial;\n }\n /* gist.github.com: \"#0366d6\" */\n .comment-form-textarea.dragover {\n border: 1px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"#86181d\", \"#ffeef0\", \"rgba(27,31,35,.15)\" */\n .comment-form-error {\n color: #d82828;\n background-color: #300;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #586069\", \"#dfe2e5\" */\n .email-format .email-quoted-reply, .email-format .email-signature-reply {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* gist.github.com: \"color: #444d56\", \"#dfe2e5\" */\n .email-format .email-hidden-toggle a {\n color: #afafaf;\n background-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .email-format .email-hidden-toggle a:hover {\n background-color: #5a5a5a;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .email-format .email-hidden-toggle a:active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#c6cbd1\" */\n .locked-conversation .preview-tab, .locked-conversation .write-tab {\n color: #5a5a5a;\n }\n /* gist.github.com: \"#f6f8fa\", \"#eaecef\" */\n .commit-form, .commit-sha {\n border-color: #343434;\n }\n .commit-sha {\n background-color: #222;\n }\n /* gist.github.com: \"color: #444d56\" */\n .commit .commit-title, .commit .commit-title a {\n color: #afafaf;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .commit .commit-title.blank, .commit .commit-title.blank a {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"#0366d6\" */\n .commit-link, .commit .commit-title .issue-link {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#044289\" */\n .commit-ref .user {\n color: rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"#dbedff\" */\n a.commit-ref:hover {\n background-color: #182030;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .commit-desc + .commit-branches {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #24292e\" */\n .commit-author-section {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .commit-group-title, .commit-tease-sha {\n color: #afafaf;\n }\n /* gist.github.com: \"#c6cbd1\", \"#fff\" */\n .commit-group-title .octicon-git-commit {\n color: #5a5a5a;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\" */\n .commits-list-item .commit-title {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .commits-list-item .commit-author, .commits-list-item .commit-meta {\n color: #afafaf;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .commits-list-item + .commits-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#eaf5ff\", \"rgba(27,31,35,.15)\" */\n .full-commit {\n background-color: #182030;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"initial\", \"rgba(27,31,35,.15)\" */\n .full-commit .btn-outline, .full-commit .btn-outline:disabled {\n background-color: initial;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#005cc5\", \"#005cc5\" */\n .full-commit .btn-outline:not(:disabled):hover {\n color: #4f8cc9;\n border-color: #4f8cc9;\n }\n /* gist.github.com: \"color: #05264c\" */\n .full-commit p.commit-title {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #444d56\" */\n .full-commit .branches-list li {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .full-commit .branches-list li.loading,\n .full-commit .branches-list li.pull-request {\n color: #949494;\n }\n /* gist.github.com: \"#fff\", \"rgba(27,31,35,.15)\" */\n .full-commit .commit-meta {\n background-color: #181818;\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #444d56\" */\n .full-commit .sha-block, .full-commit .sha-block > .sha {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #444d56\", \"#c6cbd1\" */\n .full-commit .sha-block > a {\n color: #afafaf;\n border-bottom-color: #5a5a5a;\n }\n /* gist.github.com: \"#444d56\" */\n .full-commit .sha-block > a:hover {\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"color: #444d56\" */\n .branches-tag-list li:first-child {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .branches-tag-list li.loading {\n color: #949494;\n }\n /* gist.github.com: \"#d3e2f4\" */\n .branches-tag-list li .ellipsis-expander {\n background-color: #383838;\n }\n /* gist.github.com: \"#d6e2f1\" */\n .branches-tag-list li .ellipsis-expander:hover {\n background-color: #444;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .commit-branches {\n color: #949494;\n }\n /* gist.github.com: \"#cb2431\" */\n .commit-loader .loader-error {\n color: #d82828;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .dropdown-signed-commit .dropdown-menu::after {\n border-bottom-color: #202020;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .dropdown-signed-commit .dropdown-menu-w::after {\n border-left-color: #202020;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .signed-commit-header {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#28a745\" */\n .signed-commit-header .octicon-verified {\n color: #484;\n }\n /* gist.github.com: \"color: #959da5\" */\n .signed-commit-header .octicon-unverified {\n color: #767676;\n }\n /* gist.github.com: \"color: #586069\", \"none\", \"#e1e4e8\" */\n .signed-commit-badge {\n color: #afafaf;\n background: none;\n border-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .signed-commit-badge:hover {\n border-color: #5a5a5a;\n }\n /* gist.github.com: \"#22863a\" */\n .signed-commit-badge.verified {\n color: #6cc644;\n }\n /* gist.github.com: \"#28a745\" */\n .signed-commit-badge.verified:hover {\n border-color: #484;\n }\n /* gist.github.com: \"color: #24292e\" */\n .signed-commit-signer-name .signer {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eaecef\" */\n .table-of-contents li + li {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .table-of-contents .toc-diff-stats .octicon {\n color: #5a5a5a;\n }\n /* gist.github.com: \"#cb2431\" */\n .table-of-contents .octicon-diff-removed {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .table-of-contents .octicon-diff-renamed {\n color: #949494;\n }\n /* gist.github.com: \"#dbab09\" */\n .table-of-contents .octicon-diff-modified {\n color: #cb4;\n }\n /* gist.github.com: \"#28a745\" */\n .table-of-contents .octicon-diff-added {\n color: #484;\n }\n /* gist.github.com: \"color: #24292e\" */\n .toc-select .select-menu-item-heading, .toc-select .select-menu-item-text {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#cb2431\" */\n .toc-select .select-menu-item-icon.octicon-diff-removed {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .toc-select .select-menu-item-icon.octicon-diff-renamed {\n color: #949494;\n }\n /* gist.github.com: \"#dbab09\" */\n .toc-select .select-menu-item-icon.octicon-diff-modified {\n color: #cb4;\n }\n /* gist.github.com: \"#28a745\" */\n .toc-select .select-menu-item-icon.octicon-diff-added {\n color: #484;\n }\n /* gist.github.com: \"color: #fff !important\" */\n .toc-select .navigation-focus .diffstat,\n .toc-select .navigation-focus .octicon-diff-added,\n .toc-select .navigation-focus .octicon-diff-modified,\n .toc-select .navigation-focus .octicon-diff-removed,\n .toc-select .navigation-focus .octicon-diff-renamed,\n .toc-select .navigation-focus .select-menu-item-heading,\n .toc-select .navigation-focus .select-menu-item-text,\n .toc-select .navigation-focus .text-gray-light,\n .toc-select .navigation-focus .text-green,\n .toc-select .navigation-focus .text-red,\n .toc-select[aria-selected=true] .diffstat,\n .toc-select[aria-selected=true] .octicon-diff-added,\n .toc-select[aria-selected=true] .octicon-diff-modified,\n .toc-select[aria-selected=true] .octicon-diff-removed,\n .toc-select[aria-selected=true] .octicon-diff-renamed,\n .toc-select[aria-selected=true] .select-menu-item-heading,\n .toc-select[aria-selected=true] .select-menu-item-text,\n .toc-select[aria-selected=true] .text-gray-light,\n .toc-select[aria-selected=true] .text-green,\n .toc-select[aria-selected=true] .text-red,\n .toc-select [role^=menuitem]:focus .diffstat,\n .toc-select [role^=menuitem]:focus .octicon-diff-added,\n .toc-select [role^=menuitem]:focus .octicon-diff-modified,\n .toc-select [role^=menuitem]:focus .octicon-diff-removed,\n .toc-select [role^=menuitem]:focus .octicon-diff-renamed,\n .toc-select [role^=menuitem]:focus .select-menu-item-heading,\n .toc-select [role^=menuitem]:focus .select-menu-item-text,\n .toc-select [role^=menuitem]:focus .text-gray-light,\n .toc-select [role^=menuitem]:focus .text-green,\n .toc-select [role^=menuitem]:focus .text-red,\n .toc-select [role^=menuitem]:hover .diffstat,\n .toc-select [role^=menuitem]:hover .octicon-diff-added,\n .toc-select [role^=menuitem]:hover .octicon-diff-modified,\n .toc-select [role^=menuitem]:hover .octicon-diff-removed,\n .toc-select [role^=menuitem]:hover .octicon-diff-renamed,\n .toc-select [role^=menuitem]:hover .select-menu-item-heading,\n .toc-select [role^=menuitem]:hover .select-menu-item-text,\n .toc-select [role^=menuitem]:hover .text-gray-light,\n .toc-select [role^=menuitem]:hover .text-green,\n .toc-select [role^=menuitem]:hover .text-red {\n color: #fff !important;\n }\n /* gist.github.com: \"color: #6a737d\", \"#e1e4e8\" */\n .conversation-list-heading {\n color: #949494;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .conversation-list-heading .inner {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .copyable-terminal {\n background-color: #222;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .diff-table .line-comments {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .diff-table tr:not(:last-child) .line-comments {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .blob-num {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.6)\" */\n .blob-num:hover {\n color: rgba(230, 230, 230, .6);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .blob-num.non-expandable:hover {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"color: #24292e\" */\n .blob-code-inner {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#fffbdd\" */\n .blob-code-inner.highlighted, .blob-code-inner .highlighted {\n background-color: #261d08;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .blob-code-hunk, .blob-num-expandable, .blob-num-hunk {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"#f1f8ff\" */\n .blob-code-hunk, .blob-num-expandable, .blob-num-hunk {\n background-color: #182030;\n }\n /* gist.github.com: \"#fafbfc\" */\n .blob-expanded .blob-code, .blob-expanded .blob-num {\n background-color: #181818;\n }\n /* gist.github.com: \"#eaecef\" */\n .blob-expanded + tr:not(.blob-expanded) .blob-code,\n .blob-expanded + tr:not(.blob-expanded) .blob-num,\n .blob-expanded .blob-num-hunk,\n tr:not(.blob-expanded) + .blob-expanded .blob-code,\n tr:not(.blob-expanded) + .blob-expanded .blob-num {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .blob-num-expandable .diff-expander,\n .blob-num-expandable .directional-expander {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .blob-num-expandable .diff-expander:hover,\n .blob-num-expandable .directional-expander:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\" */\n .blob-code-addition .x {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#ffeef0\" */\n .blob-code-deletion {\n background-color: #300;\n }\n /* gist.github.com: \"color: #24292e\" */\n .blob-code-deletion .x {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#ffeef0\" */\n .blob-num-deletion {\n background-color: #300;\n }\n /* gist.github.com: \"rgba(255,223,93,.2)\" */\n .selected-line::after {\n background-color: rgba(132, 70, 0, .2);\n }\n /* gist.github.com: \"#ffd33d\" */\n .selected-line.selected-line-top::after {\n border-top-color: #cb4;\n }\n /* gist.github.com: \"#ffd33d\" */\n .selected-line.selected-line-bottom::after {\n border-bottom-color: #cb4;\n }\n /* gist.github.com: \"#ffd33d\" */\n .selected-line.selected-line-left::after, .selected-line:first-child::after {\n border-left-color: #cb4;\n }\n /* gist.github.com: \"#ffd33d\" */\n .selected-line.selected-line-right::after, .selected-line:last-child::after {\n border-right-color: #cb4;\n }\n /* gist.github.com: \"#0366d6\" */\n .is-commenting .selected-line.blob-code::before {\n background: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\", \"rgba(27,31,35,.15)\" */\n .add-line-comment {\n color: #fff;\n background-color: rgb(79, 140, 201);\n background-image: linear-gradient(#0372ef, rgb(79, 140, 201));\n box-shadow: 0 1px 4px #000;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .inline-comment-form {\n border-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .empty-cell + .line-comments, .line-comments + .line-comments {\n border-left-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .file-diff-split .blob-code + .blob-num {\n border-left-color: #202020;\n }\n /* gist.github.com: \"#fafbfc\", \"#eaecef\" */\n .file-diff-split .empty-cell {\n background-color: #181818;\n border-right-color: #343434;\n }\n /* gist.github.com: \"#cb2431\" */\n .submodule-diff-stats .octicon-diff-removed {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .submodule-diff-stats .octicon-diff-added {\n color: #484;\n }\n /* gist.github.com: \"linear-gradient(180deg,rgba(242,248,254,0),rgba(242,248,254,.47))\" */\n .code-navigation-banner {\n background: linear-gradient(180deg, #181818, #181818);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-timeline.team-discussion-timeline::before,\n .discussion-timeline::before {\n background-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .discussion-timeline.team-discussion-timeline .blankslate {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .discussion-sidebar-item {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .discussion-sidebar-item .muted-icon {\n color: #767676;\n }\n /* gist.github.com: \"#0366d6\" */\n .discussion-sidebar-item .muted-icon:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-sidebar-item + .discussion-sidebar-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .discussion-sidebar-heading {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .discussion-sidebar-toggle .octicon {\n color: #767676;\n }\n /* gist.github.com: \"#0366d6\" */\n .discussion-sidebar-toggle:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"none\" */\n button.discussion-sidebar-toggle {\n background: none;\n }\n /* gist.github.com: \"color: #586069\" */\n .sidebar-assignee .assignee {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .sidebar-assignee .assignee:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#cb2431\" */\n .thread-subscribe-form.is-error .thread-subscribe-button {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .participation a {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .participation a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\" */\n .gh-header, .gh-header .gh-header-sticky.is-stuck + .gh-header-shadow {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .gh-header-number {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\", \"#e1e4e8\" */\n .gh-header-meta {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .tabnav-pr {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .tabnav-pr .tabnav-tab {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\", \"#e1e4e8\" */\n .tabnav-pr .tabnav-tab.selected {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .timeline-comment-wrapper {\n border-top-color: #181818;\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .timeline-comment {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* gist.github.com: \"#c0d3eb\" */\n .timeline-comment.current-user {\n border-color: #246;\n }\n /* gist.github.com: \"#f1f8ff\", \"#c0d3eb\" */\n .timeline-comment.current-user .timeline-comment-header {\n background-color: #182030;\n border-bottom-color: #246;\n }\n /* gist.github.com: \"#c0d3eb\" */\n .timeline-comment.current-user .timeline-comment-label {\n border-color: #246;\n }\n /* gist.github.com: \"color: #c0d3eb\", \"#f1f8ff\", \"#c0d3eb\" */\n .timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav {\n color: #246;\n background-color: #182030;\n border-bottom-color: #246;\n }\n /* gist.github.com: \"#e5d999\" */\n .timeline-comment.is-internal, .timeline-comment.unread-item {\n border-color: #542;\n }\n /* gist.github.com: \"#fffdef\", \"#e5d999\" */\n .timeline-comment.is-internal .timeline-comment-header,\n .timeline-comment.unread-item .timeline-comment-header {\n background-color: #261d08;\n border-bottom-color: #542;\n }\n /* gist.github.com: \"#e5d999\" */\n .timeline-comment.is-internal .timeline-comment-label,\n .timeline-comment.unread-item .timeline-comment-label {\n border-color: #542;\n }\n /* gist.github.com: \"#e5d999\", \"#fffdef\", \"#e5d999\" */\n .timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav,\n .timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav {\n color: #542;\n background-color: #261d08;\n border-bottom-color: #542;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .timeline-comment .comment + .comment {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .timeline-comment--caret::after {\n border-right-color: #202020;\n }\n /* gist.github.com: \"#d1d5da\" */\n .timeline-comment--caret::before {\n border-right-color: #404040;\n }\n /* gist.github.com: \"#fffdef\" */\n .is-pending .timeline-comment--caret::after {\n border-right-color: #261d08;\n }\n /* gist.github.com: \"#f9c513\" */\n .is-pending .timeline-comment--caret::before {\n border-right-color: #cb4;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .timeline-comment--caret.current-user::after {\n border-right-color: #182030;\n }\n /* gist.github.com: \"#c0d3eb\" */\n .timeline-comment--caret.current-user::before {\n border-right-color: #246;\n }\n /* gist.github.com: \"#fffdef\" */\n .timeline-comment--caret.is-internal::after,\n .timeline-comment--caret.unread-item::after {\n border-right-color: #261d08;\n }\n /* gist.github.com: \"#e5d999\" */\n .timeline-comment--caret.is-internal::before,\n .timeline-comment--caret.unread-item::before {\n border-right-color: #542;\n }\n /* gist.github.com: \"filter: drop-shadow(-.28em 0 0 #c8e1ff)\", \"#2188ff\" */\n :target .timeline-comment--caret::before {\n filter: drop-shadow(-.28em 0 0 rgba(79, 140, 201, .3));\n border-right-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n :target .timeline-comment {\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .review-comment:target, :target .timeline-comment {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n .review-comment:target {\n border: 1px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\", \"#f6f8fa\", \"#d1d5da\" */\n .timeline-comment-header {\n color: #afafaf;\n background-color: #222;\n border-bottom-color: #404040;\n }\n /* gist.github.com: \"color: #586069\" */\n .timeline-comment-header .author {\n color: #afafaf;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .timeline-comment-label {\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#cb2431\", \"#d73a49\" */\n .timeline-comment-label-spammy {\n color: #d82828;\n border-color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .timeline-comment-header-text code a {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .timeline-comment-action {\n color: #949494;\n }\n /* gist.github.com: \"#0366d6\" */\n .timeline-comment-action:focus, .timeline-comment-action:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#d1d5da\" */\n .timeline-comment-action.disabled, .timeline-comment-action.disabled:hover {\n color: #404040;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .timeline-new-comment .previewable-comment-form .comment-body {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"#e1e4e8\", \"#fff\" */\n .discussion-item-icon {\n color: #cdcdcd;\n background-color: #343434;\n border-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .discussion-item-header {\n color: #afafaf;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .discussion-item-private {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"#f6f8fa\" */\n .previewable-comment-form .comment-form-head.tabnav {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\" */\n .page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting {\n background-color: #181818;\n }\n /* gist.github.com: \"transparent\" */\n @media (min-width:1012px) {\n .page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting {\n background-color: transparent;\n }\n }\n /* gist.github.com: \"#f6f8fa\" */\n @media (min-width:768px) {\n .page-responsive .previewable-comment-form .comment-form-head.tabnav {\n background-color: #222;\n }\n }\n /* gist.github.com: \"initial\", \"#e1e4e8\" */\n .previewable-comment-form .comment-body {\n background-color: initial;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .new-discussion-timeline .composer .timeline-comment::after {\n border-right-color: #181818;\n }\n /* gist.github.com: \"#fff\" */\n .new-discussion-timeline .composer .comment-form-head.tabnav {\n background-color: #181818;\n }\n /* gist.github.com: \"#d1d5da\", \"#fff\", \"#d1d5da\" */\n @media (min-width:768px) {\n .composer.composer-responsive .timeline-comment {\n border-color: #404040;\n }\n .composer.composer-responsive .timeline-comment::after {\n border-right-color: #181818;\n }\n .composer.composer-responsive .timeline-comment::before {\n border-right-color: #404040;\n }\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .discussion-timeline-actions {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .pagination-loader-container {\n background-color: #181818;\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n :target .timeline-comment-group .timeline-comment {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"#f9c513\" */\n .is-pending .comment-form-head.tabnav, .is-pending .file,\n .is-pending .file-header, .is-pending .tabnav-tab.selected {\n border-color: #cb4;\n }\n /* gist.github.com: \"#fffdef\" */\n .is-pending .comment-form-head.tabnav, .is-pending .file-header {\n background-color: #261d08;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-item-review-comment {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-item-icon-gray {\n background-color: #343434 !important;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .footer-octicon {\n color: #5a5a5a;\n }\n /* gist.github.com: \"color: #959da5\" */\n .footer-octicon:hover {\n color: #767676;\n }\n /* gist.github.com: \"none\", \"box-shadow: none\" */\n .kb-konami-dialog {\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\", \"#fff\" */\n .kb-konami-dialog .Box-btn-octicon {\n color: #fff;\n border-color: #181818;\n }\n /* gist.github.com: \"none\" */\n .konami {\n background: none;\n }\n /* gist.github.com: \"color: #fff\", \"rgba(27,31,35,.04)\" */\n .konami .key {\n color: #fff;\n box-shadow: 0 1px 0 #000;\n }\n /* gist.github.com: \"none\" */\n .konami-overlay {\n background: none;\n }\n /* gist.github.com: \"color: #fff\", \"none\", \"#fff\" */\n .konami .key.complete {\n color: #fff;\n background: none;\n border-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\" */\n .konami .key.active {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\" */\n .konami .key.down.active {\n color: #fff;\n }\n /* gist.github.com: \"color: #24292e\" */\n .konami .enter-link {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\", \"none\" */\n .konami .enter-link:hover {\n color: #fff;\n background: none;\n }\n /* gist.github.com: \"color: #24292e\" */\n .team-mention, .user-mention {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .pagehead {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .pagehead-actions > li {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#cb2431\" */\n .pagehead-actions .octicon-mute {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .pagehead-tabs-item {\n color: #afafaf;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .pagehead-tabs-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"color: #444d56\" */\n .pagehead-tabs-item .Counter {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .pagehead-tabs-item:hover {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n .pagehead-tabs-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #fb8532 #343434 transparent;\n }\n /* gist.github.com: \"color: #586069\" */\n .reponav-item {\n color: #afafaf;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .reponav-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"color: #444d56\" */\n .reponav-item .Counter {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .reponav-item:focus, .reponav-item:hover {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n .reponav-item.selected {\n color: #cdcdcd;\n border-color: #fb8532 #343434 transparent;\n }\n /* gist.github.com: \"#24292e\" */\n .reponav-item.selected, .reponav-wrapper {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff\", \"initial\" */\n .reponav-wrapper .reponav-item.selected {\n color: #fff;\n background-color: initial;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .steps {\n border-color: #343434;\n }\n /* gist.github.com: \"#c6cbd1\", \"#fafbfc\", \"#dfe2e5\" */\n .steps li {\n color: #5a5a5a;\n background-color: #181818;\n border-left-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\" */\n .steps li.current {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n .steps li.current .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .steps .complete {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .steps .complete .octicon {\n color: #484;\n }\n /* gist.github.com: \"#0366d6\" */\n .prose-diff .show-rich-diff {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#d1d5da\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable .octicon {\n color: #404040;\n }\n /* gist.github.com: \"color: #24292e\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#d1d5da\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child::before {\n color: #404040;\n }\n /* gist.github.com: \"color: #24292e\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover::before {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .prose-diff .markdown-body > ins {\n box-shadow: inset 4px 0 0 #373;\n }\n /* gist.github.com: \"#cb2431\" */\n .prose-diff .markdown-body > del {\n box-shadow: inset 4px 0 0 #d82828;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .prose-diff .rich-diff-level-zero.added {\n box-shadow: inset 4px 0 0 #373;\n }\n /* gist.github.com: \"#cb2431\" */\n .prose-diff .rich-diff-level-zero.removed {\n box-shadow: inset 4px 0 0 #d82828;\n }\n /* gist.github.com: \"#f9c513\" */\n .prose-diff .rich-diff-level-zero.changed {\n box-shadow: inset 4px 0 0 #cb4;\n }\n /* gist.github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff .changed .removed, .prose-diff .changed .removed > div,\n .prose-diff .changed .removed code, .prose-diff .changed del,\n .prose-diff .changed del > div, .prose-diff .changed del code {\n color: #d82828;\n background-color: #300;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .prose-diff .changed .added, .prose-diff .changed ins,\n .prose-diff .changed ins code {\n border-bottom-color: #373;\n }\n /* gist.github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff > .markdown-body li ul.removed {\n color: #d82828;\n background-color: #300;\n }\n /* gist.github.com: \"#d1d5da\" */\n .prose-diff > .markdown-body li.added.moved-down .octicon,\n .prose-diff > .markdown-body li.added.moved-up .octicon {\n color: #404040;\n }\n /* gist.github.com: \"#fffdef\" */\n .prose-diff > .markdown-body li.added.moved {\n background-color: #261d08;\n }\n /* gist.github.com: \"#fffdef\", \"#dfe2e5\" */\n .prose-diff > .markdown-body td.changed,\n .prose-diff > .markdown-body th.changed {\n background-color: #261d08;\n border-left-color: #343434;\n }\n /* gist.github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff > .markdown-body li:not(.moved).removed {\n color: #d82828;\n background-color: #300;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .protip code {\n background-color: #222;\n }\n /* gist.github.com: \"#dbedff\" */\n .add-reactions-options-item:active {\n background-color: #182030;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .comment-reactions.has-reactions {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .comment-reactions .user-has-reacted {\n background-color: #182030;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .reaction-summary-item {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .render-container {\n background-color: #343434;\n }\n /* gist.github.com: \"none\" */\n .render-container.is-render-ready.is-render-requested:not(.is-render-failed) {\n background: none;\n }\n /* gist.github.com: \"color: #444d56\", \"#f6f8fa\", \"rgba(27,31,35,.15)\" */\n .render-notice {\n color: #afafaf;\n background-color: #222;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#dfe2e5\" */\n .content-attachment {\n border-left-color: #343434;\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\",\"#fff\" */\n .max--md .content-attachment-content--gradient {\n background: linear-gradient(180deg, transparent, #181818 calc(100% - 28px));\n }\n /* gist.github.com: \"none\" */\n .content-attachment-details[open] .max--md .content-attachment-content--gradient {\n background: none;\n }\n /* gist.github.com: \"color: #586069\" */\n .marketing .pagehead p {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .marketing h2 .secure {\n color: #484;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .marketing-section {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .marketing-hero-octicon {\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .marketing-hero-octicon .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .hanging-icon-list .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .hanging-icon-list .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .hanging-icon-list .octicon-x {\n color: #d82828;\n }\n /* gist.github.com: \"color: #fff\", \"#3b41af\", \"#6570e2\",\"#3b41af\" */\n .btn-blurple {\n color: #fff;\n background-color: #6570e2;\n background-image: linear-gradient(-180deg, #4550c2, #6570e2 90%);\n }\n /* gist.github.com: \"rgba(27,31,35,.5)\" */\n .btn-blurple.hover, .btn-blurple:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* gist.github.com: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-blurple.selected, .btn-blurple:active, .btn-blurple[aria-selected=true],\n [open] > .btn-blurple {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* gist.github.com: \"none\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n .btn-blurple.disabled, .btn-blurple:disabled,\n .btn-blurple[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* gist.github.com: \"#fff\" */\n .btn-blurple .Counter {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff\" */\n .intgrs-dir-intro .directory-header-back,\n .intgrs-dir-intro .directory-tag-line {\n color: #fff;\n }\n /* gist.github.com: \"#0366d6\" */\n .intgrs-lstng-item-link:hover .intgrs-lstng-item-header {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #333\" */\n .intgrs-lstng-item-header {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #586069\" */\n .intgrs-lstng-item-description {\n color: #afafaf;\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\",\"#fff\" */\n .intgrs-lstng-item-description::after {\n background-image: linear-gradient(90deg, transparent, #181818 80%);\n }\n /* gist.github.com: \"color: #fff\" */\n .intgr-admin-link.draft-tag .octicon,\n .intgr-admin-link.draft-tag:hover .octicon {\n color: #fff;\n }\n /* gist.github.com: \"#0366d6\" */\n .intgr-admin-link:hover .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .intgr-admin-link .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .integrations-breadcrumb-link:hover,\n .intgr-feat-header .intgr-admin-link:hover .octicon, .intgr-feat-header h2 {\n color: #fff;\n }\n /* gist.github.com: \"initial\" */\n .integrations-install-target .flash,\n .integrations-install-target .flash-error {\n background-color: initial;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .integrations-install-target .octicon-lock {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"#fafbfc\" */\n .listgroup-item.disabled {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #333\" */\n .listgroup-item.disabled .listgroup-item-title {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #767676\" */\n .link-small {\n color: #767676;\n }\n /* gist.github.com: \"#0366d6\" */\n .listgroup-item:hover .link-small {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#d73a49\" */\n .manifest-errors {\n border-left-color: #d82828;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .not-found-octocat-wrapper::after {\n background-color: #181818;\n box-shadow: 0 4px 0 #181818, 0 8px 0 #181818, 0 12px 0 #181818, 0 16px 0 #181818, 0 20px 0 #181818;\n }\n /* gist.github.com: \"color: #333\" */\n .billing-plans .name {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #fff\", \"#28a745\" */\n .billing-plans .coupon td {\n color: #fff;\n background-color: #484;\n }\n /* gist.github.com: \"#28a745\" */\n .coupon-label::after {\n border-bottom-color: #484;\n }\n /* gist.github.com: \"#eee\" */\n .plan-notice {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #fff\" */\n .alert-label {\n color: #fff;\n }\n /* gist.github.com: \"#cb2431\" */\n .alert-label--high {\n background-color: #d82828;\n }\n /* gist.github.com: \"#cb2431\" */\n .graph-canvas .alert-label--high {\n fill: #d82828;\n }\n /* gist.github.com: \"#e36209\" */\n .alert-label--moderate {\n background-color: #fb8532;\n }\n /* gist.github.com: \"#e36209\" */\n .graph-canvas .alert-label--moderate {\n fill: #fb8532;\n }\n /* gist.github.com: \"#dbab09\" */\n .alert-label--low {\n background-color: #cb4;\n }\n /* gist.github.com: \"#dbab09\" */\n .graph-canvas .alert-label--low {\n fill: #cb4;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .advisory-form {\n background-color: #222;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .advisory-form .form-actions, .advisory-form .form-control,\n .advisory-form .previewable-comment-form {\n background-color: #181818;\n }\n /* gist.github.com: \"#f5f5f5\" */\n .credit-card {\n background-color: #222;\n }\n /* gist.github.com: \"color: #767676\", \"#fff\" */\n .credit-card.normal .signature {\n color: #767676;\n background-color: #181818;\n }\n /* gist.github.com: \"#d73a49\" */\n .credit-card .cvv {\n border-color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .credit-card .cvv span {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .billing-addon-items td.black {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#eee\" */\n .billing-addon-items tr {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\" */\n .billing-addon-items tr:nth-child(2n) {\n background-color: #181818;\n }\n /* gist.github.com: \"#cb2431\", \"#fff\" */\n .billing-addon-items tr.total-row {\n color: #d82828;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #666\" */\n .billing-addon-items .addon-cost,\n .billing-addon-items .discounted-original-price {\n color: #949494;\n }\n /* gist.github.com: \"#fff\" */\n .billing-credit-card .javascript-disabled-overlay {\n background-color: #181818;\n }\n /* gist.github.com: \"#eee\" */\n .billing-extra-box, .billing-vat-box {\n border-left-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .billing-section .section-label {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #333\" */\n .billing-section .section-content {\n color: #bebebe;\n }\n /* gist.github.com: \"#eee\" */\n .usage-bar {\n background-color: #242424;\n }\n /* gist.github.com: \"#d73a49\" */\n .usage-bar.exceeded .progress {\n background-color: #d82828 !important;\n }\n /* gist.github.com: \"#34d058\" */\n .usage-bar .progress {\n background-color: #373;\n }\n /* gist.github.com: \"#8a63d2\" */\n .usage-bar .progress--purple {\n background-color: #53387a;\n }\n /* gist.github.com: \"color: #586069\" */\n .lfs-data-icon {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #333\" */\n .lfs-data-icon.dark {\n color: #bebebe;\n }\n /* gist.github.com: \"#f9f9f9\" */\n .paypal-container {\n background-color: #181818;\n }\n /* gist.github.com: \"#ddd\" */\n .braintree-paypal-loggedin {\n border-color: #343434 !important;\n }\n /* gist.github.com: \"color: #586069\" */\n .payment-history .currency, .payment-history .status {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .payment-history .succeeded .status {\n color: #484;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .payment-history .failed, .payment-history .refunded {\n background-color: #222;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .payment-history .refunded .status {\n color: #949494;\n }\n /* gist.github.com: \"#cb2431\" */\n .payment-history .failed .status {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .discounted-original-price {\n color: #afafaf;\n }\n /* gist.github.com: \"#f9f9f9\", \"#eee\" */\n .billing-manager-banner {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .billing-manager-banner-text, .billing-manager-banner-title {\n color: #afafaf;\n }\n /* gist.github.com: \"#fafbfc\", \"#e0e0e0\" */\n .plan-choice {\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .plan-choice, .plan-choice.open, .plan-choice.selected {\n background-color: #181818;\n }\n /* gist.github.com: \"#d1d5da\", \"rgba(149,157,165,.2)\" */\n .plan-choice--experiment.open, .plan-choice--experiment.selected {\n border-color: #404040;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"#28a745\", \"rgba(27,31,35,.04)\" */\n .plan-choice--experiment.open .plan-choice-icon,\n .plan-choice--experiment.selected .plan-choice-icon {\n background-color: #484;\n box-shadow: 0 1px 0 #000;\n }\n /* gist.github.com: \"#34d058\" */\n .plan-choice--experiment.plan-choice--green.open,\n .plan-choice--experiment.plan-choice--green.selected {\n border-color: #373;\n }\n /* gist.github.com: \"#28a745\" */\n .plan-choice--experiment.plan-choice--green.open .plan-choice-icon,\n .plan-choice--experiment.plan-choice--green.selected .plan-choice-icon {\n background-color: #484;\n }\n /* gist.github.com: \"#8a63d2\" */\n .plan-choice--experiment.plan-choice--purple.open,\n .plan-choice--experiment.plan-choice--purple.selected {\n border-color: #53387a;\n }\n /* gist.github.com: \"#6f42c1\" */\n .plan-choice--experiment.plan-choice--purple.open .plan-choice-icon,\n .plan-choice--experiment.plan-choice--purple.selected .plan-choice-icon {\n background-color: #9378ba;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .plan-choice-exp {\n color: #949494;\n }\n /* gist.github.com: \"#e0e0e0\" */\n .billing-line-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .billing-box-accordion:hover .billing-box-accordion-state .octicon {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .billing-box-accordion-state .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\" */\n .billing-box-progressBars span:nth-child(2) {\n border-left-color: #181818;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .blame-commit-date[data-heat=\"10\"] {\n color: #949494;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .blame-commit-message .message.blank {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"#d1d5da\" */\n .reblame-link {\n color: #404040;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .blame-hunk:hover .reblame-link {\n color: #949494;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .blob-interaction-bar {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .blob-interaction-bar .octicon-search {\n color: #afafaf;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .TagsearchPopover-list .TagsearchPopover-list-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\" */\n .CopyBlock:active, .CopyBlock:focus, .CopyBlock:hover,\n .file-commit-form--full, .linejump .linejump-input {\n background-color: #181818;\n }\n /* gist.github.com: \"#fff\" */\n .commit-form::after {\n border-right-color: #181818;\n }\n /* gist.github.com: \"#ddd\" */\n .commit-form::before {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .merge-pr {\n border-top-color: #404040;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .merge-status-list {\n border-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\", \"#e1e4e8\" */\n .merge-status-item {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .status-meta {\n color: #afafaf;\n }\n /* gist.github.com: \"rgba(27,31,35,.05)\" */\n .status-meta-file-name {\n background-color: rgba(220, 220, 220, .1);\n }\n /* gist.github.com: \"color: #fff\" */\n .branch-action-icon {\n color: #fff;\n }\n /* gist.github.com: \"#fff\", \"#d1d5da\" */\n .branch-action-body {\n background-color: #181818;\n border-color: #404040;\n }\n /* gist.github.com: \"#fafbfc\", \"#e1e4e8\" */\n .branch-action-body .merge-branch-form, .branch-action-body .merge-message {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .branch-action-item + .branch-action-item,\n .branch-action-item + .mergeability-details {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .branch-action-state-clean .branch-action-icon {\n background-color: #373;\n }\n /* gist.github.com: \"#34d058\" */\n .branch-action-state-clean .branch-action-body {\n border-color: #373;\n }\n /* gist.github.com: \"#34d058\" */\n .branch-action-state-clean .branch-action-body::before {\n border-right-color: #373;\n }\n /* gist.github.com: \"#dbab09\" */\n .branch-action-state-unknown .branch-action-icon,\n .branch-action-state-unstable .branch-action-icon {\n background-color: #cb4;\n }\n /* gist.github.com: \"#6f42c1\" */\n .branch-action-state-merged .branch-action-icon {\n background-color: #9378ba;\n }\n /* gist.github.com: \"#6a737d\" */\n .branch-action-state-closed-dirty .branch-action-icon,\n .branch-action-state-dirty .branch-action-icon,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-icon {\n background-color: #444;\n }\n /* gist.github.com: \"#d1d5da\" */\n .branch-action-state-closed-dirty .branch-action-body,\n .branch-action-state-dirty .branch-action-body,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body {\n border-color: #404040;\n }\n /* gist.github.com: \"#d1d5da\" */\n .branch-action-state-closed-dirty .branch-action-body::before,\n .branch-action-state-dirty .branch-action-body::before,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::before {\n border-right-color: #404040;\n }\n /* gist.github.com: \"#d73a49\" */\n .branch-action-state-error .branch-action-icon,\n .is-merging .branch-action-state-error-if-merging .branch-action-icon {\n background-color: #d82828;\n }\n /* gist.github.com: \"#f97583\" */\n .branch-action-state-error .branch-action-body,\n .is-merging .branch-action-state-error-if-merging .branch-action-body {\n border-color: #f88;\n }\n /* gist.github.com: \"#f97583\" */\n .branch-action-state-error .branch-action-body::before,\n .is-merging .branch-action-state-error-if-merging .branch-action-body::before {\n border-right-color: #f88;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .merge-branch-form .commit-form::before {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#f97583\" */\n .merge-branch-form.danger .commit-form,\n .merge-branch-form.error .commit-form {\n border-color: #f88;\n }\n /* gist.github.com: \"#f97583\" */\n .merge-branch-form.danger .commit-form::before,\n .merge-branch-form.error .commit-form::before {\n border-right-color: #f88;\n }\n /* gist.github.com: \"color: #fff\", \"#2cbe4e\" */\n .completeness-indicator-success {\n color: #fff;\n background-color: #373;\n }\n /* gist.github.com: \"color: #fff\", \"#cb2431\" */\n .completeness-indicator-error {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #fff\", \"#6a737d\" */\n .completeness-indicator-problem {\n color: #fff;\n background-color: #444;\n }\n /* gist.github.com: \"#fffbdd\", \"rgba(27,31,35,.15)\" */\n .RecentBranches {\n background-color: #261d08;\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#735c0f\" */\n .RecentBranches-item {\n color: #bba257;\n }\n /* gist.github.com: \"rgba(27,31,35,.05)\" */\n .RecentBranches-item + .RecentBranches-item {\n border-top-color: rgba(220, 220, 220, .05);\n }\n /* gist.github.com: \"#735c0f\" */\n .RecentBranches-item-link {\n color: #bba257;\n }\n /* gist.github.com: \"#fafbfc\", \"#e1e4e8\" */\n .range-editor {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .range-editor-icon {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\", \"#dfe2e5\" */\n ul.comparison-list {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n ul.comparison-list > li {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n ul.comparison-list > li em {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n ul.comparison-list > li .octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #6a737d\", \"#fafbfc\" */\n ul.comparison-list > li.title {\n color: #949494;\n background-color: #181818;\n }\n /* gist.github.com: \"#959da5\" */\n .branch-a-b-count .count-half:last-child {\n border-left-color: #484848;\n }\n /* gist.github.com: \"#c6cbd1\" */\n .branch-a-b-count .meter {\n background-color: #5a5a5a;\n }\n /* gist.github.com: \"initial\" */\n .branch-a-b-count .meter.zero {\n background-color: initial;\n }\n /* gist.github.com: \"#eaecef\" */\n .branch-a-b-count .bar-ahead.even, .branch-a-b-count .bar-behind.even {\n background-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .admin-options-block .policy-enforcement {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .admin-options-block .disabled, .admin-options-block .disabled .note,\n .deprovisioning-checkbox.checkbox-disabled {\n color: #949494;\n }\n /* gist.github.com: \"#0366d6\" */\n .checks-list-item.selected .checks-list-item-name {\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #fff !important\" */\n .checks-list-item.selected .selected-color-white {\n color: #fff !important;\n }\n /* gist.github.com: \"#d73a49\" */\n .check-annotation-failure::after {\n background-color: #d82828;\n }\n /* gist.github.com: \"#d73a49\" */\n .check-annotation-failure .annotation-title {\n color: #d82828;\n }\n /* gist.github.com: \"#ffd33d\" */\n .check-annotation-warning::after {\n background-color: #cb4;\n }\n /* gist.github.com: \"#b08800\" */\n .check-annotation-warning .annotation-title,\n .check-annotation-warning .octicon-alert {\n color: #cb4;\n }\n /* gist.github.com: \"color: #959da5\" */\n .neutral-check {\n color: #767676;\n }\n /* gist.github.com: \"#24292e\" */\n .CheckRun {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #959da5\" */\n .CheckStep-header {\n color: #767676;\n }\n /* gist.github.com: \"color: #fff\", \"#24292e\", \"none\" */\n .CheckRun-search .btn {\n color: #fff;\n background-color: #181818;\n background-image: none;\n }\n /* gist.github.com: \"#2f363d\" */\n .CheckRun-search .btn:hover {\n background-color: #282828;\n }\n /* gist.github.com: \"color: #586069\", \"none\" */\n .CheckRun-search .btn[disabled] {\n color: #afafaf;\n background-image: none;\n }\n /* gist.github.com: \"#24292e\" */\n .CheckRun-search .btn[disabled]:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"#eaecef\", \"#444d56\" */\n .CheckRun-header {\n border-top-color: #343434;\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"color: #959da5\" */\n .CheckRun-header-timestamp {\n color: #767676;\n }\n /* gist.github.com: \"color: #24292e\", \"#fafbfc\" */\n .CheckRun-search-input:focus {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"color: #959da5\" */\n .CheckStep-line .CheckStep-line-number,\n .CheckStep-line .CheckStep-line-timestamp {\n color: #767676;\n }\n /* gist.github.com: \"#2f363d\" */\n .CheckStep-line:hover {\n background-color: #282828;\n }\n /* gist.github.com: \"#586069\" */\n .CheckStep-line.selected {\n background-color: #343434;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .CheckStep-line .dt-fm {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"color: #fff !important\", \"#2188ff\", \"#79b8ff\" */\n .CheckStep-line .dt-fm.select {\n color: #fff !important;\n background: rgb(79, 140, 201);\n outline: 1px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"#79b8ff\" */\n .CheckStep .log-line-command {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#f97583\" */\n .CheckStep .log-line-error {\n color: #f88;\n }\n /* gist.github.com: \"color: #959da5\" */\n .CheckStep .log-line-info, .CheckStep .log-line-verbose {\n color: #767676;\n }\n /* gist.github.com: \"color: #24292e\" */\n .CheckStep .ansifg-b {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#f97583\" */\n .CheckStep .ansifg-r {\n color: #f88;\n }\n /* gist.github.com: \"#ffea7f\" */\n .CheckStep .ansifg-y {\n color: #542;\n }\n /* gist.github.com: \"#79b8ff\" */\n .CheckStep .ansifg-bl {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .CheckStep .ansifg-w {\n color: #343434;\n }\n /* gist.github.com: \"color: #959da5\" */\n .CheckStep .ansifg-gr {\n color: #767676;\n }\n /* gist.github.com: \"#24292e\" */\n .CheckStep .ansibg-b {\n background-color: #181818;\n }\n /* gist.github.com: \"#f97583\" */\n .CheckStep .ansibg-r {\n background-color: #f88;\n }\n /* gist.github.com: \"#ffea7f\" */\n .CheckStep .ansibg-y {\n background-color: #542;\n }\n /* gist.github.com: \"#24292e\" */\n .CheckStep .ansibg-bl {\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .CheckStep .ansibg-w {\n background-color: #343434;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .code-frequency .addition {\n fill: #373;\n }\n /* gist.github.com: \"#cb2431\" */\n .code-frequency .deletion {\n fill: #d82828;\n }\n /* gist.github.com: \"#22863a\" */\n .cadd {\n color: #6cc644;\n }\n /* gist.github.com: \"#cb2431\" */\n .cdel {\n color: #d82828;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .code-list .file-box {\n border-color: #343434;\n }\n /* gist.github.com: \"#eee\" */\n .code-list .code-list-item + .code-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .code-list .blob-num a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .code-list .full-path .octicon-repo {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .code-list .full-path a {\n color: #949494;\n }\n /* gist.github.com: \"#fffdef\" */\n .code-list-item-private .blob-num {\n background-color: #261d08;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .code-list-item-private .blob-num a {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\", \"#fffdef\" */\n .code-list-item-private .divider .blob-code,\n .code-list-item-private .divider .blob-num {\n color: rgba(230, 230, 230, .7);\n background-color: #261d08;\n }\n /* gist.github.com: \"#ffd33d\" */\n .code-scanning-alert-warning-message {\n border-color: #cb4 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .codesearch-results .repo-list-item + .repo-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"none\", \"box-shadow: none\" */\n .search-form-fluid .search-page-input {\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .search-form-fluid .search-page-input:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #586069\", \"#fff\", \"#e1e4e8\" */\n @media (max-width:544px) {\n .codesearch-pagination-container .current {\n color: #afafaf;\n background-color: #181818;\n border-color: #343434;\n }\n }\n /* gist.github.com: \"#f9c513\" */\n rect.max {\n fill: #cb4;\n }\n /* gist.github.com: \"#28a745\" */\n g.bar {\n fill: #484;\n }\n /* gist.github.com: \"#fb8532\" */\n g.mini {\n fill: #fb8532;\n }\n /* gist.github.com: \"color: #24292e\", \"#ffd33d\" */\n .CommunityTemplate-highlight {\n color: #cdcdcd;\n background-color: #cb4;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .CommunityTemplate-highlight--focus {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#ffd33d\",\"#28a745\", \"initial\" */\n .community-checklist .progress-bar {\n background: linear-gradient(90deg, #cb4, #c5e300, #484);\n background-color: initial;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .community-checklist .progress {\n background-color: #222;\n }\n /* gist.github.com: \"#dbab09\" */\n .community-checklist .checklist-dot {\n color: #cb4;\n }\n /* gist.github.com: \"#cb2431\" */\n span.no-nl-marker {\n color: #d82828;\n }\n /* gist.github.com: \"#fff\" */\n .select-menu-item {\n background-color: #181818;\n }\n /* gist.github.com: \"rgba(27,31,35,.04)\" */\n .contrib-legend .legend li {\n box-shadow: inset 0 0 0 1px #000;\n }\n /* gist.github.com: \"color: #586069\" */\n li.contribution .num {\n color: #afafaf;\n }\n /* gist.github.com: \"fill: #959da5\" */\n .activity-overview-percentage {\n fill: #757575;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .tint-box {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\" */\n .tint-box.transparent {\n background-color: #181818;\n }\n /* gist.github.com: \"#fb8532\" */\n .contrib-person path {\n fill: #fb8532;\n }\n /* gist.github.com: \"fill: #959da5\" */\n .contrib-person .midlabel {\n fill: #757575;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .coupons .coupon-form-body {\n background-color: #181818;\n box-shadow: 0 1px 3px rgba(0, 0, 0, .075), inset 1px 0 #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n .coupon-icon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#dbab09\" */\n .repo-private-icon {\n fill: #cb4;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .dashboard-rollup-items > .dashboard-rollup-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\", \"#d1d5da\" */\n .dashboard-notice {\n background-color: #181818;\n border-color: #404040;\n }\n /* gist.github.com: \"color: #959da5\" */\n .dashboard-notice .dismiss {\n color: #767676;\n }\n /* gist.github.com: \"color: #586069\" */\n .dashboard-notice .dismiss:hover {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .dashboard-notice .octicon-organization {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\" */\n .dashboard-notice h2 {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#fff\" */\n .dashboard-notice .coupon {\n background-color: #181818;\n }\n /* gist.github.com: \"#fff\", \"box-shadow: none\" */\n .dashboards-overview-cards .blankslate {\n background-color: #181818;\n box-shadow: none;\n }\n /* gist.github.com: \"#cb2431\" */\n .dashboards-overview-cards .octicon-arrow-down {\n color: #d82828;\n }\n /* gist.github.com: \"#0366d6\" */\n .dashboards-overview-cards .summary-stats .metric-1 {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #666\" */\n .developer-thanks .hook {\n color: #949494;\n }\n /* gist.github.com: \"#28a745\" */\n .developer-next-steps .octicon {\n color: #484;\n }\n /* gist.github.com: \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer,\n .timeline-comment.current-user.timeline-chosen-answer .timeline-comment-label,\n .timeline-comment.timeline-chosen-answer,\n .timeline-comment.timeline-chosen-answer .timeline-comment-label {\n border-color: #040;\n }\n /* gist.github.com: \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer::before,\n .timeline-comment.timeline-chosen-answer::before {\n border-right-color: #040;\n }\n /* gist.github.com: \"#f0fff4\", \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer .timeline-comment-header,\n .timeline-comment.timeline-chosen-answer .timeline-comment-header {\n background-color: #002800;\n border-bottom-color: #040;\n }\n /* gist.github.com: \"box-shadow: none\" */\n :target .discussion-nested-comment-group .timeline-comment {\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .discussion-nested-comment-timeline-item:target {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"box-shadow: none\" */\n :target .nested-discussion-timeline-comment {\n box-shadow: none;\n }\n /* gist.github.com: \"#d2dff0\" */\n .discussion-comment .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* gist.github.com: \"#22863a\" */\n .icon-discussion-answered {\n color: #6cc644;\n }\n /* gist.github.com: \"#22863a\" */\n .icon-discussion-answered, .icon-discussion-answered path {\n fill: #6cc644;\n }\n /* gist.github.com: \"color: #fff\" */\n .icon-discussion-white {\n color: #fff;\n }\n /* gist.github.com: \"color: #24292e\" */\n .icon-discussion-gray {\n color: #cdcdcd;\n }\n /* gist.github.com: \"fill: #24292e\" */\n .icon-discussion-gray, .icon-discussion-gray path {\n fill: #bebebe;\n }\n /* gist.github.com: \"#6a737d\" */\n .discussions-activity-indicator {\n background-color: #444;\n }\n /* gist.github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .discussion-spotlight-gradient[aria-selected=true] {\n box-shadow: 0 0 0 2px rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"#cb2431\" */\n .donut-chart > .action_required, .donut-chart > .cancelled,\n .donut-chart > .error, .donut-chart > .failure, .donut-chart > .timed_out {\n fill: #d82828;\n }\n /* gist.github.com: \"#dbab09\" */\n .donut-chart > .expected, .donut-chart > .in_progress,\n .donut-chart > .pending, .donut-chart > .queued {\n fill: #cb4;\n }\n /* gist.github.com: \"#2cbe4e\" */\n .donut-chart > .success {\n fill: #373;\n }\n /* gist.github.com: \"fill: #959da5\" */\n .donut-chart > .neutral, .donut-chart > .skipped, .donut-chart > .stale {\n fill: #757575;\n }\n /* gist.github.com: \"color: #24292e\", \"#e36209\" */\n .emoji-tab[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* gist.github.com: \"#0366d6\" */\n .selected-emoji {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"initial\" */\n .emoji-picker-tab .btn-outline:not(:hover) {\n background-color: initial;\n }\n /* gist.github.com: \"color: #586069\" */\n .ghe-license-status p {\n color: #afafaf;\n }\n /* gist.github.com: \"rgba(149,157,165,.15)\" */\n @media (min-width:768px) {\n .checkable-input-container.checked {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n }\n /* gist.github.com: \"#f1f8ff\" */\n @media (min-width:768px) {\n .checkable-input-container.checked .form-checkbox--box {\n background-color: #182030;\n }\n }\n /* gist.github.com: \"#eee\" */\n .newsletter-frequency-choice {\n border-color: #343434;\n }\n /* gist.github.com: \"#28a745\" */\n .newsletter-frequency-choice .notice {\n color: #484;\n }\n /* gist.github.com: \"#fafbfc\", \"#eee\" */\n .newsletter-frequency-choice h3 {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .newsletter-frequency-choice:hover, .newsletter-frequency-choice:hover h3 {\n border-color: rgb(79, 140, 201);\n }\n .newsletter-frequency-choice:hover h3 {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#28a745\", \"rgba(0,0,0,.2)\" */\n .newsletter-frequency-choice.selected {\n border-color: #484;\n box-shadow: 0 0 5px rgba(255, 255, 255, .7);\n }\n /* gist.github.com: \"color: #fff\", \"#28a745\", \"#28a745\" */\n .newsletter-frequency-choice.selected h3 {\n color: #fff;\n background-color: #484;\n border-color: #484;\n }\n /* gist.github.com: \"color: #555\", \"rgba(0,0,0,.125)\" */\n .exploregrid-item {\n color: #afafaf;\n border-bottom-color: rgba(220, 220, 220, .125);\n }\n /* gist.github.com: \"#0366d6\" */\n .exploregrid-item:hover .exploregrid-item-title {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#f5f5f5\" */\n .exploregrid-item-header {\n background-color: #222;\n }\n /* gist.github.com: \"color: #24292e\" */\n .exploregrid-item-title {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#ddd\" */\n .file {\n border-color: #343434;\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .file:target {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"color: #586069\" */\n .file .data.empty {\n color: #afafaf;\n }\n /* gist.github.com: \"#ddd\" */\n .file .image {\n background-color: #383838;\n }\n /* gist.github.com: \"#fff\" */\n .file .image .border-wrap {\n background-color: #181818;\n }\n /* gist.github.com: \"#eee\", \"#fff\" */\n .file .image canvas, .file .image img {\n background-color: #242424;\n border-color: #181818;\n }\n /* gist.github.com: \"#eee\" */\n .file .image .view canvas, .file .image .view img {\n background-color: #242424;\n }\n /* gist.github.com: \"none\" */\n .file .empty {\n background: none;\n }\n /* gist.github.com: \"#fafbfc\", \"#e1e4e8\" */\n .file-header {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#ddd\" */\n .file-info-divider {\n background-color: #383838;\n }\n /* gist.github.com: \"#28a745\" */\n .graphs .area {\n fill: #484;\n }\n /* gist.github.com: \"#28a745\" */\n .graphs .path {\n stroke: #484;\n }\n /* gist.github.com: \"#28a745\" */\n .graphs .dot {\n fill: #484;\n }\n /* gist.github.com: \"#0366d6\" */\n .graphs .dot.padded circle:hover {\n fill: rgb(79, 140, 201);\n }\n /* gist.github.com: \"fill: #24292e\" */\n .graphs .d3-tip {\n fill: #bebebe;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .graphs .dir {\n color: #949494;\n }\n /* gist.github.com: \"fill: #24292e\", \"stroke: #24292e\" */\n .graphs .selection .selection {\n fill: #bebebe;\n stroke: #d2d2d2;\n }\n /* gist.github.com: \"color: #586069\" */\n .graph-filter .info {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #2f363d\" */\n .graph-canvas .activity {\n color: #bebebe;\n }\n /* gist.github.com: \"#0366d6\" */\n .graph-canvas .axis .zero line {\n stroke: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #959da5\", \"rgba(0,0,0,.8)\" */\n .svg-tip {\n color: #767676;\n background-color: #242424;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .svg-tip strong {\n color: #343434;\n }\n /* gist.github.com: \"rgba(0,0,0,.8)\" */\n .svg-tip::after {\n border-top-color: #242424;\n }\n /* gist.github.com: \"#28a745\" */\n .svg-tip.comparison .metric-0 {\n border-top-color: #484;\n }\n /* gist.github.com: \"#2188ff\" */\n .svg-tip.comparison .metric-1 {\n border-top: 6px solid rgb(79, 140, 201);\n }\n /* gist.github.com: \"#f1f8ff\" */\n .topic-tag {\n background-color: #182030;\n }\n /* gist.github.com: \"#fff\", \"#c8e1ff\" */\n .topic-tag-outline {\n background-color: #181818;\n box-shadow: inset 0 0 0 1px rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\", \"#f1f8ff\" */\n .delete-topic-button, .delete-topic-link {\n color: #949494;\n background-color: #182030;\n }\n /* gist.github.com: \"#86181d\", \"#ffeef0\", \"#f97583\" */\n .invalid-topic .delete-topic-button {\n color: #d82828;\n background-color: #300;\n border-left-color: #f88;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .topic-tag-action {\n background-color: #182030;\n }\n /* gist.github.com: \"#86181d\", \"#ffeef0\", \"#f97583\" */\n .topic-tag-action.invalid-topic {\n color: #d82828;\n background-color: #300;\n border-color: #f88;\n }\n /* gist.github.com: \"color: #6a737d\", \"#f1f8ff\" */\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button {\n color: #949494;\n background-color: #182030;\n }\n /* gist.github.com: \"color: #fff\" */\n .topic-tag-action .add-topic-button:hover,\n .topic-tag-action .remove-topic-button:hover {\n color: #fff;\n }\n /* gist.github.com: \"#28a745\" */\n .topic-tag-action .add-topic-button:hover {\n background-color: #484;\n }\n /* gist.github.com: \"#d73a49\" */\n .topic-tag-action .remove-topic-button:hover {\n background-color: #d82828;\n }\n /* gist.github.com: \"none\" */\n .topic-input-container .tag-input .tag-input-inner {\n background-image: none;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .topic-list .topic-list-item + .topic-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#ffd33d\" */\n .topic-box .starred {\n color: #cb4;\n }\n /* gist.github.com: \"#d1d5da\" */\n .topic-box .unstarred {\n color: #404040;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .team-breadcrumb .team-breadcrumb-item::after {\n color: #343434;\n }\n /* gist.github.com: \"#fafbfc\" */\n .discussion-post .timeline-inline-comments {\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-post .reply-comment:first-child {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\" */\n .discussion-post .reply-comment .review-comment.is-comment-editing {\n background-color: #181818;\n }\n /* gist.github.com: \"#d2dff0\" */\n .discussion-post .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .discussion-post .reply-comments-holder::before {\n background-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\", \"box-shadow: none\" */\n .team-discussion-new-post .review-thread-reply-button:disabled {\n background-color: #222;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #a3aab1\" */\n .team-project-suggestion-number {\n color: #767676;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .hook-item .description {\n color: #949494;\n }\n /* gist.github.com: \"#28a745\" */\n .hook-item.success .icon-for-success {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .hook-item.failure .icon-for-failure {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .hook-item.inactive .icon-for-inactive, .hook-item.pending .icon-for-pending {\n color: #949494;\n }\n /* gist.github.com: \"#28a745\" */\n .hook-item.enabled .icon-for-enabled {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .hook-item .hook-error-message {\n color: #d82828;\n }\n /* gist.github.com: \"initial\" */\n .hook-deliveries-list .hook-delivery-item:hover {\n background-color: initial;\n }\n /* gist.github.com: \"#28a745\" */\n .hook-deliveries-list .item-status.success {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .hook-deliveries-list .item-status.failure {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .hook-deliveries-list .item-status.pending, .hook-delivery-time {\n color: #949494;\n }\n /* gist.github.com: \"#959da5\" */\n .hook-delivery-container h4.remote-call-header {\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"color: #fff\", \"#d73a49\" */\n .hook-delivery-response-status {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .hook-delivery-response-status[data-response-status^=\"2\"] {\n background-color: #484;\n }\n /* gist.github.com: \"color: #586069\" */\n .integration-meta-head {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\", \"hsla(0,0%,100%,.5)\" */\n .integrations-select-repos::-webkit-scrollbar-thumb {\n border-color: #181818;\n box-shadow: 0 0 1px hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"transparent\" */\n .integrations-select-repos::-webkit-scrollbar-track-piece {\n background-color: transparent;\n }\n /* gist.github.com: \"#cb2431\" */\n .issue-list .title .closed.octicon {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .issue-list .title .open.octicon {\n color: #484;\n }\n /* gist.github.com: \"#6f42c1\" */\n .issue-list .title .merged.octicon {\n color: #9378ba;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .issue-list-item + .issue-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .pinned-issue-item.is-dragging, .pinned-issue-item.sortable-ghost {\n background-color: #182030;\n }\n /* gist.github.com: \"color: #586069\" */\n .issues-reset-query {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .issues-reset-query:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#0366d6\" */\n .issues-reset-query:hover .issues-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"#6a737d\" */\n .issues-reset-query-icon {\n color: #fff;\n background-color: #444;\n }\n /* gist.github.com: \"color: #586069\" */\n .table-list-milestones .stat, .table-list-milestones .stat-label {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #333\" */\n .milestone-title-link a {\n color: #bebebe;\n }\n /* gist.github.com: \"#0366d6\" */\n .milestone-description .expand-more, .milestone-title-link a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .task-progress {\n color: #afafaf;\n }\n /* gist.github.com: \"#eee\" */\n .task-progress .progress-bar {\n background-color: #242424;\n }\n /* gist.github.com: \"#ccc\" */\n .task-progress .progress-bar .progress {\n background-color: #484848;\n }\n /* gist.github.com: \"#0366d6\" */\n a.task-progress:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#0366d6\" */\n a.task-progress:hover .progress-bar .progress {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .label-select-menu .selected .octicon-circle-slash,\n .label-select-menu [aria-checked=mixed] .octicon-circle-slash,\n .label-select-menu [aria-checked=true] .octicon-circle-slash {\n color: #949494;\n }\n /* gist.github.com: \"initial\" */\n .label-select-menu .selected:active,\n .label-select-menu [aria-checked=mixed]:active,\n .label-select-menu [aria-checked=true]:active {\n background-color: initial !important;\n }\n /* gist.github.com: \"#f4f4f4\" */\n .label-select-menu .select-menu-item.navigation-focus,\n .label-select-menu .select-menu-item:focus,\n .label-select-menu .select-menu-item:hover,\n .label-select-menu .select-menu-item[aria-selected=true] {\n background-color: #242424;\n }\n /* gist.github.com: \"#eee\" */\n .subnav .btn + .issues-search {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .reaction-sort-item:focus, .reaction-sort-item:hover {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#f1f8ff\", \"#0366d6\" */\n .reaction-sort-item[aria-checked=true] {\n background-color: #182030;\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#959da5\" */\n .issue-keyword {\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"color: #24292e\" */\n .select-menu-item.navigation-focus > .octicon.label-options-icon,\n .select-menu-item[aria-selected=true] > .octicon.label-options-icon {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#cb2431\" */\n .new-label-color-input:invalid {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li > a,\n .repository-lang-stats ol.repository-lang-stats-numbers li > span {\n color: #949494;\n }\n /* gist.github.com: \"color: #24292e\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li .lang {\n color: #cdcdcd;\n }\n /* gist.github.com: \"transparent\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li a:hover {\n background-color: transparent;\n }\n /* gist.github.com: \"#ddd\" */\n .repository-lang-stats-graph {\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .repository-lang-stats-graph .language-color:not(:first-child) {\n border-left-color: #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n .map-background {\n fill: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#e36209\" */\n .map-point:hover {\n fill: #fb8532;\n }\n /* gist.github.com: \"#2f363d\" */\n .MarketplaceJumbotron {\n background-color: #282828;\n }\n /* gist.github.com: \"rgba(0,0,0,.2)\" */\n .MarketplaceFeature-link:hover .CircleBadge--feature {\n box-shadow: 0 3px 8px 0 rgba(255, 255, 255, .7);\n }\n /* gist.github.com: \"#f6f8fa\" */\n .MarketplaceSideNav {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n @media (min-width:768px) {\n .MarketplaceSideNav {\n background-color: #181818;\n border-right-color: #343434;\n }\n }\n /* gist.github.com: \"#e1e4e8\" */\n .ScreenshotCarousel {\n border-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .ScreenshotCarousel-nav {\n box-shadow: inset 0 1px 0 #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .ScreenshotCarousel-navitem {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .ScreenshotCarousel-navitem.selected {\n background-color: #222;\n }\n /* gist.github.com: \"#d73a49\" */\n .marketplace-plan-dollar-field-container.is-errored .form-control {\n border-color: #d82828;\n }\n /* gist.github.com: \"color: #24292e\" */\n .marketplace-plan-emphasis {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #fff\" */\n .selected .marketplace-plan-emphasis {\n color: #fff;\n }\n /* gist.github.com: \"#d1d5da\" */\n .marketplace-product-callout {\n border-color: #404040 !important;\n }\n /* gist.github.com: \"color: #586069\", \"#e1e4e8\" */\n .marketplace-product-callout .branch-action-item-icon {\n color: #afafaf;\n background-color: #343434;\n }\n /* gist.github.com: \"color: #fff\", \"#fff\" */\n .filter-item.selected .Label--outline-white {\n color: #fff;\n border-color: #181818;\n }\n /* gist.github.com: \"#fff\" */\n .MarketplaceEdit-body .menu-item, .MarketplaceEdit-body .menu-item.selected {\n background-color: #181818;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .MarketplaceEdit-body .menu-item:hover {\n background-color: #222;\n }\n /* gist.github.com: \"color: #586069\", \"#e6ebf1\" */\n .MarketplaceEdit-body .CircleIcon {\n color: #afafaf;\n background-color: #444;\n }\n /* gist.github.com: \"#fff\" */\n .BarChart-bar {\n border-right-color: #181818;\n }\n /* gist.github.com: \"#34d058\" */\n .BarChart-bar--green {\n background-color: #373;\n }\n /* gist.github.com: \"#fb8532\" */\n .BarChart-bar--orange {\n background-color: #fb8532;\n }\n /* gist.github.com: \"#f9c513\" */\n .BarChart-bar--yellow {\n background-color: #cb4;\n }\n /* gist.github.com: \"#fff\" */\n .CircleBadge--github::after {\n background-color: #181818;\n }\n /* gist.github.com: \"#28a745\", \"rgba(52,208,88,.4)\" */\n .ClipboardButton.ClipboardButton--success {\n border-color: #484;\n box-shadow: 0 0 0 .2em #3737;\n }\n /* gist.github.com: \"rgba(52,208,88,.4)\" */\n .ClipboardButton.ClipboardButton--success:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* gist.github.com: \"#fafbfc\" */\n .MarketplaceBackground-buffer {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #fff !important\" */\n .muted-link.filter-item.selected {\n color: #fff !important;\n }\n /* gist.github.com: \"color: #fff\", \"#257bf9\" */\n .MarketplaceAnnouncement {\n color: #fff;\n background: linear-gradient(90deg, #4f8cc9, #2426ca);\n }\n /* gist.github.com: \"color: #fff\", \"hsla(0,0%,100%,0)\" */\n .MarketplaceAnnouncement .btn-outline-mktg {\n color: #fff;\n background-color: transparent;\n }\n /* gist.github.com: \"#c8e1ff\", \"#fff\" */\n .MarketplaceAnnouncement .btn-outline-mktg:hover {\n color: rgb(79, 140, 201);\n border-color: #181818;\n }\n /* gist.github.com: \"#c8e1ff\" */\n .topic-tag-contrast {\n background-color: #246;\n }\n /* gist.github.com: \"color: #24292e\", \"#c8e1ff\", \"rgba(27,31,35,.15)\" */\n .topic-tag-contrast .delete-topic-link {\n color: #cdcdcd;\n background-color: #246;\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#79b8ff\" */\n .topic-tag-contrast .delete-topic-link:hover {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\" */\n .merge-branch-heading {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .merge-branch-description {\n color: #afafaf;\n }\n /* gist.github.com: \"initial\", \"#ddd\" */\n .merge-branch-manually {\n background-color: initial;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#a04100\" */\n .unavailable-merge-method {\n color: #f3582c;\n }\n /* gist.github.com: \"color: #fff\" */\n .navigation-focus.disabled .unavailable-merge-method,\n [aria-selected=true].disabled .unavailable-merge-method {\n color: #fff;\n }\n /* gist.github.com: \"#fff5b1\" */\n .network .current-repository {\n background-color: #651;\n }\n /* gist.github.com: \"color: #959da5\" */\n .page-new-repo .octicon-repo {\n color: #767676;\n }\n /* gist.github.com: \"rgba(115,92,15,.5)\" */\n .page-new-repo .color-private-icon {\n color: rgba(204, 187, 68, .5);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .page-new-repo .form-checkbox.disabled {\n color: #949494;\n }\n /* gist.github.com: \"#fff\" */\n .page-new-repo .internal-repo-avatar {\n border-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .news blockquote, .owner-reponame .slash {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .news .alert .octicon, .news .alert .time, .news .alert .title .subtle {\n color: #767676;\n }\n /* gist.github.com: \"#fff\" */\n .news .alert .gravatar {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .news .alert .simple .title, .news .github-welcome .done {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\" */\n .news .commits li img {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .news div.message, .news li blockquote {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .notifications .notifications-more > a {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .notifications .read .list-group-item-name > a,\n .notifications .read .notification-actions {\n color: #afafaf;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .notifications .read.list-group-item {\n background-color: #222;\n }\n /* gist.github.com: \"#d1d5da\" */\n .notification-thread-subscription:first-child {\n border-top-color: #404040;\n }\n /* gist.github.com: \"color: #586069\", \"none\" */\n .notifications-sso-prompt a {\n color: #afafaf;\n background: none;\n }\n /* gist.github.com: \"#0366d6\" */\n .notifications-sso-prompt em {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .type-icon-state-none {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .type-icon-state-open, .type-icon-state-published {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .type-icon-state-closed {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .type-icon-state-draft {\n color: #949494;\n }\n /* gist.github.com: \"#6f42c1\" */\n .type-icon-state-merged, .type-icon-state-published {\n color: #9378ba;\n }\n /* gist.github.com: \"#28a745\" */\n .notifications-list .boxed-group .notification-success {\n color: #484;\n }\n /* gist.github.com: \"color: #586069\", \"initial\" */\n .notifications-list .mark-all-as-read {\n color: #afafaf;\n background-color: initial;\n }\n /* gist.github.com: \"color: #666\" */\n .notifications-list .confirmation {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .notification-actions .age, .notification-actions .btn-link {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .notification-actions .btn-link:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#d1d5da\" */\n .notification-actions .unsaved-notification {\n color: #404040;\n }\n /* gist.github.com: \"color: #666\" */\n .subscriptions-content .repo-icon {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\", \"#fff\", \"#eee\" */\n .thread-subscription-status {\n color: #afafaf;\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n @media (max-width:767px) {\n .notifications-v2 .AvatarStack-body .avatar {\n border-right-color: #181818 !important;\n }\n }\n /* gist.github.com: \"initial\" */\n .notifications-v2 .thread-subscription-status {\n background-color: initial !important;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .notification-navigation .menu-item {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .notification-navigation .menu-item .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .notification-navigation .menu-item.selected {\n background-color: #182030;\n }\n /* gist.github.com: \"#0366d6\" */\n .notification-navigation .menu-item.selected .octicon {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #6a737d !important\" */\n .notification-navigation .notification-configure-filters .octicon {\n color: #949494 !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .notification-navigation .notification-configure-filters:hover .octicon {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #6a737d !important\" */\n .notifications-list-item .notification-list-item-link {\n color: #949494 !important;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .notifications-list-item:hover {\n background-color: #182030 !important;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .notifications-list-item:hover .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"color: #586069 !important\", \"transparent\" */\n .notifications-list-item:hover .notification-list-item-actions .btn {\n color: #afafaf !important;\n background-color: transparent !important;\n }\n /* gist.github.com: \"color: #24292e !important\", \"#e1e4e8\" */\n .notifications-list-item:hover .notification-list-item-actions .btn:hover {\n color: #cdcdcd !important;\n background-color: #343434 !important;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .notifications-list-item:hover .AvatarStack-body {\n background-color: #182030;\n }\n /* gist.github.com: \"#f1f8ff\", \"#0366d6\" */\n .notifications-list-item.navigation-focus {\n background-color: #182030 !important;\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .notifications-list-item.navigation-focus .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"none\" */\n .notifications-list-item .notification-list-item-unread-indicator {\n background: none;\n }\n /* gist.github.com: \"#fff\" */\n .notifications-list-item.notification-unread {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #24292e !important\" */\n .notifications-list-item.notification-unread .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .notifications-list-item.notification-unread .notification-list-item-unread-indicator {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .oauth-permissions-details .octicon,\n .oauth-permissions-details .permission-summary .access-details {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .oauth-permissions-details .permission-title {\n color: #cdcdcd;\n }\n /* gist.github.com: \"none\", \"rgba(0,0,0,.15)\" */\n .oauth-permissions-details.open a.btn-sm {\n background-image: none;\n box-shadow: inset 0 2px 4px #000;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .oauth-permissions-details.default:not(.delete) .access-details,\n .oauth-permissions-details.default:not(.delete) .permission-title,\n .oauth-permissions-details.none .access-details,\n .oauth-permissions-details.none .permission-title {\n color: #949494;\n }\n /* gist.github.com: \"#cb2431\" */\n .oauth-delete-repo-permissions .octicon-alert {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .oauth-no-description {\n color: #afafaf;\n }\n /* gist.github.com: \"#ffe\" */\n .oauth-org-access-details, .oauth-org-access-details .oauth-org-item:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\" */\n .oauth-org-access-details .oauth-org-item.on strong {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#fff\" */\n .oauth-org-access-details .oauth-org-item.revoked {\n background-color: #181818;\n }\n /* gist.github.com: \"#cb2431\" */\n .oauth-org-access-details .oauth-org-item.revoked .octicon-x {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .oauth-org-access-details .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .oauth-org-access-details .octicon-x.org-access-denied {\n color: #d82828;\n }\n /* gist.github.com: \"color: #24292e\" */\n .oauth-application-whitelist .request-info strong {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#a04100\" */\n .oauth-application-whitelist .octicon-alert {\n color: #f3582c;\n }\n /* gist.github.com: \"#28a745\" */\n .oauth-application-whitelist .approved-request,\n .oauth-application-whitelist .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .oauth-application-whitelist .denied-request {\n color: #d82828;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .oauth-application-whitelist .edit-link {\n color: #949494;\n }\n /* gist.github.com: \"#0366d6\" */\n .oauth-application-whitelist .edit-link:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #24292e\" */\n .oauth-application-info .application-title {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .oauth-application-info .app-info {\n color: #949494;\n }\n /* gist.github.com: \"#28a745\" */\n .oauth-application-info .app-approved,\n .oauth-application-info .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"#a04100\" */\n .oauth-application-info .app-denied, .oauth-application-info .octicon-x {\n color: #f3582c;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .oauth-border {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .developer-app-item .developer-app-name {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#0366d6\" */\n .developer-app-item .developer-app-name:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .developer-app-item .developer-app-list-meta {\n color: #949494;\n }\n /* gist.github.com: \"color: #2f363d\" */\n .org-insights-graph-canvas .activity {\n color: #bebebe;\n }\n /* gist.github.com: \"fill: #959da5\" */\n .org-insights-graph-canvas .axis text {\n fill: #757575;\n }\n /* gist.github.com: \"#0366d6\" */\n .org-insights-graph-canvas .axis .zero line {\n stroke: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .org-insights-svg-tip::after {\n border-color: #181818 transparent transparent;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .org-insights-svg-tip::before {\n border-color: #343434 transparent transparent;\n }\n /* gist.github.com: \"#0366d6\" */\n .org-insights-card-legend .metric-0 {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#22863a\" */\n .org-insights-card-legend .metric-1 {\n color: #6cc644;\n }\n /* gist.github.com: \"#e36209\" */\n .org-insights-card-legend .metric-2 {\n color: #fb8532;\n }\n /* gist.github.com: \"#6f42c1\" */\n .org-insights-card-legend .metric-3 {\n color: #9378ba;\n }\n /* gist.github.com: \"#0366d6\", \"#0366d6\" */\n .org-insights-graph-canvas .metric-0 circle,\n .org-insights-graph-canvas path.metric-0,\n .org-insights-svg-tip .metric-0 .legend {\n stroke: rgb(79, 140, 201);\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#22863a\", \"#22863a\" */\n .org-insights-graph-canvas .metric-1 circle,\n .org-insights-graph-canvas path.metric-1,\n .org-insights-svg-tip .metric-1 .legend {\n stroke: #6cc644;\n background-color: #6cc644;\n }\n /* gist.github.com: \"#e36209\", \"#e36209\" */\n .org-insights-graph-canvas .metric-2 circle,\n .org-insights-graph-canvas path.metric-2,\n .org-insights-svg-tip .metric-2 .legend {\n stroke: #fb8532;\n background-color: #fb8532;\n }\n /* gist.github.com: \"#6f42c1\", \"#6f42c1\" */\n .org-insights-graph-canvas .metric-3 circle,\n .org-insights-graph-canvas path.metric-3,\n .org-insights-svg-tip .metric-3 .legend {\n stroke: #9378ba;\n background-color: #9378ba;\n }\n /* gist.github.com: \"color: #959da5\" */\n .org-insights-cards .org-insights-card-legend {\n color: #767676;\n }\n /* gist.github.com: \"#fff\" */\n .org-insights-cards .repository-lang-stats-graph .language-color {\n border-color: #181818;\n }\n /* gist.github.com: \"color: #24292e\", \"#fafbfc\", \"#e1e4e8\" */\n .orghead {\n color: #cdcdcd;\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #333\" */\n .org-name {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #586069\" */\n .audit-log-search .member-info .ghost {\n color: #afafaf;\n }\n /* gist.github.com: \"#a04100\" */\n .audit-type .repo {\n color: #f3582c;\n }\n /* gist.github.com: \"#28a745\" */\n .audit-type .team {\n color: #484;\n }\n /* gist.github.com: \"#6f42c1\" */\n .audit-type .user {\n color: #9378ba;\n }\n /* gist.github.com: \"#cb2431\" */\n .audit-type .oauth_access {\n color: #d82828;\n }\n /* gist.github.com: \"#fff\",\"#f5f5f5\" */\n .saml-enabled-banner-container {\n background-image: linear-gradient(-1deg, #181818, #222);\n }\n /* gist.github.com: \"color: #fff\", \"#cb2431\" */\n .saml-settings-form .test-status-indicator-error {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #fff\", \"#28a745\" */\n .saml-settings-form .test-status-indicator-success {\n color: #fff;\n background-color: #484;\n }\n /* gist.github.com: \"color: #586069\" */\n .member-fullname {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\" */\n .auto-search-group .spinner {\n background-color: #181818;\n }\n /* gist.github.com: \"#eee\" */\n .org-list .list-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .org-repos-mini .org-repo-name .octicon-repo {\n color: #afafaf;\n }\n /* gist.github.com: \"rgba(115,92,15,.5)\" */\n .org-repos-mini .org-repo-name .octicon-lock {\n color: rgba(204, 187, 68, .5);\n }\n /* gist.github.com: \"color: #333\" */\n .reinstate-org-member .reinstate-title {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #586069\" */\n .add-member-wrapper .available-seats {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .add-member-team-list .team-info {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .add-member-team-list .team-meta {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .invite-team-member-list .team-link {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#eee\" */\n .team-stats {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .stats-group-stat {\n color: #afafaf;\n }\n /* gist.github.com: \"#eee\" */\n .stats-group-stat:first-child {\n border-right-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .stats-group-stat:hover, .stats-group-stat:hover .stat-number {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .stats-group-stat.no-link:hover {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #333\" */\n .stat-number, .stats-group-stat.no-link:hover .stat-number {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #959da5\" */\n .team-member-list .invite-icon {\n color: #767676;\n }\n /* gist.github.com: \"#cb2431\" */\n .menu-item-danger, .menu-item-danger.selected {\n color: #d82828;\n }\n /* gist.github.com: \"color: #fff\", \"#d73a49\" */\n .menu-item-danger.navigation-focus,\n .menu-item-danger.selected.navigation-focus,\n .menu-item-danger.selected:hover,\n .menu-item-danger.selected[aria-selected=true], .menu-item-danger:hover,\n .menu-item-danger[aria-selected=true] {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #959da5\" */\n .team-member-list-avatar .octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #586069\" */\n .confirm-removal-container .private-fork-count {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .confirm-removal-container .deleting-private-forks-warning .octicon {\n color: #d82828;\n }\n /* gist.github.com: \"#eaeaea\" */\n .confirm-removal-list-container {\n border-color: #343434;\n }\n /* gist.github.com: \"#eaeaea\" */\n .confirm-removal-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .confirm-removal-repo .octicon, .confirm-removal-team .octicon,\n .manage-member-meta-item, .manage-member-meta-item .btn-link,\n .manage-member-meta-item > .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#a04100\" */\n .manage-member-meta-item > .octicon-alert {\n color: #f3582c;\n }\n /* gist.github.com: \"color: #333\" */\n .org-user-notice-content strong {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #586069\" */\n .manage-repo-access-lead, .org-user-notice-content .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\", \"#ddd\" */\n .manage-repo-access-group {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#f8f8f8\", \"#ddd\" */\n .manage-repo-access-title {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#eee\" */\n .manage-repo-access-wrapper::before {\n background-color: #242424;\n }\n /* gist.github.com: \"#fff\" */\n .manage-repo-access-icon {\n background-color: #181818;\n }\n /* gist.github.com: \"#ddd\" */\n .manage-repo-access-teams-group {\n border-color: #343434;\n }\n /* gist.github.com: \"#eee\" */\n .manage-repo-access-team-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\", \"#fafbfc\" */\n .manage-repo-access-not-active {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"#f9f9f9\" */\n .manage-repo-access-not-active .manage-repo-access-icon {\n background-color: #181818;\n }\n /* gist.github.com: \"#ddd\" */\n .manage-access-remove-footer {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .ldap-memberships-list .edit {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#eee\" */\n .invited .team-member-list .list-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #333\" */\n .manage-memberships-tabs-item:hover {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #24292e\", \"#fff\" */\n .manage-memberships-tabs-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @keyframes blinkingText {\n 0% {\n color: #343434;\n }\n 33% {\n color: #343434;\n }\n to {\n color: #343434;\n }\n }\n /* gist.github.com: \"#fff\" */\n .theme-picker {\n background-color: #181818;\n }\n /* gist.github.com: \"#eee\" */\n .theme-picker-thumbs {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"none\" */\n .theme-toggle {\n background: none;\n }\n /* gist.github.com: \"#ddd\" */\n .theme-selector-thumbnail {\n border-color: #343434;\n }\n /* gist.github.com: \"#f5f5f5\" */\n .theme-selector-thumbnail:hover {\n background-color: #222;\n }\n /* gist.github.com: \"#0366d6\" */\n .theme-selector-thumbnail.selected {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\" */\n .theme-selector-thumbnail.selected .theme-selector-img {\n border-color: #181818;\n }\n /* gist.github.com: \"#fff\" */\n .page-preview, .theme-picker-spinner {\n background-color: #181818;\n }\n /* gist.github.com: \"#86181d\" */\n .pinned-items-reorder-error {\n color: #d82828;\n }\n /* gist.github.com: \"color: #2f363d\" */\n .pinned-item-name {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #24292e\", \"#f1f8ff\" */\n .pinned-item-checkbox:checked + .pinned-item-name {\n color: #cdcdcd;\n background-color: #182030;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .pinned-gist-blob-num:hover {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"color: #24292e !important\", \"none\", \"#e1e4e8\", \"#d73a49\", \"#28a745\", \"#d1d5da\", \"color: #1b1f23\", \"#22863a\", \"#2cbe4e\", \"#6f42c1\", \"#cb2431\", \"#cb2431\" */\n @media print {\n .btn:not(.btn-outline) {\n color: #cdcdcd !important;\n background: none;\n }\n .blob-num {\n border-right-color: #343434;\n }\n .blob-num-deletion {\n border-right-color: #d82828;\n }\n .blob-num-addition {\n border-right-color: #484;\n }\n .blob-code-addition .x {\n border-bottom-color: #484;\n }\n .blob-code-deletion .x {\n border-bottom-color: #d82828;\n }\n .diffstat-block-neutral {\n border-color: #404040;\n }\n .diffstat-block-deleted {\n border-color: #d82828;\n }\n .diffstat-block-added {\n border-color: #484;\n }\n .State {\n color: #dcdcdc;\n background: none;\n }\n .State--green {\n color: #6cc644;\n border-color: #373;\n }\n .State--purple {\n color: #9378ba;\n border-color: #9378ba;\n }\n .State--red {\n color: #d82828;\n border-color: #d82828;\n }\n }\n /* gist.github.com: \"transparent\" */\n .progress-pjax-loader {\n background-color: transparent;\n }\n /* gist.github.com: \"#79b8ff\", \"box-shadow: 0 0 10px rgba(121,184,255,.7)\" */\n .progress-pjax-loader > .progress-pjax-loader-bar {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 0 rgba(79, 140, 201, .3);\n }\n /* gist.github.com: \"#24292e\" */\n @media (min-width:544px) {\n .project-full-screen .project-header {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"color: #fff !important\" */\n .project-full-screen .project-header .project-header-link:hover {\n color: #fff !important;\n }\n /* gist.github.com: \"color: #fff\", \"box-shadow: none\" */\n @media (min-width:544px) {\n .project-full-screen .card-filter-input {\n color: #fff;\n box-shadow: none;\n }\n }\n /* gist.github.com: \"#fff\" */\n @media (min-width:544px) {\n .project-header {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"#54a3ff\",\"#006eed\", \"#fff\" */\n .pending-cards-status {\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n border-color: #181818;\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n @media (min-width:544px) {\n .project-column:focus {\n border-color: rgb(79, 140, 201) !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n }\n /* gist.github.com: \"#f1f8ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .project-column.moving {\n background-color: #182030 !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"#959da5\" */\n .new-project-column {\n border-color: #484848 !important;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .sortable-ghost {\n background-color: #222;\n }\n /* gist.github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .project-card blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .project-card:hover {\n border-color: #404040 !important;\n }\n /* gist.github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important\" */\n @media (min-width:544px) {\n .project-card:focus {\n border-color: rgb(79, 140, 201) !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5) !important;\n }\n }\n /* gist.github.com: \"#f1f8ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important\" */\n .project-card.moving {\n background-color: #182030 !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5) !important;\n }\n /* gist.github.com: \"#735c0f\" */\n .archived-project-cards-pane .project-card .archived-header {\n color: #bba257;\n }\n /* gist.github.com: \"#959da5\" */\n .project-pane .redacted-activity {\n border-bottom-color: #484848;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.5)\" */\n .project-pane-close {\n color: rgba(230, 230, 230, .5);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .project-pane-close:hover {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"color: #fff !important\", \"#0366d6\" */\n .card-filter-autocomplete-dropdown .navigation-focus,\n .card-filter-autocomplete-dropdown [aria-selected=true] {\n color: #fff !important;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff !important\" */\n .card-filter-autocomplete-dropdown .navigation-focus .autocomplete-text-qualifier,\n .card-filter-autocomplete-dropdown [aria-selected=true] .autocomplete-text-qualifier {\n color: #fff !important;\n }\n /* gist.github.com: \"#0366d6\" */\n .projects-reset-query:hover .projects-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#6a737d\" */\n .projects-reset-query-icon {\n background-color: #444;\n }\n /* gist.github.com: \"#fff\", \"#d1d5da\" */\n .projects-comment-form .comment-form-head .toolbar-commenting {\n background-color: #181818;\n border-top-color: #404040;\n }\n /* gist.github.com: \"#d1d5da\" */\n .projects-comment-form .preview-content {\n border-top-color: #404040;\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .project-issue-body-blur {\n background: linear-gradient(0deg, #181818, transparent);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.5)\" */\n .project-comment-body-hover .octicon-pencil,\n .project-comment-title-hover .octicon-pencil {\n color: rgba(230, 230, 230, .5);\n }\n /* gist.github.com: \"#0366d6\" */\n .project-comment-body-hover .octicon-pencil:hover,\n .project-comment-title-hover .octicon-pencil:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .vcard-detail .octicon, .vcard-username {\n color: #949494;\n }\n /* gist.github.com: \"#86181d\" */\n .user-profile-bio-message {\n color: #d82828;\n }\n /* gist.github.com: \"#fff\", \"#d1d5da\", \"box-shadow: none\" */\n .user-profile-nav {\n background-color: #181818;\n border-bottom-color: #404040;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #586069\" */\n .pinned-item-list-item .pinned-item-handle {\n color: #afafaf;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .pinned-item-list-item.is-dragging, .pinned-item-list-item.sortable-ghost {\n background-color: #182030;\n }\n /* gist.github.com: \"#eaecef\" */\n .profile-timeline.discussion-timeline .profile-timeline-month-heading::after,\n .profile-timeline.discussion-timeline::before {\n background-color: #343434;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .profile-timeline-card-wrapper {\n border-top-color: #181818;\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .profile-timeline-card .issue-meta-section .octicon {\n color: #949494;\n }\n /* gist.github.com: \"#eaecef\" */\n .profile-rollup-summarized + .profile-rollup-summarized,\n .profile-rollup-wrapper + .profile-rollup-wrapper {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#a04100\" */\n .stale-files-tab {\n color: #f3582c;\n }\n /* gist.github.com: \"#fff\" */\n .pr-toolbar.is-stuck {\n background-color: #181818;\n }\n /* gist.github.com: \"rgba(0,0,0,.001)\" */\n .toolbar-shadow {\n background: linear-gradient(rgba(0, 0, 0, .075), transparent) repeat-x 0 0;\n }\n /* gist.github.com: \"#fff\" */\n .diffbar {\n background-color: #181818;\n }\n /* gist.github.com: \"#eee\" */\n .diffbar .table-of-contents li {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #fff\" */\n .diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized,\n .diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized {\n color: #fff;\n }\n /* gist.github.com: \"#f1f8ff\", \"rgba(27,31,35,.15)\" */\n .diffbar-range-menu .in-range:not(.is-range-selected) {\n background-color: #182030;\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#0366d6\" */\n .diffbar-range-menu .in-range:focus:not(.is-range-selected),\n .diffbar-range-menu .in-range:hover:not(.is-range-selected) {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#735c0f\", \"#fffbdd\" */\n .diffbar-range-menu .is-range-selected {\n color: #bba257;\n background-color: #261d08;\n }\n /* gist.github.com: \"#fff5b1\" */\n .diffbar-range-menu .is-last-in-range {\n background-color: #651;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .conflict-resolver.loading {\n border-color: #343434;\n }\n /* gist.github.com: \"#22863a\" */\n .revision-number {\n background-color: #6cc644;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .pull-request-review-menu, .pull-request-suggested-changes-menu {\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#f6f8fa\" */\n .review-comment-loader::after, .review-comment.is-comment-editing::after,\n .review-comment::after {\n background-color: #222;\n }\n /* gist.github.com: \"color: #24292e\" */\n .review-comment {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#d2dff0\" */\n .review-comment .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* gist.github.com: \"#b08800\", \"#fffdef\", \"#f9c513\" */\n .review-comment .pending-batched-suggestion-label {\n color: #cb4;\n background-color: #261d08;\n border-color: #cb4;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .review-comment .is-comment-editing {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .review-thread-reply {\n background-color: #222;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fff\" */\n .review-thread-reply .inline-comment-form {\n background-color: #181818;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .review-summary-form-wrapper {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#f9c513\" */\n .is-pending .review-summary-form-wrapper {\n border-color: #cb4;\n }\n /* gist.github.com: \"#e1e4e8\", \"#fff\" */\n .release-timeline-tags .tag-timeline-date::after {\n background-color: #343434;\n border-color: #181818;\n }\n /* gist.github.com: \"#cb2431\", \"#d73a49\" */\n .Label--draft {\n color: #d82828;\n border-color: #d82828;\n }\n /* gist.github.com: \"#c3c8cf\" */\n .uploaded-files.not-populated + .drop-target .drop-target-label {\n border-top-color: #484848;\n }\n /* gist.github.com: \"#ddd\",\"#e5e5e5\" */\n .uploaded-files.is-populated {\n border-color: #343434;\n }\n /* gist.github.com: \"#f9f9f9\" */\n .uploaded-files > li.delete {\n background-color: #181818;\n }\n /* gist.github.com: \"#cb2431\" */\n .uploaded-files .remove:hover {\n color: #d82828 !important;\n }\n /* gist.github.com: \"#fff\",\"hsla(0,0%,100%,.5)\" */\n .upload-progress {\n box-shadow: 0 1px 1px #181818, inset 0 1px 1px hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .release-entry {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n @media (min-width:768px) {\n .release-main-section {\n border-left-color: #343434;\n }\n }\n /* gist.github.com: \"#ddd\" */\n .repo-file-upload-target.dragover .repo-file-upload-outline {\n border-color: #343434;\n }\n /* gist.github.com: \"#fff\", \"#e5e5e5\" */\n .is-bad-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors,\n .is-failed .repo-file-upload-errors,\n .is-hidden-file .repo-file-upload-errors,\n .is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #666\", \"#fff\" */\n .repo-file-upload-tree-target {\n color: #949494;\n background: radial-gradient(ellipse at center, #181818 0, hsla(0, 0%, 100%, .85) 65%, hsla(0, 0%, 100%, .85) 100%);\n }\n /* gist.github.com: \"#ddd\" */\n .repo-file-upload-tree-target .repo-file-upload-outline {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .label-characters-remaining {\n color: #afafaf;\n }\n /* gist.github.com: \"#eee\" */\n .repo-list-item {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .mini-repo-list-item {\n border-top-color: #404040;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .mini-repo-list-item .repo-icon, .mini-repo-list-item .stars {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .mini-repo-list-item .repo-description {\n color: #afafaf;\n }\n /* gist.github.com: \"#fffdef\" */\n .private .mini-repo-list-item {\n background-color: #261d08;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .private .mini-repo-list-item .repo-icon {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"#fafbfc\", \"#e5e5e5\" */\n .filter-bar {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#ddd\" */\n .url-box {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #24292e\" */\n .url-box p strong {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #333\", \"linear-gradient(#fafafa,#eaeaea)\" */\n .clone-url-button > .clone-url-link {\n color: #bebebe;\n background-image: linear-gradient(#202020, #181818);\n }\n /* gist.github.com: \"color: #fff\", \"#599bcd\",\"#3072b3\", \"#2a65a0\" */\n .clone-url-button > .clone-url-link:active,\n .clone-url-button > .clone-url-link:hover {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#3072b3\", \"none\", \"rgba(0,0,0,.15)\" */\n .clone-url-button > .clone-url-link:active {\n background-color: rgb(79, 140, 201);\n background-image: none;\n box-shadow: inset 0 3px 5px #000;\n }\n /* gist.github.com: \"#fff\" */\n .clone-url-button + .clone-url-button > .clone-url-link {\n box-shadow: inset 1px 0 0 #181818;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .clone-url-button + .clone-url-button > .clone-url-link:hover {\n box-shadow: none;\n }\n /* gist.github.com: \"rgba(0,0,0,.15)\" */\n .clone-url-button + .clone-url-button > .clone-url-link:active {\n box-shadow: inset 0 3px 5px #000;\n }\n /* gist.github.com: \"color: #333\", \"hsla(0,0%,100%,.6)\", \"#ccc\", \"linear-gradient(#ccc,#d5d5d5)\", \"#bbb\", \"box-shadow: inset 0 2px 3px rgba(0,0,0,.075)\" */\n .clone-url-button > .clone-url-link.selected,\n .clone-url-button > .clone-url-link.selected:hover {\n color: #bebebe;\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .6);\n background-color: #484848;\n background-image: linear-gradient(#303030, #282828);\n border-color: #484848;\n box-shadow: inset 0 2px 3px rgba(255, 255, 255, .075);\n }\n /* gist.github.com: \"initial\" */\n .timeout {\n background-color: initial;\n }\n /* gist.github.com: \"color: #586069\" */\n .timeout h3 {\n color: #afafaf;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .overall-summary {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .numbers-summary li > .nolink, .numbers-summary li > a {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .numbers-summary li > a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .numbers-summary .octicon {\n color: #949494;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .prereceive-feedback {\n border-color: #343434;\n }\n /* gist.github.com: \"#b08800\" */\n .prereceive-feedback-heading {\n color: #cb4;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .repository-item-checkbox:checked + .repository-item-name {\n background-color: #182030;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .custom-role-icon {\n background-color: #343434;\n }\n /* gist.github.com: \"color: #666\" */\n .edit-profile-avatar .drag-and-drop {\n color: #949494;\n }\n /* gist.github.com: \"#d73a49\", \"box-shadow: none\" */\n .avatar-upload .flash {\n border-color: #d82828;\n box-shadow: none;\n }\n /* gist.github.com: \"color: #586069\" */\n .avatar-upload .upload-state p {\n color: #afafaf;\n }\n /* gist.github.com: \"#e5e5e5\" */\n dl.new-email-form {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fffdef\" */\n .selected-user-key {\n background-color: #261d08;\n }\n /* gist.github.com: \"#ddd\" */\n .user-key-badge, .user-key-email {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #666\", \"#ddd\" */\n .user-key-email-unverified {\n color: #949494;\n border-color: #343434;\n }\n /* gist.github.com: \"#28a745\" */\n .recent-user-key {\n color: #484;\n }\n /* gist.github.com: \"#cb2431\" */\n .unverified-user-key, .unverified-user-key-notice {\n color: #d82828;\n }\n /* gist.github.com: \"#ddd\" */\n .notification-center .overview {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .oauth-app-info-container dl.keys dt {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #333\" */\n .oauth-app-info-container dl.keys dd {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #586069\" */\n .oauth-app-info-container .user-count {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .logo-upload a.delete:hover, .logo-upload span.delete:hover {\n color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .logo-upload-container .upload-state p {\n color: #afafaf;\n }\n /* gist.github.com: \"#eee\", \"#d1d5da\" */\n .logo-box {\n background-color: #242424;\n border-color: #404040;\n }\n /* gist.github.com: \"color: #586069\" */\n .logo-placeholder {\n color: #afafaf;\n }\n /* gist.github.com: \"#ddd\" */\n .saved-reply-form {\n border-color: #343434;\n }\n /* gist.github.com: \"initial\", \"#eaecef\" */\n .saved-reply-form .comment-body {\n background-color: initial;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .access-token {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"rgba(108,198,68,.1)\" */\n .access-token.new-token {\n background-color: #002800;\n }\n /* gist.github.com: \"#28a745\" */\n .access-token.new-token .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"color: #24292e\" */\n .access-token .token-description, .token-scope {\n color: #cdcdcd;\n }\n /* gist.github.com: \"initial\" */\n .application-show-group .drag-and-drop {\n background-color: initial;\n }\n /* gist.github.com: \"color: #666\" */\n .email-preference-exceptions h5 {\n color: #949494;\n }\n /* gist.github.com: \"#eaecef\" */\n .email-preference-exceptions .exception {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .email-preference-exceptions .exception:last-child {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#eaecef\" */\n .two-factor-steps {\n border-color: #343434;\n }\n /* gist.github.com: \"#cb2431\" */\n .two-factor-steps .error-icon {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .two-factor-steps .sent-message {\n color: #484;\n }\n /* gist.github.com: \"color: #586069\", \"#eaeaea\" */\n .two-factor-toggle .two-factor-status {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #fff\", \"#28a745\" */\n .two-factor-toggle .two-factor-on {\n color: #fff;\n background-color: #484;\n }\n /* gist.github.com: \"#f8f8f8\" */\n .two-factor-settings-group, .u2f-registration {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"rgba(47,38,6,.5)\" */\n .u2f-registration-icon {\n color: #cb4;\n }\n /* gist.github.com: \"#ddd\" */\n .github-access-banner {\n border-color: #343434;\n }\n /* gist.github.com: \"#cb2431\" */\n .github-access-banner .octicon {\n color: #d82828;\n }\n /* gist.github.com: \"#eaecef\" */\n .qr-code-table {\n border-color: #343434;\n }\n /* gist.github.com: \"transparent\" */\n .qr-code-table tr {\n background-color: transparent;\n }\n /* gist.github.com: \"#fff\" */\n .qr-code-table .white {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .session-device {\n color: #afafaf;\n }\n /* gist.github.com: \"#28a745\" */\n .session-device .session-state-indicator.recent {\n background-color: #484;\n }\n /* gist.github.com: \"#d73a49\" */\n .session-device .session-state-indicator.revoked {\n background-color: #d82828;\n }\n /* gist.github.com: \"#ccc\", \"#fff\" */\n .session-device .session-state-indicator.not-recent {\n background-image: linear-gradient(#aaa, #484848);\n box-shadow: 0 1px 0 #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n .session-details:hover .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .collaborators .collab-remove .remove-link {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .collaborators .collab-remove .remove-link:hover {\n color: #d82828;\n }\n /* gist.github.com: \"color: #666\" */\n .collaborators .collab-info {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .access-sub-heading {\n color: #afafaf;\n }\n /* gist.github.com: \"#ddd\" */\n .access-form-wrapper {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\" */\n .oauth-pending-deletion-list-item, .oauth-pending-deletion-list-item:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #586069\" */\n .boxed-group-list .access-level {\n color: #afafaf;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .form-hr {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .listgroup {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .listgroup-item {\n color: #afafaf;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .listgroup-item + .listgroup-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#e5e5e5\" */\n .listgroup-header {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#f5f5f5\" */\n .listgroup-overflow {\n background-color: #222;\n }\n /* gist.github.com: \"#fafbfc\" */\n .protected-branch-orgs-and-repo-admins {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #333\" */\n .protected-branch-pusher {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #fff\", \"#d15704\" */\n .user-already-added::after {\n color: #fff;\n background-color: #f3582c;\n }\n /* gist.github.com: \"initial\", \"initial\" */\n @keyframes toggle-color {\n 0% {\n background-color: initial;\n }\n to {\n background-color: initial;\n }\n }\n /* gist.github.com: \"#cb2431\", \"transparent\" */\n .repository-merge-features .form-group.errored .error {\n color: #d82828;\n background-color: transparent;\n }\n /* gist.github.com: \"color: #24292e\", \"#e36209\" */\n .repository-settings-actions [role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .repository-settings-actions [role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* gist.github.com: \"#ddd\" */\n .setup-header {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .setup-header .lead a {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .setup-header .lead a:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .setup-secondary .info {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\" */\n .setup-info-module {\n background-color: #181818;\n }\n /* gist.github.com: \"#ddd\" */\n .setup-info-module h2 {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #586069\" */\n .setup-info-module h2 .price {\n color: #afafaf;\n }\n /* gist.github.com: \"#f9f9f9\", \"#e0e0e0\" */\n .setup-info-module .setup-info-note {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* gist.github.com: \"#eee\" */\n .features-list .list-divider {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #555\" */\n .features-list .octicon-question {\n color: #afafaf;\n }\n /* gist.github.com: \"#cb2431\" */\n .setup-form .octicon-alert {\n color: #d82828;\n }\n /* gist.github.com: \"#28a745\" */\n .setup-form .octicon-check {\n color: #484;\n }\n /* gist.github.com: \"#eee\", \"#eee\" */\n .setup-form .setup-organization-next, .setup-form .tos-info {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .setup-form .setup-plans {\n border-color: #404040;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .setup-form .setup-plans tr.selected {\n background-color: #182030;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .setup-creditcard-form .form-group select:invalid {\n color: #949494;\n }\n /* gist.github.com: \"color: #586069\" */\n .setup-creditcard-form .help-text, .shelf-lead {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #959da5\" */\n .shelf-dismiss {\n color: #767676;\n }\n /* gist.github.com: \"#0366d6\" */\n .shelf-dismiss:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\", \"rgba(27,31,35,.15)\" */\n .shelf-dismiss .close-button {\n color: rgba(230, 230, 230, .7);\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"color: #24292e\", \"rgba(27,31,35,.3)\" */\n .shelf-dismiss .close-button:hover {\n color: #cdcdcd;\n border-color: rgba(220, 220, 220, .4);\n }\n /* gist.github.com: \"color: rgba(27,31,35,.85)\", \"hsla(0,0%,100%,0)\",\"#fff\",\"#dbedff\", \"#fff\" */\n .intro-shelf {\n color: rgba(230, 230, 230, .85);\n background-image: linear-gradient(180deg, transparent 60%, #181818), linear-gradient(70deg, #182030 32%, #ebfff0);\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.7)\" */\n .intro-shelf .shelf-lead {\n color: rgba(230, 230, 230, .7);\n }\n /* gist.github.com: \"#d1d5da\" */\n .orgs-help-shelf-content .orgs-help-divider {\n border-top-color: #404040;\n }\n /* gist.github.com: \"color: #586069\" */\n .orgs-help-lead {\n color: #afafaf;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .orgs-help-item-octicon {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .orgs-help-item-octicon .octicon {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\" */\n .orgs-help-dismiss, .orgs-help-item-content {\n color: #afafaf;\n }\n /* gist.github.com: \"#0366d6\" */\n .orgs-help-dismiss:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#fff\", \"#d1d5da\", \"rgba(149,157,165,.15)\" */\n .signup-plan-card {\n background-color: #181818;\n border-color: #404040;\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* gist.github.com: \"#fff\", \"#79b8ff\", \"rgba(149,157,165,.2)\" */\n .signup-plan-card:hover {\n background-color: #181818;\n border-color: rgb(79, 140, 201);\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"hsla(0,0%,100%,.5)\" */\n .signup-btn:disabled {\n color: hsla(0, 0%, 0%, .5);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .plan-category-tab[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"color: #fff !important\" */\n .plan-category-tab[aria-selected=true] .tab-title {\n color: #fff !important;\n }\n /* gist.github.com: \"#fff\" */\n .showcase-page-pattern::after {\n background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .85), #181818);\n }\n /* gist.github.com: \"#eee\" */\n .showcase-page-repo-list {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#ec6cb9\" */\n .sponsors-goal-progress-bar {\n background-color: #c49;\n }\n /* gist.github.com: \"#ffd33d\" */\n .sponsors-goal-completed-bar, .sponsors-goal-progress-bar:hover {\n background: linear-gradient(90deg, #cb4, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #cb4 68%, #ea4aaa 85%, #b34bff);\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .sponsors-goals-avatar-border {\n background-color: #181818;\n border-color: #181818;\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\" */\n .business-sso .business-sso-panel, .business-sso .org-sso-panel,\n .org-sso .business-sso-panel, .org-sso .org-sso-panel {\n background-color: #181818;\n border-color: #343434;\n }\n /* gist.github.com: \"#d1d5da\" */\n .business-sso .sso-recovery-callout, .org-sso .sso-recovery-callout {\n border-color: #404040;\n }\n /* gist.github.com: \"none\", \"box-shadow: none\" */\n .tag-input input {\n background: none;\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .tag-input input:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #586069\", \"#eaeaea\", \"box-shadow: none\" */\n .team-label-ldap {\n color: #afafaf;\n border-color: #343434;\n box-shadow: none;\n }\n /* gist.github.com: \"#0366d6\", \"#f6f8fa\" */\n .team-member-ellipsis:hover {\n color: rgb(79, 140, 201);\n background-color: #222;\n }\n /* gist.github.com: \"#fafbfc\" */\n .team-listing .is-open.root-team {\n background-color: #181818;\n }\n /* gist.github.com: \"#0366d6\" */\n .token-scanning-reset-query:hover .token-scanning-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#6a737d\" */\n .token-scanning-reset-query-icon {\n background-color: #444;\n }\n /* gist.github.com: \"#28a745\" */\n .traffic-graph path.total {\n stroke: #484;\n }\n /* gist.github.com: \"#005cc5\" */\n .traffic-graph path.unique {\n stroke: #4f8cc9;\n }\n /* gist.github.com: \"#28a745\" */\n .traffic-graph .axis .tick:first-of-type line, .traffic-graph .y line {\n stroke: #484;\n }\n /* gist.github.com: \"#005cc5\" */\n .traffic-graph .y.unique line, .uniques-graph .axis .tick:last-child line {\n stroke: #4f8cc9;\n }\n /* gist.github.com: \"color: #fff\" */\n .svg-tip .date {\n color: #fff;\n }\n /* gist.github.com: \"#f6f8fa\", \"#dfe2e5\" */\n table.capped-list th {\n background-color: #222;\n }\n /* gist.github.com: \"#eaecef\" */\n table.capped-list td, table.capped-list th {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"color: #444d56\" */\n table.capped-list .octicon {\n color: #afafaf;\n }\n /* gist.github.com: \"#fafbfc\" */\n table.capped-list tr:nth-child(2n) {\n background-color: #181818;\n }\n /* gist.github.com: \"#dfe2e5\" */\n .traffic-graph-stats {\n border-top-color: #343434;\n }\n /* gist.github.com: \"#28a745\" */\n .totals circle {\n fill: #484;\n }\n /* gist.github.com: \"#005cc5\" */\n .uniques circle {\n fill: #4f8cc9;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .tree-finder-input, .tree-finder-input:focus {\n box-shadow: none;\n }\n /* gist.github.com: \"#fff\" */\n .tree-browser-result[aria-selected=true] {\n background-color: #181818 !important;\n }\n /* gist.github.com: \"#0366d6\", \"none\" */\n .tree-browser-result[aria-selected=true] .octicon-chevron-right,\n .tree-browser-result mark {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"none\" */\n .toolbar-commenting .dropdown-item, .tree-browser-result mark {\n background: none;\n }\n /* gist.github.com: \"#0366d6\" */\n .toolbar-commenting .dropdown-item:focus,\n .toolbar-commenting .dropdown-item:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #586069\", \"none\" */\n .toolbar-item, .toolbar-item .menu-target {\n color: #afafaf;\n background: none;\n }\n /* gist.github.com: \"#0366d6\" */\n .toolbar-item .menu-target:focus, .toolbar-item .menu-target:hover,\n .toolbar-item:focus, .toolbar-item:hover {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #333\" */\n .typeahead-result {\n color: #bebebe;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .typeahead-result.navigation-focus, .typeahead-result:hover,\n .typeahead-result[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .typeahead-result.navigation-focus .octicon-plus,\n .typeahead-result:hover .octicon-plus,\n .typeahead-result[aria-selected=true] .octicon-plus {\n color: #fff;\n }\n /* gist.github.com: \"color: #586069\" */\n .member-suggestion .already-member-note, .member-suggestion .member-name,\n .member-suggestion .non-member-action, .member-suggestion .non-member-note {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .member-suggestion.navigation-focus .already-member-note,\n .member-suggestion.navigation-focus .member-email,\n .member-suggestion.navigation-focus .member-name,\n .member-suggestion.navigation-focus .non-member-action,\n .member-suggestion.navigation-focus .non-member-note,\n .member-suggestion.navigation-focus .octicon,\n .member-suggestion:hover .already-member-note,\n .member-suggestion:hover .member-email,\n .member-suggestion:hover .member-name,\n .member-suggestion:hover .non-member-action,\n .member-suggestion:hover .non-member-note, .member-suggestion:hover .octicon,\n .member-suggestion[aria-selected=true] .already-member-note,\n .member-suggestion[aria-selected=true] .member-email,\n .member-suggestion[aria-selected=true] .member-name,\n .member-suggestion[aria-selected=true] .non-member-action,\n .member-suggestion[aria-selected=true] .non-member-note,\n .member-suggestion[aria-selected=true] .octicon {\n color: #fff;\n }\n /* gist.github.com: \"color: #586069\" */\n .team-suggestion .team-description, .team-suggestion .team-size {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .team-suggestion.navigation-focus .team-description,\n .team-suggestion.navigation-focus .team-size,\n .team-suggestion[aria-selected=true] .team-description,\n .team-suggestion[aria-selected=true] .team-size {\n color: #fff;\n }\n /* gist.github.com: \"color: #959da5\" */\n .email-suggestion .octicon-mail {\n color: #767676;\n }\n /* gist.github.com: \"color: #586069\" */\n .repo-access-add-team .team-description, .repo-access-add-team .team-size {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .repo-access-add-team.navigation-focus .team-description,\n .repo-access-add-team.navigation-focus .team-size,\n .repo-access-add-team[aria-selected=true] .team-description,\n .repo-access-add-team[aria-selected=true] .team-size {\n color: #fff;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .user-list-item + .user-list-item {\n border-top-color: #343434;\n }\n /* gist.github.com: \"color: #fff\", \"#cb2431\" */\n .follow-list .flagged-banner {\n color: #fff;\n background-color: #d82828;\n }\n /* gist.github.com: \"color: #586069\" */\n .follow-list .follow-list-info,\n .user-status-org-button .user-status-org-detail {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #fff\" */\n .user-status-org-button:focus .user-status-org-detail,\n .user-status-org-button:hover .user-status-org-detail {\n color: #fff;\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .user-status-org-button.selected {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\" */\n .user-status-org-button.selected .user-status-org-detail {\n color: #fff;\n }\n /* gist.github.com: \"#ffea7f\" */\n .user-status-limited-availability-compact {\n background-color: #542;\n }\n /* gist.github.com: \"color: #24292e\" */\n .user-status-message-wrapper {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#0366d6\" */\n .toggle-user-status-edit:focus .user-status-message-wrapper,\n .toggle-user-status-edit:hover .user-status-message-wrapper {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"rgba(149,157,165,.15)\" */\n .user-status-circle-badge-container:hover .user-status-circle-badge {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* gist.github.com: \"#fff\", \"#e1e4e8\", \"rgba(27,31,35,.04)\" */\n .user-status-circle-badge {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 1px 0 #000;\n }\n /* gist.github.com: \"none\" */\n .wiki-footer .markdown-body img {\n background: none;\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .ColorSwatch {\n border-color: rgba(220, 220, 220, .15);\n }\n /* gist.github.com: \"#2188ff\" */\n .hx_text-blue-light {\n color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#f1f8ff\" */\n .hx_avatar_stack_commit .AvatarStack-body {\n background-color: #182030;\n }\n /* gist.github.com: \"#fff\", \"#fff\" */\n .hx_flex-avatar-stack-item .avatar {\n border-color: #181818;\n background-color: #181818;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .hx_badge-search-container .hx_badge-input {\n box-shadow: none;\n }\n /* gist.github.com: \"box-shadow: none !important\" */\n .hx_badge-search-container .hx_badge-input:focus {\n box-shadow: none !important;\n }\n /* gist.github.com: \"color: #fff !important\", \"#0366d6\", \"#0366d6\" */\n .hx_badge[aria-pressed=true] {\n color: #fff !important;\n background-color: rgb(79, 140, 201) !important;\n border-color: rgb(79, 140, 201) !important;\n }\n /* gist.github.com: \"#fafbfc\" */\n @media (hover:hover) {\n .hx_menuitem--focus {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"rgba(115,92,15,.5)\" */\n .hx_color-repo-private-icon {\n color: rgba(204, 187, 68, .5);\n }\n /* gist.github.com: \"rgba(27,31,35,.15)\" */\n .hx_bg-black-fade-15 {\n background-color: rgba(220, 220, 220, .22);\n }\n /* gist.github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n body:not(.intent-mouse) .hx_focus-input:focus + .hx_focus-target {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* gist.github.com: \"color: #959da5\" */\n .SelectMenu-item:disabled, .SelectMenu-item[aria-disabled=true] {\n color: #767676;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .Box--responsive .Box-row--unread {\n box-shadow: none;\n }\n /* gist.github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .Box--responsive .Box-row--unread::before {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* gist.github.com: \"#e1e4e8\", \"#0366d6\" */\n @media (min-width:544px) {\n .Box--responsive {\n border-color: #343434;\n }\n .Box--responsive .Box-row--unread {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n }\n /* gist.github.com: \"color: #6a737d\" */\n @media (max-width:767px) {\n .page-responsive .hx_rsm-close-button .octicon-x,\n .page-responsive .hx_rsm .close-button .octicon-x {\n color: #949494;\n }\n }\n /* gist.github.com: \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n .select-menu-modal {\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* gist.github.com: \"#fff\" */\n .select-menu-filters, .select-menu-header {\n background-color: #181818;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .preview-selected .tabnav--responsive {\n border-bottom-color: #343434;\n }\n /* gist.github.com: \"#fafbfc\", \"#e1e4e8\", \"#fff\" */\n @media (max-width:767px) {\n .tabnav--responsive .tabnav-tab {\n background-color: #181818;\n border-color: #343434;\n }\n .tabnav--responsive .tabnav-tab:first-child {\n border-left-color: #343434;\n }\n .tabnav--responsive .tabnav-tab.selected,\n .tabnav--responsive .tabnav-tab[aria-selected=true] {\n background-color: #181818;\n }\n }\n /* gist.github.com: \"#e1e4e8\" */\n @media (max-width:767px) {\n .hx_sm-hide-drag-drop textarea {\n border-bottom-color: #343434;\n }\n }\n /* gist.github.com: \"#586069\" */\n .Toast--loading .Toast-icon {\n background-color: #343434;\n }\n /* gist.github.com: \"initial\" */\n .autocomplete-item {\n background-color: initial;\n }\n /* gist.github.com: \"#fff\" */\n .details-overlay[open] > .dropdown-item:hover {\n background-color: #181818;\n }\n /* gist.github.com: \"color: #959da5\" */\n .radio-label .octicon {\n color: #767676;\n }\n /* gist.github.com: \"color: #6a737d\", \"#eff3f6\" */\n .radio-input:disabled + .radio-label {\n color: #949494;\n background-color: #242424;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .BorderGrid-cell, .drag-and-drop {\n border-color: #343434;\n }\n /* gist.github.com: \"color: #6a737d\" */\n .flash .btn .octicon {\n color: #949494;\n }\n /* gist.github.com: \"#f3f4f6\" */\n .form-group .form-control[disabled], .form-group .form-select[disabled] {\n background-color: #242424;\n }\n /* gist.github.com: \"#735c0f\", \"#f9c513\" */\n .Label--outline.bg-yellow-light {\n color: #bba257;\n border-color: #cb4;\n }\n /* gist.github.com: \"#0366d6\", \"#0366d6\" */\n .label.bg-blue {\n color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .signed-commit-badge-large, .signed-commit-badge-medium,\n .signed-commit-badge-small, .timeline-comment-label {\n border-color: #343434;\n }\n /* gist.github.com: \"#0366d6\" */\n .delete-topic-button, .topic-tag, .topic-tag-action,\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button {\n color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"#e1e4e8\" */\n .timeline-comment, .timeline-comment-header {\n border-color: #343434;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .branch-action-item.border-gray-dark {\n border-color: #343434 !important;\n }\n /* gist.github.com: \"#e1e4e8\" */\n .branch-action-body, .branch-action-state-closed-dirty .branch-action-body,\n .branch-action-state-dirty .branch-action-body,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body {\n border-color: #343434;\n }\n /* gist.github.com: \"box-shadow: none\" */\n .notification-list-item-actions .btn {\n box-shadow: none;\n }\n /* gist.github.com: \"#f9826c\" */\n .pagehead-tabs-item.selected, .reponav-item.selected {\n border-top-color: #fff;\n }\n /* gist.github.com: \"#28a745\" */\n .branch-action-state-clean .branch-action-icon,\n .completeness-indicator-success {\n background-color: #484;\n }\n /* gist.github.com: \"color: #24292e\" */\n .gisthead .pagehead-actions .octicon-mute {\n color: #cdcdcd;\n }\n /* gist.github.com: \"#0366d6\" */\n .gist-snippet .file-box:hover .file {\n border-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"color: #fff\", \"#0366d6\" */\n .gist-snippet .link-overlay .link {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* gist.github.com: \"none\" */\n .btn-secret.selected, .btn-secret:active {\n background-image: none;\n }\n /* gist.github.com: \"rgba(115,92,15,.5)\" */\n .page-gist-edit .octicon-gist-secret {\n color: rgba(204, 187, 68, .5);\n }\n /* gist.github.com: \"color: #fff\" */\n .gist-dropzone-pill {\n color: #fff;\n }\n /* gist.github.com: \"color: #586069\" */\n .gist-revisions-list .gist-revision-meta {\n color: #afafaf;\n }\n /* gist.github.com: \"none\" */\n .user-list li em {\n background: none;\n }\n /* gist.github.com: \"color: #fff\", \"#28a745\" */\n .user-list li .actions .status-modified {\n color: #fff;\n background-color: #484;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .gistsearch-aside .filter-list li span.bar {\n background-color: #222;\n }\n /* gist.github.com: \"#fff\", \"#d1d5da\" */\n .gist-quicksearch-results {\n background-color: #181818;\n border-color: #404040;\n }\n /* gist.github.com: \"#d1d5da\" */\n .gist-quicksearch-results .gist-quicksearch-result-group {\n border-top-color: #404040;\n }\n /* gist.github.com: \"color: #6a737d\", \"#f6f8fa\", \"#d1d5da\" */\n .gist-quicksearch-results .gist-quicksearch-result-header {\n color: #949494;\n background-color: #222;\n border-right-color: #404040;\n }\n /* gist.github.com: \"#f6f8fa\" */\n .gist-quicksearch-results .select-menu-item {\n border-bottom-color: #202020;\n }\n /* gist.github.com: \"color: rgba(27,31,35,.3)\" */\n .gist-quicksearch-results .select-menu-item .octicon-gist {\n color: rgba(230, 230, 230, .3);\n }\n /* gist.github.com: \"rgba(115,92,15,.5)\" */\n .gist-quicksearch-results .select-menu-item .octicon-gist-secret {\n color: rgba(204, 187, 68, .5);\n }\n /* gist.github.com: \"color: #6a737d\" */\n .gist-quicksearch-results .select-menu-item h4,\n .gist-quicksearch-results .select-menu-item span {\n color: #949494;\n }\n /* gist.github.com: \"color: #fff\" */\n .gist-quicksearch-results .select-menu-item.navigation-focus h4,\n .gist-quicksearch-results .select-menu-item.navigation-focus span,\n .gist-quicksearch-results .select-menu-item[aria-selected=true] h4,\n .gist-quicksearch-results .select-menu-item[aria-selected=true] span {\n color: #fff;\n }\n /* gist.github.com: \"color: #959da5\" */\n .gist-quicksearch-results .gist-quicksearch-no-results {\n color: #767676;\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\",\"#fff\", \"#fff\" */\n .gist-banner {\n background-image: linear-gradient(180deg, transparent 30%, #181818), linear-gradient(70deg, #e0f1ff 32%, #fffae3);\n border-bottom-color: #181818;\n }\n /* gist.github.com: \"hsla(0,0%,100%,0)\" */\n .gist-banner.gist-detail-intro {\n background-image: linear-gradient(180deg, transparent 30%, #fafafa), linear-gradient(70deg, #e0f1ff 32%, #fffae3);\n }\n /* gist.github.com: \"color: #444d56\" */\n .keyboard-mappings {\n color: #afafaf;\n }\n /* gist.github.com: \"color: #24292e\" */\n .keyboard-mappings th {\n color: #cdcdcd;\n }\n /* gist.github.com: \"color: #586069\" */\n .keyboard-mappings .keys {\n color: #afafaf;\n }\n /* end gist.github.com rules */\n /* begin github-mobile rules */\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border {\n border-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-top {\n border-top-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-right {\n border-right-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .border-left {\n border-left-color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:544px) {\n body[class=\"page-responsive\"] .border-sm {\n border-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-sm-top {\n border-top-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-sm-right {\n border-right-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:768px) {\n body[class=\"page-responsive\"] .border-md {\n border-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-md-top {\n border-top-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-md-right {\n border-right-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1012px) {\n body[class=\"page-responsive\"] .border-lg {\n border-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-lg-top {\n border-top-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-lg-right {\n border-right-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* github-mobile: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1280px) {\n body[class=\"page-responsive\"] .border-xl {\n border-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-xl-top {\n border-top-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-xl-right {\n border-right-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n body[class=\"page-responsive\"] .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .border-blue {\n border-color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#c8e1ff\" */\n body[class=\"page-responsive\"] .border-blue-light {\n border-color: #246 !important;\n }\n /* github-mobile: \"#34d058\" */\n body[class=\"page-responsive\"] .border-green {\n border-color: #373 !important;\n }\n /* github-mobile: \"#a2cbac\" */\n body[class=\"page-responsive\"] .border-green-light {\n border-color: #040 !important;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .border-red {\n border-color: #d82828 !important;\n }\n /* github-mobile: \"#f97583\" */\n body[class=\"page-responsive\"] .border-red-light {\n border-color: #f88 !important;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .border-purple {\n border-color: #9378ba !important;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .border-yellow {\n border-color: #cb4 !important;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .border-gray-light {\n border-color: #343434 !important;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .border-gray-dark {\n border-color: #404040 !important;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* github-mobile: \"hsla(0,0%,100%,.5)\" */\n body[class=\"page-responsive\"] .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* github-mobile: \"rgba(27,31,35,.04)\" */\n body[class=\"page-responsive\"] .box-shadow {\n box-shadow: 0 1px 0 #000 !important;\n }\n /* github-mobile: \"rgba(149,157,165,.15)\" */\n body[class=\"page-responsive\"] .box-shadow-medium {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15) !important;\n }\n /* github-mobile: \"rgba(149,157,165,.2)\" */\n body[class=\"page-responsive\"] .box-shadow-large {\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2) !important;\n }\n /* github-mobile: \"rgba(149,157,165,.3)\" */\n body[class=\"page-responsive\"] .box-shadow-extra-large {\n box-shadow: 0 12px 48px rgba(0, 0, 0, .3) !important;\n }\n /* github-mobile: \"box-shadow: none !important\" */\n body[class=\"page-responsive\"] .box-shadow-none {\n box-shadow: none !important;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .bg-white {\n background-color: #181818 !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .bg-blue {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#f1f8ff\" */\n body[class=\"page-responsive\"] .bg-blue-light {\n background-color: #182030 !important;\n }\n /* github-mobile: \"#24292e\" */\n body[class=\"page-responsive\"] .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .bg-gray {\n background-color: #222 !important;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .bg-gray-light {\n background-color: #181818 !important;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .bg-green {\n background-color: #484 !important;\n }\n /* github-mobile: \"#dcffe4\" */\n body[class=\"page-responsive\"] .bg-green-light {\n background-color: #002800 !important;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .bg-red {\n background-color: #d82828 !important;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .bg-red-light {\n background-color: #300 !important;\n }\n /* github-mobile: \"#ffd33d\" */\n body[class=\"page-responsive\"] .bg-yellow {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#fff5b1\" */\n body[class=\"page-responsive\"] .bg-yellow-light {\n background-color: #651 !important;\n }\n /* github-mobile: \"#dbab09\" */\n body[class=\"page-responsive\"] .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .bg-purple {\n background-color: #9378ba !important;\n }\n /* github-mobile: \"#f5f0ff\" */\n body[class=\"page-responsive\"] .bg-purple-light {\n background-color: #213 !important;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .bg-gray-1 {\n background-color: #222 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .color-gray-2 {\n color: #343434 !important;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .color-gray-3 {\n color: #404040 !important;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* github-mobile: \"color: #959da5 !important\" */\n body[class=\"page-responsive\"] .color-gray-4 {\n color: #767676 !important;\n }\n /* github-mobile: \"color: #6a737d !important\" */\n body[class=\"page-responsive\"] .color-gray-5 {\n color: #949494 !important;\n }\n /* github-mobile: \"#6a737d\" */\n body[class=\"page-responsive\"] .bg-gray-5 {\n background-color: #444 !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .color-gray-6 {\n color: #afafaf !important;\n }\n /* github-mobile: \"#586069\" */\n body[class=\"page-responsive\"] .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* github-mobile: \"color: #444d56 !important\" */\n body[class=\"page-responsive\"] .color-gray-7 {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #2f363d !important\" */\n body[class=\"page-responsive\"] .color-gray-8 {\n color: #bebebe !important;\n }\n /* github-mobile: \"#2f363d\" */\n body[class=\"page-responsive\"] .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* github-mobile: \"color: #24292e !important\" */\n body[class=\"page-responsive\"] .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* github-mobile: \"#24292e\" */\n body[class=\"page-responsive\"] .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* github-mobile: \"#dbedff\" */\n body[class=\"page-responsive\"] .bg-blue-0,\n body[class=\"page-responsive\"] .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* github-mobile: \"#c8e1ff\" */\n body[class=\"page-responsive\"] .color-blue-2 {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#c8e1ff\" */\n body[class=\"page-responsive\"] .bg-blue-2 {\n background-color: #246 !important;\n }\n /* github-mobile: \"#79b8ff\" */\n body[class=\"page-responsive\"] .color-blue-3 {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#79b8ff\" */\n body[class=\"page-responsive\"] .bg-blue-3 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#2188ff\" */\n body[class=\"page-responsive\"] .color-blue-4 {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#2188ff\" */\n body[class=\"page-responsive\"] .bg-blue-4 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .color-blue-5 {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .bg-blue-5 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#005cc5\" */\n body[class=\"page-responsive\"] .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* github-mobile: \"#005cc5\" */\n body[class=\"page-responsive\"] .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* github-mobile: \"#044289\" */\n body[class=\"page-responsive\"] .color-blue-7 {\n color: rgba(79, 140, 201, .5) !important;\n }\n /* github-mobile: \"#044289\" */\n body[class=\"page-responsive\"] .bg-blue-7 {\n background-color: rgba(79, 140, 201, .5) !important;\n }\n /* github-mobile: \"color: #032f62 !important\" */\n body[class=\"page-responsive\"] .color-blue-8 {\n color: #9daccc !important;\n }\n /* github-mobile: \"#032f62\" */\n body[class=\"page-responsive\"] .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* github-mobile: \"color: #05264c !important\" */\n body[class=\"page-responsive\"] .color-blue-9 {\n color: #bebebe !important;\n }\n /* github-mobile: \"#05264c\" */\n body[class=\"page-responsive\"] .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* github-mobile: \"#f0fff4\" */\n body[class=\"page-responsive\"] .color-green-0 {\n color: #002800 !important;\n }\n /* github-mobile: \"#f0fff4\" */\n body[class=\"page-responsive\"] .bg-green-0 {\n background-color: #002800 !important;\n }\n /* github-mobile: \"#dcffe4\" */\n body[class=\"page-responsive\"] .color-green-1 {\n color: #002800 !important;\n }\n /* github-mobile: \"#dcffe4\" */\n body[class=\"page-responsive\"] .bg-green-1 {\n background-color: #002800 !important;\n }\n /* github-mobile: \"#34d058\" */\n body[class=\"page-responsive\"] .color-green-4 {\n color: #373 !important;\n }\n /* github-mobile: \"#34d058\" */\n body[class=\"page-responsive\"] .bg-green-4 {\n background-color: #373 !important;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .color-green-5 {\n color: #484 !important;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .bg-green-5 {\n background-color: #484 !important;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .color-green-6 {\n color: #6cc644 !important;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* github-mobile: \"#165c26\" */\n body[class=\"page-responsive\"] .color-green-8 {\n color: #6cc644 !important;\n }\n /* github-mobile: \"#165c26\" */\n body[class=\"page-responsive\"] .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* github-mobile: \"#144620\" */\n body[class=\"page-responsive\"] .color-green-9 {\n color: #6cc644 !important;\n }\n /* github-mobile: \"#144620\" */\n body[class=\"page-responsive\"] .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* github-mobile: \"#fffdef\" */\n body[class=\"page-responsive\"] .color-yellow-0 {\n color: #261d08 !important;\n }\n /* github-mobile: \"#fffdef\" */\n body[class=\"page-responsive\"] .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* github-mobile: \"#fffbdd\" */\n body[class=\"page-responsive\"] .color-yellow-1 {\n color: #261d08 !important;\n }\n /* github-mobile: \"#fffbdd\" */\n body[class=\"page-responsive\"] .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* github-mobile: \"#fff5b1\" */\n body[class=\"page-responsive\"] .color-yellow-2 {\n color: #651 !important;\n }\n /* github-mobile: \"#fff5b1\" */\n body[class=\"page-responsive\"] .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* github-mobile: \"#ffea7f\" */\n body[class=\"page-responsive\"] .color-yellow-3 {\n color: #542 !important;\n }\n /* github-mobile: \"#ffea7f\" */\n body[class=\"page-responsive\"] .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* github-mobile: \"#ffd33d\" */\n body[class=\"page-responsive\"] .color-yellow-5 {\n color: #cb4 !important;\n }\n /* github-mobile: \"#ffd33d\" */\n body[class=\"page-responsive\"] .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .color-yellow-6 {\n color: #cb4 !important;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#dbab09\" */\n body[class=\"page-responsive\"] .color-yellow-7 {\n color: #cb4 !important;\n }\n /* github-mobile: \"#dbab09\" */\n body[class=\"page-responsive\"] .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#b08800\" */\n body[class=\"page-responsive\"] .color-yellow-8 {\n color: #cb4 !important;\n }\n /* github-mobile: \"#b08800\" */\n body[class=\"page-responsive\"] .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* github-mobile: \"#735c0f\" */\n body[class=\"page-responsive\"] .color-yellow-9 {\n color: #bba257 !important;\n }\n /* github-mobile: \"#735c0f\" */\n body[class=\"page-responsive\"] .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* github-mobile: \"#fb8532\" */\n body[class=\"page-responsive\"] .color-orange-4 {\n color: #fb8532 !important;\n }\n /* github-mobile: \"#fb8532\" */\n body[class=\"page-responsive\"] .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* github-mobile: \"#e36209\" */\n body[class=\"page-responsive\"] .color-orange-6 {\n color: #fb8532 !important;\n }\n /* github-mobile: \"#e36209\" */\n body[class=\"page-responsive\"] .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* github-mobile: \"#d15704\" */\n body[class=\"page-responsive\"] .color-orange-7 {\n color: #f3582c !important;\n }\n /* github-mobile: \"#d15704\" */\n body[class=\"page-responsive\"] .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* github-mobile: \"#a04100\" */\n body[class=\"page-responsive\"] .color-orange-9 {\n color: #f3582c !important;\n }\n /* github-mobile: \"#a04100\" */\n body[class=\"page-responsive\"] .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .color-red-0 {\n color: #300 !important;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .bg-red-0 {\n background-color: #300 !important;\n }\n /* github-mobile: \"#ffdce0\" */\n body[class=\"page-responsive\"] .color-red-1 {\n color: #300 !important;\n }\n /* github-mobile: \"#ffdce0\" */\n body[class=\"page-responsive\"] .bg-red-1 {\n background-color: #300 !important;\n }\n /* github-mobile: \"#f97583\" */\n body[class=\"page-responsive\"] .color-red-3 {\n color: #f88 !important;\n }\n /* github-mobile: \"#f97583\" */\n body[class=\"page-responsive\"] .bg-red-3 {\n background-color: #f88 !important;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .color-red-5 {\n color: #d82828 !important;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .color-red-6 {\n color: #d82828 !important;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* github-mobile: \"#86181d\" */\n body[class=\"page-responsive\"] .color-red-9 {\n color: #d82828 !important;\n }\n /* github-mobile: \"#86181d\" */\n body[class=\"page-responsive\"] .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* github-mobile: \"#f5f0ff\" */\n body[class=\"page-responsive\"] .color-purple-0 {\n color: #213 !important;\n }\n /* github-mobile: \"#f5f0ff\" */\n body[class=\"page-responsive\"] .bg-purple-0 {\n background-color: #213 !important;\n }\n /* github-mobile: \"#8a63d2\" */\n body[class=\"page-responsive\"] .color-purple-4 {\n color: #53387a !important;\n }\n /* github-mobile: \"#8a63d2\" */\n body[class=\"page-responsive\"] .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .color-purple-5 {\n color: #9378ba !important;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* github-mobile: \"#ffeef8\" */\n body[class=\"page-responsive\"] .color-pink-0 {\n color: #170711 !important;\n }\n /* github-mobile: \"#ffeef8\" */\n body[class=\"page-responsive\"] .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* github-mobile: \"#ec6cb9\" */\n body[class=\"page-responsive\"] .color-pink-4 {\n color: #c49 !important;\n }\n /* github-mobile: \"#ec6cb9\" */\n body[class=\"page-responsive\"] .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* github-mobile: \"#99306f\" */\n body[class=\"page-responsive\"] .color-pink-8 {\n color: #e6b !important;\n }\n /* github-mobile: \"#99306f\" */\n body[class=\"page-responsive\"] .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .text-blue {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .text-red {\n color: #d82828 !important;\n }\n /* github-mobile: \"color: #6a737d !important\" */\n body[class=\"page-responsive\"] .text-gray-light {\n color: #949494 !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .text-gray {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #24292e !important\" */\n body[class=\"page-responsive\"] .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .text-green {\n color: #6cc644 !important;\n }\n /* github-mobile: \"#b08800\" */\n body[class=\"page-responsive\"] .text-yellow {\n color: #cb4 !important;\n }\n /* github-mobile: \"#a04100\" */\n body[class=\"page-responsive\"] .text-orange {\n color: #f3582c !important;\n }\n /* github-mobile: \"#e36209\" */\n body[class=\"page-responsive\"] .text-orange-light {\n color: #fb8532 !important;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .text-purple {\n color: #9378ba !important;\n }\n /* github-mobile: \"color: #fff !important\" */\n body[class=\"page-responsive\"] .text-white {\n color: #fff !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .link-gray {\n color: #afafaf !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .link-gray:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"color: #24292e !important\" */\n body[class=\"page-responsive\"] .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .link-gray-dark:hover,\n body[class=\"page-responsive\"] .link-hover-blue:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .muted-link {\n color: #afafaf !important;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .muted-link:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github-mobile: \"transparent\" */\n body[class=\"page-responsive\"] .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .lead {\n color: #afafaf;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .text-emphasized {\n color: #cdcdcd;\n }\n /* github-mobile: \"hsla(0,0%,100%,.5)\" */\n body[class=\"page-responsive\"] .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* github-mobile: \"color: #24292e\", \"#fff\", \"#e1e4e8\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n body[class=\"page-responsive\"] .form-control,\n body[class=\"page-responsive\"] .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #343434;\n box-shadow: none;\n }\n /* github-mobile: \"#0366d6\", \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n body[class=\"page-responsive\"] .form-control.focus,\n body[class=\"page-responsive\"] .form-control:focus,\n body[class=\"page-responsive\"] .form-select.focus,\n body[class=\"page-responsive\"] .form-select:focus {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* github-mobile: \"color: #959da5\", \"#f3f4f6\" */\n body[class=\"page-responsive\"] .form-control[disabled],\n body[class=\"page-responsive\"] .form-select[disabled] {\n color: #767676;\n background-color: #242424;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .input-contrast,\n body[class=\"page-responsive\"] .input-contrast:focus {\n background-color: #181818;\n }\n /* github-mobile: \"color: #fff\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .input-dark {\n color: #fff;\n box-shadow: none;\n }\n /* github-mobile: \"rgba(27,31,35,.3)\" */\n body[class=\"page-responsive\"] .input-dark.focus,\n body[class=\"page-responsive\"] .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] ::-webkit-input-placeholder {\n color: #949494;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] ::placeholder {\n color: #949494;\n }\n /* github-mobile: \"#fffbdd\" */\n body[class=\"page-responsive\"] .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .form-checkbox .note,\n body[class=\"page-responsive\"] .hfields .form-group .form-group-header label,\n body[class=\"page-responsive\"] .hfields .form-group dt label {\n color: #afafaf;\n }\n /* github-mobile: \"#735c0f\", \"#fffbdd\", \"#f9c513\" */\n body[class=\"page-responsive\"] .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #cb4;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .form-group .form-control,\n body[class=\"page-responsive\"] .form-group .form-control:focus,\n body[class=\"page-responsive\"] .form-select {\n background-color: #181818;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .form-group .form-group-body h4.is-error,\n body[class=\"page-responsive\"] .form-group dd h4.is-error {\n color: #d82828;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .form-group .form-group-body h4.is-success,\n body[class=\"page-responsive\"] .form-group dd h4.is-success {\n color: #6cc644;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .form-group.required .form-group-header label::after,\n body[class=\"page-responsive\"] .form-group.required dt label::after {\n color: #d82828;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .form-group.successful .success {\n color: #6cc644;\n }\n /* github-mobile: \"#144620\", \"#dcffe4\", \"#34d058\" */\n body[class=\"page-responsive\"] .form-group.successed .success {\n color: #6cc644;\n background-color: #002800;\n border-color: #373;\n }\n /* github-mobile: \"#dcffe4\" */\n body[class=\"page-responsive\"] .form-group.successed .success::after {\n border-bottom-color: #002800;\n }\n /* github-mobile: \"#34d058\" */\n body[class=\"page-responsive\"] .form-group.successed .success::before {\n border-bottom-color: #373;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .form-group.warn .form-control {\n border-color: #cb4;\n }\n /* github-mobile: \"#fff5b1\", \"#f9c513\" */\n body[class=\"page-responsive\"] .form-group.warn .warning {\n background-color: #651;\n border-color: #cb4;\n }\n /* github-mobile: \"#fff5b1\" */\n body[class=\"page-responsive\"] .form-group.warn .warning::after {\n border-bottom-color: #651;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .form-group.warn .warning::before {\n border-bottom-color: #cb4;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .form-group.errored .form-control {\n border-color: #d82828;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .form-group.errored label {\n color: #d82828;\n }\n /* github-mobile: \"#ffeef0\", \"#f97583\" */\n body[class=\"page-responsive\"] .form-group.errored .error {\n background-color: #300;\n border-color: #f88;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* github-mobile: \"#f97583\" */\n body[class=\"page-responsive\"] .form-group.errored .error::before {\n border-bottom-color: #f88;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .note {\n color: #afafaf;\n }\n /* github-mobile: \"initial\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .label, body[class=\"page-responsive\"] .Label {\n background-color: initial !important;\n border-color: #343434;\n }\n /* github-mobile: \"color: #586069\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Label--gray,\n body[class=\"page-responsive\"] .Label--outline {\n color: #afafaf;\n border-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .Label--gray-darker {\n color: #cdcdcd;\n }\n /* github-mobile: \"#735c0f\", \"#f9c513\" */\n body[class=\"page-responsive\"] .Label--yellow {\n color: #bba257;\n border-color: #cb4;\n }\n /* github-mobile: \"#cb2431\", \"#cb2431\" */\n body[class=\"page-responsive\"] .Label--red {\n color: #d82828;\n border-color: #d82828;\n }\n /* github-mobile: \"#22863a\", \"#28a745\" */\n body[class=\"page-responsive\"] .Label--green,\n body[class=\"page-responsive\"] .Label--outline-green {\n color: #6cc644;\n border-color: #484;\n }\n /* github-mobile: \"#0366d6\", \"#0366d6\" */\n body[class=\"page-responsive\"] .Label--blue {\n color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* github-mobile: \"#6f42c1\", \"#8a63d2\" */\n body[class=\"page-responsive\"] .Label--purple {\n color: #9378ba;\n border-color: #53387a;\n }\n /* github-mobile: \"#ec6cb9\" */\n body[class=\"page-responsive\"] .Label--pink {\n border-color: #c49;\n }\n /* github-mobile: \"color: #fff\", \"#6a737d\" */\n body[class=\"page-responsive\"] .state, body[class=\"page-responsive\"] .State {\n color: #fff;\n background-color: #444;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .State--green {\n background-color: #484;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .State--red {\n background-color: #d82828;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .State--purple {\n background-color: #9378ba;\n }\n /* github-mobile: \"color: #24292e\", \"rgba(209,213,218,.5)\" */\n body[class=\"page-responsive\"] .Counter {\n color: #cdcdcd;\n background-color: rgba(90, 90, 90, .5);\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .Counter--gray-light {\n color: #949494;\n }\n /* github-mobile: \"color: #fff\", \"#6a737d\" */\n body[class=\"page-responsive\"] .Counter--gray {\n color: #fff;\n background-color: #444;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .diffstat {\n color: #afafaf;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .diffstat-block-deleted {\n background-color: #d82828;\n }\n /* github-mobile: \"#2cbe4e\" */\n body[class=\"page-responsive\"] .diffstat-block-added {\n background-color: #373;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .diffstat-block-neutral {\n background-color: #404040;\n }\n /* github-mobile: \"#fff\", \"hsla(0,0%,100%,.8)\" */\n body[class=\"page-responsive\"] .avatar-child {\n background-color: #181818;\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* github-mobile: \"#fff\", \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n body[class=\"page-responsive\"] .dropdown-menu {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .dropdown-item {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\" */\n body[class=\"page-responsive\"] .dropdown-item:focus,\n body[class=\"page-responsive\"] .dropdown-item:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] .dropdown-signout {\n background: none;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .dropdown-divider {\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .dropdown-header {\n color: #afafaf;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .dropdown-menu-w::before {\n border-color: transparent transparent transparent rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .dropdown-menu-w::after {\n border-color: transparent transparent transparent #181818;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .dropdown-menu-e::before {\n border-color: transparent rgba(220, 220, 220, .15) transparent transparent;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .dropdown-menu-e::after {\n border-color: transparent #181818 transparent transparent;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .dropdown-menu-ne::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .dropdown-menu-ne::after {\n border-top-color: #181818;\n }\n /* github-mobile: \"color: #fff\", \"#2f363d\", \"#444d56\", \"rgba(149,157,165,.2)\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark {\n color: #fff;\n background-color: #282828;\n border-color: #484848;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github-mobile: \"#444d56\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark::before {\n border-bottom-color: #484848;\n }\n /* github-mobile: \"#2f363d\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark::after {\n border-bottom-color: #282828;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark .dropdown-header {\n color: #404040;\n }\n /* github-mobile: \"#444d56\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark .dropdown-divider {\n border-top-color: #484848;\n }\n /* github-mobile: \"#444d56\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-w::before {\n border-color: transparent transparent transparent #484848;\n }\n /* github-mobile: \"#2f363d\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-w::after {\n border-color: transparent transparent transparent #282828;\n }\n /* github-mobile: \"#444d56\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-e::before {\n border-color: transparent #484848 transparent transparent;\n }\n /* github-mobile: \"#2f363d\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-e::after {\n border-color: transparent #282828 transparent transparent;\n }\n /* github-mobile: \"#444d56\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-ne::before {\n border-color: #484848 transparent transparent;\n }\n /* github-mobile: \"#2f363d\" */\n body[class=\"page-responsive\"] .dropdown-menu-dark.dropdown-menu-ne::after {\n border-color: #282828 transparent transparent;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #24292e\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .subnav-item {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .subnav-item:focus,\n body[class=\"page-responsive\"] .subnav-item:hover {\n background-color: #222;\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\", \"#005cc5\" */\n body[class=\"page-responsive\"] .subnav-item.selected,\n body[class=\"page-responsive\"] .subnav-item[aria-current]:not([aria-current=false]),\n body[class=\"page-responsive\"] .subnav-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: #4f8cc9;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .subnav-search-input {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .subnav-search-icon {\n color: #767676;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .subnav-search-context .btn {\n color: #afafaf;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .UnderlineNav {\n box-shadow: inset 0 -1px 0 #343434;\n }\n /* github-mobile: \"color: #1b1f23\", \"initial\", \"rgba(209,213,218,0)\" */\n body[class=\"page-responsive\"] .UnderlineNav-item {\n color: #dcdcdc;\n background-color: initial;\n border-bottom-color: transparent;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .UnderlineNav-item:focus,\n body[class=\"page-responsive\"] .UnderlineNav-item:hover {\n border-bottom-color: #404040;\n }\n /* github-mobile: \"#f9826c\" */\n body[class=\"page-responsive\"] .UnderlineNav-item.selected,\n body[class=\"page-responsive\"] .UnderlineNav-item[aria-current]:not([aria-current=false]),\n body[class=\"page-responsive\"] .UnderlineNav-item[role=tab][aria-selected=true] {\n border-bottom-color: #fff;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .UnderlineNav-item.selected .UnderlineNav-octicon,\n body[class=\"page-responsive\"] .UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon,\n body[class=\"page-responsive\"] .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .UnderlineNav-octicon {\n color: #767676;\n }\n /* github-mobile: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .markdown-body .absent {\n color: #d82828;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .markdown-body hr {\n background-color: #343434;\n }\n /* github-mobile: \"color: #6a737d\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* github-mobile: \"color: #1b1f23\" */\n body[class=\"page-responsive\"] .markdown-body h1 .octicon-link,\n body[class=\"page-responsive\"] .markdown-body h2 .octicon-link,\n body[class=\"page-responsive\"] .markdown-body h3 .octicon-link,\n body[class=\"page-responsive\"] .markdown-body h4 .octicon-link,\n body[class=\"page-responsive\"] .markdown-body h5 .octicon-link,\n body[class=\"page-responsive\"] .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .markdown-body h1,\n body[class=\"page-responsive\"] .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .markdown-body h6 {\n color: #949494;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .markdown-body table td,\n body[class=\"page-responsive\"] .markdown-body table th {\n border-color: #343434;\n }\n /* github-mobile: \"#fff\", \"#c6cbd1\" */\n body[class=\"page-responsive\"] .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .markdown-body table img {\n background-color: initial;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .markdown-body img {\n background-color: #181818;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .markdown-body .emoji {\n background-color: initial;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* github-mobile: \"rgba(27,31,35,.05)\" */\n body[class=\"page-responsive\"] .markdown-body code,\n body[class=\"page-responsive\"] .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* github-mobile: \"transparent\" */\n body[class=\"page-responsive\"] .markdown-body pre > code {\n background-color: transparent;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .markdown-body pre code,\n body[class=\"page-responsive\"] .markdown-body pre tt {\n background-color: initial;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .markdown-body .csv-data th {\n background-color: #222;\n }\n /* github-mobile: \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Box {\n background-color: #181818;\n border-color: #343434;\n }\n /* github-mobile: \"#f6f8fa\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Box-header {\n background-color: #222;\n border-color: #343434;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Box-body {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Box-row {\n border-top-color: #343434;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .Box-row.Box-row--unread,\n body[class=\"page-responsive\"] .Box-row.unread {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .Box-row.navigation-focus .Box-row--drag-button {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .Box-row--focus-gray.navigation-focus,\n body[class=\"page-responsive\"] .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* github-mobile: \"#f1f8ff\" */\n body[class=\"page-responsive\"] .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* github-mobile: \"#f1f8ff\" */\n body[class=\"page-responsive\"] .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* github-mobile: \"color: #24292e\", \"#0366d6\" */\n @media (min-width:768px) {\n body[class=\"page-responsive\"] .Box-row-link {\n color: #cdcdcd;\n }\n body[class=\"page-responsive\"] .Box-row-link:hover {\n color: rgb(79, 140, 201);\n }\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .Box-footer {\n border-top-color: #343434;\n }\n /* github-mobile: \"#c8e1ff\" */\n body[class=\"page-responsive\"] .Box--blue {\n border-color: #246;\n }\n /* github-mobile: \"#f1f8ff\", \"#c8e1ff\" */\n body[class=\"page-responsive\"] .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* github-mobile: \"#c8e1ff\" */\n body[class=\"page-responsive\"] .Box--blue .Box-body,\n body[class=\"page-responsive\"] .Box--blue .Box-footer,\n body[class=\"page-responsive\"] .Box--blue .Box-row {\n border-color: #246;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .Box--danger,\n body[class=\"page-responsive\"] .Box--danger .Box-body:last-of-type,\n body[class=\"page-responsive\"] .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* github-mobile: \"#f1f8ff\", \"#c8e1ff\" */\n body[class=\"page-responsive\"] .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* github-mobile: \"#fffbdd\" */\n body[class=\"page-responsive\"] .Box-row--yellow {\n background-color: #261d08;\n }\n /* github-mobile: \"#f1f8ff\" */\n body[class=\"page-responsive\"] .Box-row--blue {\n background-color: #182030;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .Box-row--gray {\n background-color: #222;\n }\n /* github-mobile: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n body[class=\"page-responsive\"] kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .btn .octicon {\n color: #949494;\n }\n /* github-mobile: \"rgba(27,31,35,.08)\" */\n body[class=\"page-responsive\"] .btn .Counter {\n background-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"color: #24292e\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n body[class=\"page-responsive\"] .btn {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github-mobile: \"#f3f4f6\" */\n body[class=\"page-responsive\"] .btn.hover,\n body[class=\"page-responsive\"] .btn:hover,\n body[class=\"page-responsive\"] [open] > .btn {\n background-color: #242424;\n }\n /* github-mobile: \"#edeff2\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n body[class=\"page-responsive\"] .btn.selected,\n body[class=\"page-responsive\"] .btn:active,\n body[class=\"page-responsive\"] .btn[aria-selected=true] {\n background-color: #343434;\n box-shadow: none;\n }\n /* github-mobile: \"color: #959da5\", \"#fafbfc\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .btn.disabled,\n body[class=\"page-responsive\"] .btn:disabled,\n body[class=\"page-responsive\"] .btn[aria-disabled=true] {\n color: #767676;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n body[class=\"page-responsive\"] .btn.focus,\n body[class=\"page-responsive\"] .btn:focus {\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* github-mobile: \"color: #fff\", \"#2ea44f\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n body[class=\"page-responsive\"] .btn-primary {\n color: #fff;\n background-color: #373;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github-mobile: \"#2c974b\" */\n body[class=\"page-responsive\"] .btn-primary.hover,\n body[class=\"page-responsive\"] .btn-primary:hover,\n body[class=\"page-responsive\"] [open] > .btn-primary {\n background-color: #484;\n }\n /* github-mobile: \"#2a8f47\" */\n body[class=\"page-responsive\"] .btn-primary.selected,\n body[class=\"page-responsive\"] .btn-primary:active,\n body[class=\"page-responsive\"] .btn-primary[aria-selected=true] {\n background-color: #595;\n }\n /* github-mobile: \"hsla(0,0%,100%,.8)\", \"#94d3a2\", \"rgba(27,31,35,.1)\", \"rgba(27,31,35,.1)\" */\n body[class=\"page-responsive\"] .btn-primary.disabled,\n body[class=\"page-responsive\"] .btn-primary:disabled,\n body[class=\"page-responsive\"] .btn-primary[aria-disabled=true] {\n color: hsla(0, 0%, 100%, .8);\n background-color: #040;\n border-color: rgba(220, 220, 220, .1);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github-mobile: \"hsla(0,0%,100%,.8)\" */\n body[class=\"page-responsive\"] .btn-primary .octicon {\n color: hsla(0, 0%, 100%, .8);\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .btn-danger {\n color: #d82828;\n }\n /* github-mobile: \"color: #fff\", \"#cb2431\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n body[class=\"page-responsive\"] .btn-danger:hover,\n body[class=\"page-responsive\"] [open] > .btn-danger {\n color: #fff;\n background-color: #d82828;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github-mobile: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .btn-danger.selected,\n body[class=\"page-responsive\"] .btn-danger:active,\n body[class=\"page-responsive\"] .btn-danger[aria-selected=true] {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n body[class=\"page-responsive\"] .btn-danger.disabled,\n body[class=\"page-responsive\"] .btn-danger:disabled,\n body[class=\"page-responsive\"] .btn-danger[aria-disabled=true] {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github-mobile: \"rgba(203,36,49,.4)\" */\n body[class=\"page-responsive\"] .btn-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 68, 68, .4);\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .btn-outline {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n body[class=\"page-responsive\"] .btn-outline:hover,\n body[class=\"page-responsive\"] [open] > .btn-outline {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github-mobile: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .btn-outline.selected,\n body[class=\"page-responsive\"] .btn-outline:active,\n body[class=\"page-responsive\"] .btn-outline[aria-selected=true] {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"rgba(3,102,214,.5)\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n body[class=\"page-responsive\"] .btn-outline.disabled,\n body[class=\"page-responsive\"] .btn-outline:disabled,\n body[class=\"page-responsive\"] .btn-outline[aria-disabled=true] {\n color: rgba(79, 140, 201, .5);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github-mobile: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n body[class=\"page-responsive\"] .btn-blue {\n color: #fff;\n background-color: rgb(79, 140, 201);\n background-image: linear-gradient(-180deg, rgb(79, 140, 201), rgb(79, 140, 201) 90%);\n }\n /* github-mobile: \"rgba(27,31,35,.5)\" */\n body[class=\"page-responsive\"] .btn-blue.hover,\n body[class=\"page-responsive\"] .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* github-mobile: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .btn-blue.selected,\n body[class=\"page-responsive\"] .btn-blue:active,\n body[class=\"page-responsive\"] .btn-blue[aria-selected=true],\n body[class=\"page-responsive\"] [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* github-mobile: \"none\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .btn-blue.disabled,\n body[class=\"page-responsive\"] .btn-blue:disabled,\n body[class=\"page-responsive\"] .btn-blue[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* github-mobile: \"#0366d6\", \"#fff\" */\n body[class=\"page-responsive\"] .btn-blue .Counter {\n color: rgb(79, 140, 201);\n background-color: #181818;\n }\n /* github-mobile: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .ajax-pagination-form .ajax-pagination-btn {\n color: rgb(79, 140, 201);\n background-color: #181818;\n border-color: #343434;\n }\n /* github-mobile: \"#0366d6\", \"#f6f8fa\" */\n body[class=\"page-responsive\"] .ajax-pagination-form .ajax-pagination-btn:focus,\n body[class=\"page-responsive\"] .ajax-pagination-form .ajax-pagination-btn:hover {\n color: rgb(79, 140, 201);\n background-color: #222;\n }\n /* github-mobile: \"#f6f8fa\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .ajax-pagination-form.loading .ajax-pagination-btn {\n background-color: #222;\n border-color: #404040;\n }\n /* github-mobile: \"#fff\", \"#444d56\", \"rgba(0,0,0,.4)\" */\n body[class=\"page-responsive\"] .Box--overlay {\n background-color: #181818;\n border-color: #484848;\n box-shadow: 0 0 18px #000;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .Box-body .help {\n color: #afafaf;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .content-attachment {\n border-left-color: #343434;\n }\n /* github-mobile: \"hsla(0,0%,100%,0)\",\"#fff\" */\n body[class=\"page-responsive\"] .max--md .content-attachment-content--gradient {\n background: linear-gradient(180deg, transparent, #181818 calc(100% - 28px));\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] .content-attachment-details[open] .max--md .content-attachment-content--gradient {\n background: none;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .render-container {\n background-color: #343434;\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] .render-container.is-render-ready.is-render-requested:not(.is-render-failed) {\n background: none;\n }\n /* github-mobile: \"color: #444d56\", \"#f6f8fa\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .render-notice {\n color: #afafaf;\n background-color: #222;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .pagehead {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .pagehead-actions > li {\n color: #cdcdcd;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .pagehead-actions .octicon-mute {\n color: #d82828;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .pagehead-tabs-item {\n color: #afafaf;\n }\n /* github-mobile: \"color: rgba(27,31,35,.3)\" */\n body[class=\"page-responsive\"] .pagehead-tabs-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .pagehead-tabs-item .Counter {\n color: #afafaf;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .pagehead-tabs-item:hover {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n body[class=\"page-responsive\"] .pagehead-tabs-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #fb8532 #343434 transparent;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .reponav-item {\n color: #afafaf;\n }\n /* github-mobile: \"color: rgba(27,31,35,.3)\" */\n body[class=\"page-responsive\"] .reponav-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .reponav-item .Counter {\n color: #afafaf;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .reponav-item:focus,\n body[class=\"page-responsive\"] .reponav-item:hover {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n body[class=\"page-responsive\"] .reponav-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #fb8532 #343434 transparent;\n }\n /* github-mobile: \"color: #fff\", \"initial\" */\n body[class=\"page-responsive\"] .reponav-wrapper .reponav-item.selected {\n color: #fff;\n background-color: initial;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .progress-bar {\n background-color: #343434;\n }\n /* github-mobile: \"#2cbe4e\" */\n body[class=\"page-responsive\"] .progress-bar .progress {\n background-color: #373;\n }\n /* github-mobile: \"#e1e4e8\", \"#28a745\",\"#005cc5\",\"#cb2431\" */\n body[class=\"page-responsive\"] .reverse-progress-container {\n background-color: #343434;\n background-image: linear-gradient(90deg, #484, #4f8cc9, #3a1d6e, #d82828, #f66a0a);\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .reverse-progress-bar {\n background-color: #343434;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .alert-label {\n color: #fff;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .alert-label--high {\n background-color: #d82828;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .graph-canvas .alert-label--high {\n fill: #d82828;\n }\n /* github-mobile: \"#e36209\" */\n body[class=\"page-responsive\"] .alert-label--moderate {\n background-color: #fb8532;\n }\n /* github-mobile: \"#e36209\" */\n body[class=\"page-responsive\"] .graph-canvas .alert-label--moderate {\n fill: #fb8532;\n }\n /* github-mobile: \"#dbab09\" */\n body[class=\"page-responsive\"] .alert-label--low {\n background-color: #cb4;\n }\n /* github-mobile: \"#dbab09\" */\n body[class=\"page-responsive\"] .graph-canvas .alert-label--low {\n fill: #cb4;\n }\n /* github-mobile: \"#f6f8fa\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .advisory-form {\n background-color: #222;\n border-top-color: #343434;\n }\n /* github-mobile: \"#24292e\" */\n body[class=\"page-responsive\"] .advisory-form .form-actions,\n body[class=\"page-responsive\"] .advisory-form .form-control,\n body[class=\"page-responsive\"] .advisory-form .previewable-comment-form,\n body[class=\"page-responsive\"] .Header-old {\n background-color: #181818;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n /* github-mobile: \"#fff\", \"rgba(27,31,35,.15)\" */\n .page-responsive .HeaderMenu--logged-out {\n background-color: #181818;\n box-shadow: 0 10px 50px #000;\n }\n /* github-mobile: \"initial\", \"box-shadow: none\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out {\n background-color: initial;\n box-shadow: none;\n }\n }\n /* github-mobile: \"box-shadow: none\" */\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: none;\n }\n /* github-mobile: \"rgba(27,31,35,.15)\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n }\n /* github-mobile: \"#eaecef\" */\n .page-responsive .HeaderMenu--logged-out .header-search-wrapper {\n border-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::-webkit-input-placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #444d56\", \"transparent\" */\n .page-responsive .HeaderMenu-link {\n color: #afafaf;\n background-color: transparent;\n }\n /* github-mobile: \"color: #24292e\" */\n .page-responsive .HeaderMenu-link:hover {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #fff\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link, .page-responsive .HeaderMenu-link:hover {\n color: #fff;\n }\n }\n /* github-mobile: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* github-mobile: \"hsla(0,0%,100%,.5)\", \"transparent\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n background-color: transparent;\n }\n }\n /* github-mobile: \"color: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .HeaderMenu-link {\n color: #cdcdcd;\n }\n /* github-mobile: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* github-mobile: \"color: #fff\", \"transparent\" */\n body[class=\"page-responsive\"] .HeaderMenu-link {\n color: #fff;\n background-color: transparent;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .HeaderMenu-link:hover {\n color: #fff;\n }\n /* github-mobile: \"hsla(0,0%,100%,.5)\" */\n body[class=\"page-responsive\"] .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-logo-invertocat,\n body[class=\"page-responsive\"] .header-logo-invertocat:hover {\n color: #fff;\n }\n /* github-mobile: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n body[class=\"page-responsive\"] .notification-indicator .mail-status {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .notification-indicator:hover .mail-status {\n background-color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .header-nav-current-user .user-profile-link {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n body[class=\"page-responsive\"] .feature-preview-indicator {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* github-mobile: \"color: #fff\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* github-mobile: \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-wrapper.focus {\n box-shadow: none;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-wrapper.focus .header-search-scope {\n color: #fff;\n }\n /* github-mobile: \"none\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* github-mobile: \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-input:focus {\n box-shadow: none;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-current .header-search-scope:hover {\n color: #fff;\n }\n /* github-mobile: \"color: #24292e !important\", \"#fafbfc\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-field-active {\n color: #cdcdcd !important;\n background-color: #181818;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-field-active::-webkit-input-placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #1b1f23\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container .navigation-focus mark,\n body[class=\"page-responsive\"] .header-search-current .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* github-mobile: \"color: #fff\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* github-mobile: \"#fafbfc\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-wrapper:focus-within {\n background-color: #181818;\n box-shadow: none;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-wrapper:focus-within .header-search-scope {\n color: #fff;\n }\n /* github-mobile: \"none\", \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* github-mobile: \"box-shadow: none\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-input:focus {\n box-shadow: none;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .header-search-scope:hover {\n color: #fff;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .header-search-prototype .code-search-filter-text-expander {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .header-search-prototype .search-filter-header,\n body[class=\"page-responsive\"] .header-search-prototype .search-refine-dropdown-header {\n color: #afafaf;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .site-search-close-button .site-search-close-x {\n color: #fff;\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] .header-search-prototype .site-search-filter-button {\n background: none;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .ems-refine-details-dialog {\n background-color: #181818;\n }\n /* github-mobile: \"color: #1b1f23\" */\n body[class=\"page-responsive\"] .header-search-prototype .ems-refine-details-dialog .ems-menu-item {\n color: #dcdcdc;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .header-search-prototype .ems-refine-details-dialog .ems-result-type-item {\n color: #cdcdcd;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .header-search-prototype .ems-result-types {\n border-right-color: #343434;\n }\n /* github-mobile: \"color: #24292e !important\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-field-active {\n color: #cdcdcd !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-field-active::-webkit-input-placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #586069 !important\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* github-mobile: \"color: #1b1f23\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container .navigation-focus mark,\n body[class=\"page-responsive\"] .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* github-mobile: \"color: #24292e\", \"#fafbfc\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] button {\n background: none;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] a {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] hr {\n background-color: #343434;\n }\n /* github-mobile: \"color: #000\" */\n body[class=\"page-responsive\"] textarea[disabled]::-webkit-input-placeholder {\n color: #f0f0f0;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .color-icons .octicon-comment-discussion {\n color: #cdcdcd;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .color-icons .octicon-issue-closed {\n color: #d82828;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .color-icons .octicon-git-branch,\n body[class=\"page-responsive\"] .color-icons .octicon-git-pull-request,\n body[class=\"page-responsive\"] .color-icons .octicon-issue-opened {\n color: #484;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .color-icons .octicon-git-commit {\n color: #afafaf;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .color-icons .opened {\n color: #484;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .color-icons .closed {\n color: #d82828;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .color-icons .merged {\n color: #9378ba;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .color-icons .draft {\n color: #afafaf;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] footer {\n border-top-color: #404040;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] footer .octicon,\n body[class=\"page-responsive\"] footer li {\n color: #767676;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .protip,\n body[class=\"page-responsive\"] .switcher-icon,\n body[class=\"page-responsive\"] .switcher-icon-close,\n body[class=\"page-responsive\"] .switcher-icon-open,\n body[class=\"page-responsive\"] .switcher-toggle-meta {\n color: #afafaf;\n }\n /* github-mobile: \"#fff\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .bubble {\n background-color: #181818;\n border-color: #404040;\n }\n /* github-mobile: \"color: #2f363d\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .bubble-title {\n color: #bebebe;\n border-bottom-color: #404040;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .bubble-title .octicon,\n body[class=\"page-responsive\"] .bubble-title time {\n color: #afafaf;\n }\n /* github-mobile: \"#f6f8fa\", \"#d1d5da\", \"rgba(27,31,35,.1)\" */\n body[class=\"page-responsive\"] .bubble-disabled {\n background-color: #222;\n border-color: #404040;\n box-shadow: inset 0 0 10px #000;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .bubble-disabled .bubble-content,\n body[class=\"page-responsive\"] .bubble-disabled .bubble-title {\n color: #afafaf;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .list {\n background-color: #181818;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .list-heading + .list-item,\n body[class=\"page-responsive\"] .list-item + .list-heading,\n body[class=\"page-responsive\"] .list-item + .list-item {\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .list-item > .list-item-chevron {\n color: #afafaf;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .list-item .meta {\n color: #949494;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .list-item .byline,\n body[class=\"page-responsive\"] .list-item .byline strong,\n body[class=\"page-responsive\"] .list-item .ref {\n color: #afafaf;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .list-item.read {\n background-color: #181818;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .list-item.read .list-item-title {\n color: #afafaf;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .list-item-title {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #586069\", \"#f6f8fa\", \"#eaecef\" */\n body[class=\"page-responsive\"] .list-heading {\n color: #afafaf;\n background-color: #222;\n border-top-color: #343434;\n }\n /* github-mobile: \"#c6cbd1\" */\n body[class=\"page-responsive\"] .list-action-form > .btn-link {\n color: #5a5a5a;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .list-empty .list-item,\n body[class=\"page-responsive\"] .list-options .list-item .list-item-title {\n color: #afafaf;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .list-options .list-item > .octicon {\n color: #fff;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .list-options .selected .list-item-title {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .list-options .selected > .octicon {\n color: #afafaf;\n }\n /* github-mobile: \"#fffdef\" */\n body[class=\"page-responsive\"] .repo-list .private {\n background-color: #261d08;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .repo-list .octicon {\n color: #afafaf;\n }\n /* github-mobile: \"color: rgba(27,31,35,.7)\" */\n body[class=\"page-responsive\"] .repo-list .octicon-lock {\n color: rgba(230, 230, 230, .7);\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .repo-list .no-repo,\n body[class=\"page-responsive\"] .user-list .follow-list-info {\n color: #afafaf;\n }\n /* github-mobile: \"#0366d6\", \"initial\" */\n body[class=\"page-responsive\"] .btn-link {\n color: rgb(79, 140, 201);\n background-color: initial;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .diff-view + .js-comments-holder .blob-code-deletion,\n body[class=\"page-responsive\"] .diff-view + .js-comments-holder .blob-num-deletion {\n background-color: #300;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .diff-view + .js-comments-holder span.no-nl-marker {\n color: #d82828;\n }\n /* github-mobile: \"#d1d5da\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .diff-view .file {\n border-top-color: #404040;\n border-bottom-color: #404040;\n }\n /* github-mobile: \"#fff5b1\", \"none\" */\n body[class=\"page-responsive\"] .diff-view .file:target .meta {\n background-color: #651;\n background-image: none;\n }\n /* github-mobile: \"color: #444d56\", \"#fff\",\"#f6f8fa\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .diff-view .file .meta {\n color: #afafaf;\n background-image: linear-gradient(#181818, #222);\n border-bottom-color: #404040;\n }\n /* github-mobile: \"#f6f8fa\", \"#c6cbd1\",\"#e1e4e8\" */\n body[class=\"page-responsive\"] .diff-view .file .meta span.icon {\n background-color: #222;\n border-color: #5a5a5a #343434 #343434 #5a5a5a;\n }\n /* github-mobile: \"color: #a3aab1\" */\n body[class=\"page-responsive\"] .diff-view .file .meta .octicon-file {\n color: #767676;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .diff-view .file .empty {\n color: #afafaf;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .diff-view .file .file-code {\n background-color: #181818;\n }\n /* github-mobile: \"color: rgba(27,31,35,.3)\" */\n body[class=\"page-responsive\"] .diff-view .file .blob-num {\n color: rgba(230, 230, 230, .3);\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .diff-view .file .blob-code-inner {\n color: #cdcdcd;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .diff-view .file .blob-code-hunk {\n color: #afafaf;\n }\n /* github-mobile: \"#f5f0ff\" */\n body[class=\"page-responsive\"] .diff-view .file .blob-num-hunk {\n background-color: #213;\n }\n /* github-mobile: \"#ffeef0\" */\n body[class=\"page-responsive\"] .diff-view .file .blob-code-deletion,\n body[class=\"page-responsive\"] .diff-view .file .blob-num-deletion {\n background-color: #300;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .diff-view .file span.no-nl-marker {\n color: #d82828;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .diff-view .inline-comments {\n background-color: #181818;\n }\n /* github-mobile: \"#d1d5da\" */\n body[class=\"page-responsive\"] .diff-view .inline-comment-form-container,\n body[class=\"page-responsive\"] .diff-view table .discussion-block {\n border-right-color: #404040;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .inline-comment-form {\n background-color: #181818;\n }\n /* github-mobile: \"initial\" */\n body[class=\"page-responsive\"] .inline-comment-form .inline-note-reply {\n background-color: initial;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .line-comments {\n border-color: #343434;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .timeline-inline-comments .inline-comment-form-container:last-child {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .mobile-toc {\n background-color: #181818;\n }\n /* github-mobile: \"#c6cbd1\" */\n body[class=\"page-responsive\"] .mobile-toc .switcher-option .octicon {\n color: #5a5a5a;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .mobile-toc .switcher-option .octicon-diff-removed {\n color: #d82828;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .mobile-toc .switcher-option .octicon-diff-renamed {\n color: #949494;\n }\n /* github-mobile: \"#2cbe4e\" */\n body[class=\"page-responsive\"] .mobile-toc .switcher-option .octicon-diff-added {\n color: #373;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .discussion-header {\n background-color: #181818;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .discussion-header .branches {\n color: #767676;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .discussion-header .branches .branch-name {\n color: #afafaf;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .discussion-issue-references,\n body[class=\"page-responsive\"] .discussion-labels {\n background-color: #181818;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .discussion-issue-references .octicon,\n body[class=\"page-responsive\"] .discussion-labels .octicon {\n color: #afafaf;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .discussion-sidebar-metadata {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .discussion-sidebar-metadata-separator {\n background-color: #181818;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .discussion-starting-comment .num,\n body[class=\"page-responsive\"] .discussion-starting-comment .username,\n body[class=\"page-responsive\"] .discussion-starting-comment time {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .discussion-starting-comment .discussion-title .num {\n color: #767676;\n }\n /* github-mobile: \"#fff\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .discussion-comment {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #586069\", \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .discussion-block-title {\n color: #afafaf;\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .discussion-block-meta .editor,\n body[class=\"page-responsive\"] .discussion-block-title .username {\n color: #afafaf;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .bubble.is-pending {\n border-color: #cb4;\n }\n /* github-mobile: \"#fffbdd\", \"#f9c513\" */\n body[class=\"page-responsive\"] .bubble.is-pending .discussion-block-title {\n background-color: #261d08;\n border-color: #cb4;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .bubble .commit-message {\n color: #afafaf;\n }\n /* github-mobile: \"color: #586069\", \"#f6f8fa\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .discussion-block-header {\n color: #afafaf;\n background-color: #222;\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .discussion-event .branch {\n color: #afafaf;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .timeline-truncation-container + .discussion-block {\n border-top-color: #343434;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .timeline-truncation-container .switch-to-desktop {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .issue-event,\n body[class=\"page-responsive\"] .issue-event .meta,\n body[class=\"page-responsive\"] .issue-event strong,\n body[class=\"page-responsive\"] .timeline-truncation-title {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .issue-event-icon {\n color: #767676;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .issue-event-icon-open {\n color: #484;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .issue-event-icon-closed {\n color: #d82828;\n }\n /* github-mobile: \"#6f42c1\" */\n body[class=\"page-responsive\"] .issue-event-icon-merged {\n color: #9378ba;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .issue-event-icon-locked {\n color: #cdcdcd;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .issue-event-icon-unlocked {\n color: #484;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .closed-event {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .dead-pull-request-review-comment,\n body[class=\"page-responsive\"] .dead-pull-request-review-comment .username {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .timeline-review-comment-thread-container.dead .octicon {\n color: #767676;\n }\n /* github-mobile: \"color: #6a737d\", \"#f6f8fa\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .cross-reference .bubble-title {\n color: #949494;\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .cross-reference .bubble-title a {\n color: #949494;\n }\n /* github-mobile: \"#fffdef\", \"none\" */\n body[class=\"page-responsive\"] .cross-reference .bubble-title.private {\n background-color: #261d08;\n background-image: none;\n }\n /* github-mobile: \"color: rgba(27,31,35,.7)\" */\n body[class=\"page-responsive\"] .cross-reference .bubble-title .octicon-lock {\n color: rgba(230, 230, 230, .7);\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .cross-reference .bubble-content a,\n body[class=\"page-responsive\"] .timeline-commits-container {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .timeline-commits-container .octicon-repo-push {\n color: #767676;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .timeline-commits-container .author,\n body[class=\"page-responsive\"] .timeline-commits-container .commit-message a {\n color: #afafaf;\n }\n /* github-mobile: \"color: #959da5\" */\n body[class=\"page-responsive\"] .commit-meta a {\n color: #767676;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .commit-meta .octicon-x {\n color: #d82828;\n }\n /* github-mobile: \"#28a745\" */\n body[class=\"page-responsive\"] .commit-meta .octicon-check {\n color: #484;\n }\n /* github-mobile: \"#f6f8fa\", \"#d1d5da\" */\n body[class=\"page-responsive\"] .timeline-review-container .file-header {\n background-color: #222;\n border-top-color: #404040;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .timeline-review-container .inline-comment-form {\n background-color: #181818;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .timeline-review-container.is-pending {\n border-color: #cb4;\n }\n /* github-mobile: \"#735c0f\", \"#fffbdd\" */\n body[class=\"page-responsive\"] .timeline-review-container.is-pending .file-header,\n body[class=\"page-responsive\"] .timeline-review-container.is-pending .label {\n color: #bba257;\n background-color: #261d08;\n }\n /* github-mobile: \"#f9c513\" */\n body[class=\"page-responsive\"] .timeline-review-container.is-pending .bubble {\n border-color: #cb4;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .timeline-review-header {\n color: #afafaf;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .timeline-review-icon .octicon {\n color: #949494;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .timeline-review-meta .author {\n color: #afafaf;\n }\n /* github-mobile: \"#eaecef\" */\n body[class=\"page-responsive\"] .discussion-item-review-comment {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .team-mention,\n body[class=\"page-responsive\"] .user-mention {\n color: #cdcdcd;\n }\n /* github-mobile: \"#e1e4e8\" */\n body[class=\"page-responsive\"] .discussion-block + .discussion-block,\n body[class=\"page-responsive\"] .discussion-block + .discussion-event,\n body[class=\"page-responsive\"] .discussion-block + .timeline-commits-container,\n body[class=\"page-responsive\"] .discussion-event + .discussion-block,\n body[class=\"page-responsive\"] .discussion-event + .discussion-event,\n body[class=\"page-responsive\"] .discussion-event + .timeline-commits-container,\n body[class=\"page-responsive\"] .timeline-commits-container + .discussion-block,\n body[class=\"page-responsive\"] .timeline-commits-container + .discussion-event,\n body[class=\"page-responsive\"] .timeline-commits-container + .timeline-commits-container {\n border-top-color: #343434;\n }\n /* github-mobile: \"#fff\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .discussion-reply,\n body[class=\"page-responsive\"] .thread-subscription-status {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github-mobile: \"#c6cbd1\" */\n body[class=\"page-responsive\"] .thread-subscription-status .octicon-radio-tower {\n color: #5a5a5a;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .thread-subscription-description {\n color: #afafaf;\n }\n /* github-mobile: \"color: #586069\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .line-comment-info {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .line-comment-info::before {\n border-top-color: #343434;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .line-comment-info::after {\n border-top-color: #181818;\n }\n /* github-mobile: \"none\" */\n body[class=\"page-responsive\"] .emoji-picker-emoji-width {\n background-image: none;\n }\n /* github-mobile: \"color: #24292e\", \"#e36209\" */\n body[class=\"page-responsive\"] .emoji-tab[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* github-mobile: \"color: #6a737d\" */\n body[class=\"page-responsive\"] .emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .selected-emoji {\n background-color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #032f62\", \"#dbedff\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .flash {\n color: #9daccc;\n background-color: #182030;\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#735c0f\", \"#fffbdd\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .flash.flash-warn {\n color: #bba257;\n background-color: #261d08;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"#86181d\", \"#ffeef0\", \"rgba(27,31,35,.15)\" */\n body[class=\"page-responsive\"] .flash.flash-error {\n color: #d82828;\n background-color: #300;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github-mobile: \"color: #586069\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .markdown-body .email-quoted-reply,\n body[class=\"page-responsive\"] .markdown-body .email-signature-reply {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* github-mobile: \"color: #586069\", \"#dfe2e5\" */\n body[class=\"page-responsive\"] .breadcrumb {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #444d56\" */\n body[class=\"page-responsive\"] .breadcrumb strong {\n color: #afafaf;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .tabs > a {\n border-bottom-color: #343434;\n }\n /* github-mobile: \"color: #444d56\", \"#fff\", \"#e1e4e8\", \"#fff\" */\n body[class=\"page-responsive\"] .tabs > a.selected {\n color: #afafaf;\n background-color: #181818;\n border-color: #343434 #343434 #181818;\n }\n /* github-mobile: \"#fafbfc\" */\n body[class=\"page-responsive\"] .pagination {\n background-color: #181818;\n }\n /* github-mobile: \"color: #444d56\", \"#d1d5da\", \"#fff\" */\n body[class=\"page-responsive\"] .pagination a,\n body[class=\"page-responsive\"] .pagination em,\n body[class=\"page-responsive\"] .pagination span {\n color: #afafaf;\n border-color: #404040 #404040 #404040 #181818;\n }\n /* github-mobile: \"color: #fff\", \"#6a737d\", \"#6a737d\" */\n body[class=\"page-responsive\"] .pagination .current {\n color: #fff;\n background-color: #444;\n background-image: linear-gradient(#444, #959da5);\n }\n /* github-mobile: \"#c6cbd1\" */\n body[class=\"page-responsive\"] .pagination .disabled,\n body[class=\"page-responsive\"] .pagination .gap {\n color: #5a5a5a;\n }\n /* github-mobile: \"#cb2431\" */\n body[class=\"page-responsive\"] .oauth-delete-repo-permissions .octicon-alert {\n color: #d82828;\n }\n /* github-mobile: \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .issues-reset-query-wrapper {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github-mobile: \"#f1f8ff\" */\n body[class=\"page-responsive\"] .subset-files-tab {\n background-color: #182030;\n }\n /* github-mobile: \"color: #586069\", \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .branch-action {\n color: #afafaf;\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .discussion-block-header + .branch-action {\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .branch-action-heading {\n color: #cdcdcd;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .branch-action-expandable,\n body[class=\"page-responsive\"] .discussion-block-header + .branch-action-expandable {\n border-top-color: #343434;\n }\n /* github-mobile: \"#f6f8fa\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .branch-action-expandable .list-items-overflow {\n background-color: #222;\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .merge-branch .mergeable-state-message,\n body[class=\"page-responsive\"] .merge-branch .mergeable-state-message.required {\n color: #afafaf;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .merge-branch.open {\n border-top-color: #343434;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .merge-form-author {\n color: #afafaf;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .commit-list .message,\n body[class=\"page-responsive\"] .merge-options {\n color: #cdcdcd;\n }\n /* github-mobile: \"#22863a\" */\n body[class=\"page-responsive\"] .revision-number {\n background-color: #6cc644;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .repository-meta {\n color: #afafaf;\n }\n /* github-mobile: \"#fff\" */\n body[class=\"page-responsive\"] .user-bar-graph {\n background-color: #181818;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .max-commits {\n color: #afafaf;\n }\n /* github-mobile: \"color: #24292e\", \"#fb8532\" */\n body[class=\"page-responsive\"] .user-bar {\n color: #cdcdcd;\n background-color: #fb8532;\n }\n /* github-mobile: \"#f6f8fa\" */\n body[class=\"page-responsive\"] .y-axis-bar {\n background-color: #222;\n }\n /* github-mobile: \"#c6cbd1\" */\n body[class=\"page-responsive\"] .y-axis-bar.bottom {\n border-color: #5a5a5a;\n }\n /* github-mobile: \"#24292e\" */\n body[class=\"page-responsive\"] .blob-file-content,\n body[class=\"page-responsive\"] .reponav-wrapper {\n background-color: #181818;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .reponav-item.selected {\n color: #fff;\n }\n /* github-mobile: \"color: #586069\", \"#24292e\" */\n body[class=\"page-responsive\"] .server-stats {\n color: #afafaf;\n background-color: #181818;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .server-stats a,\n body[class=\"page-responsive\"] .server-stats strong {\n color: #fff;\n }\n /* github-mobile: \"color: #586069\", \"#fff\", \"#e1e4e8\" */\n body[class=\"page-responsive\"] .inbox-unavailable,\n body[class=\"page-responsive\"] .inbox-zero {\n color: #afafaf;\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github-mobile: \"#0366d6\", \"#fff\", \"none\" */\n body[class=\"page-responsive\"] .notification-shelf .btn-outline {\n color: rgb(79, 140, 201);\n background-color: #181818;\n background-image: none;\n }\n /* github-mobile: \"#dfe2e5\" */\n body[class=\"page-responsive\"] .gist-mobile-blob {\n border-top-color: #343434;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .check-annotation-failure::after {\n background-color: #d82828;\n }\n /* github-mobile: \"#d73a49\" */\n body[class=\"page-responsive\"] .check-annotation-failure .annotation-title {\n color: #d82828;\n }\n /* github-mobile: \"color: #586069\" */\n body[class=\"page-responsive\"] .user-status-org-button .user-status-org-detail {\n color: #afafaf;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .user-status-org-button:focus .user-status-org-detail,\n body[class=\"page-responsive\"] .user-status-org-button:hover .user-status-org-detail {\n color: #fff;\n }\n /* github-mobile: \"color: #fff\", \"#0366d6\" */\n body[class=\"page-responsive\"] .user-status-org-button.selected {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .user-status-org-button.selected .user-status-org-detail {\n color: #fff;\n }\n /* github-mobile: \"color: #24292e\" */\n body[class=\"page-responsive\"] .user-status-message-wrapper {\n color: #cdcdcd;\n }\n /* github-mobile: \"#0366d6\" */\n body[class=\"page-responsive\"] .toggle-user-status-edit:focus .user-status-message-wrapper,\n body[class=\"page-responsive\"] .toggle-user-status-edit:hover .user-status-message-wrapper {\n color: rgb(79, 140, 201);\n }\n /* github-mobile: \"#24292e\" */\n body[class=\"page-responsive\"] .Header {\n background-color: #181818;\n }\n /* github-mobile: \"color: #fff\" */\n body[class=\"page-responsive\"] .Header-link {\n color: #fff;\n }\n /* end github-mobile rules */\n /* begin github.com rules */\n /* github.com: \"initial\" */\n a {\n background-color: initial;\n }\n /* github.com: \"color: #1b1f23\" */\n mark {\n color: #dcdcdc;\n }\n /* github.com: \"color: #24292e\", \"#fff\" */\n body {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"#0366d6\" */\n a {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"transparent\", \"#dfe2e5\" */\n .rule, hr {\n background-color: transparent;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n kbd {\n color: #afafaf;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .Box, kbd {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .Box, .Box-header {\n border-color: #343434;\n }\n .Box-header {\n background-color: #222;\n }\n /* github.com: \"#e1e4e8\" */\n .Box-body {\n border-bottom-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .Box-row {\n border-top-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .Box-row.Box-row--unread, .Box-row.unread {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* github.com: \"#0366d6\" */\n .Box-row.navigation-focus .Box-row--drag-button {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#fafbfc\" */\n .Box-row.navigation-focus.sortable-chosen {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .Box-row--focus-gray.navigation-focus,\n .Box-row.navigation-focus.sortable-ghost {\n background-color: #222;\n }\n /* github.com: \"#f1f8ff\" */\n .Box-row--focus-blue.navigation-focus {\n background-color: #182030;\n }\n /* github.com: \"#f6f8fa\" */\n .Box-row--hover-gray:hover {\n background-color: #222;\n }\n /* github.com: \"#f1f8ff\" */\n .Box-row--hover-blue:hover {\n background-color: #182030;\n }\n /* github.com: \"color: #24292e\", \"#0366d6\" */\n @media (min-width:768px) {\n .Box-row-link {\n color: #cdcdcd;\n }\n .Box-row-link:hover {\n color: rgb(79, 140, 201);\n }\n }\n /* github.com: \"#e1e4e8\" */\n .Box-footer {\n border-top-color: #343434;\n }\n /* github.com: \"#c8e1ff\" */\n .Box--blue {\n border-color: #246;\n }\n /* github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box--blue .Box-header {\n background-color: #182030;\n border-color: #246;\n }\n /* github.com: \"#c8e1ff\" */\n .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row {\n border-color: #246;\n }\n /* github.com: \"#d73a49\" */\n .Box--danger, .Box--danger .Box-body:last-of-type,\n .Box--danger .Box-row:first-of-type {\n border-color: #d82828;\n }\n /* github.com: \"#f1f8ff\", \"#c8e1ff\" */\n .Box-header--blue {\n background-color: #182030;\n border-color: #246;\n }\n /* github.com: \"#fffbdd\" */\n .Box-row--yellow {\n background-color: #261d08;\n }\n /* github.com: \"#f1f8ff\" */\n .Box-row--blue {\n background-color: #182030;\n }\n /* github.com: \"#f6f8fa\" */\n .Box-row--gray {\n background-color: #222;\n }\n /* github.com: \"#e1e4e8\" */\n .breadcrumb-item::after {\n color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .breadcrumb-item-selected,\n .breadcrumb-item[aria-current]:not([aria-current=false]) {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .btn .octicon {\n color: #949494;\n }\n /* github.com: \"rgba(27,31,35,.08)\" */\n .btn .Counter {\n background-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #24292e\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github.com: \"#f3f4f6\" */\n .btn.hover, .btn:hover, [open] > .btn {\n background-color: #242424;\n }\n /* github.com: \"#edeff2\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n .btn.selected, .btn:active, .btn[aria-selected=true] {\n background-color: #343434;\n box-shadow: none;\n }\n /* github.com: \"color: #959da5\", \"#fafbfc\", \"rgba(27,31,35,.15)\" */\n .btn.disabled, .btn:disabled, .btn[aria-disabled=true] {\n color: #767676;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .btn.focus, .btn:focus {\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* github.com: \"color: #fff\", \"#2ea44f\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-primary {\n color: #fff;\n background-color: #373;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github.com: \"#2c974b\" */\n .btn-primary.hover, .btn-primary:hover, [open] > .btn-primary {\n background-color: #484;\n }\n /* github.com: \"#2a8f47\" */\n .btn-primary.selected, .btn-primary:active, .btn-primary[aria-selected=true] {\n background-color: #595;\n }\n /* github.com: \"hsla(0,0%,100%,.8)\", \"#94d3a2\", \"rgba(27,31,35,.1)\", \"rgba(27,31,35,.1)\" */\n .btn-primary.disabled, .btn-primary:disabled,\n .btn-primary[aria-disabled=true] {\n color: hsla(0, 0%, 100%, .8);\n background-color: #040;\n border-color: rgba(220, 220, 220, .1);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github.com: \"hsla(0,0%,100%,.8)\" */\n .btn-primary .octicon {\n color: hsla(0, 0%, 100%, .8);\n }\n /* github.com: \"#cb2431\" */\n .btn-danger {\n color: #d82828;\n }\n /* github.com: \"color: #fff\", \"#cb2431\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-danger:hover, [open] > .btn-danger {\n background-color: #d82828;\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github.com: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n .btn-danger.selected, .btn-danger:active, .btn-danger:hover,\n .btn-danger[aria-selected=true], [open] > .btn-danger {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn-danger.disabled, .btn-danger:disabled, .btn-danger[aria-disabled=true] {\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github.com: \"rgba(203,36,49,.4)\" */\n .btn-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 68, 68, .4);\n }\n /* github.com: \"#0366d6\" */\n .btn-outline {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"#0366d6\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.1)\" */\n .btn-outline:hover, [open] > .btn-outline {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .03);\n }\n /* github.com: \"color: #fff\", \"rgba(27,31,35,.15)\" */\n .btn-outline.selected, .btn-outline:active, .btn-outline:hover,\n .btn-outline[aria-selected=true], [open] > .btn-outline {\n color: #fff;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"rgba(3,102,214,.5)\", \"#fafbfc\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .btn-outline.disabled, .btn-outline:disabled,\n .btn-outline[aria-disabled=true] {\n color: rgba(79, 140, 201, .5);\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github.com: \"color: #fff\", \"#0361cc\", \"#0679fc\",\"#0361cc\" */\n .btn-blue {\n color: #fff;\n background-color: rgb(79, 140, 201);\n background-image: linear-gradient(-180deg, rgb(79, 140, 201), rgb(79, 140, 201) 90%);\n }\n /* github.com: \"rgba(27,31,35,.5)\" */\n .btn-blue.hover, .btn-blue:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* github.com: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-blue.selected, .btn-blue:active, .btn-blue[aria-selected=true],\n [open] > .btn-blue {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* github.com: \"none\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n .btn-blue.disabled, .btn-blue:disabled, .btn-blue[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* github.com: \"#0366d6\", \"#fff\" */\n .btn-blue .Counter {\n background-color: #181818;\n }\n /* github.com: \"#0366d6\", \"initial\" */\n .btn-blue .Counter, .btn-link {\n color: rgb(79, 140, 201);\n }\n .btn-link {\n background-color: initial;\n }\n /* github.com: \"color: rgba(88,96,105,.5)\" */\n .btn-link:disabled, .btn-link:disabled:hover, .btn-link[aria-disabled=true],\n .btn-link[aria-disabled=true]:hover {\n color: rgba(148, 148, 148, .5);\n }\n /* github.com: \"#0366d6\", \"initial\", \"box-shadow: none\" */\n .btn-invisible {\n color: rgb(79, 140, 201);\n background-color: initial;\n box-shadow: none;\n }\n /* github.com: \"#0366d6\", \"none\", \"box-shadow: none\" */\n .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active,\n .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active,\n .btn-invisible:focus, .btn-invisible:hover,\n .btn-invisible[aria-selected=true] {\n color: rgb(79, 140, 201);\n background: none;\n box-shadow: none;\n }\n /* github.com: \"color: #586069\", \"transparent\" */\n .btn-octicon {\n color: #afafaf;\n background-color: transparent;\n }\n /* github.com: \"#0366d6\" */\n .btn-octicon:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #959da5\" */\n .btn-octicon.disabled, .btn-octicon.disabled:hover,\n .btn-octicon[aria-disabled=true], .btn-octicon[aria-disabled=true]:hover {\n color: #767676;\n }\n /* github.com: \"#cb2431\" */\n .btn-octicon-danger:hover {\n color: #d82828;\n }\n /* github.com: \"transparent\" */\n .close-button {\n background-color: transparent;\n }\n /* github.com: \"color: #444d56\", \"#dfe2e5\" */\n .ellipsis-expander, .hidden-text-expander a {\n color: #afafaf;\n background-color: #343434;\n }\n /* github.com: \"#c6cbd1\" */\n .ellipsis-expander:hover, .hidden-text-expander a:hover {\n background-color: #5a5a5a;\n }\n /* github.com: \"color: #fff\", \"#2188ff\" */\n .ellipsis-expander:active, .hidden-text-expander a:active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.04)\" */\n .social-count {\n color: #cdcdcd;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 1px 0 #000, inset 0 1px 0 hsla(0, 0%, 100%, .25);\n }\n /* github.com: \"#0366d6\" */\n .social-count:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .social-count:focus {\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#e1e4e8\", \"box-shadow: inset 0 1px 0 rgba(225,228,232,.2)\" */\n .form-control, .form-select {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #343434;\n box-shadow: none;\n }\n /* github.com: \"#0366d6\", \"box-shadow: 0 0 0 3px rgba(3,102,214,.3)\" */\n .form-control.focus, .form-control:focus, .form-select.focus,\n .form-select:focus {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 3px rgba(79, 140, 201, .3);\n }\n /* github.com: \"color: #959da5\", \"#f3f4f6\" */\n .form-control[disabled], .form-select[disabled] {\n color: #767676;\n background-color: #242424;\n }\n /* github.com: \"#fff\" */\n .input-contrast, .input-contrast:focus {\n background-color: #181818;\n }\n /* github.com: \"color: #fff\", \"box-shadow: none\" */\n .input-dark {\n color: #fff;\n box-shadow: none;\n }\n /* github.com: \"rgba(27,31,35,.3)\" */\n .input-dark.focus, .input-dark:focus {\n border-color: rgba(220, 220, 220, .4);\n }\n /* github.com: \"color: #6a737d\" */\n :-ms-input-placeholder {\n color: #949494;\n }\n /* github.com: \"color: #6a737d\" */\n ::-ms-input-placeholder {\n color: #949494;\n }\n /* github.com: \"color: #6a737d\" */\n ::placeholder {\n color: #949494;\n }\n /* github.com: \"#fffbdd\" */\n .form-checkbox label em.highlight {\n background-color: #261d08;\n }\n /* github.com: \"color: #586069\" */\n .form-checkbox .note, .hfields .form-group .form-group-header label,\n .hfields .form-group dt label {\n color: #afafaf;\n }\n /* github.com: \"#735c0f\", \"#fffbdd\", \"#f9c513\" */\n .form-warning {\n color: #bba257;\n background-color: #261d08;\n border-color: #cb4;\n }\n /* github.com: \"#fff\" */\n .form-group .form-control, .form-group .form-control:focus, .form-select {\n background-color: #181818;\n }\n /* github.com: \"#cb2431\" */\n .form-group .form-group-body h4.is-error, .form-group dd h4.is-error {\n color: #d82828;\n }\n /* github.com: \"#22863a\" */\n .form-group .form-group-body h4.is-success, .form-group dd h4.is-success {\n color: #6cc644;\n }\n /* github.com: \"#cb2431\" */\n .form-group.required .form-group-header label::after,\n .form-group.required dt label::after {\n color: #d82828;\n }\n /* github.com: \"#22863a\" */\n .form-group.successful .success {\n color: #6cc644;\n }\n /* github.com: \"#144620\", \"#dcffe4\", \"#34d058\" */\n .form-group.successed .success {\n color: #6cc644;\n background-color: #002800;\n border-color: #373;\n }\n /* github.com: \"#dcffe4\" */\n .form-group.successed .success::after {\n border-bottom-color: #002800;\n }\n /* github.com: \"#34d058\" */\n .form-group.successed .success::before {\n border-bottom-color: #373;\n }\n /* github.com: \"#f9c513\" */\n .form-group.warn .form-control {\n border-color: #cb4;\n }\n /* github.com: \"#fff5b1\", \"#f9c513\" */\n .form-group.warn .warning {\n background-color: #651;\n border-color: #cb4;\n }\n /* github.com: \"#fff5b1\" */\n .form-group.warn .warning::after {\n border-bottom-color: #651;\n }\n /* github.com: \"#f9c513\" */\n .form-group.warn .warning::before {\n border-bottom-color: #cb4;\n }\n /* github.com: \"#cb2431\" */\n .form-group.errored .form-control {\n border-color: #d82828;\n }\n /* github.com: \"#cb2431\" */\n .form-group.errored label {\n color: #d82828;\n }\n /* github.com: \"#ffeef0\", \"#f97583\" */\n .form-group.errored .error {\n background-color: #300;\n border-color: #f88;\n }\n /* github.com: \"#ffeef0\" */\n .form-group.errored .error::after {\n border-bottom-color: #300;\n }\n /* github.com: \"#f97583\" */\n .form-group.errored .error::before {\n border-bottom-color: #f88;\n }\n /* github.com: \"color: #586069\" */\n .note {\n color: #afafaf;\n }\n /* github.com: \"#28a745\", \"#28a745\" */\n .status-indicator-success .octicon-check {\n color: #484;\n fill: #484;\n }\n /* github.com: \"#cb2431\", \"#d73a49\" */\n .status-indicator-failed .octicon-x {\n color: #d82828;\n fill: #d82828;\n }\n /* github.com: \"initial\" */\n .inline-form .btn-plain {\n background-color: initial;\n }\n /* github.com: \"color: #586069\", \"#fafbfc\", \"#c3c8cf\" */\n .drag-and-drop {\n color: #afafaf;\n background-color: #181818;\n border-color: #484848;\n }\n /* github.com: \"#cb2431\" */\n .drag-and-drop .error {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .drag-and-drop-error-info {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .drag-and-drop-error-info a {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#dfe2e5\" */\n .upload-enabled textarea {\n border-bottom-color: #343434;\n }\n /* github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .upload-enabled.focused {\n box-shadow: 0 0 0 2px rgba(79, 140, 201, .3);\n }\n /* github.com: \"box-shadow: none\" */\n .upload-enabled.focused .form-control {\n box-shadow: none;\n }\n /* github.com: \"#c3c8cf\" */\n .previewable-comment-form .comment {\n border-color: #484848;\n }\n /* github.com: \"color: #586069\" */\n h2.account, p.explain {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n p.explain strong {\n color: #cdcdcd;\n }\n /* github.com: \"color: #959da5\" */\n p.explain .octicon {\n color: #767676;\n }\n /* github.com: \"color: #24292e\", \"#e1e4e8\" */\n .radio-label {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n :checked + .radio-label {\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .menu {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"color: #1b1f23\", \"#eaecef\" */\n .menu-item {\n color: #dcdcdc;\n border-bottom-color: #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .menu-item:focus, .menu-item:hover {\n background-color: #222;\n }\n /* github.com: \"#fafbfc\" */\n .menu-item:active {\n background-color: #181818;\n }\n /* github.com: \"#f9826c\" */\n .menu-item.selected::before,\n .menu-item[aria-current]:not([aria-current=false])::before,\n .menu-item[aria-selected=true]::before {\n background-color: #fff;\n }\n /* github.com: \"color: #959da5\" */\n .menu-item .octicon {\n color: #767676;\n }\n /* github.com: \"#cb2431\" */\n .menu-item.alert .Counter, .menu-item .menu-warning {\n color: #d82828;\n }\n /* github.com: \"color: #1b1f23\", \"#eaecef\" */\n .menu-heading {\n color: #dcdcdc;\n }\n /* github.com: \"#e1e4e8\" */\n .menu-heading, .tabnav {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"initial\" */\n .tabnav-tab {\n color: #cdcdcd;\n background-color: initial;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .tabnav-tab.selected, .tabnav-tab[aria-current]:not([aria-current=false]),\n .tabnav-tab[aria-selected=true] {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .tabnav-tab:focus, .tabnav-tab:hover {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .tabnav-tab:active {\n color: #949494;\n }\n /* github.com: \"color: #959da5\" */\n .tabnav-tab .octicon {\n color: #767676;\n }\n /* github.com: \"color: #586069\" */\n .tabnav-extra {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n a.tabnav-extra:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\", \"initial\" */\n .filter-list.pjax-active .filter-item {\n color: #afafaf;\n background-color: initial;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .filter-list.pjax-active .filter-item.pjax-active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .filter-item {\n color: #afafaf;\n }\n /* github.com: \"#f6f8fa\" */\n .filter-item:hover {\n background-color: #222;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .filter-item.selected, .filter-item[aria-current]:not([aria-current=false]),\n .filter-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#eff3f6\" */\n .filter-item .bar {\n background-color: #242424;\n }\n /* github.com: \"#fafbfc\" */\n .SideNav {\n background-color: #181818;\n }\n /* github.com: \"color: #1b1f23\", \"initial\", \"#eaecef\" */\n .SideNav-item {\n color: #dcdcdc;\n background-color: initial;\n border-top-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .SideNav-item:last-child {\n box-shadow: 0 1px 0 #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .SideNav-item:focus, .SideNav-item:hover {\n background-color: #222;\n }\n /* github.com: \"#fff\" */\n .SideNav-item:active, .SideNav-item[aria-current]:not([aria-current=false]),\n .SideNav-item[aria-selected=true] {\n background-color: #181818;\n }\n /* github.com: \"#f9826c\" */\n .SideNav-item[aria-current]:not([aria-current=false])::before,\n .SideNav-item[aria-selected=true]::before {\n background-color: #fff;\n }\n /* github.com: \"color: #6a737d\" */\n .SideNav-icon {\n color: #949494;\n }\n /* github.com: \"#0366d6\", \"initial\" */\n .SideNav-subItem {\n color: rgb(79, 140, 201);\n background-color: initial;\n }\n /* github.com: \"color: #24292e\" */\n .SideNav-subItem:focus, .SideNav-subItem:hover,\n .SideNav-subItem[aria-current]:not([aria-current=false]),\n .SideNav-subItem[aria-selected=true] {\n color: #cdcdcd;\n }\n /* github.com: \"#eaecef\" */\n .subnav-bordered {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"#e1e4e8\" */\n .subnav-item {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .subnav-item:focus, .subnav-item:hover {\n background-color: #222;\n }\n /* github.com: \"color: #fff\", \"#0366d6\", \"#005cc5\" */\n .subnav-item.selected, .subnav-item[aria-current]:not([aria-current=false]),\n .subnav-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: #4f8cc9;\n }\n /* github.com: \"color: #586069\" */\n .subnav-search-input {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .subnav-search-icon {\n color: #767676;\n }\n /* github.com: \"color: #444d56\" */\n .subnav-search-context .btn {\n color: #afafaf;\n }\n /* github.com: \"#e1e4e8\" */\n .UnderlineNav {\n box-shadow: inset 0 -1px 0 #343434;\n }\n /* github.com: \"color: #1b1f23\", \"initial\", \"rgba(209,213,218,0)\" */\n .UnderlineNav-item {\n color: #dcdcdc;\n background-color: initial;\n border-bottom-color: transparent;\n }\n /* github.com: \"#d1d5da\" */\n .UnderlineNav-item:focus, .UnderlineNav-item:hover {\n border-bottom-color: #404040;\n }\n /* github.com: \"#f9826c\" */\n .UnderlineNav-item.selected,\n .UnderlineNav-item[aria-current]:not([aria-current=false]),\n .UnderlineNav-item[role=tab][aria-selected=true] {\n border-bottom-color: #fff;\n }\n /* github.com: \"color: #586069\" */\n .UnderlineNav-item.selected .UnderlineNav-octicon,\n .UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon,\n .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .UnderlineNav-octicon {\n color: #767676;\n }\n /* github.com: \"color: #24292e\" */\n .pagination a, .pagination em, .pagination span {\n color: #cdcdcd;\n }\n /* github.com: \"#eaecef\" */\n .pagination a:active, .pagination a:focus, .pagination a:hover,\n .pagination em:active, .pagination em:focus, .pagination em:hover,\n .pagination span:active, .pagination span:focus, .pagination span:hover {\n border-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .pagination .next_page, .pagination .previous_page {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .pagination .current, .pagination .current:hover,\n .pagination [aria-current]:not([aria-current=false]) {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\" */\n .pagination .disabled, .pagination .disabled:hover, .pagination .gap,\n .pagination .gap:hover, .pagination [aria-disabled=true],\n .pagination [aria-disabled=true]:hover {\n color: #949494;\n }\n /* github.com: \"color: #fff\" */\n .tooltipped::after {\n color: #fff;\n }\n /* github.com: \"color: #1b1f23\" */\n .tooltipped::before {\n color: #dcdcdc;\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-x {\n border-right-color: #343434 !important;\n border-left-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .border-y {\n border-top-color: #343434 !important;\n border-bottom-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .border {\n border-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .border-top {\n border-top-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .border-right {\n border-right-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .border-bottom {\n border-bottom-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .border-left {\n border-left-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:544px) {\n .border-sm {\n border-color: #343434 !important;\n }\n .border-sm-top {\n border-top-color: #343434 !important;\n }\n .border-sm-right {\n border-right-color: #343434 !important;\n }\n .border-sm-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-sm-left {\n border-left-color: #343434 !important;\n }\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:768px) {\n .border-md {\n border-color: #343434 !important;\n }\n .border-md-top {\n border-top-color: #343434 !important;\n }\n .border-md-right {\n border-right-color: #343434 !important;\n }\n .border-md-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-md-left {\n border-left-color: #343434 !important;\n }\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1012px) {\n .border-lg {\n border-color: #343434 !important;\n }\n .border-lg-top {\n border-top-color: #343434 !important;\n }\n .border-lg-right {\n border-right-color: #343434 !important;\n }\n .border-lg-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-lg-left {\n border-left-color: #343434 !important;\n }\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @media (min-width:1280px) {\n .border-xl {\n border-color: #343434 !important;\n }\n .border-xl-top {\n border-top-color: #343434 !important;\n }\n .border-xl-right {\n border-right-color: #343434 !important;\n }\n .border-xl-bottom {\n border-bottom-color: #343434 !important;\n }\n .border-xl-left {\n border-left-color: #343434 !important;\n }\n }\n /* github.com: \"#0366d6\" */\n .border-blue {\n border-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#c8e1ff\" */\n .border-blue-light {\n border-color: #246 !important;\n }\n /* github.com: \"#34d058\" */\n .border-green {\n border-color: #373 !important;\n }\n /* github.com: \"#a2cbac\" */\n .border-green-light {\n border-color: #040 !important;\n }\n /* github.com: \"#d73a49\" */\n .border-red {\n border-color: #d82828 !important;\n }\n /* github.com: \"#f97583\" */\n .border-red-light {\n border-color: #f88 !important;\n }\n /* github.com: \"#6f42c1\" */\n .border-purple {\n border-color: #9378ba !important;\n }\n /* github.com: \"#f9c513\" */\n .border-yellow {\n border-color: #cb4 !important;\n }\n /* github.com: \"#eaecef\" */\n .border-gray-light {\n border-color: #343434 !important;\n }\n /* github.com: \"#d1d5da\" */\n .border-gray-dark {\n border-color: #404040 !important;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .border-black-fade {\n border-color: rgba(220, 220, 220, .15) !important;\n }\n /* github.com: \"hsla(0,0%,100%,.5)\" */\n .border-white-fade-50 {\n border-color: hsla(0, 0%, 0%, .5) !important;\n }\n /* github.com: \"rgba(27,31,35,.04)\" */\n .box-shadow {\n box-shadow: 0 1px 0 #000 !important;\n }\n /* github.com: \"rgba(149,157,165,.15)\" */\n .box-shadow-medium {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15) !important;\n }\n /* github.com: \"rgba(149,157,165,.2)\" */\n .box-shadow-large {\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2) !important;\n }\n /* github.com: \"rgba(149,157,165,.3)\" */\n .box-shadow-extra-large {\n box-shadow: 0 12px 48px rgba(0, 0, 0, .3) !important;\n }\n /* github.com: \"box-shadow: none !important\" */\n .box-shadow-none {\n box-shadow: none !important;\n }\n /* github.com: \"#fff\" */\n .bg-white {\n background-color: #181818 !important;\n }\n /* github.com: \"#0366d6\" */\n .bg-blue {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#f1f8ff\" */\n .bg-blue-light {\n background-color: #182030 !important;\n }\n /* github.com: \"#24292e\" */\n .bg-gray-dark {\n background-color: #181818 !important;\n }\n /* github.com: \"#f6f8fa\" */\n .bg-gray {\n background-color: #222 !important;\n }\n /* github.com: \"#fafbfc\" */\n .bg-gray-light {\n background-color: #181818 !important;\n }\n /* github.com: \"#28a745\" */\n .bg-green {\n background-color: #484 !important;\n }\n /* github.com: \"#dcffe4\" */\n .bg-green-light {\n background-color: #002800 !important;\n }\n /* github.com: \"#d73a49\" */\n .bg-red {\n background-color: #d82828 !important;\n }\n /* github.com: \"#ffeef0\" */\n .bg-red-light {\n background-color: #300 !important;\n }\n /* github.com: \"#ffd33d\" */\n .bg-yellow {\n background-color: #cb4 !important;\n }\n /* github.com: \"#fff5b1\" */\n .bg-yellow-light {\n background-color: #651 !important;\n }\n /* github.com: \"#dbab09\" */\n .bg-yellow-dark {\n background-color: #cb4 !important;\n }\n /* github.com: \"#6f42c1\" */\n .bg-purple {\n background-color: #9378ba !important;\n }\n /* github.com: \"#f5f0ff\" */\n .bg-purple-light {\n background-color: #213 !important;\n }\n /* github.com: \"#fafbfc\" */\n .bg-gray-0 {\n background-color: #181818 !important;\n }\n /* github.com: \"#f6f8fa\" */\n .bg-gray-1 {\n background-color: #222 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .color-gray-2 {\n color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .bg-gray-2 {\n background-color: #343434 !important;\n }\n /* github.com: \"#d1d5da\" */\n .color-gray-3 {\n color: #404040 !important;\n }\n /* github.com: \"#d1d5da\" */\n .bg-gray-3 {\n background-color: #404040 !important;\n }\n /* github.com: \"color: #959da5 !important\" */\n .color-gray-4 {\n color: #767676 !important;\n }\n /* github.com: \"color: #6a737d !important\" */\n .color-gray-5 {\n color: #949494 !important;\n }\n /* github.com: \"#6a737d\" */\n .bg-gray-5 {\n background-color: #444 !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .color-gray-6 {\n color: #afafaf !important;\n }\n /* github.com: \"#586069\" */\n .bg-gray-6 {\n background-color: #343434 !important;\n }\n /* github.com: \"color: #444d56 !important\" */\n .color-gray-7 {\n color: #afafaf !important;\n }\n /* github.com: \"color: #2f363d !important\" */\n .color-gray-8 {\n color: #bebebe !important;\n }\n /* github.com: \"#2f363d\" */\n .bg-gray-8 {\n background-color: #282828 !important;\n }\n /* github.com: \"color: #24292e !important\" */\n .color-gray-9 {\n color: #cdcdcd !important;\n }\n /* github.com: \"#24292e\" */\n .bg-gray-9 {\n background-color: #181818 !important;\n }\n /* github.com: \"#dbedff\" */\n .bg-blue-0, .bg-blue-1 {\n background-color: #182030 !important;\n }\n /* github.com: \"#c8e1ff\" */\n .color-blue-2 {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#c8e1ff\" */\n .bg-blue-2 {\n background-color: #246 !important;\n }\n /* github.com: \"#79b8ff\" */\n .color-blue-3 {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#79b8ff\" */\n .bg-blue-3 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#2188ff\" */\n .color-blue-4 {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#2188ff\" */\n .bg-blue-4 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#0366d6\" */\n .color-blue-5 {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#0366d6\" */\n .bg-blue-5 {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#005cc5\" */\n .color-blue-6 {\n color: #4f8cc9 !important;\n }\n /* github.com: \"#005cc5\" */\n .bg-blue-6 {\n background-color: #4f8cc9 !important;\n }\n /* github.com: \"#044289\" */\n .color-blue-7 {\n color: rgba(79, 140, 201, .5) !important;\n }\n /* github.com: \"#044289\" */\n .bg-blue-7 {\n background-color: rgba(79, 140, 201, .5) !important;\n }\n /* github.com: \"color: #032f62 !important\" */\n .color-blue-8 {\n color: #9daccc !important;\n }\n /* github.com: \"#032f62\" */\n .bg-blue-8 {\n background-color: #182030 !important;\n }\n /* github.com: \"color: #05264c !important\" */\n .color-blue-9 {\n color: #bebebe !important;\n }\n /* github.com: \"#05264c\" */\n .bg-blue-9 {\n background-color: #182030 !important;\n }\n /* github.com: \"#f0fff4\" */\n .color-green-0 {\n color: #002800 !important;\n }\n /* github.com: \"#f0fff4\" */\n .bg-green-0 {\n background-color: #002800 !important;\n }\n /* github.com: \"#dcffe4\" */\n .color-green-1 {\n color: #002800 !important;\n }\n /* github.com: \"#dcffe4\" */\n .bg-green-1 {\n background-color: #002800 !important;\n }\n /* github.com: \"#34d058\" */\n .color-green-4 {\n color: #373 !important;\n }\n /* github.com: \"#34d058\" */\n .bg-green-4 {\n background-color: #373 !important;\n }\n /* github.com: \"#28a745\" */\n .color-green-5 {\n color: #484 !important;\n }\n /* github.com: \"#28a745\" */\n .bg-green-5 {\n background-color: #484 !important;\n }\n /* github.com: \"#22863a\" */\n .color-green-6 {\n color: #6cc644 !important;\n }\n /* github.com: \"#22863a\" */\n .bg-green-6 {\n background-color: #6cc644 !important;\n }\n /* github.com: \"#165c26\" */\n .color-green-8 {\n color: #6cc644 !important;\n }\n /* github.com: \"#165c26\" */\n .bg-green-8 {\n background-color: #6cc644 !important;\n }\n /* github.com: \"#144620\" */\n .color-green-9 {\n color: #6cc644 !important;\n }\n /* github.com: \"#144620\" */\n .bg-green-9 {\n background-color: #6cc644 !important;\n }\n /* github.com: \"#fffdef\" */\n .color-yellow-0 {\n color: #261d08 !important;\n }\n /* github.com: \"#fffdef\" */\n .bg-yellow-0 {\n background-color: #261d08 !important;\n }\n /* github.com: \"#fffbdd\" */\n .color-yellow-1 {\n color: #261d08 !important;\n }\n /* github.com: \"#fffbdd\" */\n .bg-yellow-1 {\n background-color: #261d08 !important;\n }\n /* github.com: \"#fff5b1\" */\n .color-yellow-2 {\n color: #651 !important;\n }\n /* github.com: \"#fff5b1\" */\n .bg-yellow-2 {\n background-color: #651 !important;\n }\n /* github.com: \"#ffea7f\" */\n .color-yellow-3 {\n color: #542 !important;\n }\n /* github.com: \"#ffea7f\" */\n .bg-yellow-3 {\n background-color: #542 !important;\n }\n /* github.com: \"#ffd33d\" */\n .color-yellow-5 {\n color: #cb4 !important;\n }\n /* github.com: \"#ffd33d\" */\n .bg-yellow-5 {\n background-color: #cb4 !important;\n }\n /* github.com: \"#f9c513\" */\n .color-yellow-6 {\n color: #cb4 !important;\n }\n /* github.com: \"#f9c513\" */\n .bg-yellow-6 {\n background-color: #cb4 !important;\n }\n /* github.com: \"#dbab09\" */\n .color-yellow-7 {\n color: #cb4 !important;\n }\n /* github.com: \"#dbab09\" */\n .bg-yellow-7 {\n background-color: #cb4 !important;\n }\n /* github.com: \"#b08800\" */\n .color-yellow-8 {\n color: #cb4 !important;\n }\n /* github.com: \"#b08800\" */\n .bg-yellow-8 {\n background-color: #cb4 !important;\n }\n /* github.com: \"#735c0f\" */\n .color-yellow-9 {\n color: #bba257 !important;\n }\n /* github.com: \"#735c0f\" */\n .bg-yellow-9 {\n background-color: #bba257 !important;\n }\n /* github.com: \"#fb8532\" */\n .color-orange-4 {\n color: #fb8532 !important;\n }\n /* github.com: \"#fb8532\" */\n .bg-orange-4 {\n background-color: #fb8532 !important;\n }\n /* github.com: \"#e36209\" */\n .color-orange-6 {\n color: #fb8532 !important;\n }\n /* github.com: \"#e36209\" */\n .bg-orange-6 {\n background-color: #fb8532 !important;\n }\n /* github.com: \"#d15704\" */\n .color-orange-7 {\n color: #f3582c !important;\n }\n /* github.com: \"#d15704\" */\n .bg-orange-7 {\n background-color: #f3582c !important;\n }\n /* github.com: \"#a04100\" */\n .color-orange-9 {\n color: #f3582c !important;\n }\n /* github.com: \"#a04100\" */\n .bg-orange-9 {\n background-color: #f3582c !important;\n }\n /* github.com: \"#ffeef0\" */\n .color-red-0 {\n color: #300 !important;\n }\n /* github.com: \"#ffeef0\" */\n .bg-red-0 {\n background-color: #300 !important;\n }\n /* github.com: \"#ffdce0\" */\n .color-red-1 {\n color: #300 !important;\n }\n /* github.com: \"#ffdce0\" */\n .bg-red-1 {\n background-color: #300 !important;\n }\n /* github.com: \"#f97583\" */\n .color-red-3 {\n color: #f88 !important;\n }\n /* github.com: \"#f97583\" */\n .bg-red-3 {\n background-color: #f88 !important;\n }\n /* github.com: \"#d73a49\" */\n .color-red-5 {\n color: #d82828 !important;\n }\n /* github.com: \"#d73a49\" */\n .bg-red-5 {\n background-color: #d82828 !important;\n }\n /* github.com: \"#cb2431\" */\n .color-red-6 {\n color: #d82828 !important;\n }\n /* github.com: \"#cb2431\" */\n .bg-red-6 {\n background-color: #d82828 !important;\n }\n /* github.com: \"#86181d\" */\n .color-red-9 {\n color: #d82828 !important;\n }\n /* github.com: \"#86181d\" */\n .bg-red-9 {\n background-color: #d82828 !important;\n }\n /* github.com: \"#f5f0ff\" */\n .color-purple-0 {\n color: #213 !important;\n }\n /* github.com: \"#f5f0ff\" */\n .bg-purple-0 {\n background-color: #213 !important;\n }\n /* github.com: \"#8a63d2\" */\n .color-purple-4 {\n color: #53387a !important;\n }\n /* github.com: \"#8a63d2\" */\n .bg-purple-4 {\n background-color: #53387a !important;\n }\n /* github.com: \"#6f42c1\" */\n .color-purple-5 {\n color: #9378ba !important;\n }\n /* github.com: \"#6f42c1\" */\n .bg-purple-5 {\n background-color: #9378ba !important;\n }\n /* github.com: \"#ffeef8\" */\n .color-pink-0 {\n color: #170711 !important;\n }\n /* github.com: \"#ffeef8\" */\n .bg-pink-0 {\n background-color: #170711 !important;\n }\n /* github.com: \"#ec6cb9\" */\n .color-pink-4 {\n color: #c49 !important;\n }\n /* github.com: \"#ec6cb9\" */\n .bg-pink-4 {\n background-color: #c49 !important;\n }\n /* github.com: \"#99306f\" */\n .color-pink-8 {\n color: #e6b !important;\n }\n /* github.com: \"#99306f\" */\n .bg-pink-8 {\n background-color: #e6b !important;\n }\n /* github.com: \"#0366d6\" */\n .text-blue {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#cb2431\" */\n .text-red {\n color: #d82828 !important;\n }\n /* github.com: \"color: #6a737d !important\" */\n .text-gray-light {\n color: #949494 !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .text-gray {\n color: #afafaf !important;\n }\n /* github.com: \"color: #24292e !important\" */\n .text-gray-dark {\n color: #cdcdcd !important;\n }\n /* github.com: \"#22863a\" */\n .text-green {\n color: #6cc644 !important;\n }\n /* github.com: \"#b08800\" */\n .text-yellow {\n color: #cb4 !important;\n }\n /* github.com: \"#a04100\" */\n .text-orange {\n color: #f3582c !important;\n }\n /* github.com: \"#e36209\" */\n .text-orange-light {\n color: #fb8532 !important;\n }\n /* github.com: \"#6f42c1\" */\n .text-purple {\n color: #9378ba !important;\n }\n /* github.com: \"color: #fff !important\" */\n .text-white {\n color: #fff !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .link-gray {\n color: #afafaf !important;\n }\n /* github.com: \"#0366d6\" */\n .link-gray:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #24292e !important\" */\n .link-gray-dark {\n color: #cdcdcd !important;\n }\n /* github.com: \"#0366d6\" */\n .link-gray-dark:hover, .link-hover-blue:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .muted-link {\n color: #afafaf !important;\n }\n /* github.com: \"#0366d6\" */\n .muted-link:hover {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"transparent\" */\n .details-overlay[open] > summary::before {\n background-color: transparent;\n }\n /* github.com: \"color: #586069\" */\n .lead {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .text-emphasized {\n color: #cdcdcd;\n }\n /* github.com: \"hsla(0,0%,100%,.5)\" */\n .text-shadow-light {\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"initial\" */\n @keyframes blink {\n 50% {\n background-color: initial;\n }\n }\n /* github.com: \"#fff\" */\n image-crop .crop-box {\n border-color: #181818;\n }\n /* github.com: \"#fff\" */\n image-crop .handle::before {\n background-color: #181818;\n }\n /* github.com: \"#0366d6\", \"#fff\", \"#e1e4e8\" */\n .ajax-pagination-form .ajax-pagination-btn {\n color: rgb(79, 140, 201);\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#0366d6\", \"#f6f8fa\" */\n .ajax-pagination-form .ajax-pagination-btn:focus,\n .ajax-pagination-form .ajax-pagination-btn:hover {\n color: rgb(79, 140, 201);\n background-color: #222;\n }\n /* github.com: \"#f6f8fa\", \"#d1d5da\" */\n .ajax-pagination-form.loading .ajax-pagination-btn {\n background-color: #222;\n border-color: #404040;\n }\n /* github.com: \"box-shadow: none\" */\n body.intent-mouse [role=button]:focus,\n body.intent-mouse [role=tabpanel][tabindex=\"0\"]:focus,\n body.intent-mouse a:focus, body.intent-mouse button:focus,\n body.intent-mouse summary:focus {\n box-shadow: none;\n }\n /* github.com: \"#fffbdd\" */\n .conflict-gutter-marker {\n background-color: #261d08;\n }\n /* github.com: \"#d73a49\" */\n .conflict-gutter-marker::after, .conflict-gutter-marker::before {\n background-color: #d82828;\n }\n /* github.com: \"#959da5\" */\n .form-group:hover .form-field-hover, .placeholder-box {\n border-color: #484848;\n }\n /* github.com: \"color: #24292e\" */\n .template-previews .discussion-sidebar-heading {\n color: #cdcdcd;\n }\n /* github.com: \"#0366d6\" */\n .template-previews .discussion-sidebar-heading:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#dfe2e5\" */\n .gollum-editor .comment-form-head.tabnav {\n border-color: #343434;\n }\n /* github.com: \"#0366d6\", \"none\" */\n .zeroclipboard-link {\n color: rgb(79, 140, 201);\n background: none;\n }\n /* github.com: \"color: #fff\" */\n .auth-form-header, .auth-form-header h1 a {\n color: #fff;\n }\n /* github.com: \"#fff\" */\n .auth-form-body {\n background-color: #181818;\n }\n /* github.com: \"#eaeaea\" */\n .two-factor-help {\n border-color: #343434;\n }\n /* github.com: \"#eaeaea\" */\n .u2f-auth-header:not(:last-child) {\n border-bottom-color: #343434;\n }\n /* github.com: \"#f9f9f9\" */\n .session-authentication {\n background-color: #181818;\n }\n /* github.com: \"initial\" */\n .session-authentication .header-logged-out {\n background-color: initial;\n }\n /* github.com: \"color: #333\" */\n .session-authentication .header-logo {\n color: #bebebe;\n }\n /* github.com: \"color: #333\", \"initial\" */\n .session-authentication .auth-form-header {\n color: #bebebe;\n background-color: initial;\n }\n /* github.com: \"initial\" */\n .session-authentication.enterprise .header-logged-out,\n .session-authentication.hosted .header-logged-out {\n background-color: initial;\n }\n /* github.com: \"#24292e\" */\n .Header-old {\n background-color: #181818;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n /* github.com: \"#fff\", \"rgba(27,31,35,.15)\" */\n .page-responsive .HeaderMenu--logged-out {\n background-color: #181818;\n box-shadow: 0 10px 50px #000;\n }\n /* github.com: \"initial\", \"box-shadow: none\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out {\n background-color: initial;\n box-shadow: none;\n }\n }\n /* github.com: \"box-shadow: none\" */\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: none;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu--logged-out .dropdown-menu {\n box-shadow: 0 3px 12px #000, 0 0 1px rgba(27, 31, 35, .2);\n }\n }\n /* github.com: \"#eaecef\" */\n .page-responsive .HeaderMenu--logged-out .header-search-wrapper {\n border-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .page-responsive .HeaderMenu--logged-out .header-search-input::placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #444d56\", \"transparent\" */\n .page-responsive .HeaderMenu-link {\n color: #afafaf;\n background-color: transparent;\n }\n /* github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu-link:hover {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link, .page-responsive .HeaderMenu-link:hover {\n color: #fff;\n }\n }\n /* github.com: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* github.com: \"hsla(0,0%,100%,.5)\", \"transparent\" */\n @media (min-width:1012px) {\n .page-responsive .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n background-color: transparent;\n }\n }\n /* github.com: \"color: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .HeaderMenu-link {\n color: #cdcdcd;\n }\n /* github.com: \"stroke: #24292e\" */\n .page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg {\n stroke: #d2d2d2;\n }\n /* github.com: \"color: #fff\", \"transparent\" */\n .HeaderMenu-link {\n color: #fff;\n background-color: transparent;\n }\n /* github.com: \"color: #fff\" */\n .HeaderMenu-link:hover {\n color: #fff;\n }\n /* github.com: \"hsla(0,0%,100%,.5)\" */\n .HeaderMenu-link .icon-chevon-down-mktg {\n stroke: hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"color: #fff\" */\n .header-logo-invertocat, .header-logo-invertocat:hover {\n color: #fff;\n }\n /* github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .notification-indicator .mail-status {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* github.com: \"#0366d6\" */\n .notification-indicator:hover .mail-status {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\" */\n .header-nav-current-user .user-profile-link {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .feature-preview-indicator {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* github.com: \"color: #fff\", \"box-shadow: none\" */\n .header-search-current .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none\" */\n .header-search-current .header-search-wrapper.focus {\n box-shadow: none;\n }\n /* github.com: \"color: #fff\" */\n .header-search-current .header-search-wrapper.focus .header-search-scope {\n color: #fff;\n }\n /* github.com: \"none\", \"box-shadow: none\" */\n .header-search-current .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none\" */\n .header-search-current .header-search-input:focus {\n box-shadow: none;\n }\n /* github.com: \"color: #fff\" */\n .header-search-current .header-search-scope:hover {\n color: #fff;\n }\n /* github.com: \"color: #24292e !important\", \"#fafbfc\" */\n .header-search-current .jump-to-field-active {\n color: #cdcdcd !important;\n background-color: #181818;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-current .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #1b1f23\" */\n .header-search-current .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* github.com: \"color: #6a737d\" */\n .header-search-current .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* github.com: \"initial\" */\n .header-search-current .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* github.com: \"#e1e4e8\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #fff\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .header-search-current .jump-to-suggestions-results-container .navigation-focus mark,\n .header-search-current .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* github.com: \"color: #fff\", \"box-shadow: none\" */\n .header-search-prototype .header-search-wrapper {\n color: #fff;\n box-shadow: none;\n }\n /* github.com: \"#fafbfc\", \"box-shadow: none\" */\n .header-search-prototype .header-search-wrapper:focus-within {\n background-color: #181818;\n box-shadow: none;\n }\n /* github.com: \"color: #fff\" */\n .header-search-prototype .header-search-wrapper:focus-within .header-search-scope {\n color: #fff;\n }\n /* github.com: \"none\", \"box-shadow: none\" */\n .header-search-prototype .header-search-input {\n background: none;\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none\" */\n .header-search-prototype .header-search-input:focus {\n box-shadow: none;\n }\n /* github.com: \"color: #fff\" */\n .header-search-prototype .header-search-scope:hover {\n color: #fff;\n }\n /* github.com: \"color: #24292e\" */\n .header-search-prototype .code-search-filter-text-expander {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .header-search-prototype .search-filter-header,\n .header-search-prototype .search-refine-dropdown-header {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .header-search-prototype .site-search-close-button .site-search-close-x {\n color: #fff;\n }\n /* github.com: \"none\" */\n .header-search-prototype .site-search-filter-button {\n background: none;\n }\n /* github.com: \"#fff\" */\n .header-search-prototype .ems-refine-details-dialog {\n background-color: #181818;\n }\n /* github.com: \"color: #1b1f23\" */\n .header-search-prototype .ems-refine-details-dialog .ems-menu-item {\n color: #dcdcdc;\n }\n /* github.com: \"color: #24292e\" */\n .header-search-prototype .ems-refine-details-dialog .ems-result-type-item {\n color: #cdcdcd;\n }\n /* github.com: \"#e1e4e8\" */\n .header-search-prototype .ems-result-types {\n border-right-color: #343434;\n }\n /* github.com: \"color: #24292e !important\" */\n .header-search-prototype .jump-to-field-active {\n color: #cdcdcd !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active:-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active::-ms-input-placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #586069 !important\" */\n .header-search-prototype .jump-to-field-active::placeholder {\n color: #afafaf !important;\n }\n /* github.com: \"color: #1b1f23\" */\n .header-search-prototype .jump-to-suggestions-path {\n color: #dcdcdc;\n }\n /* github.com: \"color: #6a737d\" */\n .header-search-prototype .jump-to-suggestions-path .jump-to-octicon {\n color: #949494;\n }\n /* github.com: \"initial\" */\n .header-search-prototype .jump-to-suggestions-path mark {\n background-color: initial;\n }\n /* github.com: \"#e1e4e8\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #fff\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon {\n color: #fff;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .header-search-prototype .jump-to-suggestions-results-container .navigation-focus mark,\n .header-search-prototype .jump-to-suggestions-results-container [aria-selected=true] mark {\n color: #fff;\n }\n /* github.com: \"color: #24292e\" */\n .flash {\n color: #cdcdcd;\n }\n /* github.com: \"none\" */\n .flash-close {\n background: none;\n }\n /* github.com: \"#dbedff\", \"rgba(4,66,137,.2)\" */\n .flash {\n background-color: #182030;\n border-color: #246;\n }\n /* github.com: \"rgba(4,66,137,.6)\" */\n .flash .octicon {\n color: #4f8cc9;\n }\n /* github.com: \"#fffbdd\" */\n .flash-warn {\n background-color: #261d08;\n }\n /* github.com: \"#b08800\" */\n .flash-warn .octicon {\n color: #cb4;\n }\n /* github.com: \"#dcffe4\" */\n .flash-success {\n background-color: #002800;\n }\n /* github.com: \"#fffbdd\" */\n .warning {\n background-color: #261d08;\n }\n /* github.com: \"#fff\", \"#e1e4e8\",\"rgba(149,157,165,.15)\" */\n .autocomplete-results {\n background-color: #181818;\n box-shadow: inset 0 0 0 1px #343434, 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* github.com: \"color: #24292e\", \"#fff\" */\n .autocomplete-item {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .autocomplete-item.navigation-focus, .autocomplete-item.selected,\n .autocomplete-item:hover, .autocomplete-item[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\", \"#e1e4e8\", \"rgba(149,157,165,.15)\" */\n .suggester {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* github.com: \"#eaecef\" */\n .suggester li {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .suggester li small {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .suggester li.navigation-focus, .suggester li:hover,\n .suggester li[aria-selected=true] {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .suggester li.navigation-focus small, .suggester li:hover small,\n .suggester li[aria-selected=true] small {\n color: #fff;\n }\n /* github.com: \"#fff\", \"hsla(0,0%,100%,.8)\" */\n .avatar-child {\n box-shadow: -2px -2px 0 hsla(0, 0%, 100%, .8);\n }\n /* github.com: \"#fff\" */\n .avatar-child, .AvatarStack-body {\n background-color: #181818;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .AvatarStack-body .avatar {\n background-color: #181818;\n border-right-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .avatar.avatar-more {\n background-color: #222;\n }\n /* github.com: \"#e1e4e8\" */\n .avatar.avatar-more::before {\n background-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .avatar.avatar-more::after, .AvatarStack--right .avatar.avatar-more {\n background-color: #404040;\n }\n /* github.com: \"#f6f8fa\" */\n .AvatarStack--right .avatar.avatar-more::after {\n background-color: #222;\n }\n /* github.com: \"#fff\" */\n .AvatarStack--right .avatar {\n border-left-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .DashedConnection::before {\n border-bottom-color: #343434;\n }\n /* github.com: \"#fff\", \"#eaecef\" */\n .blankslate code {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"color: #a3aab1\" */\n .blankslate-icon {\n color: #767676;\n }\n /* github.com: \"color: rgba(27,31,35,.6)\", \"#eaf5ff\" */\n .branch-name {\n color: rgba(230, 230, 230, .6);\n background-color: #182030;\n }\n /* github.com: \"#0366d6\" */\n a.branch-name {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\", \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n .dropdown-menu {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .dropdown-menu::after {\n border-bottom-color: #181818;\n }\n /* github.com: \"color: #24292e\" */\n .dropdown-item {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .dropdown-item:focus, .dropdown-item:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"none\" */\n .dropdown-signout {\n background: none;\n }\n /* github.com: \"#e1e4e8\" */\n .dropdown-divider {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .dropdown-header {\n color: #afafaf;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-w::before {\n border-color: transparent transparent transparent rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .dropdown-menu-w::after {\n border-color: transparent transparent transparent #181818;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-e::before {\n border-color: transparent rgba(220, 220, 220, .15) transparent transparent;\n }\n /* github.com: \"#fff\" */\n .dropdown-menu-e::after {\n border-color: transparent #181818 transparent transparent;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .dropdown-menu-ne::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .dropdown-menu-ne::after {\n border-top-color: #181818;\n }\n /* github.com: \"color: #fff\", \"#2f363d\", \"#444d56\", \"rgba(149,157,165,.2)\" */\n .dropdown-menu-dark {\n color: #fff;\n background-color: #282828;\n border-color: #484848;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"#444d56\" */\n .dropdown-menu-dark::before {\n border-bottom-color: #484848;\n }\n /* github.com: \"#2f363d\" */\n .dropdown-menu-dark::after {\n border-bottom-color: #282828;\n }\n /* github.com: \"#d1d5da\" */\n .dropdown-menu-dark .dropdown-header {\n color: #404040;\n }\n /* github.com: \"#444d56\" */\n .dropdown-menu-dark .dropdown-divider {\n border-top-color: #484848;\n }\n /* github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-w::before {\n border-color: transparent transparent transparent #484848;\n }\n /* github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-w::after {\n border-color: transparent transparent transparent #282828;\n }\n /* github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-e::before {\n border-color: transparent #484848 transparent transparent;\n }\n /* github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-e::after {\n border-color: transparent #282828 transparent transparent;\n }\n /* github.com: \"#444d56\" */\n .dropdown-menu-dark.dropdown-menu-ne::before {\n border-color: #484848 transparent transparent;\n }\n /* github.com: \"#2f363d\" */\n .dropdown-menu-dark.dropdown-menu-ne::after {\n border-color: #282828 transparent transparent;\n }\n /* github.com: \"#24292e\" */\n .Header {\n background-color: #181818;\n }\n /* github.com: \"color: #fff\" */\n .Header-link {\n color: #fff;\n }\n /* github.com: \"initial\", \"#e1e4e8\" */\n .label, .Label {\n background-color: initial !important;\n border-color: #343434;\n }\n /* github.com: \"color: #586069\", \"#e1e4e8\" */\n .Label--gray, .Label--outline {\n color: #afafaf;\n border-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .Label--gray-darker {\n color: #cdcdcd;\n }\n /* github.com: \"#735c0f\", \"#f9c513\" */\n .Label--yellow {\n color: #bba257;\n border-color: #cb4;\n }\n /* github.com: \"#cb2431\", \"#cb2431\" */\n .Label--red {\n color: #d82828;\n border-color: #d82828;\n }\n /* github.com: \"#22863a\", \"#28a745\" */\n .Label--green, .Label--outline-green {\n color: #6cc644;\n border-color: #484;\n }\n /* github.com: \"#0366d6\", \"#0366d6\" */\n .Label--blue {\n color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#6f42c1\", \"#8a63d2\" */\n .Label--purple {\n color: #9378ba;\n border-color: #53387a;\n }\n /* github.com: \"#ec6cb9\" */\n .Label--pink {\n border-color: #c49;\n }\n /* github.com: \"color: #fff\", \"#6a737d\" */\n .state, .State {\n color: #fff;\n background-color: #444;\n }\n /* github.com: \"#28a745\" */\n .State--green {\n background-color: #484;\n }\n /* github.com: \"#d73a49\" */\n .State--red {\n background-color: #d82828;\n }\n /* github.com: \"#6f42c1\" */\n .State--purple {\n background-color: #9378ba;\n }\n /* github.com: \"color: #24292e\", \"rgba(209,213,218,.5)\" */\n .Counter {\n color: #cdcdcd;\n background-color: rgba(90, 90, 90, .5);\n }\n /* github.com: \"color: #6a737d\" */\n .Counter--gray-light {\n color: #949494;\n }\n /* github.com: \"color: #fff\", \"#6a737d\" */\n .Counter--gray {\n color: #fff;\n background-color: #444;\n }\n /* github.com: \"color: #586069\" */\n .diffstat {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .diffstat-block-deleted {\n background-color: #d82828;\n }\n /* github.com: \"#2cbe4e\" */\n .diffstat-block-added {\n background-color: #373;\n }\n /* github.com: \"#d1d5da\" */\n .diffstat-block-neutral {\n background-color: #404040;\n }\n /* github.com: \"color: #444d56\", \"#fafbfc\", \"#d1d5da\", \"#d1d5da\" */\n .markdown-body kbd {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n box-shadow: inset 0 -1px 0 #404040;\n }\n /* github.com: \"#cb2431\" */\n .markdown-body .absent {\n color: #d82828;\n }\n /* github.com: \"#e1e4e8\" */\n .markdown-body hr {\n background-color: #343434;\n }\n /* github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .markdown-body blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* github.com: \"color: #1b1f23\" */\n .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link,\n .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link,\n .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link {\n color: #dcdcdc;\n }\n /* github.com: \"#eaecef\" */\n .markdown-body h1, .markdown-body h2 {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #6a737d\" */\n .markdown-body h6 {\n color: #949494;\n }\n /* github.com: \"#dfe2e5\" */\n .markdown-body table td, .markdown-body table th {\n border-color: #343434;\n }\n /* github.com: \"#fff\", \"#c6cbd1\" */\n .markdown-body table tr {\n background-color: #181818;\n border-top-color: #5a5a5a;\n }\n /* github.com: \"#f6f8fa\" */\n .markdown-body table tr:nth-child(2n) {\n background-color: #222;\n }\n /* github.com: \"initial\" */\n .markdown-body table img {\n background-color: initial;\n }\n /* github.com: \"#fff\" */\n .markdown-body img {\n background-color: #181818;\n }\n /* github.com: \"initial\" */\n .markdown-body .emoji {\n background-color: initial;\n }\n /* github.com: \"#dfe2e5\" */\n .markdown-body span.frame > span {\n border-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .markdown-body span.frame span span {\n color: #cdcdcd;\n }\n /* github.com: \"rgba(27,31,35,.05)\" */\n .markdown-body code, .markdown-body tt {\n background-color: rgba(220, 220, 220, .1);\n }\n /* github.com: \"transparent\" */\n .markdown-body pre > code {\n background-color: transparent;\n }\n /* github.com: \"initial\" */\n .markdown-body pre code, .markdown-body pre tt {\n background-color: initial;\n }\n /* github.com: \"#fff\" */\n .markdown-body .csv-data .blob-num {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .markdown-body .csv-data th {\n background-color: #222;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message::before {\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .Popover-message::after {\n border-bottom-color: #181818;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--bottom-left::before,\n .Popover-message--bottom-right::before, .Popover-message--bottom::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .Popover-message--bottom-left::after, .Popover-message--bottom-right::after,\n .Popover-message--bottom::after {\n border-top-color: #181818;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--right-bottom::before, .Popover-message--right-top::before,\n .Popover-message--right::before {\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .Popover-message--right-bottom::after, .Popover-message--right-top::after,\n .Popover-message--right::after {\n border-left-color: #181818;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .Popover-message--left-bottom::before, .Popover-message--left-top::before,\n .Popover-message--left::before {\n border-right-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .Popover-message--left-bottom::after, .Popover-message--left-top::after,\n .Popover-message--left::after {\n border-right-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .Progress {\n background-color: #343434;\n }\n /* github.com: \"#fff\" */\n .SelectMenu-modal {\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n @media (min-width:544px) {\n .SelectMenu-modal {\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n }\n /* github.com: \"#eaecef\" */\n .SelectMenu-header {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #959da5\", \"initial\" */\n .SelectMenu-closeButton {\n color: #767676;\n background-color: initial;\n }\n /* github.com: \"#eaecef\" */\n .SelectMenu-filter {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#eaecef\" */\n .SelectMenu-item, .SelectMenu-list {\n background-color: #181818;\n }\n .SelectMenu-item {\n color: #cdcdcd;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #6a737d\", \"initial\", \"#eaecef\" */\n .SelectMenu-tab, .SelectMenu-tabs {\n box-shadow: inset 0 -1px 0 #343434;\n }\n .SelectMenu-tab {\n color: #949494;\n background-color: initial;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#eaecef\" */\n .SelectMenu-tab[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n box-shadow: 0 0 0 1px #343434;\n }\n /* github.com: \"#eaecef\", \"box-shadow: none\" */\n @media (min-width:544px) {\n .SelectMenu-tab[aria-selected=true] {\n border-color: #343434;\n box-shadow: none;\n }\n }\n /* github.com: \"#fff\", \"#eaecef\" */\n .SelectMenu-message {\n border-bottom-color: #343434;\n }\n /* github.com: \"#fff\" */\n .SelectMenu-blankslate, .SelectMenu-loading, .SelectMenu-message {\n background-color: #181818;\n }\n /* github.com: \"color: #6a737d\", \"#f6f8fa\", \"#eaecef\" */\n .SelectMenu-divider {\n color: #949494;\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #6a737d\", \"#eaecef\" */\n .SelectMenu-footer, .SelectMenu-list--borderless .SelectMenu-divider {\n border-top-color: #343434;\n }\n .SelectMenu-footer {\n color: #949494;\n }\n /* github.com: \"color: #24292e\" */\n .SelectMenu-item[aria-checked=true] {\n color: #cdcdcd;\n }\n /* github.com: \"color: #6a737d\" */\n .SelectMenu-item:disabled, .SelectMenu-item[aria-disabled=true] {\n color: #949494;\n }\n /* github.com: \"color: #24292e\", \"color: #586069\", \"#f6f8fa\", \"#fafbfc\", \"#dbedff\", \"#f6f8fa\" */\n @media (hover:hover) {\n .SelectMenu-closeButton:hover,\n body:not(.intent-mouse) .SelectMenu-closeButton:focus {\n color: #cdcdcd;\n }\n .SelectMenu-closeButton:active {\n color: #afafaf;\n }\n .SelectMenu-item:hover, body:not(.intent-mouse) .SelectMenu-item:focus {\n background-color: #222;\n }\n .SelectMenu-item:active {\n background-color: #181818;\n }\n body:not(.intent-mouse) .SelectMenu-tab:focus {\n background-color: #182030;\n }\n .SelectMenu-tab:hover {\n color: #cdcdcd;\n }\n .SelectMenu-tab:not([aria-selected=true]):active {\n color: #cdcdcd;\n background-color: #222;\n }\n }\n /* github.com: \"#fafbfc\", \"rgba(209,213,218,.5)\" */\n @media (hover:none) {\n .SelectMenu-item:active, .SelectMenu-item:focus {\n background-color: #181818;\n }\n .SelectMenu-item {\n -webkit-tap-highlight-color: rgba(90, 90, 90, .5);\n }\n }\n /* github.com: \"#e1e4e8\" */\n .Subhead {\n border-bottom-color: #343434;\n }\n /* github.com: \"#cb2431\" */\n .Subhead-heading--danger {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .Subhead-description {\n color: #afafaf;\n }\n /* github.com: \"#e1e4e8\" */\n .TimelineItem::before {\n background-color: #343434;\n }\n /* github.com: \"#2188ff\", \"#c8e1ff\" */\n .TimelineItem:target .TimelineItem-badge {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 .2em rgb(79, 140, 201);\n }\n /* github.com: \"color: #444d56\", \"#e1e4e8\", \"#fff\" */\n .TimelineItem-badge {\n color: #afafaf;\n background-color: #343434;\n border-color: #181818;\n }\n /* github.com: \"color: #444d56\" */\n .TimelineItem-body {\n color: #afafaf;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .TimelineItem-break {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github.com: \"color: #959da5\", \"#fff\" */\n .TimelineItem--condensed .TimelineItem-badge {\n color: #767676;\n background-color: #181818;\n }\n /* github.com: \"color: #1b1f23\", \"#fff\", \"#e1e4e8\",\"rgba(149,157,165,.2)\" */\n .Toast {\n color: #dcdcdc;\n background-color: #181818;\n box-shadow: inset 0 0 0 1px #343434, 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .Toast-icon {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"initial\" */\n .Toast-dismissButton {\n background-color: initial;\n }\n /* github.com: \"color: #586069\" */\n .Toast-dismissButton:focus, .Toast-dismissButton:hover {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .Toast-dismissButton:active {\n color: #767676;\n }\n /* github.com: \"#d73a49\" */\n .Toast--error .Toast-icon {\n background-color: #d82828;\n }\n /* github.com: \"color: #24292e\", \"#f9c513\" */\n .Toast--warning .Toast-icon {\n color: #cdcdcd;\n background-color: #cb4;\n }\n /* github.com: \"#28a745\" */\n .Toast--success .Toast-icon {\n background-color: #484;\n }\n /* github.com: \"color: #fff\" */\n .boxed-group .Counter {\n color: #fff;\n }\n /* github.com: \"#f6f8fa\", \"rgba(27,31,35,.15)\" */\n .boxed-group .heading, .boxed-group > h3 {\n background-color: #222;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #586069\" */\n .boxed-group .heading a.boxed-group-breadcrumb,\n .boxed-group > h3 a.boxed-group-breadcrumb {\n color: #afafaf;\n }\n /* github.com: \"#fff\" */\n .boxed-group .tabnav.heading li:first-child .selected {\n border-left-color: #181818;\n }\n /* github.com: \"color: #fff\", \"#d73a49\" */\n .boxed-group.dangerzone > h3 {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"color: #586069\", \"#fff\", \"#d1d5da\" */\n .boxed-group-inner {\n color: #afafaf;\n background-color: #181818;\n border-color: #404040;\n }\n /* github.com: \"#dfe2e5\" */\n .boxed-group-inner .help, .boxed-group-inner .tabnav-tab.selected {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .boxed-group-inner .help {\n color: #afafaf;\n }\n /* github.com: \"#e1e4e8\" */\n .boxed-group-list > li {\n border-bottom-color: #343434;\n }\n /* github.com: \"#dfe2e5\" */\n .boxed-group-list > li:first-child {\n border-top-color: #343434;\n }\n /* github.com: \"#dcffe4\" */\n .boxed-group-list > li.selected {\n background-color: #002800;\n }\n /* github.com: \"#fafbfc\", \"#eaecef\" */\n .boxed-group-table th {\n background-color: #181818;\n }\n /* github.com: \"#eaecef\" */\n .boxed-group-table td, .boxed-group-table th {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: rgba(27,31,35,.85)\", \"#fffbdd\", \"rgba(27,31,35,.15)\" */\n .boxed-group-warning {\n color: rgba(230, 230, 230, .85);\n background-color: #261d08;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#e1e4e8\" */\n .list-group-item {\n border-color: #343434;\n }\n /* github.com: \"#fafbfc\" */\n .list-group-item.closed {\n background-color: #181818;\n }\n /* github.com: \"#fffdef\" */\n .list-group-item.selected {\n background-color: #261d08;\n }\n /* github.com: \"#f1f8ff\" */\n .list-group-item.navigation-focus, .list-group-item[aria-selected=true] {\n background-color: #182030;\n }\n /* github.com: \"color: #586069\" */\n .list-group-item .list-group-item-summary a {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .list-group-item .list-group-item-summary a.quiet {\n color: #949494;\n }\n /* github.com: \"color: #24292e\" */\n .list-group-item-link {\n color: #cdcdcd;\n }\n /* github.com: \"color: #6a737d\" */\n .draft.octicon {\n color: #949494;\n }\n /* github.com: \"#cb2431\" */\n .closed.octicon, .reverted.octicon {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .open.octicon {\n color: #484;\n }\n /* github.com: \"#6f42c1\" */\n .merged.octicon {\n color: #9378ba;\n }\n /* github.com: \"#eaecef\" */\n .progress-bar {\n background-color: #343434;\n }\n /* github.com: \"#2cbe4e\" */\n .progress-bar .progress {\n background-color: #373;\n }\n /* github.com: \"#e1e4e8\", \"#28a745\",\"#005cc5\",\"#cb2431\" */\n .reverse-progress-container {\n background-color: #343434;\n background-image: linear-gradient(90deg, #484, #4f8cc9, #3a1d6e, #d82828, #f66a0a);\n }\n /* github.com: \"#e1e4e8\" */\n .reverse-progress-bar {\n background-color: #343434;\n }\n /* github.com: \"#fff\" */\n .select-menu-button.primary::after {\n border-top-color: #181818;\n }\n /* github.com: \"hsla(0,0%,100%,.8)\" */\n .select-menu-loading-overlay {\n background-color: hsla(0, 0%, 100%, .8);\n }\n /* github.com: \"color: #586069\", \"#fff\", \"rgba(27,31,35,.15)\", \"rgba(27,31,35,.15)\" */\n .select-menu-modal {\n color: #afafaf;\n background-color: #181818;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: 0 3px 12px #000;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .select-menu-divider, .select-menu-header {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-divider, .select-menu-header .select-menu-title {\n color: #cdcdcd;\n }\n /* github.com: \"#e1e4e8\" */\n .select-menu-divider {\n border-top-color: #343434;\n }\n /* github.com: \"#c6cbd1\" */\n .select-menu-header .close-button, .select-menu-header .octicon {\n color: #5a5a5a;\n }\n /* github.com: \"color: #444d56\" */\n .select-menu-header .close-button:hover, .select-menu-header .octicon:hover {\n color: #afafaf;\n }\n /* github.com: \"#f6f8fa\" */\n .select-menu-filters {\n background-color: #222;\n }\n /* github.com: \"#dfe2e5\" */\n .select-menu-text-filter:first-child:last-child {\n border-bottom-color: #343434;\n }\n /* github.com: \"#dfe2e5\" */\n .select-menu-text-filter input {\n border-color: #343434;\n }\n /* github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input:-ms-input-placeholder {\n color: #767676;\n }\n /* github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input::-ms-input-placeholder {\n color: #767676;\n }\n /* github.com: \"color: #a3aab1\" */\n .select-menu-text-filter input::placeholder {\n color: #767676;\n }\n /* github.com: \"#dfe2e5\" */\n .select-menu-tabs {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #6a737d\", \"transparent\" */\n .select-menu-tabs .select-menu-tab-nav, .select-menu-tabs a {\n color: #949494;\n background-color: transparent;\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-tabs .select-menu-tab-nav:hover, .select-menu-tabs a:hover {\n color: #cdcdcd;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#dfe2e5\",\"#fff\" */\n .select-menu-tabs .select-menu-tab-nav.selected,\n .select-menu-tabs .select-menu-tab-nav[aria-selected=true],\n .select-menu-tabs a.selected, .select-menu-tabs a[aria-selected=true] {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #343434 #343434 #181818;\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-blankslate h3 {\n color: #cdcdcd;\n }\n /* github.com: \"#eaecef\" */\n .select-menu-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #6a737d\" */\n .select-menu-item.disabled, .select-menu-item.disabled .description,\n .select-menu-item.disabled.selected,\n .select-menu-item.disabled.selected .description,\n .select-menu-item[aria-disabled=true],\n .select-menu-item[aria-disabled=true] .description,\n .select-menu-item[disabled], .select-menu-item[disabled] .description {\n color: #949494;\n }\n /* github.com: \"color: #6a737d !important\" */\n .select-menu-item.selected .octicon-circle-slash.select-menu-item-icon {\n color: #949494 !important;\n }\n /* github.com: \"color: #6a737d\" */\n .select-menu-item .octicon-circle-slash {\n color: #949494;\n }\n /* github.com: \"#f6f8fa\" */\n .select-menu-item.excluded {\n background-color: #222;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .select-menu-item.navigation-focus,\n .select-menu-item.navigation-focus .description-inline,\n .select-menu-item.navigation-focus.select-menu-action,\n .select-menu-item.navigation-focus.selected,\n .select-menu-item.navigation-focus[aria-checked=true],\n .select-menu-item:focus, .select-menu-item:focus .description-inline,\n .select-menu-item:focus.select-menu-action, .select-menu-item:focus.selected,\n .select-menu-item:hover, .select-menu-item:hover .description-inline,\n .select-menu-item:hover.select-menu-action, .select-menu-item:hover.selected,\n .select-menu-item[aria-checked=true]:focus,\n .select-menu-item[aria-checked=true]:hover,\n .select-menu-item[aria-selected=true] .description-inline,\n .select-menu-item[aria-selected=true].select-menu-action,\n .select-menu-item[aria-selected=true]:focus,\n .select-menu-item[aria-selected=true]:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .select-menu-item.navigation-focus .description,\n .select-menu-item.navigation-focus .description-inline .description,\n .select-menu-item.navigation-focus .description-inline .description-warning,\n .select-menu-item.navigation-focus .description-inline > .octicon,\n .select-menu-item.navigation-focus .description-warning,\n .select-menu-item.navigation-focus.select-menu-action .description,\n .select-menu-item.navigation-focus.select-menu-action .description-warning,\n .select-menu-item.navigation-focus.select-menu-action > .octicon,\n .select-menu-item.navigation-focus.selected .description,\n .select-menu-item.navigation-focus.selected .description-warning,\n .select-menu-item.navigation-focus.selected > .octicon,\n .select-menu-item.navigation-focus > .octicon,\n .select-menu-item.navigation-focus[aria-checked=true] .description,\n .select-menu-item.navigation-focus[aria-checked=true] .description-warning,\n .select-menu-item.navigation-focus[aria-checked=true] > .octicon,\n .select-menu-item:focus .description,\n .select-menu-item:focus .description-inline .description,\n .select-menu-item:focus .description-inline .description-warning,\n .select-menu-item:focus .description-inline > .octicon,\n .select-menu-item:focus .description-warning,\n .select-menu-item:focus.select-menu-action .description,\n .select-menu-item:focus.select-menu-action .description-warning,\n .select-menu-item:focus.select-menu-action > .octicon,\n .select-menu-item:focus.selected .description,\n .select-menu-item:focus.selected .description-warning,\n .select-menu-item:focus.selected > .octicon,\n .select-menu-item:focus > .octicon, .select-menu-item:hover .description,\n .select-menu-item:hover .description-inline .description,\n .select-menu-item:hover .description-inline .description-warning,\n .select-menu-item:hover .description-inline > .octicon,\n .select-menu-item:hover .description-warning,\n .select-menu-item:hover.select-menu-action .description,\n .select-menu-item:hover.select-menu-action .description-warning,\n .select-menu-item:hover.select-menu-action > .octicon,\n .select-menu-item:hover.selected .description,\n .select-menu-item:hover.selected .description-warning,\n .select-menu-item:hover.selected > .octicon,\n .select-menu-item:hover > .octicon,\n .select-menu-item[aria-checked=true]:focus .description,\n .select-menu-item[aria-checked=true]:focus .description-warning,\n .select-menu-item[aria-checked=true]:focus > .octicon,\n .select-menu-item[aria-checked=true]:hover .description,\n .select-menu-item[aria-checked=true]:hover .description-warning,\n .select-menu-item[aria-checked=true]:hover > .octicon,\n .select-menu-item[aria-selected=true] .description-inline .description,\n .select-menu-item[aria-selected=true] .description-inline .description-warning,\n .select-menu-item[aria-selected=true] .description-inline > .octicon,\n .select-menu-item[aria-selected=true].select-menu-action .description,\n .select-menu-item[aria-selected=true].select-menu-action .description-warning,\n .select-menu-item[aria-selected=true].select-menu-action > .octicon,\n .select-menu-item[aria-selected=true]:focus .description,\n .select-menu-item[aria-selected=true]:focus .description-warning,\n .select-menu-item[aria-selected=true]:focus > .octicon,\n .select-menu-item[aria-selected=true]:hover .description,\n .select-menu-item[aria-selected=true]:hover .description-warning,\n .select-menu-item[aria-selected=true]:hover > .octicon {\n color: #fff;\n }\n /* github.com: \"hsla(0,0%,100%,.5)\" */\n .select-menu-item.navigation-focus.disabled,\n .select-menu-item:hover.disabled,\n .select-menu-item[aria-disabled=true]:hover,\n .select-menu-item[aria-selected=true].disabled,\n .select-menu-item[disabled]:hover {\n color: hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"hsla(0,0%,100%,.6)\" */\n .select-menu-item.navigation-focus.disabled .description,\n .select-menu-item:hover.disabled .description,\n .select-menu-item[aria-disabled=true]:hover .description,\n .select-menu-item[aria-selected=true].disabled .description,\n .select-menu-item[disabled]:hover .description {\n color: hsla(0, 0%, 0%, .6);\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-item.selected,\n details-menu .select-menu-item[aria-checked=true],\n details-menu .select-menu-item[aria-selected=true] {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .select-menu-item.selected .description,\n details-menu .select-menu-item[aria-checked=true] .description,\n details-menu .select-menu-item[aria-selected=true] .description {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-item.selected > .octicon,\n details-menu .select-menu-item[aria-checked=true] > .octicon,\n details-menu .select-menu-item[aria-selected=true] > .octicon {\n color: #cdcdcd;\n }\n /* github.com: \"initial\" */\n .select-menu.label-select-menu .select-menu-item:active {\n background-color: initial !important;\n }\n /* github.com: \"color: #444d56\" */\n .select-menu-action {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .select-menu-action:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .select-menu-item-text .description,\n .select-menu-item-text .description-inline, .select-menu-no-results {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .select-menu-item-text .description-warning {\n color: #d82828;\n }\n /* github.com: \"#0366d6\" */\n .select-menu-new-item-form .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\", \"#e1e4e8\" */\n .table-list {\n color: #949494;\n }\n /* github.com: \"#eaecef\" */\n .table-list, .table-list-bordered {\n border-bottom-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .table-list-bordered .table-list-cell:first-child {\n border-left-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .table-list-bordered .table-list-cell:last-child {\n border-right-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .table-list-item.unread .table-list-cell:first-child {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* github.com: \"#eaecef\" */\n .table-list-cell {\n border-top-color: #343434;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .table-list-header {\n background-color: #222;\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .table-list-header-meta, .table-list-header-toggle .btn-link {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .table-list-header-toggle .btn-link.selected,\n .table-list-header-toggle .btn-link.selected:hover,\n .table-list-header-toggle .btn-link:hover,\n .table-list-header-toggle .select-menu-button.selected,\n .table-list-header-toggle .select-menu-button.selected:hover,\n .table-list-header-toggle .select-menu-button:hover {\n color: #cdcdcd;\n }\n /* github.com: \"#fff\", \"#444d56\", \"rgba(0,0,0,.4)\" */\n .Box--overlay {\n background-color: #181818;\n border-color: #484848;\n box-shadow: 0 0 18px #000;\n }\n /* github.com: \"color: #586069\" */\n .Box-body .help, .breadcrumb {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .breadcrumb strong.final-path {\n color: #cdcdcd;\n }\n /* github.com: \"#dfe2e5\" */\n .capped-card {\n border-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .capped-card > p, .capped-card h3 {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .capped-card > p {\n color: #afafaf;\n }\n /* github.com: \"#f6f8fa\" */\n .capped-card-content {\n background-color: #222;\n }\n /* github.com: \"initial\" */\n .comment-body .highlight {\n background-color: initial;\n }\n /* github.com: \"#0366d6\" */\n .comment-form-textarea.dragover {\n border: 1px solid rgb(79, 140, 201);\n }\n /* github.com: \"#86181d\", \"#ffeef0\", \"rgba(27,31,35,.15)\" */\n .comment-form-error {\n color: #d82828;\n background-color: #300;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #586069\", \"#dfe2e5\" */\n .email-format .email-quoted-reply, .email-format .email-signature-reply {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* github.com: \"color: #444d56\", \"#dfe2e5\" */\n .email-format .email-hidden-toggle a {\n color: #afafaf;\n background-color: #343434;\n }\n /* github.com: \"#c6cbd1\" */\n .email-format .email-hidden-toggle a:hover {\n background-color: #5a5a5a;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .email-format .email-hidden-toggle a:active {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#c6cbd1\" */\n .locked-conversation .preview-tab, .locked-conversation .write-tab {\n color: #5a5a5a;\n }\n /* github.com: \"#f6f8fa\", \"#eaecef\" */\n .commit-form, .commit-sha {\n border-color: #343434;\n }\n .commit-sha {\n background-color: #222;\n }\n /* github.com: \"color: #444d56\" */\n .commit .commit-title, .commit .commit-title a {\n color: #afafaf;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .commit .commit-title.blank, .commit .commit-title.blank a {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"#0366d6\" */\n .commit-link, .commit .commit-title .issue-link {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#044289\" */\n .commit-ref .user {\n color: rgba(79, 140, 201, .5);\n }\n /* github.com: \"#dbedff\" */\n a.commit-ref:hover {\n background-color: #182030;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .commit-desc + .commit-branches {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #24292e\" */\n .commit-author-section {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .commit-group-title, .commit-tease-sha {\n color: #afafaf;\n }\n /* github.com: \"#c6cbd1\", \"#fff\" */\n .commit-group-title .octicon-git-commit {\n color: #5a5a5a;\n background-color: #181818;\n }\n /* github.com: \"color: #24292e\" */\n .commits-list-item .commit-title {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .commits-list-item .commit-author, .commits-list-item .commit-meta {\n color: #afafaf;\n }\n /* github.com: \"#e1e4e8\" */\n .commits-list-item + .commits-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"#eaf5ff\", \"rgba(27,31,35,.15)\" */\n .full-commit {\n background-color: #182030;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"initial\", \"rgba(27,31,35,.15)\" */\n .full-commit .btn-outline, .full-commit .btn-outline:disabled {\n background-color: initial;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#005cc5\", \"#005cc5\" */\n .full-commit .btn-outline:not(:disabled):hover {\n color: #4f8cc9;\n border-color: #4f8cc9;\n }\n /* github.com: \"color: #05264c\" */\n .full-commit p.commit-title {\n color: #bebebe;\n }\n /* github.com: \"color: #444d56\" */\n .full-commit .branches-list li {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .full-commit .branches-list li.loading,\n .full-commit .branches-list li.pull-request {\n color: #949494;\n }\n /* github.com: \"#fff\", \"rgba(27,31,35,.15)\" */\n .full-commit .commit-meta {\n background-color: #181818;\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #444d56\" */\n .full-commit .sha-block, .full-commit .sha-block > .sha {\n color: #afafaf;\n }\n /* github.com: \"color: #444d56\", \"#c6cbd1\" */\n .full-commit .sha-block > a {\n color: #afafaf;\n border-bottom-color: #5a5a5a;\n }\n /* github.com: \"#444d56\" */\n .full-commit .sha-block > a:hover {\n border-bottom-color: #484848;\n }\n /* github.com: \"color: #444d56\" */\n .branches-tag-list li:first-child {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .branches-tag-list li.loading {\n color: #949494;\n }\n /* github.com: \"#d3e2f4\" */\n .branches-tag-list li .ellipsis-expander {\n background-color: #383838;\n }\n /* github.com: \"#d6e2f1\" */\n .branches-tag-list li .ellipsis-expander:hover {\n background-color: #444;\n }\n /* github.com: \"color: #6a737d\" */\n .commit-branches {\n color: #949494;\n }\n /* github.com: \"#cb2431\" */\n .commit-loader .loader-error {\n color: #d82828;\n }\n /* github.com: \"#f6f8fa\" */\n .dropdown-signed-commit .dropdown-menu::after {\n border-bottom-color: #202020;\n }\n /* github.com: \"#f6f8fa\" */\n .dropdown-signed-commit .dropdown-menu-w::after {\n border-left-color: #202020;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .signed-commit-header {\n background-color: #222;\n border-bottom-color: #343434;\n }\n /* github.com: \"#28a745\" */\n .signed-commit-header .octicon-verified {\n color: #484;\n }\n /* github.com: \"color: #959da5\" */\n .signed-commit-header .octicon-unverified {\n color: #767676;\n }\n /* github.com: \"color: #586069\", \"none\", \"#e1e4e8\" */\n .signed-commit-badge {\n color: #afafaf;\n background: none;\n border-color: #343434;\n }\n /* github.com: \"#c6cbd1\" */\n .signed-commit-badge:hover {\n border-color: #5a5a5a;\n }\n /* github.com: \"#22863a\" */\n .signed-commit-badge.verified {\n color: #6cc644;\n }\n /* github.com: \"#28a745\" */\n .signed-commit-badge.verified:hover {\n border-color: #484;\n }\n /* github.com: \"color: #24292e\" */\n .signed-commit-signer-name .signer {\n color: #cdcdcd;\n }\n /* github.com: \"#eaecef\" */\n .table-of-contents li + li {\n border-top-color: #343434;\n }\n /* github.com: \"#c6cbd1\" */\n .table-of-contents .toc-diff-stats .octicon {\n color: #5a5a5a;\n }\n /* github.com: \"#cb2431\" */\n .table-of-contents .octicon-diff-removed {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .table-of-contents .octicon-diff-renamed {\n color: #949494;\n }\n /* github.com: \"#dbab09\" */\n .table-of-contents .octicon-diff-modified {\n color: #cb4;\n }\n /* github.com: \"#28a745\" */\n .table-of-contents .octicon-diff-added {\n color: #484;\n }\n /* github.com: \"color: #24292e\" */\n .toc-select .select-menu-item-heading, .toc-select .select-menu-item-text {\n color: #cdcdcd;\n }\n /* github.com: \"#cb2431\" */\n .toc-select .select-menu-item-icon.octicon-diff-removed {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .toc-select .select-menu-item-icon.octicon-diff-renamed {\n color: #949494;\n }\n /* github.com: \"#dbab09\" */\n .toc-select .select-menu-item-icon.octicon-diff-modified {\n color: #cb4;\n }\n /* github.com: \"#28a745\" */\n .toc-select .select-menu-item-icon.octicon-diff-added {\n color: #484;\n }\n /* github.com: \"color: #fff !important\" */\n .toc-select .navigation-focus .diffstat,\n .toc-select .navigation-focus .octicon-diff-added,\n .toc-select .navigation-focus .octicon-diff-modified,\n .toc-select .navigation-focus .octicon-diff-removed,\n .toc-select .navigation-focus .octicon-diff-renamed,\n .toc-select .navigation-focus .select-menu-item-heading,\n .toc-select .navigation-focus .select-menu-item-text,\n .toc-select .navigation-focus .text-gray-light,\n .toc-select .navigation-focus .text-green,\n .toc-select .navigation-focus .text-red,\n .toc-select[aria-selected=true] .diffstat,\n .toc-select[aria-selected=true] .octicon-diff-added,\n .toc-select[aria-selected=true] .octicon-diff-modified,\n .toc-select[aria-selected=true] .octicon-diff-removed,\n .toc-select[aria-selected=true] .octicon-diff-renamed,\n .toc-select[aria-selected=true] .select-menu-item-heading,\n .toc-select[aria-selected=true] .select-menu-item-text,\n .toc-select[aria-selected=true] .text-gray-light,\n .toc-select[aria-selected=true] .text-green,\n .toc-select[aria-selected=true] .text-red,\n .toc-select [role^=menuitem]:focus .diffstat,\n .toc-select [role^=menuitem]:focus .octicon-diff-added,\n .toc-select [role^=menuitem]:focus .octicon-diff-modified,\n .toc-select [role^=menuitem]:focus .octicon-diff-removed,\n .toc-select [role^=menuitem]:focus .octicon-diff-renamed,\n .toc-select [role^=menuitem]:focus .select-menu-item-heading,\n .toc-select [role^=menuitem]:focus .select-menu-item-text,\n .toc-select [role^=menuitem]:focus .text-gray-light,\n .toc-select [role^=menuitem]:focus .text-green,\n .toc-select [role^=menuitem]:focus .text-red,\n .toc-select [role^=menuitem]:hover .diffstat,\n .toc-select [role^=menuitem]:hover .octicon-diff-added,\n .toc-select [role^=menuitem]:hover .octicon-diff-modified,\n .toc-select [role^=menuitem]:hover .octicon-diff-removed,\n .toc-select [role^=menuitem]:hover .octicon-diff-renamed,\n .toc-select [role^=menuitem]:hover .select-menu-item-heading,\n .toc-select [role^=menuitem]:hover .select-menu-item-text,\n .toc-select [role^=menuitem]:hover .text-gray-light,\n .toc-select [role^=menuitem]:hover .text-green,\n .toc-select [role^=menuitem]:hover .text-red {\n color: #fff !important;\n }\n /* github.com: \"color: #6a737d\", \"#e1e4e8\" */\n .conversation-list-heading {\n color: #949494;\n border-bottom-color: #343434;\n }\n /* github.com: \"#fff\" */\n .conversation-list-heading .inner {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .copyable-terminal {\n background-color: #222;\n }\n /* github.com: \"#e1e4e8\" */\n .diff-table .line-comments {\n border-top-color: #343434;\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n .diff-table tr:not(:last-child) .line-comments {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .blob-num {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"color: rgba(27,31,35,.6)\" */\n .blob-num:hover {\n color: rgba(230, 230, 230, .6);\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .blob-num.non-expandable:hover {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"color: #24292e\" */\n .blob-code-inner {\n color: #cdcdcd;\n }\n /* github.com: \"#fffbdd\" */\n .blob-code-inner.highlighted, .blob-code-inner .highlighted {\n background-color: #261d08;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .blob-code-hunk, .blob-num-expandable, .blob-num-hunk {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"#f1f8ff\" */\n .blob-code-hunk, .blob-num-expandable, .blob-num-hunk {\n background-color: #182030;\n }\n /* github.com: \"#fafbfc\" */\n .blob-expanded .blob-code, .blob-expanded .blob-num {\n background-color: #181818;\n }\n /* github.com: \"#eaecef\" */\n .blob-expanded + tr:not(.blob-expanded) .blob-code,\n .blob-expanded + tr:not(.blob-expanded) .blob-num,\n .blob-expanded .blob-num-hunk,\n tr:not(.blob-expanded) + .blob-expanded .blob-code,\n tr:not(.blob-expanded) + .blob-expanded .blob-num {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .blob-num-expandable .diff-expander,\n .blob-num-expandable .directional-expander {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .blob-num-expandable .diff-expander:hover,\n .blob-num-expandable .directional-expander:hover {\n color: #fff;\n background-color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\" */\n .blob-code-addition .x {\n color: #cdcdcd;\n }\n /* github.com: \"#ffeef0\" */\n .blob-code-deletion {\n background-color: #300;\n }\n /* github.com: \"color: #24292e\" */\n .blob-code-deletion .x {\n color: #cdcdcd;\n }\n /* github.com: \"#ffeef0\" */\n .blob-num-deletion {\n background-color: #300;\n }\n /* github.com: \"rgba(255,223,93,.2)\" */\n .selected-line::after {\n background-color: rgba(132, 70, 0, .2);\n }\n /* github.com: \"#ffd33d\" */\n .selected-line.selected-line-top::after {\n border-top-color: #cb4;\n }\n /* github.com: \"#ffd33d\" */\n .selected-line.selected-line-bottom::after {\n border-bottom-color: #cb4;\n }\n /* github.com: \"#ffd33d\" */\n .selected-line.selected-line-left::after, .selected-line:first-child::after {\n border-left-color: #cb4;\n }\n /* github.com: \"#ffd33d\" */\n .selected-line.selected-line-right::after, .selected-line:last-child::after {\n border-right-color: #cb4;\n }\n /* github.com: \"#0366d6\" */\n .is-commenting .selected-line.blob-code::before {\n background: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\", \"rgba(27,31,35,.15)\" */\n .add-line-comment {\n color: #fff;\n background-color: rgb(79, 140, 201);\n background-image: linear-gradient(#0372ef, rgb(79, 140, 201));\n box-shadow: 0 1px 4px #000;\n }\n /* github.com: \"#dfe2e5\" */\n .inline-comment-form {\n border-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .empty-cell + .line-comments, .line-comments + .line-comments {\n border-left-color: #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .file-diff-split .blob-code + .blob-num {\n border-left-color: #202020;\n }\n /* github.com: \"#fafbfc\", \"#eaecef\" */\n .file-diff-split .empty-cell {\n background-color: #181818;\n border-right-color: #343434;\n }\n /* github.com: \"#cb2431\" */\n .submodule-diff-stats .octicon-diff-removed {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .submodule-diff-stats .octicon-diff-added {\n color: #484;\n }\n /* github.com: \"linear-gradient(180deg,rgba(242,248,254,0),rgba(242,248,254,.47))\" */\n .code-navigation-banner {\n background: linear-gradient(180deg, #181818, #181818);\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-timeline.team-discussion-timeline::before,\n .discussion-timeline::before {\n background-color: #343434;\n }\n /* github.com: \"#fff\" */\n .discussion-timeline.team-discussion-timeline .blankslate {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .discussion-sidebar-item {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .discussion-sidebar-item .muted-icon {\n color: #767676;\n }\n /* github.com: \"#0366d6\" */\n .discussion-sidebar-item .muted-icon:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-sidebar-item + .discussion-sidebar-item {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .discussion-sidebar-heading {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .discussion-sidebar-toggle .octicon {\n color: #767676;\n }\n /* github.com: \"#0366d6\" */\n .discussion-sidebar-toggle:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"none\" */\n button.discussion-sidebar-toggle {\n background: none;\n }\n /* github.com: \"color: #586069\" */\n .sidebar-assignee .assignee {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .sidebar-assignee .assignee:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#cb2431\" */\n .thread-subscribe-form.is-error .thread-subscribe-button {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .participation a {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .participation a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\" */\n .gh-header, .gh-header .gh-header-sticky.is-stuck + .gh-header-shadow {\n background-color: #181818;\n }\n /* github.com: \"color: #6a737d\" */\n .gh-header-number {\n color: #949494;\n }\n /* github.com: \"color: #586069\", \"#e1e4e8\" */\n .gh-header-meta {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .tabnav-pr {\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .tabnav-pr .tabnav-tab {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\", \"#e1e4e8\" */\n .tabnav-pr .tabnav-tab.selected {\n color: #cdcdcd;\n border-color: #343434;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .timeline-comment-wrapper {\n border-top-color: #181818;\n border-bottom-color: #181818;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#d1d5da\" */\n .timeline-comment {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #404040;\n }\n /* github.com: \"#c0d3eb\" */\n .timeline-comment.current-user {\n border-color: #246;\n }\n /* github.com: \"#f1f8ff\", \"#c0d3eb\" */\n .timeline-comment.current-user .timeline-comment-header {\n background-color: #182030;\n border-bottom-color: #246;\n }\n /* github.com: \"#c0d3eb\" */\n .timeline-comment.current-user .timeline-comment-label {\n border-color: #246;\n }\n /* github.com: \"color: #c0d3eb\", \"#f1f8ff\", \"#c0d3eb\" */\n .timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav {\n color: #246;\n background-color: #182030;\n border-bottom-color: #246;\n }\n /* github.com: \"#e5d999\" */\n .timeline-comment.is-internal, .timeline-comment.unread-item {\n border-color: #542;\n }\n /* github.com: \"#fffdef\", \"#e5d999\" */\n .timeline-comment.is-internal .timeline-comment-header,\n .timeline-comment.unread-item .timeline-comment-header {\n background-color: #261d08;\n border-bottom-color: #542;\n }\n /* github.com: \"#e5d999\" */\n .timeline-comment.is-internal .timeline-comment-label,\n .timeline-comment.unread-item .timeline-comment-label {\n border-color: #542;\n }\n /* github.com: \"#e5d999\", \"#fffdef\", \"#e5d999\" */\n .timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav,\n .timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav {\n color: #542;\n background-color: #261d08;\n border-bottom-color: #542;\n }\n /* github.com: \"#e1e4e8\" */\n .timeline-comment .comment + .comment {\n border-top-color: #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .timeline-comment--caret::after {\n border-right-color: #202020;\n }\n /* github.com: \"#d1d5da\" */\n .timeline-comment--caret::before {\n border-right-color: #404040;\n }\n /* github.com: \"#fffdef\" */\n .is-pending .timeline-comment--caret::after {\n border-right-color: #261d08;\n }\n /* github.com: \"#f9c513\" */\n .is-pending .timeline-comment--caret::before {\n border-right-color: #cb4;\n }\n /* github.com: \"#f1f8ff\" */\n .timeline-comment--caret.current-user::after {\n border-right-color: #182030;\n }\n /* github.com: \"#c0d3eb\" */\n .timeline-comment--caret.current-user::before {\n border-right-color: #246;\n }\n /* github.com: \"#fffdef\" */\n .timeline-comment--caret.is-internal::after,\n .timeline-comment--caret.unread-item::after {\n border-right-color: #261d08;\n }\n /* github.com: \"#e5d999\" */\n .timeline-comment--caret.is-internal::before,\n .timeline-comment--caret.unread-item::before {\n border-right-color: #542;\n }\n /* github.com: \"filter: drop-shadow(-.28em 0 0 #c8e1ff)\", \"#2188ff\" */\n :target .timeline-comment--caret::before {\n filter: drop-shadow(-.28em 0 0 rgba(79, 140, 201, .3));\n border-right-color: rgb(79, 140, 201);\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n :target .timeline-comment {\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .review-comment:target, :target .timeline-comment {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n .review-comment:target {\n border: 1px solid rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\", \"#f6f8fa\", \"#d1d5da\" */\n .timeline-comment-header {\n color: #afafaf;\n background-color: #222;\n border-bottom-color: #404040;\n }\n /* github.com: \"color: #586069\" */\n .timeline-comment-header .author {\n color: #afafaf;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .timeline-comment-label {\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#cb2431\", \"#d73a49\" */\n .timeline-comment-label-spammy {\n color: #d82828;\n border-color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .timeline-comment-header-text code a {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .timeline-comment-action {\n color: #949494;\n }\n /* github.com: \"#0366d6\" */\n .timeline-comment-action:focus, .timeline-comment-action:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#d1d5da\" */\n .timeline-comment-action.disabled, .timeline-comment-action.disabled:hover {\n color: #404040;\n }\n /* github.com: \"#e1e4e8\" */\n .timeline-new-comment .previewable-comment-form .comment-body {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"#e1e4e8\", \"#fff\" */\n .discussion-item-icon {\n color: #cdcdcd;\n background-color: #343434;\n border-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .discussion-item-header {\n color: #afafaf;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .discussion-item-private {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"#f6f8fa\" */\n .previewable-comment-form .comment-form-head.tabnav {\n background-color: #222;\n }\n /* github.com: \"#fff\" */\n .page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting {\n background-color: #181818;\n }\n /* github.com: \"transparent\" */\n @media (min-width:1012px) {\n .page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting {\n background-color: transparent;\n }\n }\n /* github.com: \"#f6f8fa\" */\n @media (min-width:768px) {\n .page-responsive .previewable-comment-form .comment-form-head.tabnav {\n background-color: #222;\n }\n }\n /* github.com: \"initial\", \"#e1e4e8\" */\n .previewable-comment-form .comment-body {\n background-color: initial;\n border-bottom-color: #343434;\n }\n /* github.com: \"#fff\" */\n .new-discussion-timeline .composer .timeline-comment::after {\n border-right-color: #181818;\n }\n /* github.com: \"#fff\" */\n .new-discussion-timeline .composer .comment-form-head.tabnav {\n background-color: #181818;\n }\n /* github.com: \"#d1d5da\", \"#fff\", \"#d1d5da\" */\n @media (min-width:768px) {\n .composer.composer-responsive .timeline-comment {\n border-color: #404040;\n }\n .composer.composer-responsive .timeline-comment::after {\n border-right-color: #181818;\n }\n .composer.composer-responsive .timeline-comment::before {\n border-right-color: #404040;\n }\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .discussion-timeline-actions {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github.com: \"#fff\" */\n .pagination-loader-container {\n background-color: #181818;\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n :target .timeline-comment-group .timeline-comment {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* github.com: \"#f9c513\" */\n .is-pending .comment-form-head.tabnav, .is-pending .file,\n .is-pending .file-header, .is-pending .tabnav-tab.selected {\n border-color: #cb4;\n }\n /* github.com: \"#fffdef\" */\n .is-pending .comment-form-head.tabnav, .is-pending .file-header {\n background-color: #261d08;\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-item-review-comment {\n border-bottom-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-item-icon-gray {\n background-color: #343434 !important;\n }\n /* github.com: \"#c6cbd1\" */\n .footer-octicon {\n color: #5a5a5a;\n }\n /* github.com: \"color: #959da5\" */\n .footer-octicon:hover {\n color: #767676;\n }\n /* github.com: \"none\", \"box-shadow: none\" */\n .kb-konami-dialog {\n background: none;\n box-shadow: none;\n }\n /* github.com: \"color: #fff\", \"#fff\" */\n .kb-konami-dialog .Box-btn-octicon {\n color: #fff;\n border-color: #181818;\n }\n /* github.com: \"none\" */\n .konami {\n background: none;\n }\n /* github.com: \"color: #fff\", \"rgba(27,31,35,.04)\" */\n .konami .key {\n color: #fff;\n box-shadow: 0 1px 0 #000;\n }\n /* github.com: \"none\" */\n .konami-overlay {\n background: none;\n }\n /* github.com: \"color: #fff\", \"none\", \"#fff\" */\n .konami .key.complete {\n color: #fff;\n background: none;\n border-color: #181818;\n }\n /* github.com: \"color: #24292e\" */\n .konami .key.active {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\" */\n .konami .key.down.active {\n color: #fff;\n }\n /* github.com: \"color: #24292e\" */\n .konami .enter-link {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\", \"none\" */\n .konami .enter-link:hover {\n color: #fff;\n background: none;\n }\n /* github.com: \"color: #24292e\" */\n .team-mention, .user-mention {\n color: #cdcdcd;\n }\n /* github.com: \"#e1e4e8\" */\n .pagehead {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .pagehead-actions > li {\n color: #cdcdcd;\n }\n /* github.com: \"#cb2431\" */\n .pagehead-actions .octicon-mute {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .pagehead-tabs-item {\n color: #afafaf;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .pagehead-tabs-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"color: #444d56\" */\n .pagehead-tabs-item .Counter {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .pagehead-tabs-item:hover {\n color: #cdcdcd;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n .pagehead-tabs-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n border-color: #fb8532 #343434 transparent;\n }\n /* github.com: \"color: #586069\" */\n .reponav-item {\n color: #afafaf;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .reponav-item .octicon {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"color: #444d56\" */\n .reponav-item .Counter {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .reponav-item:focus, .reponav-item:hover {\n color: #cdcdcd;\n }\n /* github.com: \"color: #24292e\", \"#fff\", \"#e36209\",\"#e1e4e8\" */\n .reponav-item.selected {\n color: #cdcdcd;\n border-color: #fb8532 #343434 transparent;\n }\n /* github.com: \"#24292e\" */\n .reponav-item.selected, .reponav-wrapper {\n background-color: #181818;\n }\n /* github.com: \"color: #fff\", \"initial\" */\n .reponav-wrapper .reponav-item.selected {\n color: #fff;\n background-color: initial;\n }\n /* github.com: \"#dfe2e5\" */\n .steps {\n border-color: #343434;\n }\n /* github.com: \"#c6cbd1\", \"#fafbfc\", \"#dfe2e5\" */\n .steps li {\n color: #5a5a5a;\n background-color: #181818;\n border-left-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"#fff\" */\n .steps li.current {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"#0366d6\" */\n .steps li.current .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .steps .complete {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .steps .complete .octicon {\n color: #484;\n }\n /* github.com: \"#0366d6\" */\n .prose-diff .show-rich-diff {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#d1d5da\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable .octicon {\n color: #404040;\n }\n /* github.com: \"color: #24292e\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon {\n color: #cdcdcd;\n }\n /* github.com: \"#d1d5da\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child::before {\n color: #404040;\n }\n /* github.com: \"color: #24292e\" */\n .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover::before {\n color: #cdcdcd;\n }\n /* github.com: \"#2cbe4e\" */\n .prose-diff .markdown-body > ins {\n box-shadow: inset 4px 0 0 #373;\n }\n /* github.com: \"#cb2431\" */\n .prose-diff .markdown-body > del {\n box-shadow: inset 4px 0 0 #d82828;\n }\n /* github.com: \"#2cbe4e\" */\n .prose-diff .rich-diff-level-zero.added {\n box-shadow: inset 4px 0 0 #373;\n }\n /* github.com: \"#cb2431\" */\n .prose-diff .rich-diff-level-zero.removed {\n box-shadow: inset 4px 0 0 #d82828;\n }\n /* github.com: \"#f9c513\" */\n .prose-diff .rich-diff-level-zero.changed {\n box-shadow: inset 4px 0 0 #cb4;\n }\n /* github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff .changed .removed, .prose-diff .changed .removed > div,\n .prose-diff .changed .removed code, .prose-diff .changed del,\n .prose-diff .changed del > div, .prose-diff .changed del code {\n color: #d82828;\n background-color: #300;\n }\n /* github.com: \"#2cbe4e\" */\n .prose-diff .changed .added, .prose-diff .changed ins,\n .prose-diff .changed ins code {\n border-bottom-color: #373;\n }\n /* github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff > .markdown-body li ul.removed {\n color: #d82828;\n background-color: #300;\n }\n /* github.com: \"#d1d5da\" */\n .prose-diff > .markdown-body li.added.moved-down .octicon,\n .prose-diff > .markdown-body li.added.moved-up .octicon {\n color: #404040;\n }\n /* github.com: \"#fffdef\" */\n .prose-diff > .markdown-body li.added.moved {\n background-color: #261d08;\n }\n /* github.com: \"#fffdef\", \"#dfe2e5\" */\n .prose-diff > .markdown-body td.changed,\n .prose-diff > .markdown-body th.changed {\n background-color: #261d08;\n border-left-color: #343434;\n }\n /* github.com: \"#cb2431\", \"#ffeef0\" */\n .prose-diff > .markdown-body li:not(.moved).removed {\n color: #d82828;\n background-color: #300;\n }\n /* github.com: \"#f6f8fa\" */\n .protip code {\n background-color: #222;\n }\n /* github.com: \"#dbedff\" */\n .add-reactions-options-item:active {\n background-color: #182030;\n }\n /* github.com: \"#e1e4e8\" */\n .comment-reactions.has-reactions {\n border-top-color: #343434;\n }\n /* github.com: \"#f1f8ff\" */\n .comment-reactions .user-has-reacted {\n background-color: #182030;\n }\n /* github.com: \"#e1e4e8\" */\n .reaction-summary-item {\n border-right-color: #343434;\n }\n /* github.com: \"#dfe2e5\" */\n .render-container {\n background-color: #343434;\n }\n /* github.com: \"none\" */\n .render-container.is-render-ready.is-render-requested:not(.is-render-failed) {\n background: none;\n }\n /* github.com: \"color: #444d56\", \"#f6f8fa\", \"rgba(27,31,35,.15)\" */\n .render-notice {\n color: #afafaf;\n background-color: #222;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#dfe2e5\" */\n .content-attachment {\n border-left-color: #343434;\n }\n /* github.com: \"hsla(0,0%,100%,0)\",\"#fff\" */\n .max--md .content-attachment-content--gradient {\n background: linear-gradient(180deg, transparent, #181818 calc(100% - 28px));\n }\n /* github.com: \"none\" */\n .content-attachment-details[open] .max--md .content-attachment-content--gradient {\n background: none;\n }\n /* github.com: \"color: #586069\" */\n .marketing .pagehead p {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .marketing h2 .secure {\n color: #484;\n }\n /* github.com: \"#e5e5e5\" */\n .marketing-section {\n border-bottom-color: #343434;\n }\n /* github.com: \"#e5e5e5\" */\n .marketing-hero-octicon {\n border-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .marketing-hero-octicon .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .hanging-icon-list .octicon {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .hanging-icon-list .octicon-check {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .hanging-icon-list .octicon-x {\n color: #d82828;\n }\n /* github.com: \"color: #fff\", \"#3b41af\", \"#6570e2\",\"#3b41af\" */\n .btn-blurple {\n color: #fff;\n background-color: #6570e2;\n background-image: linear-gradient(-180deg, #4550c2, #6570e2 90%);\n }\n /* github.com: \"rgba(27,31,35,.5)\" */\n .btn-blurple.hover, .btn-blurple:hover {\n border-color: rgba(220, 220, 220, .5);\n }\n /* github.com: \"none\", \"rgba(27,31,35,.5)\", \"rgba(27,31,35,.15)\" */\n .btn-blurple.selected, .btn-blurple:active, .btn-blurple[aria-selected=true],\n [open] > .btn-blurple {\n background-image: none;\n border-color: rgba(220, 220, 220, .5);\n box-shadow: inset 0 .15em .3em #000;\n }\n /* github.com: \"none\", \"rgba(27,31,35,.15)\", \"box-shadow: none\" */\n .btn-blurple.disabled, .btn-blurple:disabled,\n .btn-blurple[aria-disabled=true] {\n background-image: none;\n border-color: rgba(220, 220, 220, .15);\n box-shadow: none;\n }\n /* github.com: \"#fff\" */\n .btn-blurple .Counter {\n background-color: #181818;\n }\n /* github.com: \"color: #fff\" */\n .intgrs-dir-intro .directory-header-back,\n .intgrs-dir-intro .directory-tag-line {\n color: #fff;\n }\n /* github.com: \"#0366d6\" */\n .intgrs-lstng-item-link:hover .intgrs-lstng-item-header {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #333\" */\n .intgrs-lstng-item-header {\n color: #bebebe;\n }\n /* github.com: \"color: #586069\" */\n .intgrs-lstng-item-description {\n color: #afafaf;\n }\n /* github.com: \"hsla(0,0%,100%,0)\",\"#fff\" */\n .intgrs-lstng-item-description::after {\n background-image: linear-gradient(90deg, transparent, #181818 80%);\n }\n /* github.com: \"color: #fff\" */\n .intgr-admin-link.draft-tag .octicon,\n .intgr-admin-link.draft-tag:hover .octicon {\n color: #fff;\n }\n /* github.com: \"#0366d6\" */\n .intgr-admin-link:hover .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .intgr-admin-link .octicon {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .integrations-breadcrumb-link:hover,\n .intgr-feat-header .intgr-admin-link:hover .octicon, .intgr-feat-header h2 {\n color: #fff;\n }\n /* github.com: \"initial\" */\n .integrations-install-target .flash,\n .integrations-install-target .flash-error {\n background-color: initial;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .integrations-install-target .octicon-lock {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"#fafbfc\" */\n .listgroup-item.disabled {\n background-color: #181818;\n }\n /* github.com: \"color: #333\" */\n .listgroup-item.disabled .listgroup-item-title {\n color: #bebebe;\n }\n /* github.com: \"color: #767676\" */\n .link-small {\n color: #767676;\n }\n /* github.com: \"#0366d6\" */\n .listgroup-item:hover .link-small {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#d73a49\" */\n .manifest-errors {\n border-left-color: #d82828;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .not-found-octocat-wrapper::after {\n background-color: #181818;\n box-shadow: 0 4px 0 #181818, 0 8px 0 #181818, 0 12px 0 #181818, 0 16px 0 #181818, 0 20px 0 #181818;\n }\n /* github.com: \"color: #333\" */\n .billing-plans .name {\n color: #bebebe;\n }\n /* github.com: \"color: #fff\", \"#28a745\" */\n .billing-plans .coupon td {\n color: #fff;\n background-color: #484;\n }\n /* github.com: \"#28a745\" */\n .coupon-label::after {\n border-bottom-color: #484;\n }\n /* github.com: \"#eee\" */\n .plan-notice {\n border-top-color: #343434;\n }\n /* github.com: \"color: #fff\" */\n .alert-label {\n color: #fff;\n }\n /* github.com: \"#cb2431\" */\n .alert-label--high {\n background-color: #d82828;\n }\n /* github.com: \"#cb2431\" */\n .graph-canvas .alert-label--high {\n fill: #d82828;\n }\n /* github.com: \"#e36209\" */\n .alert-label--moderate {\n background-color: #fb8532;\n }\n /* github.com: \"#e36209\" */\n .graph-canvas .alert-label--moderate {\n fill: #fb8532;\n }\n /* github.com: \"#dbab09\" */\n .alert-label--low {\n background-color: #cb4;\n }\n /* github.com: \"#dbab09\" */\n .graph-canvas .alert-label--low {\n fill: #cb4;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .advisory-form {\n background-color: #222;\n border-top-color: #343434;\n }\n /* github.com: \"#fff\" */\n .advisory-form .form-actions, .advisory-form .form-control,\n .advisory-form .previewable-comment-form {\n background-color: #181818;\n }\n /* github.com: \"#f5f5f5\" */\n .credit-card {\n background-color: #222;\n }\n /* github.com: \"color: #767676\", \"#fff\" */\n .credit-card.normal .signature {\n color: #767676;\n background-color: #181818;\n }\n /* github.com: \"#d73a49\" */\n .credit-card .cvv {\n border-color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .credit-card .cvv span {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .billing-addon-items td.black {\n color: #cdcdcd;\n }\n /* github.com: \"#eee\" */\n .billing-addon-items tr {\n border-bottom-color: #343434;\n }\n /* github.com: \"#fafbfc\" */\n .billing-addon-items tr:nth-child(2n) {\n background-color: #181818;\n }\n /* github.com: \"#cb2431\", \"#fff\" */\n .billing-addon-items tr.total-row {\n color: #d82828;\n background-color: #181818;\n }\n /* github.com: \"color: #666\" */\n .billing-addon-items .addon-cost,\n .billing-addon-items .discounted-original-price {\n color: #949494;\n }\n /* github.com: \"#fff\" */\n .billing-credit-card .javascript-disabled-overlay {\n background-color: #181818;\n }\n /* github.com: \"#eee\" */\n .billing-extra-box, .billing-vat-box {\n border-left-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .billing-section .section-label {\n color: #afafaf;\n }\n /* github.com: \"color: #333\" */\n .billing-section .section-content {\n color: #bebebe;\n }\n /* github.com: \"#eee\" */\n .usage-bar {\n background-color: #242424;\n }\n /* github.com: \"#d73a49\" */\n .usage-bar.exceeded .progress {\n background-color: #d82828 !important;\n }\n /* github.com: \"#34d058\" */\n .usage-bar .progress {\n background-color: #373;\n }\n /* github.com: \"#8a63d2\" */\n .usage-bar .progress--purple {\n background-color: #53387a;\n }\n /* github.com: \"color: #586069\" */\n .lfs-data-icon {\n color: #afafaf;\n }\n /* github.com: \"color: #333\" */\n .lfs-data-icon.dark {\n color: #bebebe;\n }\n /* github.com: \"#f9f9f9\" */\n .paypal-container {\n background-color: #181818;\n }\n /* github.com: \"#ddd\" */\n .braintree-paypal-loggedin {\n border-color: #343434 !important;\n }\n /* github.com: \"color: #586069\" */\n .payment-history .currency, .payment-history .status {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .payment-history .succeeded .status {\n color: #484;\n }\n /* github.com: \"#f6f8fa\" */\n .payment-history .failed, .payment-history .refunded {\n background-color: #222;\n }\n /* github.com: \"color: #6a737d\" */\n .payment-history .refunded .status {\n color: #949494;\n }\n /* github.com: \"#cb2431\" */\n .payment-history .failed .status {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .discounted-original-price {\n color: #afafaf;\n }\n /* github.com: \"#f9f9f9\", \"#eee\" */\n .billing-manager-banner {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .billing-manager-banner-text, .billing-manager-banner-title {\n color: #afafaf;\n }\n /* github.com: \"#fafbfc\", \"#e0e0e0\" */\n .plan-choice {\n border-color: #343434;\n }\n /* github.com: \"#fff\" */\n .plan-choice, .plan-choice.open, .plan-choice.selected {\n background-color: #181818;\n }\n /* github.com: \"#d1d5da\", \"rgba(149,157,165,.2)\" */\n .plan-choice--experiment.open, .plan-choice--experiment.selected {\n border-color: #404040;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"#28a745\", \"rgba(27,31,35,.04)\" */\n .plan-choice--experiment.open .plan-choice-icon,\n .plan-choice--experiment.selected .plan-choice-icon {\n background-color: #484;\n box-shadow: 0 1px 0 #000;\n }\n /* github.com: \"#34d058\" */\n .plan-choice--experiment.plan-choice--green.open,\n .plan-choice--experiment.plan-choice--green.selected {\n border-color: #373;\n }\n /* github.com: \"#28a745\" */\n .plan-choice--experiment.plan-choice--green.open .plan-choice-icon,\n .plan-choice--experiment.plan-choice--green.selected .plan-choice-icon {\n background-color: #484;\n }\n /* github.com: \"#8a63d2\" */\n .plan-choice--experiment.plan-choice--purple.open,\n .plan-choice--experiment.plan-choice--purple.selected {\n border-color: #53387a;\n }\n /* github.com: \"#6f42c1\" */\n .plan-choice--experiment.plan-choice--purple.open .plan-choice-icon,\n .plan-choice--experiment.plan-choice--purple.selected .plan-choice-icon {\n background-color: #9378ba;\n }\n /* github.com: \"color: #6a737d\" */\n .plan-choice-exp {\n color: #949494;\n }\n /* github.com: \"#e0e0e0\" */\n .billing-line-item {\n border-top-color: #343434;\n }\n /* github.com: \"color: #6a737d\" */\n .billing-box-accordion:hover .billing-box-accordion-state .octicon {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .billing-box-accordion-state .octicon {\n color: #afafaf;\n }\n /* github.com: \"#fff\" */\n .billing-box-progressBars span:nth-child(2) {\n border-left-color: #181818;\n }\n /* github.com: \"color: #6a737d\" */\n .blame-commit-date[data-heat=\"10\"] {\n color: #949494;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .blame-commit-message .message.blank {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"#d1d5da\" */\n .reblame-link {\n color: #404040;\n }\n /* github.com: \"color: #6a737d\" */\n .blame-hunk:hover .reblame-link {\n color: #949494;\n }\n /* github.com: \"#e5e5e5\" */\n .blob-interaction-bar {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .blob-interaction-bar .octicon-search {\n color: #afafaf;\n }\n /* github.com: \"#f6f8fa\" */\n .TagsearchPopover-list .TagsearchPopover-list-item:hover {\n background-color: #222;\n }\n /* github.com: \"#fff\" */\n .CopyBlock:active, .CopyBlock:focus, .CopyBlock:hover,\n .file-commit-form--full, .linejump .linejump-input {\n background-color: #181818;\n }\n /* github.com: \"#fff\" */\n .commit-form::after {\n border-right-color: #181818;\n }\n /* github.com: \"#ddd\" */\n .commit-form::before {\n border-right-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .merge-pr {\n border-top-color: #404040;\n }\n /* github.com: \"#e1e4e8\" */\n .merge-status-list {\n border-color: #343434;\n }\n /* github.com: \"#fafbfc\", \"#e1e4e8\" */\n .merge-status-item {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .status-meta {\n color: #afafaf;\n }\n /* github.com: \"rgba(27,31,35,.05)\" */\n .status-meta-file-name {\n background-color: rgba(220, 220, 220, .1);\n }\n /* github.com: \"color: #fff\" */\n .branch-action-icon {\n color: #fff;\n }\n /* github.com: \"#fff\", \"#d1d5da\" */\n .branch-action-body {\n background-color: #181818;\n border-color: #404040;\n }\n /* github.com: \"#fafbfc\", \"#e1e4e8\" */\n .branch-action-body .merge-branch-form, .branch-action-body .merge-message {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .branch-action-item + .branch-action-item,\n .branch-action-item + .mergeability-details {\n border-top-color: #343434;\n }\n /* github.com: \"#2cbe4e\" */\n .branch-action-state-clean .branch-action-icon {\n background-color: #373;\n }\n /* github.com: \"#34d058\" */\n .branch-action-state-clean .branch-action-body {\n border-color: #373;\n }\n /* github.com: \"#34d058\" */\n .branch-action-state-clean .branch-action-body::before {\n border-right-color: #373;\n }\n /* github.com: \"#dbab09\" */\n .branch-action-state-unknown .branch-action-icon,\n .branch-action-state-unstable .branch-action-icon {\n background-color: #cb4;\n }\n /* github.com: \"#6f42c1\" */\n .branch-action-state-merged .branch-action-icon {\n background-color: #9378ba;\n }\n /* github.com: \"#6a737d\" */\n .branch-action-state-closed-dirty .branch-action-icon,\n .branch-action-state-dirty .branch-action-icon,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-icon {\n background-color: #444;\n }\n /* github.com: \"#d1d5da\" */\n .branch-action-state-closed-dirty .branch-action-body,\n .branch-action-state-dirty .branch-action-body,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body {\n border-color: #404040;\n }\n /* github.com: \"#d1d5da\" */\n .branch-action-state-closed-dirty .branch-action-body::before,\n .branch-action-state-dirty .branch-action-body::before,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::before {\n border-right-color: #404040;\n }\n /* github.com: \"#d73a49\" */\n .branch-action-state-error .branch-action-icon,\n .is-merging .branch-action-state-error-if-merging .branch-action-icon {\n background-color: #d82828;\n }\n /* github.com: \"#f97583\" */\n .branch-action-state-error .branch-action-body,\n .is-merging .branch-action-state-error-if-merging .branch-action-body {\n border-color: #f88;\n }\n /* github.com: \"#f97583\" */\n .branch-action-state-error .branch-action-body::before,\n .is-merging .branch-action-state-error-if-merging .branch-action-body::before {\n border-right-color: #f88;\n }\n /* github.com: \"#e1e4e8\" */\n .merge-branch-form .commit-form::before {\n border-right-color: #343434;\n }\n /* github.com: \"#f97583\" */\n .merge-branch-form.danger .commit-form,\n .merge-branch-form.error .commit-form {\n border-color: #f88;\n }\n /* github.com: \"#f97583\" */\n .merge-branch-form.danger .commit-form::before,\n .merge-branch-form.error .commit-form::before {\n border-right-color: #f88;\n }\n /* github.com: \"color: #fff\", \"#2cbe4e\" */\n .completeness-indicator-success {\n color: #fff;\n background-color: #373;\n }\n /* github.com: \"color: #fff\", \"#cb2431\" */\n .completeness-indicator-error {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"color: #fff\", \"#6a737d\" */\n .completeness-indicator-problem {\n color: #fff;\n background-color: #444;\n }\n /* github.com: \"#fffbdd\", \"rgba(27,31,35,.15)\" */\n .RecentBranches {\n background-color: #261d08;\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#735c0f\" */\n .RecentBranches-item {\n color: #bba257;\n }\n /* github.com: \"rgba(27,31,35,.05)\" */\n .RecentBranches-item + .RecentBranches-item {\n border-top-color: rgba(220, 220, 220, .05);\n }\n /* github.com: \"#735c0f\" */\n .RecentBranches-item-link {\n color: #bba257;\n }\n /* github.com: \"#fafbfc\", \"#e1e4e8\" */\n .range-editor {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .range-editor-icon {\n color: #afafaf;\n }\n /* github.com: \"#fff\", \"#dfe2e5\" */\n ul.comparison-list {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n ul.comparison-list > li {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n ul.comparison-list > li em {\n color: #afafaf;\n }\n /* github.com: \"color: #a3aab1\" */\n ul.comparison-list > li .octicon {\n color: #767676;\n }\n /* github.com: \"color: #6a737d\", \"#fafbfc\" */\n ul.comparison-list > li.title {\n color: #949494;\n background-color: #181818;\n }\n /* github.com: \"#959da5\" */\n .branch-a-b-count .count-half:last-child {\n border-left-color: #484848;\n }\n /* github.com: \"#c6cbd1\" */\n .branch-a-b-count .meter {\n background-color: #5a5a5a;\n }\n /* github.com: \"initial\" */\n .branch-a-b-count .meter.zero {\n background-color: initial;\n }\n /* github.com: \"#eaecef\" */\n .branch-a-b-count .bar-ahead.even, .branch-a-b-count .bar-behind.even {\n background-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .admin-options-block .policy-enforcement {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .admin-options-block .disabled, .admin-options-block .disabled .note,\n .deprovisioning-checkbox.checkbox-disabled {\n color: #949494;\n }\n /* github.com: \"#0366d6\" */\n .checks-list-item.selected .checks-list-item-name {\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #fff !important\" */\n .checks-list-item.selected .selected-color-white {\n color: #fff !important;\n }\n /* github.com: \"#d73a49\" */\n .check-annotation-failure::after {\n background-color: #d82828;\n }\n /* github.com: \"#d73a49\" */\n .check-annotation-failure .annotation-title {\n color: #d82828;\n }\n /* github.com: \"#ffd33d\" */\n .check-annotation-warning::after {\n background-color: #cb4;\n }\n /* github.com: \"#b08800\" */\n .check-annotation-warning .annotation-title,\n .check-annotation-warning .octicon-alert {\n color: #cb4;\n }\n /* github.com: \"color: #959da5\" */\n .neutral-check {\n color: #767676;\n }\n /* github.com: \"#24292e\" */\n .CheckRun {\n background-color: #181818;\n }\n /* github.com: \"color: #959da5\" */\n .CheckStep-header {\n color: #767676;\n }\n /* github.com: \"color: #fff\", \"#24292e\", \"none\" */\n .CheckRun-search .btn {\n color: #fff;\n background-color: #181818;\n background-image: none;\n }\n /* github.com: \"#2f363d\" */\n .CheckRun-search .btn:hover {\n background-color: #282828;\n }\n /* github.com: \"color: #586069\", \"none\" */\n .CheckRun-search .btn[disabled] {\n color: #afafaf;\n background-image: none;\n }\n /* github.com: \"#24292e\" */\n .CheckRun-search .btn[disabled]:hover {\n background-color: #181818;\n }\n /* github.com: \"#eaecef\", \"#444d56\" */\n .CheckRun-header {\n border-top-color: #343434;\n border-bottom-color: #484848;\n }\n /* github.com: \"color: #959da5\" */\n .CheckRun-header-timestamp {\n color: #767676;\n }\n /* github.com: \"color: #24292e\", \"#fafbfc\" */\n .CheckRun-search-input:focus {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"color: #959da5\" */\n .CheckStep-line .CheckStep-line-number,\n .CheckStep-line .CheckStep-line-timestamp {\n color: #767676;\n }\n /* github.com: \"#2f363d\" */\n .CheckStep-line:hover {\n background-color: #282828;\n }\n /* github.com: \"#586069\" */\n .CheckStep-line.selected {\n background-color: #343434;\n }\n /* github.com: \"color: #24292e !important\" */\n .CheckStep-line .dt-fm {\n color: #cdcdcd !important;\n }\n /* github.com: \"color: #fff !important\", \"#2188ff\", \"#79b8ff\" */\n .CheckStep-line .dt-fm.select {\n color: #fff !important;\n background: rgb(79, 140, 201);\n outline: 1px solid rgb(79, 140, 201);\n }\n /* github.com: \"#79b8ff\" */\n .CheckStep .log-line-command {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#f97583\" */\n .CheckStep .log-line-error {\n color: #f88;\n }\n /* github.com: \"color: #959da5\" */\n .CheckStep .log-line-info, .CheckStep .log-line-verbose {\n color: #767676;\n }\n /* github.com: \"color: #24292e\" */\n .CheckStep .ansifg-b {\n color: #cdcdcd;\n }\n /* github.com: \"#f97583\" */\n .CheckStep .ansifg-r {\n color: #f88;\n }\n /* github.com: \"#ffea7f\" */\n .CheckStep .ansifg-y {\n color: #542;\n }\n /* github.com: \"#79b8ff\" */\n .CheckStep .ansifg-bl {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#e1e4e8\" */\n .CheckStep .ansifg-w {\n color: #343434;\n }\n /* github.com: \"color: #959da5\" */\n .CheckStep .ansifg-gr {\n color: #767676;\n }\n /* github.com: \"#24292e\" */\n .CheckStep .ansibg-b {\n background-color: #181818;\n }\n /* github.com: \"#f97583\" */\n .CheckStep .ansibg-r {\n background-color: #f88;\n }\n /* github.com: \"#ffea7f\" */\n .CheckStep .ansibg-y {\n background-color: #542;\n }\n /* github.com: \"#24292e\" */\n .CheckStep .ansibg-bl {\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .CheckStep .ansibg-w {\n background-color: #343434;\n }\n /* github.com: \"#2cbe4e\" */\n .code-frequency .addition {\n fill: #373;\n }\n /* github.com: \"#cb2431\" */\n .code-frequency .deletion {\n fill: #d82828;\n }\n /* github.com: \"#22863a\" */\n .cadd {\n color: #6cc644;\n }\n /* github.com: \"#cb2431\" */\n .cdel {\n color: #d82828;\n }\n /* github.com: \"#e1e4e8\" */\n .code-list .file-box {\n border-color: #343434;\n }\n /* github.com: \"#eee\" */\n .code-list .code-list-item + .code-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .code-list .blob-num a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .code-list .full-path .octicon-repo {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .code-list .full-path a {\n color: #949494;\n }\n /* github.com: \"#fffdef\" */\n .code-list-item-private .blob-num {\n background-color: #261d08;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .code-list-item-private .blob-num a {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"color: rgba(27,31,35,.7)\", \"#fffdef\" */\n .code-list-item-private .divider .blob-code,\n .code-list-item-private .divider .blob-num {\n color: rgba(230, 230, 230, .7);\n background-color: #261d08;\n }\n /* github.com: \"#ffd33d\" */\n .code-scanning-alert-warning-message {\n border-color: #cb4 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .codesearch-results .repo-list-item + .repo-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"none\", \"box-shadow: none\" */\n .search-form-fluid .search-page-input {\n background: none;\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none\" */\n .search-form-fluid .search-page-input:focus {\n box-shadow: none;\n }\n /* github.com: \"color: #586069\", \"#fff\", \"#e1e4e8\" */\n @media (max-width:544px) {\n .codesearch-pagination-container .current {\n color: #afafaf;\n background-color: #181818;\n border-color: #343434;\n }\n }\n /* github.com: \"#f9c513\" */\n rect.max {\n fill: #cb4;\n }\n /* github.com: \"#28a745\" */\n g.bar {\n fill: #484;\n }\n /* github.com: \"#fb8532\" */\n g.mini {\n fill: #fb8532;\n }\n /* github.com: \"color: #24292e\", \"#ffd33d\" */\n .CommunityTemplate-highlight {\n color: #cdcdcd;\n background-color: #cb4;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .CommunityTemplate-highlight--focus {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#ffd33d\",\"#28a745\", \"initial\" */\n .community-checklist .progress-bar {\n background: linear-gradient(90deg, #cb4, #c5e300, #484);\n background-color: initial;\n }\n /* github.com: \"#f6f8fa\" */\n .community-checklist .progress {\n background-color: #222;\n }\n /* github.com: \"#dbab09\" */\n .community-checklist .checklist-dot {\n color: #cb4;\n }\n /* github.com: \"#cb2431\" */\n span.no-nl-marker {\n color: #d82828;\n }\n /* github.com: \"#fff\" */\n .select-menu-item {\n background-color: #181818;\n }\n /* github.com: \"rgba(27,31,35,.04)\" */\n .contrib-legend .legend li {\n box-shadow: inset 0 0 0 1px #000;\n }\n /* github.com: \"color: #586069\" */\n li.contribution .num {\n color: #afafaf;\n }\n /* github.com: \"fill: #959da5\" */\n .activity-overview-percentage {\n fill: #757575;\n }\n /* github.com: \"#f6f8fa\" */\n .tint-box {\n background-color: #222;\n }\n /* github.com: \"#fff\" */\n .tint-box.transparent {\n background-color: #181818;\n }\n /* github.com: \"#fb8532\" */\n .contrib-person path {\n fill: #fb8532;\n }\n /* github.com: \"fill: #959da5\" */\n .contrib-person .midlabel {\n fill: #757575;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .coupons .coupon-form-body {\n background-color: #181818;\n box-shadow: 0 1px 3px rgba(0, 0, 0, .075), inset 1px 0 #181818;\n }\n /* github.com: \"#0366d6\" */\n .coupon-icon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#dbab09\" */\n .repo-private-icon {\n fill: #cb4;\n }\n /* github.com: \"#e1e4e8\" */\n .dashboard-rollup-items > .dashboard-rollup-item {\n border-top-color: #343434;\n }\n /* github.com: \"#fafbfc\", \"#d1d5da\" */\n .dashboard-notice {\n background-color: #181818;\n border-color: #404040;\n }\n /* github.com: \"color: #959da5\" */\n .dashboard-notice .dismiss {\n color: #767676;\n }\n /* github.com: \"color: #586069\" */\n .dashboard-notice .dismiss:hover {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .dashboard-notice .octicon-organization {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\" */\n .dashboard-notice h2 {\n color: #cdcdcd;\n }\n /* github.com: \"#fff\" */\n .dashboard-notice .coupon {\n background-color: #181818;\n }\n /* github.com: \"#fff\", \"box-shadow: none\" */\n .dashboards-overview-cards .blankslate {\n background-color: #181818;\n box-shadow: none;\n }\n /* github.com: \"#cb2431\" */\n .dashboards-overview-cards .octicon-arrow-down {\n color: #d82828;\n }\n /* github.com: \"#0366d6\" */\n .dashboards-overview-cards .summary-stats .metric-1 {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #666\" */\n .developer-thanks .hook {\n color: #949494;\n }\n /* github.com: \"#28a745\" */\n .developer-next-steps .octicon {\n color: #484;\n }\n /* github.com: \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer,\n .timeline-comment.current-user.timeline-chosen-answer .timeline-comment-label,\n .timeline-comment.timeline-chosen-answer,\n .timeline-comment.timeline-chosen-answer .timeline-comment-label {\n border-color: #040;\n }\n /* github.com: \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer::before,\n .timeline-comment.timeline-chosen-answer::before {\n border-right-color: #040;\n }\n /* github.com: \"#f0fff4\", \"#a2cbac\" */\n .timeline-comment.current-user.timeline-chosen-answer .timeline-comment-header,\n .timeline-comment.timeline-chosen-answer .timeline-comment-header {\n background-color: #002800;\n border-bottom-color: #040;\n }\n /* github.com: \"box-shadow: none\" */\n :target .discussion-nested-comment-group .timeline-comment {\n box-shadow: none;\n }\n /* github.com: \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .discussion-nested-comment-timeline-item:target {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* github.com: \"box-shadow: none\" */\n :target .nested-discussion-timeline-comment {\n box-shadow: none;\n }\n /* github.com: \"#d2dff0\" */\n .discussion-comment .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* github.com: \"#22863a\" */\n .icon-discussion-answered {\n color: #6cc644;\n }\n /* github.com: \"#22863a\" */\n .icon-discussion-answered, .icon-discussion-answered path {\n fill: #6cc644;\n }\n /* github.com: \"color: #fff\" */\n .icon-discussion-white {\n color: #fff;\n }\n /* github.com: \"color: #24292e\" */\n .icon-discussion-gray {\n color: #cdcdcd;\n }\n /* github.com: \"fill: #24292e\" */\n .icon-discussion-gray, .icon-discussion-gray path {\n fill: #bebebe;\n }\n /* github.com: \"#6a737d\" */\n .discussions-activity-indicator {\n background-color: #444;\n }\n /* github.com: \"box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)\" */\n .discussion-spotlight-gradient[aria-selected=true] {\n box-shadow: 0 0 0 2px rgba(79, 140, 201, .3);\n }\n /* github.com: \"#cb2431\" */\n .donut-chart > .action_required, .donut-chart > .cancelled,\n .donut-chart > .error, .donut-chart > .failure, .donut-chart > .timed_out {\n fill: #d82828;\n }\n /* github.com: \"#dbab09\" */\n .donut-chart > .expected, .donut-chart > .in_progress,\n .donut-chart > .pending, .donut-chart > .queued {\n fill: #cb4;\n }\n /* github.com: \"#2cbe4e\" */\n .donut-chart > .success {\n fill: #373;\n }\n /* github.com: \"fill: #959da5\" */\n .donut-chart > .neutral, .donut-chart > .skipped, .donut-chart > .stale {\n fill: #757575;\n }\n /* github.com: \"color: #24292e\", \"#e36209\" */\n .emoji-tab[role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* github.com: \"color: #6a737d\" */\n .emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* github.com: \"#0366d6\" */\n .selected-emoji {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"initial\" */\n .emoji-picker-tab .btn-outline:not(:hover) {\n background-color: initial;\n }\n /* github.com: \"color: #586069\" */\n .ghe-license-status p {\n color: #afafaf;\n }\n /* github.com: \"rgba(149,157,165,.15)\" */\n @media (min-width:768px) {\n .checkable-input-container.checked {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n }\n /* github.com: \"#f1f8ff\" */\n @media (min-width:768px) {\n .checkable-input-container.checked .form-checkbox--box {\n background-color: #182030;\n }\n }\n /* github.com: \"#eee\" */\n .newsletter-frequency-choice {\n border-color: #343434;\n }\n /* github.com: \"#28a745\" */\n .newsletter-frequency-choice .notice {\n color: #484;\n }\n /* github.com: \"#fafbfc\", \"#eee\" */\n .newsletter-frequency-choice h3 {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #fff\", \"#0366d6\", \"#0366d6\" */\n .newsletter-frequency-choice:hover, .newsletter-frequency-choice:hover h3 {\n border-color: rgb(79, 140, 201);\n }\n .newsletter-frequency-choice:hover h3 {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#28a745\", \"rgba(0,0,0,.2)\" */\n .newsletter-frequency-choice.selected {\n border-color: #484;\n box-shadow: 0 0 5px rgba(255, 255, 255, .7);\n }\n /* github.com: \"color: #fff\", \"#28a745\", \"#28a745\" */\n .newsletter-frequency-choice.selected h3 {\n color: #fff;\n background-color: #484;\n border-color: #484;\n }\n /* github.com: \"color: #555\", \"rgba(0,0,0,.125)\" */\n .exploregrid-item {\n color: #afafaf;\n border-bottom-color: rgba(220, 220, 220, .125);\n }\n /* github.com: \"#0366d6\" */\n .exploregrid-item:hover .exploregrid-item-title {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#f5f5f5\" */\n .exploregrid-item-header {\n background-color: #222;\n }\n /* github.com: \"color: #24292e\" */\n .exploregrid-item-title {\n color: #cdcdcd;\n }\n /* github.com: \"#ddd\" */\n .file {\n border-color: #343434;\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em #c8e1ff\" */\n .file:target {\n border-color: rgb(79, 140, 201);\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3);\n }\n /* github.com: \"color: #586069\" */\n .file .data.empty {\n color: #afafaf;\n }\n /* github.com: \"#ddd\" */\n .file .image {\n background-color: #383838;\n }\n /* github.com: \"#fff\" */\n .file .image .border-wrap {\n background-color: #181818;\n }\n /* github.com: \"#eee\", \"#fff\" */\n .file .image canvas, .file .image img {\n background-color: #242424;\n border-color: #181818;\n }\n /* github.com: \"#eee\" */\n .file .image .view canvas, .file .image .view img {\n background-color: #242424;\n }\n /* github.com: \"none\" */\n .file .empty {\n background: none;\n }\n /* github.com: \"#fafbfc\", \"#e1e4e8\" */\n .file-header {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"#ddd\" */\n .file-info-divider {\n background-color: #383838;\n }\n /* github.com: \"#28a745\" */\n .graphs .area {\n fill: #484;\n }\n /* github.com: \"#28a745\" */\n .graphs .path {\n stroke: #484;\n }\n /* github.com: \"#28a745\" */\n .graphs .dot {\n fill: #484;\n }\n /* github.com: \"#0366d6\" */\n .graphs .dot.padded circle:hover {\n fill: rgb(79, 140, 201);\n }\n /* github.com: \"fill: #24292e\" */\n .graphs .d3-tip {\n fill: #bebebe;\n }\n /* github.com: \"color: #6a737d\" */\n .graphs .dir {\n color: #949494;\n }\n /* github.com: \"fill: #24292e\", \"stroke: #24292e\" */\n .graphs .selection .selection {\n fill: #bebebe;\n stroke: #d2d2d2;\n }\n /* github.com: \"color: #586069\" */\n .graph-filter .info {\n color: #afafaf;\n }\n /* github.com: \"color: #2f363d\" */\n .graph-canvas .activity {\n color: #bebebe;\n }\n /* github.com: \"#0366d6\" */\n .graph-canvas .axis .zero line {\n stroke: rgb(79, 140, 201);\n }\n /* github.com: \"color: #959da5\", \"rgba(0,0,0,.8)\" */\n .svg-tip {\n color: #767676;\n background-color: #242424;\n }\n /* github.com: \"#dfe2e5\" */\n .svg-tip strong {\n color: #343434;\n }\n /* github.com: \"rgba(0,0,0,.8)\" */\n .svg-tip::after {\n border-top-color: #242424;\n }\n /* github.com: \"#28a745\" */\n .svg-tip.comparison .metric-0 {\n border-top-color: #484;\n }\n /* github.com: \"#2188ff\" */\n .svg-tip.comparison .metric-1 {\n border-top: 6px solid rgb(79, 140, 201);\n }\n /* github.com: \"#f1f8ff\" */\n .topic-tag {\n background-color: #182030;\n }\n /* github.com: \"#fff\", \"#c8e1ff\" */\n .topic-tag-outline {\n background-color: #181818;\n box-shadow: inset 0 0 0 1px rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\", \"#f1f8ff\" */\n .delete-topic-button, .delete-topic-link {\n color: #949494;\n background-color: #182030;\n }\n /* github.com: \"#86181d\", \"#ffeef0\", \"#f97583\" */\n .invalid-topic .delete-topic-button {\n color: #d82828;\n background-color: #300;\n border-left-color: #f88;\n }\n /* github.com: \"#f1f8ff\" */\n .topic-tag-action {\n background-color: #182030;\n }\n /* github.com: \"#86181d\", \"#ffeef0\", \"#f97583\" */\n .topic-tag-action.invalid-topic {\n color: #d82828;\n background-color: #300;\n border-color: #f88;\n }\n /* github.com: \"color: #6a737d\", \"#f1f8ff\" */\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button {\n color: #949494;\n background-color: #182030;\n }\n /* github.com: \"color: #fff\" */\n .topic-tag-action .add-topic-button:hover,\n .topic-tag-action .remove-topic-button:hover {\n color: #fff;\n }\n /* github.com: \"#28a745\" */\n .topic-tag-action .add-topic-button:hover {\n background-color: #484;\n }\n /* github.com: \"#d73a49\" */\n .topic-tag-action .remove-topic-button:hover {\n background-color: #d82828;\n }\n /* github.com: \"none\" */\n .topic-input-container .tag-input .tag-input-inner {\n background-image: none;\n }\n /* github.com: \"#e1e4e8\" */\n .topic-list .topic-list-item + .topic-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"#ffd33d\" */\n .topic-box .starred {\n color: #cb4;\n }\n /* github.com: \"#d1d5da\" */\n .topic-box .unstarred {\n color: #404040;\n }\n /* github.com: \"#e1e4e8\" */\n .team-breadcrumb .team-breadcrumb-item::after {\n color: #343434;\n }\n /* github.com: \"#fafbfc\" */\n .discussion-post .timeline-inline-comments {\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-post .reply-comment:first-child {\n border-top-color: #343434;\n }\n /* github.com: \"#fafbfc\" */\n .discussion-post .reply-comment .review-comment.is-comment-editing {\n background-color: #181818;\n }\n /* github.com: \"#d2dff0\" */\n .discussion-post .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* github.com: \"#e1e4e8\" */\n .discussion-post .reply-comments-holder::before {\n background-color: #343434;\n }\n /* github.com: \"#f6f8fa\", \"box-shadow: none\" */\n .team-discussion-new-post .review-thread-reply-button:disabled {\n background-color: #222;\n box-shadow: none;\n }\n /* github.com: \"color: #a3aab1\" */\n .team-project-suggestion-number {\n color: #767676;\n }\n /* github.com: \"color: #6a737d\" */\n .hook-item .description {\n color: #949494;\n }\n /* github.com: \"#28a745\" */\n .hook-item.success .icon-for-success {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .hook-item.failure .icon-for-failure {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .hook-item.inactive .icon-for-inactive, .hook-item.pending .icon-for-pending {\n color: #949494;\n }\n /* github.com: \"#28a745\" */\n .hook-item.enabled .icon-for-enabled {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .hook-item .hook-error-message {\n color: #d82828;\n }\n /* github.com: \"initial\" */\n .hook-deliveries-list .hook-delivery-item:hover {\n background-color: initial;\n }\n /* github.com: \"#28a745\" */\n .hook-deliveries-list .item-status.success {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .hook-deliveries-list .item-status.failure {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .hook-deliveries-list .item-status.pending, .hook-delivery-time {\n color: #949494;\n }\n /* github.com: \"#959da5\" */\n .hook-delivery-container h4.remote-call-header {\n border-bottom-color: #484848;\n }\n /* github.com: \"color: #fff\", \"#d73a49\" */\n .hook-delivery-response-status {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .hook-delivery-response-status[data-response-status^=\"2\"] {\n background-color: #484;\n }\n /* github.com: \"color: #586069\" */\n .integration-meta-head {\n color: #afafaf;\n }\n /* github.com: \"#fff\", \"hsla(0,0%,100%,.5)\" */\n .integrations-select-repos::-webkit-scrollbar-thumb {\n border-color: #181818;\n box-shadow: 0 0 1px hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"transparent\" */\n .integrations-select-repos::-webkit-scrollbar-track-piece {\n background-color: transparent;\n }\n /* github.com: \"#cb2431\" */\n .issue-list .title .closed.octicon {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .issue-list .title .open.octicon {\n color: #484;\n }\n /* github.com: \"#6f42c1\" */\n .issue-list .title .merged.octicon {\n color: #9378ba;\n }\n /* github.com: \"#e1e4e8\" */\n .issue-list-item + .issue-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"#f1f8ff\" */\n .pinned-issue-item.is-dragging, .pinned-issue-item.sortable-ghost {\n background-color: #182030;\n }\n /* github.com: \"color: #586069\" */\n .issues-reset-query {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .issues-reset-query:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#0366d6\" */\n .issues-reset-query:hover .issues-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"#6a737d\" */\n .issues-reset-query-icon {\n color: #fff;\n background-color: #444;\n }\n /* github.com: \"color: #586069\" */\n .table-list-milestones .stat, .table-list-milestones .stat-label {\n color: #afafaf;\n }\n /* github.com: \"color: #333\" */\n .milestone-title-link a {\n color: #bebebe;\n }\n /* github.com: \"#0366d6\" */\n .milestone-description .expand-more, .milestone-title-link a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .task-progress {\n color: #afafaf;\n }\n /* github.com: \"#eee\" */\n .task-progress .progress-bar {\n background-color: #242424;\n }\n /* github.com: \"#ccc\" */\n .task-progress .progress-bar .progress {\n background-color: #484848;\n }\n /* github.com: \"#0366d6\" */\n a.task-progress:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#0366d6\" */\n a.task-progress:hover .progress-bar .progress {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\" */\n .label-select-menu .selected .octicon-circle-slash,\n .label-select-menu [aria-checked=mixed] .octicon-circle-slash,\n .label-select-menu [aria-checked=true] .octicon-circle-slash {\n color: #949494;\n }\n /* github.com: \"initial\" */\n .label-select-menu .selected:active,\n .label-select-menu [aria-checked=mixed]:active,\n .label-select-menu [aria-checked=true]:active {\n background-color: initial !important;\n }\n /* github.com: \"#f4f4f4\" */\n .label-select-menu .select-menu-item.navigation-focus,\n .label-select-menu .select-menu-item:focus,\n .label-select-menu .select-menu-item:hover,\n .label-select-menu .select-menu-item[aria-selected=true] {\n background-color: #242424;\n }\n /* github.com: \"#eee\" */\n .subnav .btn + .issues-search {\n border-right-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .reaction-sort-item:focus, .reaction-sort-item:hover {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#f1f8ff\", \"#0366d6\" */\n .reaction-sort-item[aria-checked=true] {\n background-color: #182030;\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#959da5\" */\n .issue-keyword {\n border-bottom-color: #484848;\n }\n /* github.com: \"color: #24292e\" */\n .select-menu-item.navigation-focus > .octicon.label-options-icon,\n .select-menu-item[aria-selected=true] > .octicon.label-options-icon {\n color: #cdcdcd;\n }\n /* github.com: \"#cb2431\" */\n .new-label-color-input:invalid {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li > a,\n .repository-lang-stats ol.repository-lang-stats-numbers li > span {\n color: #949494;\n }\n /* github.com: \"color: #24292e\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li .lang {\n color: #cdcdcd;\n }\n /* github.com: \"transparent\" */\n .repository-lang-stats ol.repository-lang-stats-numbers li a:hover {\n background-color: transparent;\n }\n /* github.com: \"#ddd\" */\n .repository-lang-stats-graph {\n border-color: #343434;\n }\n /* github.com: \"#fff\" */\n .repository-lang-stats-graph .language-color:not(:first-child) {\n border-left-color: #181818;\n }\n /* github.com: \"#0366d6\" */\n .map-background {\n fill: rgb(79, 140, 201);\n }\n /* github.com: \"#e36209\" */\n .map-point:hover {\n fill: #fb8532;\n }\n /* github.com: \"#2f363d\" */\n .MarketplaceJumbotron {\n background-color: #282828;\n }\n /* github.com: \"rgba(0,0,0,.2)\" */\n .MarketplaceFeature-link:hover .CircleBadge--feature {\n box-shadow: 0 3px 8px 0 rgba(255, 255, 255, .7);\n }\n /* github.com: \"#f6f8fa\" */\n .MarketplaceSideNav {\n background-color: #222;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n @media (min-width:768px) {\n .MarketplaceSideNav {\n background-color: #181818;\n border-right-color: #343434;\n }\n }\n /* github.com: \"#e1e4e8\" */\n .ScreenshotCarousel {\n border-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .ScreenshotCarousel-nav {\n box-shadow: inset 0 1px 0 #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .ScreenshotCarousel-navitem {\n border-right-color: #343434;\n }\n /* github.com: \"#f6f8fa\" */\n .ScreenshotCarousel-navitem.selected {\n background-color: #222;\n }\n /* github.com: \"#d73a49\" */\n .marketplace-plan-dollar-field-container.is-errored .form-control {\n border-color: #d82828;\n }\n /* github.com: \"color: #24292e\" */\n .marketplace-plan-emphasis {\n color: #cdcdcd;\n }\n /* github.com: \"color: #fff\" */\n .selected .marketplace-plan-emphasis {\n color: #fff;\n }\n /* github.com: \"#d1d5da\" */\n .marketplace-product-callout {\n border-color: #404040 !important;\n }\n /* github.com: \"color: #586069\", \"#e1e4e8\" */\n .marketplace-product-callout .branch-action-item-icon {\n color: #afafaf;\n background-color: #343434;\n }\n /* github.com: \"color: #fff\", \"#fff\" */\n .filter-item.selected .Label--outline-white {\n color: #fff;\n border-color: #181818;\n }\n /* github.com: \"#fff\" */\n .MarketplaceEdit-body .menu-item, .MarketplaceEdit-body .menu-item.selected {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .MarketplaceEdit-body .menu-item:hover {\n background-color: #222;\n }\n /* github.com: \"color: #586069\", \"#e6ebf1\" */\n .MarketplaceEdit-body .CircleIcon {\n color: #afafaf;\n background-color: #444;\n }\n /* github.com: \"#fff\" */\n .BarChart-bar {\n border-right-color: #181818;\n }\n /* github.com: \"#34d058\" */\n .BarChart-bar--green {\n background-color: #373;\n }\n /* github.com: \"#fb8532\" */\n .BarChart-bar--orange {\n background-color: #fb8532;\n }\n /* github.com: \"#f9c513\" */\n .BarChart-bar--yellow {\n background-color: #cb4;\n }\n /* github.com: \"#fff\" */\n .CircleBadge--github::after {\n background-color: #181818;\n }\n /* github.com: \"#28a745\", \"rgba(52,208,88,.4)\" */\n .ClipboardButton.ClipboardButton--success {\n border-color: #484;\n box-shadow: 0 0 0 .2em #3737;\n }\n /* github.com: \"rgba(52,208,88,.4)\" */\n .ClipboardButton.ClipboardButton--success:focus {\n box-shadow: 0 0 0 .2em #3737;\n }\n /* github.com: \"#fafbfc\" */\n .MarketplaceBackground-buffer {\n background-color: #181818;\n }\n /* github.com: \"color: #fff !important\" */\n .muted-link.filter-item.selected {\n color: #fff !important;\n }\n /* github.com: \"color: #fff\", \"#257bf9\" */\n .MarketplaceAnnouncement {\n color: #fff;\n background: linear-gradient(90deg, #4f8cc9, #2426ca);\n }\n /* github.com: \"color: #fff\", \"hsla(0,0%,100%,0)\" */\n .MarketplaceAnnouncement .btn-outline-mktg {\n color: #fff;\n background-color: transparent;\n }\n /* github.com: \"#c8e1ff\", \"#fff\" */\n .MarketplaceAnnouncement .btn-outline-mktg:hover {\n color: rgb(79, 140, 201);\n border-color: #181818;\n }\n /* github.com: \"#c8e1ff\" */\n .topic-tag-contrast {\n background-color: #246;\n }\n /* github.com: \"color: #24292e\", \"#c8e1ff\", \"rgba(27,31,35,.15)\" */\n .topic-tag-contrast .delete-topic-link {\n color: #cdcdcd;\n background-color: #246;\n border-left-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#79b8ff\" */\n .topic-tag-contrast .delete-topic-link:hover {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\" */\n .merge-branch-heading {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .merge-branch-description {\n color: #afafaf;\n }\n /* github.com: \"initial\", \"#ddd\" */\n .merge-branch-manually {\n background-color: initial;\n border-top-color: #343434;\n }\n /* github.com: \"#a04100\" */\n .unavailable-merge-method {\n color: #f3582c;\n }\n /* github.com: \"color: #fff\" */\n .navigation-focus.disabled .unavailable-merge-method,\n [aria-selected=true].disabled .unavailable-merge-method {\n color: #fff;\n }\n /* github.com: \"#fff5b1\" */\n .network .current-repository {\n background-color: #651;\n }\n /* github.com: \"color: #959da5\" */\n .page-new-repo .octicon-repo {\n color: #767676;\n }\n /* github.com: \"rgba(115,92,15,.5)\" */\n .page-new-repo .color-private-icon {\n color: rgba(204, 187, 68, .5);\n }\n /* github.com: \"color: #6a737d\" */\n .page-new-repo .form-checkbox.disabled {\n color: #949494;\n }\n /* github.com: \"#fff\" */\n .page-new-repo .internal-repo-avatar {\n border-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .news blockquote, .owner-reponame .slash {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .news .alert .octicon, .news .alert .time, .news .alert .title .subtle {\n color: #767676;\n }\n /* github.com: \"#fff\" */\n .news .alert .gravatar {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .news .alert .simple .title, .news .github-welcome .done {\n color: #afafaf;\n }\n /* github.com: \"#fff\" */\n .news .commits li img {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .news div.message, .news li blockquote {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .notifications .notifications-more > a {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .notifications .read .list-group-item-name > a,\n .notifications .read .notification-actions {\n color: #afafaf;\n }\n /* github.com: \"#f6f8fa\" */\n .notifications .read.list-group-item {\n background-color: #222;\n }\n /* github.com: \"#d1d5da\" */\n .notification-thread-subscription:first-child {\n border-top-color: #404040;\n }\n /* github.com: \"color: #586069\", \"none\" */\n .notifications-sso-prompt a {\n color: #afafaf;\n background: none;\n }\n /* github.com: \"#0366d6\" */\n .notifications-sso-prompt em {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .type-icon-state-none {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .type-icon-state-open, .type-icon-state-published {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .type-icon-state-closed {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .type-icon-state-draft {\n color: #949494;\n }\n /* github.com: \"#6f42c1\" */\n .type-icon-state-merged, .type-icon-state-published {\n color: #9378ba;\n }\n /* github.com: \"#28a745\" */\n .notifications-list .boxed-group .notification-success {\n color: #484;\n }\n /* github.com: \"color: #586069\", \"initial\" */\n .notifications-list .mark-all-as-read {\n color: #afafaf;\n background-color: initial;\n }\n /* github.com: \"color: #666\" */\n .notifications-list .confirmation {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .notification-actions .age, .notification-actions .btn-link {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .notification-actions .btn-link:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#d1d5da\" */\n .notification-actions .unsaved-notification {\n color: #404040;\n }\n /* github.com: \"color: #666\" */\n .subscriptions-content .repo-icon {\n color: #949494;\n }\n /* github.com: \"color: #586069\", \"#fff\", \"#eee\" */\n .thread-subscription-status {\n color: #afafaf;\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#fff\" */\n @media (max-width:767px) {\n .notifications-v2 .AvatarStack-body .avatar {\n border-right-color: #181818 !important;\n }\n }\n /* github.com: \"initial\" */\n .notifications-v2 .thread-subscription-status {\n background-color: initial !important;\n }\n /* github.com: \"color: #6a737d\" */\n .notification-navigation .menu-item {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .notification-navigation .menu-item .octicon {\n color: #afafaf;\n }\n /* github.com: \"#f1f8ff\" */\n .notification-navigation .menu-item.selected {\n background-color: #182030;\n }\n /* github.com: \"#0366d6\" */\n .notification-navigation .menu-item.selected .octicon {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #6a737d !important\" */\n .notification-navigation .notification-configure-filters .octicon {\n color: #949494 !important;\n }\n /* github.com: \"#0366d6\" */\n .notification-navigation .notification-configure-filters:hover .octicon {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #6a737d !important\" */\n .notifications-list-item .notification-list-item-link {\n color: #949494 !important;\n }\n /* github.com: \"#f1f8ff\" */\n .notifications-list-item:hover {\n background-color: #182030 !important;\n }\n /* github.com: \"color: #24292e !important\" */\n .notifications-list-item:hover .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* github.com: \"color: #586069 !important\", \"transparent\" */\n .notifications-list-item:hover .notification-list-item-actions .btn {\n color: #afafaf !important;\n background-color: transparent !important;\n }\n /* github.com: \"color: #24292e !important\", \"#e1e4e8\" */\n .notifications-list-item:hover .notification-list-item-actions .btn:hover {\n color: #cdcdcd !important;\n background-color: #343434 !important;\n }\n /* github.com: \"#f1f8ff\" */\n .notifications-list-item:hover .AvatarStack-body {\n background-color: #182030;\n }\n /* github.com: \"#f1f8ff\", \"#0366d6\" */\n .notifications-list-item.navigation-focus {\n background-color: #182030 !important;\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e !important\" */\n .notifications-list-item.navigation-focus .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* github.com: \"none\" */\n .notifications-list-item .notification-list-item-unread-indicator {\n background: none;\n }\n /* github.com: \"#fff\" */\n .notifications-list-item.notification-unread {\n background-color: #181818;\n }\n /* github.com: \"color: #24292e !important\" */\n .notifications-list-item.notification-unread .notification-list-item-link {\n color: #cdcdcd !important;\n }\n /* github.com: \"#0366d6\" */\n .notifications-list-item.notification-unread .notification-list-item-unread-indicator {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .oauth-permissions-details .octicon,\n .oauth-permissions-details .permission-summary .access-details {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .oauth-permissions-details .permission-title {\n color: #cdcdcd;\n }\n /* github.com: \"none\", \"rgba(0,0,0,.15)\" */\n .oauth-permissions-details.open a.btn-sm {\n background-image: none;\n box-shadow: inset 0 2px 4px #000;\n }\n /* github.com: \"color: #6a737d\" */\n .oauth-permissions-details.default:not(.delete) .access-details,\n .oauth-permissions-details.default:not(.delete) .permission-title,\n .oauth-permissions-details.none .access-details,\n .oauth-permissions-details.none .permission-title {\n color: #949494;\n }\n /* github.com: \"#cb2431\" */\n .oauth-delete-repo-permissions .octicon-alert {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .oauth-no-description {\n color: #afafaf;\n }\n /* github.com: \"#ffe\" */\n .oauth-org-access-details, .oauth-org-access-details .oauth-org-item:hover {\n background-color: #181818;\n }\n /* github.com: \"color: #24292e\" */\n .oauth-org-access-details .oauth-org-item.on strong {\n color: #cdcdcd;\n }\n /* github.com: \"#fff\" */\n .oauth-org-access-details .oauth-org-item.revoked {\n background-color: #181818;\n }\n /* github.com: \"#cb2431\" */\n .oauth-org-access-details .oauth-org-item.revoked .octicon-x {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .oauth-org-access-details .octicon-check {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .oauth-org-access-details .octicon-x.org-access-denied {\n color: #d82828;\n }\n /* github.com: \"color: #24292e\" */\n .oauth-application-whitelist .request-info strong {\n color: #cdcdcd;\n }\n /* github.com: \"#a04100\" */\n .oauth-application-whitelist .octicon-alert {\n color: #f3582c;\n }\n /* github.com: \"#28a745\" */\n .oauth-application-whitelist .approved-request,\n .oauth-application-whitelist .octicon-check {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .oauth-application-whitelist .denied-request {\n color: #d82828;\n }\n /* github.com: \"color: #6a737d\" */\n .oauth-application-whitelist .edit-link {\n color: #949494;\n }\n /* github.com: \"#0366d6\" */\n .oauth-application-whitelist .edit-link:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #24292e\" */\n .oauth-application-info .application-title {\n color: #cdcdcd;\n }\n /* github.com: \"color: #6a737d\" */\n .oauth-application-info .app-info {\n color: #949494;\n }\n /* github.com: \"#28a745\" */\n .oauth-application-info .app-approved,\n .oauth-application-info .octicon-check {\n color: #484;\n }\n /* github.com: \"#a04100\" */\n .oauth-application-info .app-denied, .oauth-application-info .octicon-x {\n color: #f3582c;\n }\n /* github.com: \"#e5e5e5\" */\n .oauth-border {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .developer-app-item .developer-app-name {\n color: #cdcdcd;\n }\n /* github.com: \"#0366d6\" */\n .developer-app-item .developer-app-name:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\" */\n .developer-app-item .developer-app-list-meta {\n color: #949494;\n }\n /* github.com: \"color: #2f363d\" */\n .org-insights-graph-canvas .activity {\n color: #bebebe;\n }\n /* github.com: \"fill: #959da5\" */\n .org-insights-graph-canvas .axis text {\n fill: #757575;\n }\n /* github.com: \"#0366d6\" */\n .org-insights-graph-canvas .axis .zero line {\n stroke: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .org-insights-svg-tip::after {\n border-color: #181818 transparent transparent;\n }\n /* github.com: \"#e1e4e8\" */\n .org-insights-svg-tip::before {\n border-color: #343434 transparent transparent;\n }\n /* github.com: \"#0366d6\" */\n .org-insights-card-legend .metric-0 {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#22863a\" */\n .org-insights-card-legend .metric-1 {\n color: #6cc644;\n }\n /* github.com: \"#e36209\" */\n .org-insights-card-legend .metric-2 {\n color: #fb8532;\n }\n /* github.com: \"#6f42c1\" */\n .org-insights-card-legend .metric-3 {\n color: #9378ba;\n }\n /* github.com: \"#0366d6\", \"#0366d6\" */\n .org-insights-graph-canvas .metric-0 circle,\n .org-insights-graph-canvas path.metric-0,\n .org-insights-svg-tip .metric-0 .legend {\n stroke: rgb(79, 140, 201);\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#22863a\", \"#22863a\" */\n .org-insights-graph-canvas .metric-1 circle,\n .org-insights-graph-canvas path.metric-1,\n .org-insights-svg-tip .metric-1 .legend {\n stroke: #6cc644;\n background-color: #6cc644;\n }\n /* github.com: \"#e36209\", \"#e36209\" */\n .org-insights-graph-canvas .metric-2 circle,\n .org-insights-graph-canvas path.metric-2,\n .org-insights-svg-tip .metric-2 .legend {\n stroke: #fb8532;\n background-color: #fb8532;\n }\n /* github.com: \"#6f42c1\", \"#6f42c1\" */\n .org-insights-graph-canvas .metric-3 circle,\n .org-insights-graph-canvas path.metric-3,\n .org-insights-svg-tip .metric-3 .legend {\n stroke: #9378ba;\n background-color: #9378ba;\n }\n /* github.com: \"color: #959da5\" */\n .org-insights-cards .org-insights-card-legend {\n color: #767676;\n }\n /* github.com: \"#fff\" */\n .org-insights-cards .repository-lang-stats-graph .language-color {\n border-color: #181818;\n }\n /* github.com: \"color: #24292e\", \"#fafbfc\", \"#e1e4e8\" */\n .orghead {\n color: #cdcdcd;\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #333\" */\n .org-name {\n color: #bebebe;\n }\n /* github.com: \"color: #586069\" */\n .audit-log-search .member-info .ghost {\n color: #afafaf;\n }\n /* github.com: \"#a04100\" */\n .audit-type .repo {\n color: #f3582c;\n }\n /* github.com: \"#28a745\" */\n .audit-type .team {\n color: #484;\n }\n /* github.com: \"#6f42c1\" */\n .audit-type .user {\n color: #9378ba;\n }\n /* github.com: \"#cb2431\" */\n .audit-type .oauth_access {\n color: #d82828;\n }\n /* github.com: \"#fff\",\"#f5f5f5\" */\n .saml-enabled-banner-container {\n background-image: linear-gradient(-1deg, #181818, #222);\n }\n /* github.com: \"color: #fff\", \"#cb2431\" */\n .saml-settings-form .test-status-indicator-error {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"color: #fff\", \"#28a745\" */\n .saml-settings-form .test-status-indicator-success {\n color: #fff;\n background-color: #484;\n }\n /* github.com: \"color: #586069\" */\n .member-fullname {\n color: #afafaf;\n }\n /* github.com: \"#fff\" */\n .auto-search-group .spinner {\n background-color: #181818;\n }\n /* github.com: \"#eee\" */\n .org-list .list-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .org-repos-mini .org-repo-name .octicon-repo {\n color: #afafaf;\n }\n /* github.com: \"rgba(115,92,15,.5)\" */\n .org-repos-mini .org-repo-name .octicon-lock {\n color: rgba(204, 187, 68, .5);\n }\n /* github.com: \"color: #333\" */\n .reinstate-org-member .reinstate-title {\n color: #bebebe;\n }\n /* github.com: \"color: #586069\" */\n .add-member-wrapper .available-seats {\n color: #afafaf;\n }\n /* github.com: \"color: #24292e\" */\n .add-member-team-list .team-info {\n color: #cdcdcd;\n }\n /* github.com: \"color: #586069\" */\n .add-member-team-list .team-meta {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .invite-team-member-list .team-link {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#eee\" */\n .team-stats {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .stats-group-stat {\n color: #afafaf;\n }\n /* github.com: \"#eee\" */\n .stats-group-stat:first-child {\n border-right-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .stats-group-stat:hover, .stats-group-stat:hover .stat-number {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .stats-group-stat.no-link:hover {\n color: #afafaf;\n }\n /* github.com: \"color: #333\" */\n .stat-number, .stats-group-stat.no-link:hover .stat-number {\n color: #bebebe;\n }\n /* github.com: \"color: #959da5\" */\n .team-member-list .invite-icon {\n color: #767676;\n }\n /* github.com: \"#cb2431\" */\n .menu-item-danger, .menu-item-danger.selected {\n color: #d82828;\n }\n /* github.com: \"color: #fff\", \"#d73a49\" */\n .menu-item-danger.navigation-focus,\n .menu-item-danger.selected.navigation-focus,\n .menu-item-danger.selected:hover,\n .menu-item-danger.selected[aria-selected=true], .menu-item-danger:hover,\n .menu-item-danger[aria-selected=true] {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"color: #959da5\" */\n .team-member-list-avatar .octicon {\n color: #767676;\n }\n /* github.com: \"color: #586069\" */\n .confirm-removal-container .private-fork-count {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .confirm-removal-container .deleting-private-forks-warning .octicon {\n color: #d82828;\n }\n /* github.com: \"#eaeaea\" */\n .confirm-removal-list-container {\n border-color: #343434;\n }\n /* github.com: \"#eaeaea\" */\n .confirm-removal-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .confirm-removal-repo .octicon, .confirm-removal-team .octicon,\n .manage-member-meta-item, .manage-member-meta-item .btn-link,\n .manage-member-meta-item > .octicon {\n color: #afafaf;\n }\n /* github.com: \"#a04100\" */\n .manage-member-meta-item > .octicon-alert {\n color: #f3582c;\n }\n /* github.com: \"color: #333\" */\n .org-user-notice-content strong {\n color: #bebebe;\n }\n /* github.com: \"color: #586069\" */\n .manage-repo-access-lead, .org-user-notice-content .octicon {\n color: #afafaf;\n }\n /* github.com: \"#fff\", \"#ddd\" */\n .manage-repo-access-group {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#f8f8f8\", \"#ddd\" */\n .manage-repo-access-title {\n background-color: #202020;\n border-bottom-color: #343434;\n }\n /* github.com: \"#eee\" */\n .manage-repo-access-wrapper::before {\n background-color: #242424;\n }\n /* github.com: \"#fff\" */\n .manage-repo-access-icon {\n background-color: #181818;\n }\n /* github.com: \"#ddd\" */\n .manage-repo-access-teams-group {\n border-color: #343434;\n }\n /* github.com: \"#eee\" */\n .manage-repo-access-team-item {\n border-top-color: #343434;\n }\n /* github.com: \"color: #24292e\", \"#fafbfc\" */\n .manage-repo-access-not-active {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"#f9f9f9\" */\n .manage-repo-access-not-active .manage-repo-access-icon {\n background-color: #181818;\n }\n /* github.com: \"#ddd\" */\n .manage-access-remove-footer {\n border-top-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .ldap-memberships-list .edit {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#eee\" */\n .invited .team-member-list .list-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #333\" */\n .manage-memberships-tabs-item:hover {\n color: #bebebe;\n }\n /* github.com: \"color: #24292e\", \"#fff\" */\n .manage-memberships-tabs-item.selected {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\", \"#e1e4e8\" */\n @keyframes blinkingText {\n 0% {\n color: #343434;\n }\n 33% {\n color: #343434;\n }\n to {\n color: #343434;\n }\n }\n /* github.com: \"#fff\" */\n .theme-picker {\n background-color: #181818;\n }\n /* github.com: \"#eee\" */\n .theme-picker-thumbs {\n border-bottom-color: #343434;\n }\n /* github.com: \"none\" */\n .theme-toggle {\n background: none;\n }\n /* github.com: \"#ddd\" */\n .theme-selector-thumbnail {\n border-color: #343434;\n }\n /* github.com: \"#f5f5f5\" */\n .theme-selector-thumbnail:hover {\n background-color: #222;\n }\n /* github.com: \"#0366d6\" */\n .theme-selector-thumbnail.selected {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\" */\n .theme-selector-thumbnail.selected .theme-selector-img {\n border-color: #181818;\n }\n /* github.com: \"#fff\" */\n .page-preview, .theme-picker-spinner {\n background-color: #181818;\n }\n /* github.com: \"#86181d\" */\n .pinned-items-reorder-error {\n color: #d82828;\n }\n /* github.com: \"color: #2f363d\" */\n .pinned-item-name {\n color: #bebebe;\n }\n /* github.com: \"color: #24292e\", \"#f1f8ff\" */\n .pinned-item-checkbox:checked + .pinned-item-name {\n color: #cdcdcd;\n background-color: #182030;\n }\n /* github.com: \"color: rgba(27,31,35,.3)\" */\n .pinned-gist-blob-num:hover {\n color: rgba(230, 230, 230, .3);\n }\n /* github.com: \"color: #24292e !important\", \"none\", \"#e1e4e8\", \"#d73a49\", \"#28a745\", \"#d1d5da\", \"color: #1b1f23\", \"#22863a\", \"#2cbe4e\", \"#6f42c1\", \"#cb2431\", \"#cb2431\" */\n @media print {\n .btn:not(.btn-outline) {\n color: #cdcdcd !important;\n background: none;\n }\n .blob-num {\n border-right-color: #343434;\n }\n .blob-num-deletion {\n border-right-color: #d82828;\n }\n .blob-num-addition {\n border-right-color: #484;\n }\n .blob-code-addition .x {\n border-bottom-color: #484;\n }\n .blob-code-deletion .x {\n border-bottom-color: #d82828;\n }\n .diffstat-block-neutral {\n border-color: #404040;\n }\n .diffstat-block-deleted {\n border-color: #d82828;\n }\n .diffstat-block-added {\n border-color: #484;\n }\n .State {\n color: #dcdcdc;\n background: none;\n }\n .State--green {\n color: #6cc644;\n border-color: #373;\n }\n .State--purple {\n color: #9378ba;\n border-color: #9378ba;\n }\n .State--red {\n color: #d82828;\n border-color: #d82828;\n }\n }\n /* github.com: \"transparent\" */\n .progress-pjax-loader {\n background-color: transparent;\n }\n /* github.com: \"#79b8ff\", \"box-shadow: 0 0 10px rgba(121,184,255,.7)\" */\n .progress-pjax-loader > .progress-pjax-loader-bar {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 0 rgba(79, 140, 201, .3);\n }\n /* github.com: \"#24292e\" */\n @media (min-width:544px) {\n .project-full-screen .project-header {\n background-color: #181818;\n }\n }\n /* github.com: \"color: #fff !important\" */\n .project-full-screen .project-header .project-header-link:hover {\n color: #fff !important;\n }\n /* github.com: \"color: #fff\", \"box-shadow: none\" */\n @media (min-width:544px) {\n .project-full-screen .card-filter-input {\n color: #fff;\n box-shadow: none;\n }\n }\n /* github.com: \"#fff\" */\n @media (min-width:544px) {\n .project-header {\n background-color: #181818;\n }\n }\n /* github.com: \"#54a3ff\",\"#006eed\", \"#fff\" */\n .pending-cards-status {\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n border-color: #181818;\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n @media (min-width:544px) {\n .project-column:focus {\n border-color: rgb(79, 140, 201) !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n }\n /* github.com: \"#f1f8ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .project-column.moving {\n background-color: #182030 !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* github.com: \"#959da5\" */\n .new-project-column {\n border-color: #484848 !important;\n }\n /* github.com: \"#f6f8fa\" */\n .sortable-ghost {\n background-color: #222;\n }\n /* github.com: \"color: #6a737d\", \"#dfe2e5\" */\n .project-card blockquote {\n color: #949494;\n border-left-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .project-card:hover {\n border-color: #404040 !important;\n }\n /* github.com: \"#2188ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important\" */\n @media (min-width:544px) {\n .project-card:focus {\n border-color: rgb(79, 140, 201) !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5) !important;\n }\n }\n /* github.com: \"#f1f8ff\", \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important\" */\n .project-card.moving {\n background-color: #182030 !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5) !important;\n }\n /* github.com: \"#735c0f\" */\n .archived-project-cards-pane .project-card .archived-header {\n color: #bba257;\n }\n /* github.com: \"#959da5\" */\n .project-pane .redacted-activity {\n border-bottom-color: #484848;\n }\n /* github.com: \"color: rgba(27,31,35,.5)\" */\n .project-pane-close {\n color: rgba(230, 230, 230, .5);\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .project-pane-close:hover {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"color: #fff !important\", \"#0366d6\" */\n .card-filter-autocomplete-dropdown .navigation-focus,\n .card-filter-autocomplete-dropdown [aria-selected=true] {\n color: #fff !important;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff !important\" */\n .card-filter-autocomplete-dropdown .navigation-focus .autocomplete-text-qualifier,\n .card-filter-autocomplete-dropdown [aria-selected=true] .autocomplete-text-qualifier {\n color: #fff !important;\n }\n /* github.com: \"#0366d6\" */\n .projects-reset-query:hover .projects-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#6a737d\" */\n .projects-reset-query-icon {\n background-color: #444;\n }\n /* github.com: \"#fff\", \"#d1d5da\" */\n .projects-comment-form .comment-form-head .toolbar-commenting {\n background-color: #181818;\n border-top-color: #404040;\n }\n /* github.com: \"#d1d5da\" */\n .projects-comment-form .preview-content {\n border-top-color: #404040;\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .project-issue-body-blur {\n background: linear-gradient(0deg, #181818, transparent);\n }\n /* github.com: \"color: rgba(27,31,35,.5)\" */\n .project-comment-body-hover .octicon-pencil,\n .project-comment-title-hover .octicon-pencil {\n color: rgba(230, 230, 230, .5);\n }\n /* github.com: \"#0366d6\" */\n .project-comment-body-hover .octicon-pencil:hover,\n .project-comment-title-hover .octicon-pencil:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\" */\n .vcard-detail .octicon, .vcard-username {\n color: #949494;\n }\n /* github.com: \"#86181d\" */\n .user-profile-bio-message {\n color: #d82828;\n }\n /* github.com: \"#fff\", \"#d1d5da\", \"box-shadow: none\" */\n .user-profile-nav {\n background-color: #181818;\n border-bottom-color: #404040;\n box-shadow: none;\n }\n /* github.com: \"color: #586069\" */\n .pinned-item-list-item .pinned-item-handle {\n color: #afafaf;\n }\n /* github.com: \"#f1f8ff\" */\n .pinned-item-list-item.is-dragging, .pinned-item-list-item.sortable-ghost {\n background-color: #182030;\n }\n /* github.com: \"#eaecef\" */\n .profile-timeline.discussion-timeline .profile-timeline-month-heading::after,\n .profile-timeline.discussion-timeline::before {\n background-color: #343434;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .profile-timeline-card-wrapper {\n border-top-color: #181818;\n border-bottom-color: #181818;\n }\n /* github.com: \"color: #6a737d\" */\n .profile-timeline-card .issue-meta-section .octicon {\n color: #949494;\n }\n /* github.com: \"#eaecef\" */\n .profile-rollup-summarized + .profile-rollup-summarized,\n .profile-rollup-wrapper + .profile-rollup-wrapper {\n border-top-color: #343434;\n }\n /* github.com: \"#a04100\" */\n .stale-files-tab {\n color: #f3582c;\n }\n /* github.com: \"#fff\" */\n .pr-toolbar.is-stuck {\n background-color: #181818;\n }\n /* github.com: \"rgba(0,0,0,.001)\" */\n .toolbar-shadow {\n background: linear-gradient(rgba(0, 0, 0, .075), transparent) repeat-x 0 0;\n }\n /* github.com: \"#fff\" */\n .diffbar {\n background-color: #181818;\n }\n /* github.com: \"#eee\" */\n .diffbar .table-of-contents li {\n border-top-color: #343434;\n }\n /* github.com: \"color: #fff\" */\n .diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized,\n .diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized {\n color: #fff;\n }\n /* github.com: \"#f1f8ff\", \"rgba(27,31,35,.15)\" */\n .diffbar-range-menu .in-range:not(.is-range-selected) {\n background-color: #182030;\n border-bottom-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#0366d6\" */\n .diffbar-range-menu .in-range:focus:not(.is-range-selected),\n .diffbar-range-menu .in-range:hover:not(.is-range-selected) {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#735c0f\", \"#fffbdd\" */\n .diffbar-range-menu .is-range-selected {\n color: #bba257;\n background-color: #261d08;\n }\n /* github.com: \"#fff5b1\" */\n .diffbar-range-menu .is-last-in-range {\n background-color: #651;\n }\n /* github.com: \"#e1e4e8\" */\n .conflict-resolver.loading {\n border-color: #343434;\n }\n /* github.com: \"#22863a\" */\n .revision-number {\n background-color: #6cc644;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .pull-request-review-menu, .pull-request-suggested-changes-menu {\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#f6f8fa\" */\n .review-comment-loader::after, .review-comment.is-comment-editing::after,\n .review-comment::after {\n background-color: #222;\n }\n /* github.com: \"color: #24292e\" */\n .review-comment {\n color: #cdcdcd;\n }\n /* github.com: \"#d2dff0\" */\n .review-comment .reaction-summary-item:not(.add-reaction-btn) {\n border-color: #246;\n }\n /* github.com: \"#b08800\", \"#fffdef\", \"#f9c513\" */\n .review-comment .pending-batched-suggestion-label {\n color: #cb4;\n background-color: #261d08;\n border-color: #cb4;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .review-comment .is-comment-editing {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#f6f8fa\", \"#e1e4e8\" */\n .review-thread-reply {\n background-color: #222;\n border-top-color: #343434;\n }\n /* github.com: \"#fff\" */\n .review-thread-reply .inline-comment-form {\n background-color: #181818;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .review-summary-form-wrapper {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#f9c513\" */\n .is-pending .review-summary-form-wrapper {\n border-color: #cb4;\n }\n /* github.com: \"#e1e4e8\", \"#fff\" */\n .release-timeline-tags .tag-timeline-date::after {\n background-color: #343434;\n border-color: #181818;\n }\n /* github.com: \"#cb2431\", \"#d73a49\" */\n .Label--draft {\n color: #d82828;\n border-color: #d82828;\n }\n /* github.com: \"#c3c8cf\" */\n .uploaded-files.not-populated + .drop-target .drop-target-label {\n border-top-color: #484848;\n }\n /* github.com: \"#ddd\",\"#e5e5e5\" */\n .uploaded-files.is-populated {\n border-color: #343434;\n }\n /* github.com: \"#f9f9f9\" */\n .uploaded-files > li.delete {\n background-color: #181818;\n }\n /* github.com: \"#cb2431\" */\n .uploaded-files .remove:hover {\n color: #d82828 !important;\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,.5)\" */\n .upload-progress {\n box-shadow: 0 1px 1px #181818, inset 0 1px 1px hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"#e1e4e8\" */\n .release-entry {\n border-bottom-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n @media (min-width:768px) {\n .release-main-section {\n border-left-color: #343434;\n }\n }\n /* github.com: \"#ddd\" */\n .repo-file-upload-target.dragover .repo-file-upload-outline {\n border-color: #343434;\n }\n /* github.com: \"#fff\", \"#e5e5e5\" */\n .is-bad-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors,\n .is-failed .repo-file-upload-errors,\n .is-hidden-file .repo-file-upload-errors,\n .is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github.com: \"color: #666\", \"#fff\" */\n .repo-file-upload-tree-target {\n color: #949494;\n background: radial-gradient(ellipse at center, #181818 0, hsla(0, 0%, 100%, .85) 65%, hsla(0, 0%, 100%, .85) 100%);\n }\n /* github.com: \"#ddd\" */\n .repo-file-upload-tree-target .repo-file-upload-outline {\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .label-characters-remaining {\n color: #afafaf;\n }\n /* github.com: \"#eee\" */\n .repo-list-item {\n border-bottom-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .mini-repo-list-item {\n border-top-color: #404040;\n }\n /* github.com: \"color: #6a737d\" */\n .mini-repo-list-item .repo-icon, .mini-repo-list-item .stars {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .mini-repo-list-item .repo-description {\n color: #afafaf;\n }\n /* github.com: \"#fffdef\" */\n .private .mini-repo-list-item {\n background-color: #261d08;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .private .mini-repo-list-item .repo-icon {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"#fafbfc\", \"#e5e5e5\" */\n .filter-bar {\n background-color: #181818;\n border-bottom-color: #343434;\n }\n /* github.com: \"#ddd\" */\n .url-box {\n border-top-color: #343434;\n }\n /* github.com: \"color: #24292e\" */\n .url-box p strong {\n color: #cdcdcd;\n }\n /* github.com: \"color: #333\", \"linear-gradient(#fafafa,#eaeaea)\" */\n .clone-url-button > .clone-url-link {\n color: #bebebe;\n background-image: linear-gradient(#202020, #181818);\n }\n /* github.com: \"color: #fff\", \"#599bcd\",\"#3072b3\", \"#2a65a0\" */\n .clone-url-button > .clone-url-link:active,\n .clone-url-button > .clone-url-link:hover {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#3072b3\", \"none\", \"rgba(0,0,0,.15)\" */\n .clone-url-button > .clone-url-link:active {\n background-color: rgb(79, 140, 201);\n background-image: none;\n box-shadow: inset 0 3px 5px #000;\n }\n /* github.com: \"#fff\" */\n .clone-url-button + .clone-url-button > .clone-url-link {\n box-shadow: inset 1px 0 0 #181818;\n }\n /* github.com: \"box-shadow: none\" */\n .clone-url-button + .clone-url-button > .clone-url-link:hover {\n box-shadow: none;\n }\n /* github.com: \"rgba(0,0,0,.15)\" */\n .clone-url-button + .clone-url-button > .clone-url-link:active {\n box-shadow: inset 0 3px 5px #000;\n }\n /* github.com: \"color: #333\", \"hsla(0,0%,100%,.6)\", \"#ccc\", \"linear-gradient(#ccc,#d5d5d5)\", \"#bbb\", \"box-shadow: inset 0 2px 3px rgba(0,0,0,.075)\" */\n .clone-url-button > .clone-url-link.selected,\n .clone-url-button > .clone-url-link.selected:hover {\n color: #bebebe;\n text-shadow: 0 1px 0 hsla(0, 0%, 0%, .6);\n background-color: #484848;\n background-image: linear-gradient(#303030, #282828);\n border-color: #484848;\n box-shadow: inset 0 2px 3px rgba(255, 255, 255, .075);\n }\n /* github.com: \"initial\" */\n .timeout {\n background-color: initial;\n }\n /* github.com: \"color: #586069\" */\n .timeout h3 {\n color: #afafaf;\n }\n /* github.com: \"#dfe2e5\" */\n .overall-summary {\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .numbers-summary li > .nolink, .numbers-summary li > a {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .numbers-summary li > a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #6a737d\" */\n .numbers-summary .octicon {\n color: #949494;\n }\n /* github.com: \"#dfe2e5\" */\n .prereceive-feedback {\n border-color: #343434;\n }\n /* github.com: \"#b08800\" */\n .prereceive-feedback-heading {\n color: #cb4;\n }\n /* github.com: \"#f1f8ff\" */\n .repository-item-checkbox:checked + .repository-item-name {\n background-color: #182030;\n }\n /* github.com: \"#e1e4e8\" */\n .custom-role-icon {\n background-color: #343434;\n }\n /* github.com: \"color: #666\" */\n .edit-profile-avatar .drag-and-drop {\n color: #949494;\n }\n /* github.com: \"#d73a49\", \"box-shadow: none\" */\n .avatar-upload .flash {\n border-color: #d82828;\n box-shadow: none;\n }\n /* github.com: \"color: #586069\" */\n .avatar-upload .upload-state p {\n color: #afafaf;\n }\n /* github.com: \"#e5e5e5\" */\n dl.new-email-form {\n border-top-color: #343434;\n }\n /* github.com: \"#fffdef\" */\n .selected-user-key {\n background-color: #261d08;\n }\n /* github.com: \"#ddd\" */\n .user-key-badge, .user-key-email {\n border-color: #343434;\n }\n /* github.com: \"color: #666\", \"#ddd\" */\n .user-key-email-unverified {\n color: #949494;\n border-color: #343434;\n }\n /* github.com: \"#28a745\" */\n .recent-user-key {\n color: #484;\n }\n /* github.com: \"#cb2431\" */\n .unverified-user-key, .unverified-user-key-notice {\n color: #d82828;\n }\n /* github.com: \"#ddd\" */\n .notification-center .overview {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .oauth-app-info-container dl.keys dt {\n color: #afafaf;\n }\n /* github.com: \"color: #333\" */\n .oauth-app-info-container dl.keys dd {\n color: #bebebe;\n }\n /* github.com: \"color: #586069\" */\n .oauth-app-info-container .user-count {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .logo-upload a.delete:hover, .logo-upload span.delete:hover {\n color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .logo-upload-container .upload-state p {\n color: #afafaf;\n }\n /* github.com: \"#eee\", \"#d1d5da\" */\n .logo-box {\n background-color: #242424;\n border-color: #404040;\n }\n /* github.com: \"color: #586069\" */\n .logo-placeholder {\n color: #afafaf;\n }\n /* github.com: \"#ddd\" */\n .saved-reply-form {\n border-color: #343434;\n }\n /* github.com: \"initial\", \"#eaecef\" */\n .saved-reply-form .comment-body {\n background-color: initial;\n border-bottom-color: #343434;\n }\n /* github.com: \"#e5e5e5\" */\n .access-token {\n border-bottom-color: #343434;\n }\n /* github.com: \"rgba(108,198,68,.1)\" */\n .access-token.new-token {\n background-color: #002800;\n }\n /* github.com: \"#28a745\" */\n .access-token.new-token .octicon-check {\n color: #484;\n }\n /* github.com: \"color: #24292e\" */\n .access-token .token-description, .token-scope {\n color: #cdcdcd;\n }\n /* github.com: \"initial\" */\n .application-show-group .drag-and-drop {\n background-color: initial;\n }\n /* github.com: \"color: #666\" */\n .email-preference-exceptions h5 {\n color: #949494;\n }\n /* github.com: \"#eaecef\" */\n .email-preference-exceptions .exception {\n border-top-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .email-preference-exceptions .exception:last-child {\n border-bottom-color: #343434;\n }\n /* github.com: \"#eaecef\" */\n .two-factor-steps {\n border-color: #343434;\n }\n /* github.com: \"#cb2431\" */\n .two-factor-steps .error-icon {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .two-factor-steps .sent-message {\n color: #484;\n }\n /* github.com: \"color: #586069\", \"#eaeaea\" */\n .two-factor-toggle .two-factor-status {\n color: #afafaf;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #fff\", \"#28a745\" */\n .two-factor-toggle .two-factor-on {\n color: #fff;\n background-color: #484;\n }\n /* github.com: \"#f8f8f8\" */\n .two-factor-settings-group, .u2f-registration {\n border-bottom-color: #343434;\n }\n /* github.com: \"rgba(47,38,6,.5)\" */\n .u2f-registration-icon {\n color: #cb4;\n }\n /* github.com: \"#ddd\" */\n .github-access-banner {\n border-color: #343434;\n }\n /* github.com: \"#cb2431\" */\n .github-access-banner .octicon {\n color: #d82828;\n }\n /* github.com: \"#eaecef\" */\n .qr-code-table {\n border-color: #343434;\n }\n /* github.com: \"transparent\" */\n .qr-code-table tr {\n background-color: transparent;\n }\n /* github.com: \"#fff\" */\n .qr-code-table .white {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .session-device {\n color: #afafaf;\n }\n /* github.com: \"#28a745\" */\n .session-device .session-state-indicator.recent {\n background-color: #484;\n }\n /* github.com: \"#d73a49\" */\n .session-device .session-state-indicator.revoked {\n background-color: #d82828;\n }\n /* github.com: \"#ccc\", \"#fff\" */\n .session-device .session-state-indicator.not-recent {\n background-image: linear-gradient(#aaa, #484848);\n box-shadow: 0 1px 0 #181818;\n }\n /* github.com: \"#0366d6\" */\n .session-details:hover .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .collaborators .collab-remove .remove-link {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .collaborators .collab-remove .remove-link:hover {\n color: #d82828;\n }\n /* github.com: \"color: #666\" */\n .collaborators .collab-info {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .access-sub-heading {\n color: #afafaf;\n }\n /* github.com: \"#ddd\" */\n .access-form-wrapper {\n border-top-color: #343434;\n }\n /* github.com: \"#fafbfc\" */\n .oauth-pending-deletion-list-item, .oauth-pending-deletion-list-item:hover {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .boxed-group-list .access-level {\n color: #afafaf;\n }\n /* github.com: \"#e5e5e5\" */\n .form-hr {\n border-bottom-color: #343434;\n }\n /* github.com: \"#e5e5e5\" */\n .listgroup {\n border-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .listgroup-item {\n color: #afafaf;\n }\n /* github.com: \"#e5e5e5\" */\n .listgroup-item + .listgroup-item {\n border-top-color: #343434;\n }\n /* github.com: \"#e5e5e5\" */\n .listgroup-header {\n border-bottom-color: #343434;\n }\n /* github.com: \"#f5f5f5\" */\n .listgroup-overflow {\n background-color: #222;\n }\n /* github.com: \"#fafbfc\" */\n .protected-branch-orgs-and-repo-admins {\n background-color: #181818;\n }\n /* github.com: \"color: #333\" */\n .protected-branch-pusher {\n color: #bebebe;\n }\n /* github.com: \"color: #fff\", \"#d15704\" */\n .user-already-added::after {\n color: #fff;\n background-color: #f3582c;\n }\n /* github.com: \"initial\", \"initial\" */\n @keyframes toggle-color {\n 0% {\n background-color: initial;\n }\n to {\n background-color: initial;\n }\n }\n /* github.com: \"#cb2431\", \"transparent\" */\n .repository-merge-features .form-group.errored .error {\n color: #d82828;\n background-color: transparent;\n }\n /* github.com: \"color: #24292e\", \"#e36209\" */\n .repository-settings-actions [role=tab][aria-selected=true] {\n color: #cdcdcd;\n border-bottom-color: #fb8532;\n }\n /* github.com: \"color: #6a737d\" */\n .repository-settings-actions [role=tab][aria-selected=true] .UnderlineNav-octicon {\n color: #949494;\n }\n /* github.com: \"#ddd\" */\n .setup-header {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .setup-header .lead a {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .setup-header .lead a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .setup-secondary .info {\n color: #afafaf;\n }\n /* github.com: \"#fff\" */\n .setup-info-module {\n background-color: #181818;\n }\n /* github.com: \"#ddd\" */\n .setup-info-module h2 {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #586069\" */\n .setup-info-module h2 .price {\n color: #afafaf;\n }\n /* github.com: \"#f9f9f9\", \"#e0e0e0\" */\n .setup-info-module .setup-info-note {\n background-color: #181818;\n border-top-color: #343434;\n }\n /* github.com: \"#eee\" */\n .features-list .list-divider {\n border-top-color: #343434;\n }\n /* github.com: \"color: #555\" */\n .features-list .octicon-question {\n color: #afafaf;\n }\n /* github.com: \"#cb2431\" */\n .setup-form .octicon-alert {\n color: #d82828;\n }\n /* github.com: \"#28a745\" */\n .setup-form .octicon-check {\n color: #484;\n }\n /* github.com: \"#eee\", \"#eee\" */\n .setup-form .setup-organization-next, .setup-form .tos-info {\n border-top-color: #343434;\n border-bottom-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .setup-form .setup-plans {\n border-color: #404040;\n }\n /* github.com: \"#f1f8ff\" */\n .setup-form .setup-plans tr.selected {\n background-color: #182030;\n }\n /* github.com: \"color: #6a737d\" */\n .setup-creditcard-form .form-group select:invalid {\n color: #949494;\n }\n /* github.com: \"color: #586069\" */\n .setup-creditcard-form .help-text, .shelf-lead {\n color: #afafaf;\n }\n /* github.com: \"color: #959da5\" */\n .shelf-dismiss {\n color: #767676;\n }\n /* github.com: \"#0366d6\" */\n .shelf-dismiss:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: rgba(27,31,35,.7)\", \"rgba(27,31,35,.15)\" */\n .shelf-dismiss .close-button {\n color: rgba(230, 230, 230, .7);\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"color: #24292e\", \"rgba(27,31,35,.3)\" */\n .shelf-dismiss .close-button:hover {\n color: #cdcdcd;\n border-color: rgba(220, 220, 220, .4);\n }\n /* github.com: \"color: rgba(27,31,35,.85)\", \"hsla(0,0%,100%,0)\",\"#fff\",\"#dbedff\", \"#fff\" */\n .intro-shelf {\n color: rgba(230, 230, 230, .85);\n background-image: linear-gradient(180deg, transparent 60%, #181818), linear-gradient(70deg, #182030 32%, #ebfff0);\n border-bottom-color: #181818;\n }\n /* github.com: \"color: rgba(27,31,35,.7)\" */\n .intro-shelf .shelf-lead {\n color: rgba(230, 230, 230, .7);\n }\n /* github.com: \"#d1d5da\" */\n .orgs-help-shelf-content .orgs-help-divider {\n border-top-color: #404040;\n }\n /* github.com: \"color: #586069\" */\n .orgs-help-lead {\n color: #afafaf;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .orgs-help-item-octicon {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .orgs-help-item-octicon .octicon {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .orgs-help-dismiss, .orgs-help-item-content {\n color: #afafaf;\n }\n /* github.com: \"#0366d6\" */\n .orgs-help-dismiss:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\", \"#d1d5da\", \"rgba(149,157,165,.15)\" */\n .signup-plan-card {\n background-color: #181818;\n border-color: #404040;\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* github.com: \"#fff\", \"#79b8ff\", \"rgba(149,157,165,.2)\" */\n .signup-plan-card:hover {\n background-color: #181818;\n border-color: rgb(79, 140, 201);\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"hsla(0,0%,100%,.5)\" */\n .signup-btn:disabled {\n color: hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .plan-category-tab[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #fff !important\" */\n .plan-category-tab[aria-selected=true] .tab-title {\n color: #fff !important;\n }\n /* github.com: \"#fff\" */\n .showcase-page-pattern::after {\n background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .85), #181818);\n }\n /* github.com: \"#eee\" */\n .showcase-page-repo-list {\n border-top-color: #343434;\n }\n /* github.com: \"#ec6cb9\" */\n .sponsors-goal-progress-bar {\n background-color: #c49;\n }\n /* github.com: \"#ffd33d\" */\n .sponsors-goal-completed-bar, .sponsors-goal-progress-bar:hover {\n background: linear-gradient(90deg, #cb4, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #cb4 68%, #ea4aaa 85%, #b34bff);\n }\n /* github.com: \"#fff\", \"#fff\" */\n .sponsors-goals-avatar-border {\n background-color: #181818;\n border-color: #181818;\n }\n /* github.com: \"#fff\", \"#e1e4e8\" */\n .business-sso .business-sso-panel, .business-sso .org-sso-panel,\n .org-sso .business-sso-panel, .org-sso .org-sso-panel {\n background-color: #181818;\n border-color: #343434;\n }\n /* github.com: \"#d1d5da\" */\n .business-sso .sso-recovery-callout, .org-sso .sso-recovery-callout {\n border-color: #404040;\n }\n /* github.com: \"none\", \"box-shadow: none\" */\n .tag-input input {\n background: none;\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none\" */\n .tag-input input:focus {\n box-shadow: none;\n }\n /* github.com: \"color: #586069\", \"#eaeaea\", \"box-shadow: none\" */\n .team-label-ldap {\n color: #afafaf;\n border-color: #343434;\n box-shadow: none;\n }\n /* github.com: \"#0366d6\", \"#f6f8fa\" */\n .team-member-ellipsis:hover {\n color: rgb(79, 140, 201);\n background-color: #222;\n }\n /* github.com: \"#fafbfc\" */\n .team-listing .is-open.root-team {\n background-color: #181818;\n }\n /* github.com: \"#0366d6\" */\n .token-scanning-reset-query:hover .token-scanning-reset-query-icon {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"#6a737d\" */\n .token-scanning-reset-query-icon {\n background-color: #444;\n }\n /* github.com: \"#28a745\" */\n .traffic-graph path.total {\n stroke: #484;\n }\n /* github.com: \"#005cc5\" */\n .traffic-graph path.unique {\n stroke: #4f8cc9;\n }\n /* github.com: \"#28a745\" */\n .traffic-graph .axis .tick:first-of-type line, .traffic-graph .y line {\n stroke: #484;\n }\n /* github.com: \"#005cc5\" */\n .traffic-graph .y.unique line, .uniques-graph .axis .tick:last-child line {\n stroke: #4f8cc9;\n }\n /* github.com: \"color: #fff\" */\n .svg-tip .date {\n color: #fff;\n }\n /* github.com: \"#f6f8fa\", \"#dfe2e5\" */\n table.capped-list th {\n background-color: #222;\n }\n /* github.com: \"#eaecef\" */\n table.capped-list td, table.capped-list th {\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #444d56\" */\n table.capped-list .octicon {\n color: #afafaf;\n }\n /* github.com: \"#fafbfc\" */\n table.capped-list tr:nth-child(2n) {\n background-color: #181818;\n }\n /* github.com: \"#dfe2e5\" */\n .traffic-graph-stats {\n border-top-color: #343434;\n }\n /* github.com: \"#28a745\" */\n .totals circle {\n fill: #484;\n }\n /* github.com: \"#005cc5\" */\n .uniques circle {\n fill: #4f8cc9;\n }\n /* github.com: \"box-shadow: none\" */\n .tree-finder-input, .tree-finder-input:focus {\n box-shadow: none;\n }\n /* github.com: \"#fff\" */\n .tree-browser-result[aria-selected=true] {\n background-color: #181818 !important;\n }\n /* github.com: \"#0366d6\", \"none\" */\n .tree-browser-result[aria-selected=true] .octicon-chevron-right,\n .tree-browser-result mark {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"none\" */\n .toolbar-commenting .dropdown-item, .tree-browser-result mark {\n background: none;\n }\n /* github.com: \"#0366d6\" */\n .toolbar-commenting .dropdown-item:focus,\n .toolbar-commenting .dropdown-item:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\", \"none\" */\n .toolbar-item, .toolbar-item .menu-target {\n color: #afafaf;\n background: none;\n }\n /* github.com: \"#0366d6\" */\n .toolbar-item .menu-target:focus, .toolbar-item .menu-target:hover,\n .toolbar-item:focus, .toolbar-item:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #333\" */\n .typeahead-result {\n color: #bebebe;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .typeahead-result.navigation-focus, .typeahead-result:hover,\n .typeahead-result[aria-selected=true] {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .typeahead-result.navigation-focus .octicon-plus,\n .typeahead-result:hover .octicon-plus,\n .typeahead-result[aria-selected=true] .octicon-plus {\n color: #fff;\n }\n /* github.com: \"color: #586069\" */\n .member-suggestion .already-member-note, .member-suggestion .member-name,\n .member-suggestion .non-member-action, .member-suggestion .non-member-note {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .member-suggestion.navigation-focus .already-member-note,\n .member-suggestion.navigation-focus .member-email,\n .member-suggestion.navigation-focus .member-name,\n .member-suggestion.navigation-focus .non-member-action,\n .member-suggestion.navigation-focus .non-member-note,\n .member-suggestion.navigation-focus .octicon,\n .member-suggestion:hover .already-member-note,\n .member-suggestion:hover .member-email,\n .member-suggestion:hover .member-name,\n .member-suggestion:hover .non-member-action,\n .member-suggestion:hover .non-member-note, .member-suggestion:hover .octicon,\n .member-suggestion[aria-selected=true] .already-member-note,\n .member-suggestion[aria-selected=true] .member-email,\n .member-suggestion[aria-selected=true] .member-name,\n .member-suggestion[aria-selected=true] .non-member-action,\n .member-suggestion[aria-selected=true] .non-member-note,\n .member-suggestion[aria-selected=true] .octicon {\n color: #fff;\n }\n /* github.com: \"color: #586069\" */\n .team-suggestion .team-description, .team-suggestion .team-size {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .team-suggestion.navigation-focus .team-description,\n .team-suggestion.navigation-focus .team-size,\n .team-suggestion[aria-selected=true] .team-description,\n .team-suggestion[aria-selected=true] .team-size {\n color: #fff;\n }\n /* github.com: \"color: #959da5\" */\n .email-suggestion .octicon-mail {\n color: #767676;\n }\n /* github.com: \"color: #586069\" */\n .repo-access-add-team .team-description, .repo-access-add-team .team-size {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .repo-access-add-team.navigation-focus .team-description,\n .repo-access-add-team.navigation-focus .team-size,\n .repo-access-add-team[aria-selected=true] .team-description,\n .repo-access-add-team[aria-selected=true] .team-size {\n color: #fff;\n }\n /* github.com: \"#e1e4e8\" */\n .user-list-item + .user-list-item {\n border-top-color: #343434;\n }\n /* github.com: \"color: #fff\", \"#cb2431\" */\n .follow-list .flagged-banner {\n color: #fff;\n background-color: #d82828;\n }\n /* github.com: \"color: #586069\" */\n .follow-list .follow-list-info,\n .user-status-org-button .user-status-org-detail {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .user-status-org-button:focus .user-status-org-detail,\n .user-status-org-button:hover .user-status-org-detail {\n color: #fff;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n .user-status-org-button.selected {\n color: #fff;\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\" */\n .user-status-org-button.selected .user-status-org-detail {\n color: #fff;\n }\n /* github.com: \"#ffea7f\" */\n .user-status-limited-availability-compact {\n background-color: #542;\n }\n /* github.com: \"color: #24292e\" */\n .user-status-message-wrapper {\n color: #cdcdcd;\n }\n /* github.com: \"#0366d6\" */\n .toggle-user-status-edit:focus .user-status-message-wrapper,\n .toggle-user-status-edit:hover .user-status-message-wrapper {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"rgba(149,157,165,.15)\" */\n .user-status-circle-badge-container:hover .user-status-circle-badge {\n box-shadow: 0 3px 6px rgba(0, 0, 0, .15);\n }\n /* github.com: \"#fff\", \"#e1e4e8\", \"rgba(27,31,35,.04)\" */\n .user-status-circle-badge {\n background-color: #181818;\n border-color: #343434;\n box-shadow: 0 1px 0 #000;\n }\n /* github.com: \"none\" */\n .wiki-footer .markdown-body img {\n background: none;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .ColorSwatch {\n border-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#2188ff\" */\n .hx_text-blue-light {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#f1f8ff\" */\n .hx_avatar_stack_commit .AvatarStack-body {\n background-color: #182030;\n }\n /* github.com: \"#fff\", \"#fff\" */\n .hx_flex-avatar-stack-item .avatar {\n border-color: #181818;\n background-color: #181818;\n }\n /* github.com: \"box-shadow: none\" */\n .hx_badge-search-container .hx_badge-input {\n box-shadow: none;\n }\n /* github.com: \"box-shadow: none !important\" */\n .hx_badge-search-container .hx_badge-input:focus {\n box-shadow: none !important;\n }\n /* github.com: \"color: #fff !important\", \"#0366d6\", \"#0366d6\" */\n .hx_badge[aria-pressed=true] {\n color: #fff !important;\n background-color: rgb(79, 140, 201) !important;\n border-color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"#fafbfc\" */\n @media (hover:hover) {\n .hx_menuitem--focus {\n background-color: #181818;\n }\n }\n /* github.com: \"rgba(115,92,15,.5)\" */\n .hx_color-repo-private-icon {\n color: rgba(204, 187, 68, .5);\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .hx_bg-black-fade-15 {\n background-color: rgba(220, 220, 220, .22);\n }\n /* github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n body:not(.intent-mouse) .hx_focus-input:focus + .hx_focus-target {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* github.com: \"color: #959da5\" */\n .SelectMenu-item:disabled, .SelectMenu-item[aria-disabled=true] {\n color: #767676;\n }\n /* github.com: \"box-shadow: none\" */\n .Box--responsive .Box-row--unread {\n box-shadow: none;\n }\n /* github.com: \"color: #fff\", \"#54a3ff\",\"#006eed\" */\n .Box--responsive .Box-row--unread::before {\n color: #fff;\n background-image: linear-gradient(rgb(79, 140, 201), rgb(79, 140, 201));\n }\n /* github.com: \"#e1e4e8\", \"#0366d6\" */\n @media (min-width:544px) {\n .Box--responsive {\n border-color: #343434;\n }\n .Box--responsive .Box-row--unread {\n box-shadow: inset 2px 0 0 rgb(79, 140, 201);\n }\n }\n /* github.com: \"color: #6a737d\" */\n @media (max-width:767px) {\n .page-responsive .hx_rsm-close-button .octicon-x,\n .page-responsive .hx_rsm .close-button .octicon-x {\n color: #949494;\n }\n }\n /* github.com: \"#e1e4e8\", \"rgba(149,157,165,.2)\" */\n .select-menu-modal {\n border-color: #343434;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n /* github.com: \"#fff\" */\n .select-menu-filters, .select-menu-header {\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .preview-selected .tabnav--responsive {\n border-bottom-color: #343434;\n }\n /* github.com: \"#fafbfc\", \"#e1e4e8\", \"#fff\" */\n @media (max-width:767px) {\n .tabnav--responsive .tabnav-tab {\n background-color: #181818;\n border-color: #343434;\n }\n .tabnav--responsive .tabnav-tab:first-child {\n border-left-color: #343434;\n }\n .tabnav--responsive .tabnav-tab.selected,\n .tabnav--responsive .tabnav-tab[aria-selected=true] {\n background-color: #181818;\n }\n }\n /* github.com: \"#e1e4e8\" */\n @media (max-width:767px) {\n .hx_sm-hide-drag-drop textarea {\n border-bottom-color: #343434;\n }\n }\n /* github.com: \"#586069\" */\n .Toast--loading .Toast-icon {\n background-color: #343434;\n }\n /* github.com: \"initial\" */\n .autocomplete-item {\n background-color: initial;\n }\n /* github.com: \"#fff\" */\n .details-overlay[open] > .dropdown-item:hover {\n background-color: #181818;\n }\n /* github.com: \"color: #959da5\" */\n .radio-label .octicon {\n color: #767676;\n }\n /* github.com: \"color: #6a737d\", \"#eff3f6\" */\n .radio-input:disabled + .radio-label {\n color: #949494;\n background-color: #242424;\n }\n /* github.com: \"#e1e4e8\" */\n .BorderGrid-cell, .drag-and-drop {\n border-color: #343434;\n }\n /* github.com: \"color: #6a737d\" */\n .flash .btn .octicon {\n color: #949494;\n }\n /* github.com: \"#f3f4f6\" */\n .form-group .form-control[disabled], .form-group .form-select[disabled] {\n background-color: #242424;\n }\n /* github.com: \"#735c0f\", \"#f9c513\" */\n .Label--outline.bg-yellow-light {\n color: #bba257;\n border-color: #cb4;\n }\n /* github.com: \"#0366d6\", \"#0366d6\" */\n .label.bg-blue {\n color: rgb(79, 140, 201);\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"#e1e4e8\" */\n .signed-commit-badge-large, .signed-commit-badge-medium,\n .signed-commit-badge-small, .timeline-comment-label {\n border-color: #343434;\n }\n /* github.com: \"#0366d6\" */\n .delete-topic-button, .topic-tag, .topic-tag-action,\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#e1e4e8\" */\n .timeline-comment, .timeline-comment-header {\n border-color: #343434;\n }\n /* github.com: \"#e1e4e8\" */\n .branch-action-item.border-gray-dark {\n border-color: #343434 !important;\n }\n /* github.com: \"#e1e4e8\" */\n .branch-action-body, .branch-action-state-closed-dirty .branch-action-body,\n .branch-action-state-dirty .branch-action-body,\n .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body {\n border-color: #343434;\n }\n /* github.com: \"box-shadow: none\" */\n .notification-list-item-actions .btn {\n box-shadow: none;\n }\n /* github.com: \"#f9826c\" */\n .pagehead-tabs-item.selected, .reponav-item.selected {\n border-top-color: #fff;\n }\n /* github.com: \"#28a745\" */\n .branch-action-state-clean .branch-action-icon,\n .completeness-indicator-success {\n background-color: #484;\n }\n /* github.com: \"color: #586069\", \"#e1e4e8\" */\n .pullquote {\n color: #afafaf;\n border-left-color: #343434;\n }\n /* github.com: \"color: #fff\", \"#1074e7\", \"#1074e7\" */\n .btn-mktg {\n color: #fff;\n border: 1px solid rgb(79, 140, 201);\n }\n /* github.com: \"#0366d6\", \"#0366d6\" */\n .btn-mktg, .btn-mktg:hover {\n background-color: rgb(79, 140, 201);\n }\n .btn-mktg:hover {\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"box-shadow: 0 0 0 .2em rgba(3,102,214,.3)\" */\n .btn-mktg:focus {\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .5);\n }\n /* github.com: \"#28a745\", \"#28a745\" */\n .btn-primary-mktg:hover {\n background-color: #484;\n border-color: #484;\n }\n /* github.com: \"#0366d6\", \"hsla(0,0%,100%,0)\", \"#1074e7\" */\n .btn-outline-mktg, .btn-outline-mktg:hover {\n color: rgb(79, 140, 201);\n background-color: transparent;\n }\n .btn-outline-mktg:hover {\n border-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"initial\", \"none\", \"hsla(0,0%,100%,.5)\" */\n .btn-transparent {\n color: #fff;\n background-color: initial;\n background-image: none;\n border-color: hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"color: #2f363d\", \"#fff\", \"none\", \"#fff\" */\n .btn-transparent:active, .btn-transparent:hover {\n color: #bebebe;\n background-color: #181818;\n background-image: none;\n border-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .lead-mktg-fluid {\n color: #afafaf;\n }\n /* github.com: \"color: #fff\" */\n .btn-black-mktg-fluid, .btn-lg-mktg-fluid, .btn-mktg-fluid,\n .btn-purple-mktg-fluid {\n color: #fff;\n }\n /* github.com: \"none\" */\n .btn-outline-mktg-fluid, .btn-outline-mktg-fluid.hover,\n .btn-outline-mktg-fluid.selected, .btn-outline-mktg-fluid:active,\n .btn-outline-mktg-fluid:hover, .btn-outline-mktg-fluid[aria-selected=true],\n .btn-purple-outline-mktg-fluid, .btn-purple-outline-mktg-fluid.hover,\n .btn-purple-outline-mktg-fluid.selected,\n .btn-purple-outline-mktg-fluid:active, .btn-purple-outline-mktg-fluid:hover,\n .btn-purple-outline-mktg-fluid[aria-selected=true],\n [open] > .btn-outline-mktg-fluid, [open] > .btn-purple-outline-mktg-fluid {\n background: none;\n }\n /* github.com: \"color: #fff\", \"none\" */\n .btn-white-outline-mktg-fluid {\n color: #fff;\n background: none;\n }\n /* github.com: \"color: #fff\", \"none\", \"hsla(0,0%,100%,.5)\" */\n .btn-white-outline-mktg-fluid.hover, .btn-white-outline-mktg-fluid.selected,\n .btn-white-outline-mktg-fluid:active, .btn-white-outline-mktg-fluid:hover,\n .btn-white-outline-mktg-fluid[aria-selected=true],\n [open] > .btn-white-outline-mktg-fluid {\n color: #fff;\n background: none;\n box-shadow: inset 0 0 0 2px hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,.5)\" */\n .btn-white-outline-mktg-fluid.focus, .btn-white-outline-mktg-fluid:focus {\n box-shadow: inset 0 0 0 2px #181818, 0 0 0 4px hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"none\" */\n .btn-invisible-mktg-fluid, .btn-invisible-mktg-fluid::before,\n .btn-invisible-mktg-fluid:hover, .btn-lg-invisible-mktg-fluid,\n .btn-lg-invisible-mktg-fluid::before, .btn-lg-invisible-mktg-fluid:hover {\n background: none !important;\n }\n /* github.com: \"box-shadow: none\" */\n .btn-invisible-mktg-fluid.focus, .btn-invisible-mktg-fluid:focus,\n .btn-lg-invisible-mktg-fluid.focus, .btn-lg-invisible-mktg-fluid:focus {\n box-shadow: none;\n }\n /* github.com: \"rgba(27,31,35,.3)\" */\n .box-shadow-border-mktg {\n box-shadow: 0 0 1px 0 #000 !important;\n }\n /* github.com: \"rgba(27,31,35,.3)\" */\n .box-shadow-card-border-mktg {\n box-shadow: 0 3px 2px rgba(0, 0, 0, .04), 0 7px 5px rgba(0, 0, 0, .02), 0 13px 10px rgba(0, 0, 0, .02), 0 22px 17px rgba(0, 0, 0, .02), 0 0 1px 0 #000 !important;\n }\n /* github.com: \"#fff\" */\n .testimonial-avatar {\n border-color: #181818;\n }\n /* github.com: \"transparent\" */\n .customer-story-overlay {\n background-image: linear-gradient(180deg, #000 -5%, transparent 50%);\n }\n /* github.com: \"none\" */\n .page-nav .page-nav-trigger {\n background: none;\n }\n /* github.com: \"color: #6a737d\" */\n .page-nav-item {\n color: #949494;\n }\n /* github.com: \"#f6f8fa\" */\n .page-nav-item::before {\n background-color: #222;\n }\n /* github.com: \"color: #444d56 !important\" */\n .page-nav-item:hover {\n color: #afafaf !important;\n }\n /* github.com: \"color: #24292e\" */\n .page-nav-item.selected {\n color: #cdcdcd;\n }\n /* github.com: \"#eee\" */\n hr {\n border-bottom-color: #343434;\n }\n /* github.com: \"#032f62\" */\n .bg-blue-dark {\n background-color: #182030 !important;\n }\n /* github.com: \"#fb8532\" */\n .bg-orange {\n background-color: #fb8532 !important;\n }\n /* github.com: \"#79b8ff\" */\n .text-blue-light, .text-blue-mktg {\n color: rgb(79, 140, 201) !important;\n }\n /* github.com: \"color: #808891\" */\n .text-gray-light-ultra {\n color: #767676;\n }\n /* github.com: \"#d1d5da\",\"hsla(0,0%,100%,0)\" */\n .underline-dashed {\n background-image: linear-gradient(90deg, #404040 50%, transparent 0);\n }\n /* github.com: \"#1074e7\", \"box-shadow: 0 1px 0 0 rgba(16,116,231,.5)\" */\n .link-mktg {\n box-shadow: 0 1px 0 0 rgba(79, 140, 201, .5);\n }\n /* github.com: \"#0366d6\", \"#1074e7\" */\n .link-mktg, .link-mktg:hover {\n color: rgb(79, 140, 201);\n }\n .link-mktg:hover {\n box-shadow: 0 1px 0 0 rgb(79, 140, 201);\n }\n /* github.com: \"color: #fff\", \"hsla(0,0%,100%,.5)\" */\n .link-white-mktg {\n color: #fff;\n box-shadow: 0 1px 0 0 hsla(0, 0%, 0%, .5);\n }\n /* github.com: \"#fff\" */\n .link-white-mktg:hover {\n box-shadow: 0 1px 0 0 #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .Tile {\n background-color: #222;\n }\n /* github.com: \"#fafbfc\" */\n .bg-hero-dots-gray::before, .Tile:hover {\n background-color: #181818;\n }\n /* github.com: \"#fafbfc\" */\n @media (max-width:1012px) {\n .enterprise-section-container {\n background-color: #181818;\n }\n }\n /* github.com: \"#fff\" */\n .enterprise-garden-container::after {\n background-color: #181818;\n }\n /* github.com: \"#e1e4e8\" */\n .sponsors-discussion::after {\n background-color: #343434;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .sponsors-popover::before {\n border-top-color: rgba(220, 220, 220, .15);\n }\n /* github.com: \"#fff\" */\n .sponsors-popover::after {\n border-top-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .sponsors-listing-featured-item .item-handle {\n color: #afafaf;\n }\n /* github.com: \"color: #6a737d\" */\n .subnav-link {\n color: #949494;\n }\n /* github.com: \"color: #24292e\", \"#e1e4e8\" */\n .subnav-link:hover {\n color: #cdcdcd;\n border-bottom-color: #343434;\n }\n /* github.com: \"color: #1b1f23 !important\", \"#1074e7\" */\n .subnav-link.selected {\n color: #dcdcdc !important;\n border-bottom-color: rgb(79, 140, 201);\n }\n /* github.com: \"transparent\" */\n .subnav-btn {\n background-color: transparent;\n }\n /* github.com: \"color: #fff\", \"#1074e7\" */\n @media (min-width:768px) {\n .subnav-btn {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n }\n /* github.com: \"transparent\" */\n .subnav-btn:hover {\n background-color: transparent;\n }\n /* github.com: \"color: #fff\", \"#0366d6\" */\n @media (min-width:768px) {\n .subnav-btn:hover {\n color: #fff;\n background: rgb(79, 140, 201);\n }\n }\n /* github.com: \"#e1e4e8\" */\n @media (min-width:768px) {\n .subnav-primary:hover {\n border-bottom-color: #343434;\n }\n }\n /* github.com: \"#1074e7\" */\n @media (min-width:768px) {\n .subnav-primary.selected {\n border-bottom-color: rgb(79, 140, 201);\n }\n }\n /* github.com: \"color: #24292e\" */\n .site-subnav-nav .selected {\n color: #cdcdcd;\n }\n /* github.com: \"#eaecef\" */\n .pricing-table td, .pricing-table thead th {\n border-bottom-color: #343434;\n }\n /* github.com: \"#eaecef\", \"#eaecef\" */\n .pricing-table td + td {\n border-right-color: #343434;\n border-left-color: #343434;\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .fade-img-to-white-bg::before {\n background: linear-gradient(180deg, #181818 0, transparent);\n }\n /* github.com: \"#fff\",\"hsla(0,0%,100%,0)\" */\n .fade-img-to-white-bg::after {\n background: linear-gradient(0deg, #181818 0, transparent);\n }\n /* github.com: \"color: #fff\", \"#005cc5\" */\n .pricing-plan-tab {\n color: #fff;\n background-color: #4f8cc9;\n }\n /* github.com: \"color: #24292e\", \"#fff\" */\n .pricing-plan-tab-active {\n color: #cdcdcd;\n background-color: #181818;\n }\n /* github.com: \"initial\" */\n .pricing-testimonial-logo {\n background-color: initial;\n }\n /* github.com: \"#e1e4e8\" */\n .pricing-testimonial-logo-active {\n background-color: #343434;\n }\n /* github.com: \"initial\" */\n .pricing-matrix-row-button {\n background-color: initial;\n }\n /* github.com: \"#e1e4e8\" */\n .pricing-matrix-row:hover .pricing-matrix-column-feature,\n .pricing-matrix-row:hover .pricing-matrix-row-text {\n background-color: #343434;\n }\n /* github.com: \"#fff\" */\n .pricing-matrix-column-tier {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .pricing-matrix-row:hover .pricing-matrix-column-tier {\n background-color: #222;\n }\n /* github.com: \"color: #959da5\" */\n .codespaces-subtitle {\n color: #767676;\n }\n /* github.com: \"#e1e4e8\" */\n .codespaces-develop-time {\n background-color: #343434;\n }\n /* github.com: \"color: #fff\" */\n .section-codespaces-develop-night .codespaces-develop-header {\n color: #fff;\n }\n /* github.com: \"hsla(0,0%,100%,.8)\" */\n .section-codespaces-develop-night .codespaces-develop-text {\n color: hsla(0, 0%, 100%, .8) !important;\n }\n /* github.com: \"box-shadow: none\" */\n .section-codespaces-develop-night .codespaces-sun {\n box-shadow: none;\n }\n /* github.com: \"#24292e\" */\n .bg-gradient-gray {\n background-image: linear-gradient(175.44deg, #383838 1.44%, #181818 96.23%);\n }\n /* github.com: \"#fff\" */\n .bg-radial-white {\n background: radial-gradient(145.3% 145.3% at 65.91% 0, #181818 0, #f0f0f0 100%);\n }\n /* github.com: \"hsla(0,0%,100%,.6)\" */\n .jumbotron-codelines {\n color: hsla(0, 0%, 0%, .6);\n }\n /* github.com: \"#24292e\" */\n .jumbotron-netneutrality {\n background-color: #181818;\n }\n /* github.com: \"#24292e\" */\n @media (min-width:768px) {\n .jumbotron-netneutrality {\n background-color: #181818;\n }\n }\n /* github.com: \"#f5f0ff\", \"#6f42c1\" */\n @media (min-width:768px) {\n .illflow-purple .selected {\n background-color: #213;\n }\n .illflow-purple .selected::after {\n border-color: transparent transparent #213;\n }\n .illflow-purple .illflow-item .illflow-item-heading {\n color: #9378ba;\n }\n }\n /* github.com: \"#f1f8ff\", \"#0366d6\" */\n @media (min-width:768px) {\n .illflow-blue .selected {\n background-color: #182030;\n }\n .illflow-blue .selected::after {\n border-color: transparent transparent #182030;\n }\n .illflow-blue .illflow-item .illflow-item-heading {\n color: rgb(79, 140, 201);\n }\n }\n /* github.com: \"color: #444d56\" */\n .illflow-item .illflow-item-heading {\n color: #afafaf;\n }\n /* github.com: \"#fafbfc\", \"color: #24292e\" */\n @media (min-width:768px) {\n .illflow-item:not(.selected):hover {\n background-color: #181818;\n }\n .illflow-item.selected .illflow-item-heading {\n color: #cdcdcd;\n }\n }\n /* github.com: \"#444d56\" */\n .IconNav-item.selected {\n border-color: #484848;\n }\n /* github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg:-ms-input-placeholder {\n color: #cdcdcd;\n }\n /* github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg::-ms-input-placeholder {\n color: #cdcdcd;\n }\n /* github.com: \"color: #24292e\" */\n .home-hero-signup .form-control-lg::placeholder {\n color: #cdcdcd;\n }\n /* github.com: \"color: #6a737d\" */\n .home-hero-signup .form-control-note {\n color: #949494;\n }\n /* github.com: \"color: #959da5\" */\n .home-hero-signup .form-control-note .notice-highlight {\n color: #767676;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .customer-story-card {\n box-shadow: 0 2px 4px #000;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .card-mktg {\n box-shadow: 0 1px 15px #000, 0 0 1px rgba(106, 115, 125, .35);\n }\n /* github.com: \"#fb8532\" */\n .border-orange {\n border-color: #fb8532 !important;\n }\n /* github.com: \"color: #032f62 !important\" */\n .text-blue-dark {\n color: #9daccc !important;\n }\n /* github.com: \"color: #959da5\" */\n .actions-event-token {\n color: #767676;\n }\n /* github.com: \"#d1d5da\" */\n .actions-event-token span {\n color: #404040;\n }\n /* github.com: \"#0366d6\" */\n .actions-template-card:hover .actions-template-repo {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #959da5\" */\n .actions-template-repo {\n color: #767676;\n }\n /* github.com: \"color: #24292e !important\", \"#e1e4e8\" */\n .selected .security-nav-item {\n color: #cdcdcd !important;\n box-shadow: inset 0 -3px 0 #343434;\n }\n /* github.com: \"#d1d5da\" */\n .security-nav-icon {\n color: #404040;\n }\n /* github.com: \"initial\" */\n @media (min-width:1012px) {\n .insights-hero-text {\n background-color: initial;\n }\n }\n /* github.com: \"hsla(0,0%,100%,0)\" */\n .insights-hero-text::after {\n background-image: linear-gradient(hsla(0, 0%, 100%, .85), transparent);\n }\n /* github.com: \"#fff\" */\n @media (min-width:1012px) {\n .insights-dashboard-callout {\n background-color: #181818;\n }\n }\n /* github.com: \"#0366d6\", \"#2188ff\" */\n .insights-dash-dot-ripple > span {\n background-color: rgb(79, 140, 201);\n box-shadow: 0 0 5px rgb(79, 140, 201), inset 0 0 5px rgb(79, 140, 201);\n }\n /* github.com: \"#2188ff\" */\n .insights-dash-dot-ripple > div {\n border: 2px solid rgb(79, 140, 201);\n }\n /* github.com: \"#34d058\" */\n .packages-badge {\n background-color: #373;\n }\n /* github.com: \"transparent\" */\n .gpr-cli-tab {\n background-color: transparent;\n }\n /* github.com: \"#24292e\" */\n .gpr-cli-tab:hover {\n background-color: #181818;\n }\n /* github.com: \"color: #586069\" */\n .MarketingBody > p {\n color: #afafaf;\n }\n /* github.com: \"#c8e1ff\" */\n .MarketingBody blockquote, .MarketingBody blockquote::before {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #586069\" */\n .MarketingBody ol, .MarketingBody ul {\n color: #afafaf;\n }\n /* github.com: \"color: #1b1f23\" */\n .MarketingBody ol strong, .MarketingBody ul strong {\n color: #dcdcdc;\n }\n /* github.com: \"color: #2f363d !important\" */\n .MarketingBody-lead > p:first-child {\n color: #bebebe !important;\n }\n /* github.com: \"#0366d6\" */\n .MarketingBody-lead a, .MarketingBody-lead a:hover {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#c8e1ff\",\"#79b8ff\" */\n .section-mobile-notification::after {\n background: linear-gradient(#246, rgb(79, 140, 201), #246);\n }\n /* github.com: \"#fff\" */\n .phone-buttons, .phone-buttons::after, .phone-buttons::before {\n background-color: #181818;\n }\n /* github.com: \"#fff\", \"rgba(0,0,0,.15)\" */\n .phone-background {\n border-color: #181818;\n box-shadow: 0 2px 30px #000, inset 30px 0 20px 20px rgba(0, 0, 0, .01);\n }\n /* github.com: \"#f6f8fa\" */\n .phone-background::before {\n border-color: #202020;\n }\n /* github.com: \"#e1e4e8\" */\n .animate-mobile-triage .mobile-triage-overlay {\n filter: drop-shadow(-7px 10px 6px #343434);\n }\n /* github.com: \"#dbedff\" */\n .mobile-work-overlay-bluetap {\n background-color: #182030;\n }\n /* github.com: \"#ec6cb9\" */\n .mobile-particle-square-pink {\n background-color: #c49;\n }\n /* github.com: \"#fb8532\" */\n .mobile-particle-square-orange {\n background-color: #fb8532;\n }\n /* github.com: \"#2188ff\" */\n .mobile-particle-circle-blue, .mobile-particle-circle-blue-2 {\n background: rgb(79, 140, 201);\n }\n /* github.com: \"#8a63d2\" */\n .mobile-particle-circle-purple {\n background-color: #53387a;\n }\n /* github.com: \"#ec6cb9\" */\n .mobile-particle-circle-orange, .mobile-particle-circle-pink {\n background-color: #c49;\n }\n /* github.com: \"#fb8532\" */\n .mobile-particle-circle-orange {\n background-color: #fb8532;\n }\n /* github.com: \"#8a63d2\" */\n .mobile-particle-square-purple {\n background-color: #53387a;\n }\n /* github.com: \"#34d058\" */\n .mobile-particle-circle-green {\n background-color: #373;\n }\n /* github.com: \"#d1d5da\", \"rgba(149,157,165,.2)\" */\n @media (min-width:544px) {\n .summarylink:active .summarylink-btn, .summarylink:hover .summarylink-btn {\n border-color: #404040;\n box-shadow: 0 8px 24px rgba(0, 0, 0, .2);\n }\n }\n /* github.com: \"#8a63d2\" */\n .particle-square-purple {\n background-color: #53387a;\n }\n /* github.com: \"#2188ff\" */\n .particle-circle-blue {\n background: rgb(79, 140, 201);\n }\n /* github.com: \"#34d058\" */\n .particle-circle-green {\n background-color: #373;\n }\n /* github.com: \"#fb8532\" */\n .particle-circle-orange, .particle-circle-orange-2 {\n background-color: #fb8532;\n }\n /* github.com: \"#34d058\" */\n .particle-circle-green-2 {\n background-color: #373;\n }\n /* github.com: \"#2188ff\" */\n .particle-circle-blue-2 {\n background: rgb(79, 140, 201);\n }\n /* github.com: \"#8a63d2\" */\n .particle-square-purple-2 {\n background-color: #53387a;\n }\n /* github.com: \"rgba(0,0,0,.2)\" */\n .apps-cluster .CircleBadge.tooltipped:hover {\n box-shadow: 0 3px 8px 0 rgba(255, 255, 255, .7);\n }\n /* github.com: \"#e1e4e8\" */\n .apps-quadrangle .CircleBadge::after {\n background-color: #343434;\n }\n /* github.com: \"#24292e\" */\n .DeveloperVideo-data {\n background-color: #181818;\n }\n /* github.com: \"none\", \"transparent\" */\n @media (min-width:768px) {\n .DeveloperVideo-data {\n background: none;\n background-image: linear-gradient(transparent, rgba(27, 31, 35, .95));\n }\n }\n /* github.com: \"#2f363d\" */\n .btf-border {\n border-top-color: #282828;\n }\n /* github.com: \"hsla(0,0%,100%,0)\",\"#fff\",\"#eaf5ff\" */\n .signup-prompt-bg {\n background-image: linear-gradient(180deg, transparent 50%, #181818), linear-gradient(70deg, #182030 32%, #f6fff8);\n }\n /* github.com: \"color: #586069\" */\n .SegmentedNav .selected {\n color: #afafaf;\n }\n /* github.com: \"#fafbfc\" */\n .home-enterprise-wrapper::before {\n background-color: #181818;\n }\n /* github.com: \"#f6f8fa\" */\n .choose-team-lp {\n background-color: #222;\n }\n /* github.com: \"color: #2f363d\" */\n .choose-team-lp .lead-mktg {\n color: #bebebe;\n }\n /* github.com: \"#044289\" */\n .choose-team-lp .hero-form {\n background-color: rgba(79, 140, 201, .5);\n }\n /* github.com: \"color: #fff\" */\n .choose-team-lp .hero-form .tooltipped {\n color: #fff;\n }\n /* github.com: \"#fff\" */\n .choose-team-lp .landing-page-section.features {\n background-color: #181818;\n }\n /* github.com: \"#2188ff\" */\n .choose-team-lp .landing-page-section.customers {\n background-color: rgb(79, 140, 201);\n }\n /* github.com: \"color: #2f363d\" */\n .choose-team-lp .feature-list {\n color: #bebebe;\n }\n /* github.com: \"rgba(27,31,35,.15)\" */\n .choose-team-lp .customer-quote {\n box-shadow: 0 4px 12px #000;\n }\n /* github.com: \"#044289\" */\n .choose-team-lp .landing-page-footer {\n background-color: rgba(79, 140, 201, .5);\n }\n /* github.com: \"#032f62\" */\n .choose-team-lp .landing-page-sub-footer {\n background-color: #182030;\n }\n /* github.com: \"#c8e1ff\" */\n .choose-team-lp .footer-link {\n color: rgb(79, 140, 201);\n }\n /* github.com: \"#fff\" */\n .team-octicon {\n background-color: #181818;\n }\n /* github.com: \"#d1d5da\" */\n .team-collaboration-box::before {\n border-bottom-color: #404040;\n }\n /* github.com: \"#fff\" */\n .team-collaboration-box::after {\n border-bottom-color: #181818;\n }\n /* github.com: \"#d1d5da\", \"#fff\" */\n @media (min-width:768px) {\n .team-collaboration-box--left::before {\n border-left-color: #404040;\n }\n .team-collaboration-box--left::after {\n border-left-color: #181818;\n }\n }\n /* github.com: \"#d1d5da\", \"#fff\" */\n @media (min-width:768px) {\n .team-collaboration-box--right::before {\n border-right-color: #404040;\n }\n .team-collaboration-box--right::after {\n border-right-color: #181818;\n }\n }\n /* end github.com rules */\n body, body.bg-gray {\n background-color: #151515 !important;\n background-image: var(--ghd-bg-img) !important;\n background-clip: border-box !important;\n background-origin: padding-box !important;\n background-attachment: scroll !important;\n background-repeat: repeat !important;\n background-size: auto !important;\n background-position: left top !important;\n }\n /* custom code font */\n pre, code, tt, kbd:not(.badmono), samp, .blob-code, .file-data pre, .line-data,\n #gist-form .file .input textarea, .blob-code-inner {\n font-family: \"Menlo\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace !important;\n font-feature-settings: normal !important;\n font-size: 12 !important;\n }\n /* Base link colors */\n .Header-link:focus, .Header-link:hover, table.files .octicon-file-directory,\n table.files .octicon-file-symlink-directory,\n table.files .octicon-file-submodule, .header-logo-invertocat:hover,\n .notification-indicator:hover, .markdown-body a strong,\n .markdown-format a strong, .notifications.list-group a:hover,\n a.octolinker-link[href], .discussion-sidebar-toggle:hover, .commit-id:hover,\n body[class=\"page-responsive\"] .files-list .octicon,\n .timeline-comment-action:hover {\n color: rgb(79, 140, 201) !important;\n }\n .btn-link .octicon-kebab-horizontal:hover {\n color: rgb(79, 140, 201);\n }\n #notebook a:hover, #notebook a:focus {\n color: rgb(79, 140, 201);\n opacity: .8;\n }\n body.api li a code {\n color: rgba(79, 140, 201, .9) !important;\n }\n body.api li a:active code, body.api li a:hover code {\n color: rgba(79, 140, 201, 1) !important;\n }\n /* Base color panel */\n option:hover, .listings-layout .nav li a:hover,\n #fork-select .target:not(.disabled):hover, table.upgrades tr:hover td,\n .email-format .email-hidden-toggle:hover a, .dashboard-tabs a:hover,\n .documentation-results a:hover, .hidden-text-expander a:hover,\n .example-nav li a.selected, .issues-reset-query:hover .octicon-x,\n .segmented-nav li.active, .diff-expander:hover, .owner-select-target:hover,\n .release-timeline-tags .expander-text:hover .expander-dots,\n .search-result-item.navigation-focus, .pull-request-link:hover,\n .issues-reset-query:hover .issues-reset-query-block, .result.selected,\n .result:hover, .CommunityTemplate-highlight, .version-picker a:hover,\n .discussion-item-changes-marker.is-unread .discussion-item-icon {\n background: rgb(79, 140, 201) !important;\n }\n .diff-table button.add-line-comment, .add-line-comment {\n background: rgb(79, 140, 201);\n }\n .context-button::after {\n border-color: rgb(79, 140, 201) transparent transparent !important;\n }\n .timeline-progressive-disclosure-button:hover,\n .release-timeline-tags .expander-text:hover .expander-dots,\n .review-comment[aria-selected=true],\n .timeline-comment[aria-selected=true] .review-summary .comment-body {\n border-color: rgb(79, 140, 201) !important;\n }\n @keyframes autofill {\n to {\n background-color: #181818;\n background-image: none;\n color: #ddd;\n }\n }\n input:-webkit-autofill, input:-webkit-autofill:hover,\n input:-webkit-autofill:focus, textarea:-webkit-autofill,\n textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus,\n select:-webkit-autofill, select:-webkit-autofill:hover,\n select:-webkit-autofill:focus {\n animation-name: autofill !important;\n animation-fill-mode: both !important;\n }\n #com #header .top-nav .dropdown-button:hover .dropdown-caret,\n .header-nav-link:hover .dropdown-caret, .header-nav-link:focus .dropdown-caret,\n .header-navlink:hover .dropdown-caret, .header-navlink:focus .dropdown-caret,\n .HeaderNavlink:hover .dropdown-caret, .HeaderNavlink:focus .dropdown-caret {\n border-top-color: rgb(79, 140, 201) !important;\n }\n .table-list .table-list-item.unread .table-list-cell-checkbox,\n .Box-row--unread, .Box-row.unread {\n border-left-color: rgb(79, 140, 201) !important;\n box-shadow: 2px 0 0 rgb(79, 140, 201) inset !important;\n }\n /* notification icon - \"transparent\" border */\n .notification-indicator .mail-status {\n border-color: #181818;\n }\n /* text selection */\n ::selection {\n background-color: rgb(79, 140, 201) !important;\n color: #fff !important;\n }\n ::-moz-selection {\n background-color: rgb(79, 140, 201) !important;\n color: #fff !important;\n }\n .CodeMirror-selected {\n background: rgba(255, 255, 255, .12) !important;\n }\n .CodeMirror ::selection {\n background: rgba(255, 255, 255, .12) !important;\n }\n .CodeMirror ::-moz-selection {\n background: rgba(255, 255, 255, .12) !important;\n }\n /* placeholder */\n ::-webkit-input-placeholder {\n color: #666 !important;\n opacity: 1 !important;\n }\n ::-moz-placeholder {\n color: #666 !important;\n opacity: 1 !important;\n }\n ::placeholder {\n color: #666 !important;\n opacity: 1 !important;\n }\n .select-menu-text-filter input::-webkit-input-placeholder {\n color: #555 !important;\n }\n .select-menu-text-filter input::-moz-placeholder {\n color: #555 !important;\n }\n .select-menu-text-filter input::placeholder {\n color: #555 !important;\n }\n ::-webkit-calendar-picker-indicator {\n background-color: #181818;\n color: #c9c9c9;\n }\n ::-webkit-calendar-picker-indicator:hover {\n color: #666;\n }\n /* Remove dotted borders on already otherwise higlighted elements (Firefox) */\n .dropdown-item:focus, .details-dialog:focus {\n outline: none;\n }\n /* commit tease */\n .commit-tease, .commit-tease-sha, .commit-tease .commit-author {\n color: #bebebe !important;\n }\n /* HACK: Match font-size to rest of the box */\n .commit-tease > .f6 {\n font-size: 13px !important;\n }\n /* people panel org page issue #1041 */\n .auto-search-group input[type=\"text\"][aria-label] {\n background: #181818;\n }\n /* focus hightlight */\n a:focus, button:focus, [tabindex] {\n outline-color: rgb(79, 140, 201) !important;\n }\n input.focus[type=\"text\"], #adv_code_search .focus.search-page-label,\n .focused .drag-and-drop, #adv_code_search .search-page-label:focus,\n #q:focus ~ button, input.color-editor-input:focus, #ghd-settings select:focus,\n #ghd-settings input:focus, .intgrs-lstng-item:hover,\n .ajax-pagination-btn:focus, input[type=\"checkbox\"]:focus,\n div.search-form input:focus, #search > input[name=\"q\"]:focus {\n border-color: rgb(79, 140, 201) !important;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px rgb(79, 140, 201) !important;\n outline-color: rgb(79, 140, 201) !important;\n }\n /* add border to site search field */\n .radio-group input[type=radio] {\n position: relative !important;\n }\n .dragover textarea, .dragover .drag-and-drop {\n box-shadow: 0 0 1px 1px rgb(79, 140, 201) !important;\n }\n /* below style is workaround for Firefox. */\n /* see: https://bugzilla.mozilla.org/show_bug.cgi?id=1394491 */\n optgroup::before {\n color: #888 !important;\n background-color: #181818 !important;\n }\n optgroup {\n background-color: #191919 !important;\n }\n /* custom checkboxes and radios */\n input[type=\"checkbox\"], input[type=\"checkbox\"]:focus, input[type=\"radio\"],\n input[type=\"radio\"]:focus, input[type=\"checkbox\"]:hover:active,\n input[type=\"radio\"]:hover:active, input[type=\"checkbox\"]:disabled,\n input[type=\"checkbox\"]:hover:disabled,\n input[type=\"checkbox\"]:hover:active:disabled {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n background-color: #181818;\n border: 1px solid #484848;\n color: #eee;\n height: 14px;\n width: 14px;\n }\n input[type=\"radio\"] {\n border-radius: 100% !important;\n }\n input[type=\"checkbox\"]:disabled, input[type=\"checkbox\"]:hover:disabled,\n input[type=\"checkbox\"]:hover:active:disabled, input[type=\"radio\"]:disabled {\n background-color: #282828 !important;\n color: #555 !important;\n }\n input[type=\"checkbox\"]:checked {\n background: url('data:image/svg+xml;utf8,') !important;\n background-size: cover !important;\n }\n input[type=\"checkbox\"]:checked:disabled {\n background: url('data:image/svg+xml;utf8,') !important;\n }\n input[type=\"checkbox\"]:indeterminate {\n background: url('data:image/svg+xml;utf8,') !important;\n background-size: cover !important;\n }\n input[type=\"checkbox\"]:indeterminate:disabled {\n background: url('data:image/svg+xml;utf8,') !important;\n }\n input[type=\"radio\"]:checked {\n background: url('data:image/svg+xml;utf8,') !important;\n background-size: cover !important;\n }\n input[type=\"radio\"]:checked:disabled {\n background: url('data:image/svg+xml;utf8,') !important;\n }\n pre, .highlight, .diff-table, .tab-size {\n tab-size: 2 !important;\n -moz-tab-size: 2 !important;\n }\n /* User time line firsts */\n img[src$=\"profile-joined-github.png\"] {\n padding-bottom: 20px !important;\n }\n table.pricing-table td:first-child {\n text-indent: 9px;\n }\n .comment-reactions button.btn-link.user-has-reacted {\n background-color: rgba(79, 140, 201, .2) !important;\n }\n /* HACK: Label colors */\n [class*=\"IssueLabel\"][style*=\" color: #f\"], .IssueLabel a[style*=\"color: #f\"],\n .issue-card-label[style*=\" color: #f\"] {\n color: #e8e8e8 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #e\"], .IssueLabel a[style*=\"color: #e\"],\n .issue-card-label[style*=\" color: #e\"] {\n color: #e8e8e8 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #d\"], .IssueLabel a[style*=\"color: #d\"],\n .issue-card-label[style*=\" color: #d\"] {\n color: #e8e8e8 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #c\"], .IssueLabel a[style*=\"color: #c\"],\n .issue-card-label[style*=\" color: #c\"] {\n color: #e8e8e8 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #3\"], .IssueLabel a[style*=\"color: 3\"],\n .issue-card-label[style*=\" color: #3\"] {\n color: #181818 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #2\"], .IssueLabel a[style*=\"color: #2\"],\n .issue-card-label[style*=\" color: #2\"] {\n color: #181818 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #1\"], .IssueLabel a[style*=\"color: #1\"],\n .issue-card-label[style*=\" color: #1\"] {\n color: #181818 !important;\n }\n [class*=\"IssueLabel\"][style*=\" color: #0\"], .IssueLabel a[style*=\"color: #0\"],\n .issue-card-label[style*=\" color: #0\"] {\n color: #181818 !important;\n }\n /* Tooltip on contribution calendar */\n .svg-tip {\n color: #949494;\n }\n .svg-tip strong {\n color: #dcdcdc;\n }\n .project-card .highlight pre {\n padding: 1em;\n overflow: auto;\n white-space: pre;\n word-wrap: initial;\n }\n .project-card code {\n font-size: 85%;\n padding: .2em .4em;\n }\n .markdown-body pre code, .markdown-body pre tt {\n padding: .2em 0 !important;\n border: none !important;\n }\n .markdown-body code::before, .markdown-body code::after,\n .markdown-body tt::before, .markdown-body tt::after,\n .markdown-body pre code::before, .markdown-body pre code::after,\n .markdown-body pre tt::before, .markdown-body pre tt::after {\n display: none !important;\n }\n .intgrs-lstng-item-description::after {\n background-image: linear-gradient(to right, rgba(24, 24, 24, 0), #181818 80%) !important;\n }\n .marketplace-product-callout-bg {\n background-image: linear-gradient(to right, rgba(24, 24, 24, 0), #181818) !important;\n }\n div[style*=\"background: linear-gradient(to bottom, rgba(246,248,250,0.5) 0%,rgba(246,248,250,1) 100%);\"] {\n background: linear-gradient(to bottom, rgba(32, 32, 32, .5) 0%, #202020 100%) !important;\n }\n .Box-body {\n border-radius: inherit !important;\n }\n .branch-infobar, .notifications .unread {\n font-weight: normal !important;\n }\n .profile-timeline-month-heading {\n padding: 2px 5px !important;\n }\n input.tree-finder-input, input.tree-finder-input:focus {\n background: transparent !important;\n border: none !important;\n box-shadow: none !important;\n }\n .dropdown-menu, .word-upload-callout, .select-menu-modal {\n box-shadow: 0 3px 12px rgba(0, 0, 0, .4);\n }\n .exploregrid-item {\n border-color: rgba(255, 255, 255, .075) !important;\n box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 5px 10px rgba(0, 0, 0, .05) !important;\n }\n .exploregrid-item:hover {\n border-color: rgba(255, 255, 255, .15) !important;\n box-shadow: 0 1px 3px rgba(0, 0, 0, .15), 0 8px 15px rgba(0, 0, 0, .3) !important;\n }\n .box-shadow-large, html[class*=\"ghh-\"] .tooltipster-box {\n box-shadow: 0 1px 15px #000 !important;\n }\n img[src*=\"images/modules/checks\"].box-shadow-large {\n box-shadow: 0 1px 15px #fff !important;\n }\n /* add rounded borders on bottom */\n body[data-render-url], .render-viewer, .comment-content,\n .gist .gist-file .gist-meta, .more-repos, .comment table {\n border-radius: 0 0 3px 3px !important;\n }\n .dashboard-tabs a, .search-filters {\n border-radius: 0 !important;\n }\n /* repo labels, private repo lists */\n .repo-label span, .private .repo-list-item, .hook-delivery-guid {\n background: #222 !important;\n color: #777 !important;\n }\n .private .mini-repo-list-item .repo-icon {\n color: #777 !important;\n }\n .private .mini-repo-list-item {\n background: #221 !important;\n }\n .section-nav .active a, .js-current .standalone a, .sidebar-module .disable>a {\n border-radius: 0 !important;\n border-left: 2px solid #eee !important;\n }\n .dropdown-arrow {\n border-top-color: #eee !important;\n transition: none !important;\n }\n #com #header .top-nav .dropdown-caret {\n border-top-color: #ccc !important;\n }\n .js-menu-target:hover .dropdown-arrow {\n border-top-color: rgb(79, 140, 201) !important;\n }\n /* Add border-top to PR checks results blank slate */\n aside.border-top + section.bg-gray-dark:not([class*=\"js-\"]) {\n border-top: 1px solid #343434;\n }\n /* Make it more apparent that
is clickable */\n .markdown-body details summary:not([aria-haspopup]):hover {\n background: #282828;\n box-shadow: 0 0 0 2px #282828;\n cursor: pointer;\n }\n /* GitHub Bug: Center discussion close icon vertically */\n .discussion-item-closed .octicon {\n position: relative !important;\n top: -1px;\n }\n /* GitHub Bug: Center counters vertically on the line */\n .boxed-group .counter, .reponav-item .counter, .boxed-group .Counter,\n .reponav-item .Counter {\n position: relative !important;\n top: -1px !important;\n }\n /* GitHub Bug: Fix image swipe handle misalignment */\n .swipe .swipe-frame .swipe-bar .top-handle,\n .swipe .swipe-frame .swipe-bar .bottom-handle {\n left: -6px !important;\n }\n /* GitHub Bug: Center color preview in inline code tags */\n .markdown-body code .v-align-middle {\n position: relative;\n top: -1px;\n }\n /* GitHub Bug: Stop commit message field from resizing horizontally */\n #commit-description-textarea {\n resize: vertical !important;\n }\n /* GitHub Bug: Fix cut-off 'g' letters in box headers like on https://github.com/notifications */\n .boxed-group .heading, .boxed-group > h3 {\n padding: 7px 10px 8px;\n line-height: inherit;\n }\n /* GitHub Bug: Fix cut-off 'g' letters on user page timeline repo names */\n .profile-timeline .lh-condensed {\n line-height: 1.35rem !important;\n }\n /* GitHub Bug: Fix cut-off 'g' letters on action workflow list */\n [id^=\"check_suite\"] .lh-condensed {\n line-height: 1.35rem !important;\n }\n /* GitHub Bug: fix disabled dropdwn entries bg hover see https://git.io/Jfjul */\n .btn-link:disabled:hover {\n background: none;\n }\n .topic-tag {\n box-shadow: inset 0 0 0 1px #246 !important;\n }\n .topic-tag.topic-tag-outline {\n box-shadow: inset 0 0 0 1px #6d7c9c !important;\n }\n /* user page sticky header */\n main > div.position-sticky.d-md-block.width-full {\n position: relative;\n }\n main > div.position-sticky.d-md-block.width-full:before {\n content: \"\";\n position: absolute;\n left: 0;\n right: 0;\n top: -24px;\n height: 24px;\n background: #181818;\n }\n /* Add bottom border on subnav - https://github.com/topics */\n .site-subnav {\n box-shadow: 0 1px 0 #343434 !important;\n }\n @media screen and (min-width: 1024px) {\n .site-subnav .subnav-primary.selected, .site-subnav .subnav-primary:hover {\n border-bottom-color: #eee !important;\n }\n }\n @media screen and (max-width: 768px) {\n body .p-responsive .subnav-btn {\n background: transparent !important;\n }\n body .p-responsive .subnav-link[href=\"https://enterprise.github.com/contact\"] {\n border-bottom-color: transparent !important;\n color: #8e8e8e !important;\n }\n body .p-responsive .subnav-link[href=\"https://enterprise.github.com/contact\"]:hover {\n border-bottom-color: transparent !important;\n color: #bebebe !important;\n }\n }\n /* invisible border */\n @media screen and (max-width: 768px) {\n body.page-responsive .site-subnav .subnav-primary.selected,\n body.page-responsive .site-subnav .subnav-primary:hover {\n border-bottom-color: transparent !important;\n color: #bebebe !important;\n }\n }\n .gisttabs a:not(.selected), .gisttabs a:not(.selected):hover,\n .timeline-comment-wrapper, .avatar-stack .avatar, .tabs > a,\n .header .divider-vertical, .about-menu-link {\n border-color: transparent !important;\n }\n /* darken border */\n .wiki-wrapper .wiki-empty-box:hover, .render-shell .slider .slider-track,\n .render-shell .slider-bar, .about-menu-link:hover, .about-menu-link.selected,\n .pricing-table {\n border-color: #777 !important;\n }\n /* brighten border */\n .filter-item.selected .Label--outline-white {\n border-color: #fff !important;\n }\n .filter-tab.selected {\n border: 1px solid #444 !important;\n border-bottom: 1px solid #343434 !important;\n }\n .follow-list .follow-list-item {\n border-bottom: 1px solid #343434 !important;\n }\n .simple-conversation-list > li, .site-footer, .blame .section-first td,\n .wiki-list .wiki-list-item + .wiki-list-item, .member-badge + .member-badge {\n border-top: 1px solid #343434 !important;\n }\n /* https://github.com/mobile/ */\n .mobile-gradient-bg {\n display: none;\n }\n svg.mobile-hero {\n filter: invert(100%) hue-rotate(180deg);\n }\n /* discussion timeline tweaks */\n .closed-banner {\n display: none !important;\n }\n /* background image on https://github.com/stylishThemes/github-dark/actions/new */\n .repo-actions-hero {\n filter: invert(1) hue-rotate(180deg);\n mix-blend-mode: exclusion;\n }\n .discussion-timeline-actions {\n border-top: 2px solid #383838 !important;\n background: none !important;\n }\n .discussion-timeline::before {\n margin-top: 2px !important;\n background: #383838 !important;\n height: calc(100% - 259px) !important;\n }\n .profile-timeline.discussion-timeline::before {\n height: 100% !important;\n }\n .listings div.listing {\n border-left: 2px solid #333 !important;\n border-right: 2px solid #333 !important;\n }\n #org-members .member-listing {\n border-left: 1px solid #333 !important;\n border-right: 1px solid #333 !important;\n }\n .branch-action-body::before, .MarketplaceSideNav, .plans-card-text:first-child {\n border-right-color: #484848 !important;\n }\n .merge-branch-form .commit-form::after,\n .repository-content .commit-form::after {\n border-right-color: #202020 !important;\n }\n .Popover-message--top-left::after {\n border-bottom-color: #181818 !important;\n }\n /* below style is needed because of order problems in generator */\n .pull-request-review-body-wrapper .timeline-comment-group .timeline-comment::before,\n .pull-request-review-body-wrapper .timeline-comment-group .timeline-comment::after {\n border-right-color: transparent !important;\n }\n .word-upload-callout::before, .word-upload-callout::after,\n .select-menu-modal-arrow::after, .Popover-message--top-left::before {\n border-bottom-color: #343434 !important;\n }\n .repo-filterer .repo-filter:hover, .review-summary::before {\n border-bottom-color: #484848 !important;\n }\n .issue-head {\n border-bottom-width: 1px !important;\n }\n .context-button:hover::after, .switcher > span::before {\n border-color: #eee transparent transparent !important;\n }\n /* repo tab tweaks */\n .reponav-item {\n border-top-width: 1px !important;\n }\n .reponav-item.selected {\n border-color: #343434;\n }\n .pagehead-tabs-item {\n border-top-width: 1px !important;\n }\n .pagehead-tabs-item.selected, .reponav-item.selected, .tabnav-tab.selected {\n background: #202020;\n border-bottom-color: #202020 !important;\n }\n .timeline-comment .tabnav-tab.selected,\n .comment-form-head .tabnav-tab.selected {\n background: #181818 !important;\n border-bottom-color: #181818 !important;\n }\n .branches .branch-summary + .branch-summary {\n border-top-color: #333 !important;\n }\n /* code */\n .linkable-line-number {\n border-right: 1px solid #484848 !important;\n }\n .gist .gist-file .gist-data .line-number {\n line-height: 19px !important;\n }\n /* File listings - fix date truncation */\n table.files td.age .css-truncate {\n max-width: none !important;\n }\n /* https://github.com/StylishThemes/GitHub-Dark/issues/620 */\n .timeline-comment-header .css-truncate-target {\n max-width: 250px !important;\n }\n /* tooltip - tooltipped */\n .octotip {\n background-color: #003 !important;\n border-color: #006 !important;\n }\n .tooltipped::after {\n background: #343434 !important;\n }\n .tooltipped-n::before, .tooltipped-ne::before, .tooltipped-nw::before {\n border-top-color: #343434 !important;\n }\n .tooltipped-s::before, .tooltipped-se::before, .tooltipped-sw::before {\n border-bottom-color: #343434 !important;\n }\n .tooltipped-e::before {\n border-right-color: #343434 !important;\n }\n .tooltipped-w::before {\n border-left-color: #343434 !important;\n }\n .commitinfo, .gc .diff-line-code, .gc .diff-line-num, .gc .diff-line-pre,\n .featured-commit-activity-graph, .featured-repo-logo, .outline-box,\n .gobutton>.sha .octicon, .markdown-body .csv-data .blob-num, #feedBody,\n .search-result-header, .accessibility-aid:focus, .file-data, .signup-plans th,\n .signup-plans td, .signup-plans-orgs th, .signup-plans-orgs td, .commits td,\n .featured-callout, .sidebar-module ul ul li, .native-download,\n .setup-info-module, div#common-issues ul, #gist-form .name, .render-notice,\n .label-edit.edit-color-label-form .color-editor .color-editor-input,\n .date_selector td, .new-label, .range-editor .range, .range-editor .flag,\n .auth-form-body, div.border-wrap, .profile-header, .highlight .gc,\n .uploaded-files.is-populated, .range-editor,\n #gollum-editor-help-parent li a.selected,\n #gollum-editor-help-list li a.selected, #gollum-editor-help-parent li a:hover,\n #gollum-editor-help-list li a:hover, .github-access-banner, .protip-callout,\n ul.comparison-list, .wiki-custom-sidebar, .invitation-container,\n .orgs-help-shelf, .orgs-help-item-octicon, .thread-subscription-status,\n .branch-action-body .merge-branch-form, .pull-info, .branch-link,\n .discussion-item-merged.open .discussion-item-details, .word-upload-callout,\n .session-authentication .create-account-callout, .intgrs-lstng-item,\n .intgr-install-callout, .is-failed .repo-file-upload-errors,\n .is-bad-file .repo-file-upload-errors, .is-too-big .repo-file-upload-errors,\n .is-too-many .repo-file-upload-errors, .is-empty .repo-file-upload-errors,\n .site-header, .site-subheader, .pricing-card, .explore-signup-entice,\n .price-box, .cvv-hint-tooltip, .plan-choice, .review-thread, .card, .tutorial,\n .overview .card > div[style*=\"background\"], .Box-footer, .ScreenshotCarousel,\n .card-filter-autocomplete-dropdown .autocomplete-keyword-only, .inbox-zero,\n .is-stuck .diffbar, .project-pane.bg-white {\n background: #181818 !important;\n border-color: #343434 !important;\n }\n .review-comment[aria-selected=true],\n .timeline-comment[aria-selected=true] .review-summary {\n background-color: #181818 !important;\n box-shadow: 0 0 0 .2em rgba(79, 140, 201, .3) !important;\n }\n .timeline-comment-group[aria-selected=true] .timeline-comment::before {\n border-right-color: rgb(79, 140, 201) !important;\n left: -17px !important;\n filter: none !important;\n }\n .timeline-comment:target .review-summary::after {\n top: -16px !important;\n filter: none !important;\n }\n .timeline-comment[aria-selected=true] .review-summary::before {\n border-bottom-color: rgba(79, 140, 201, .3) !important;\n top: -19.75px !important;\n filter: none !important;\n }\n #readme .plain, .readme .markdown-body, .readme .plain, .pull-request-composer,\n .octofication .broadcast-icon-mask, .file .image, .coupons .coupon-form-body,\n .manage-repo-access-group, .saved-reply-form, .orghead .edit-org:hover,\n .simple-box, .btn-link.timeline-progressive-disclosure-button,\n .border.branch-action-item {\n background: #181818 !important;\n border-color: #484848 !important;\n }\n /* search - language sidebar - https://github.com/StylishThemes/GitHub-Dark/search?q=markdown */\n div.container-lg > div.float-left.px-md-2 > .border.rounded-1.d-none.d-md-block {\n background: #181818;\n border-color: #484848 !important;\n }\n .header, .headers, #readme .markdown-body, .box-body, .steps li,\n .explore-section:nth-child(2n), .markdown-format table,\n .chromed-list-browser .none p, .chromed-list-browser .error p,\n .list-browser-footer, .commandbar .choice:hover, #gollum-editor-help,\n .search-filter:hover, #wiki-history table tr:nth-child(2n) td,\n .display tr:hover, .octofication .message, .commandbar .loading:hover,\n .comment-content, .commandbar .message, .boxed-group-inner,\n #adv_code_search .search-page-label, #contributors-master svg.viz,\n .diff-table .line-comments, .menu, svg.spark, svg.capped-card-content,\n body.api .content tbody, .markdown-format img:not(.emoji), .mini-repo-list,\n #common-issues, .setup-wrapper .oauth-permissions-details, .milestone-list,\n .setup-form .setup-plans, .revision .gu, .tree-browser td,\n .tree-browser .alt td, .branches .branch-summary,\n .branches .no-results-message, .simple-box-footer, .commit-group,\n .content table tr, #search-results, table.files, .mergeable, .org-module,\n .org-add-footer, .branch-infobar, table.capped-list tr:nth-child(2n),\n .team-org-group, #gollum-editor-help-wrapper, .integrations-quality,\n .showcase-featured .mo-info .featured-grid-outer, .render-shell, .list,\n .latest-commit .commit-author, .bubble, .tabs > a.selected,\n .oauth-org-access-details .boxed-group-list > li.on, #fullscreen_overlay,\n .branch-action-body, .inline-comment-form, .file-history-tease .participation,\n .gist-quicksearch-result-header, .label-generic, .migrate-org-roles,\n .manage-repo-access-icon, .table-list:not(.team-member-list),\n .repo-file-upload-progress, .gcr-ext-editor-dialog, .shade-gray,\n .exploregrid-item, .signed-commit-badge-small, .facebox-popup,\n .explore-signup-entice-wrapper, .billing-addon-items tr.total-row,\n .billing-addon-items tr.dark-row, li.pinned-repo-item,\n .js-contribution-graph h2 + div:last-child, .project-triage-pane,\n [data-filterable-for=\"projects-filter\"] .container-lg,\n .user-profile-nav.is-stuck, .review-summary-form-wrapper, #projects-results,\n .listgroup, .protected-branch-orgs-and-repo-admins, .listgroup-overflow,\n .project-column, .js-notice > .border:not(.bg-blue-light),\n .news .issues_labeled .border, table.pricing-table, .two-factor-steps,\n article.border.rounded-1, .border-right.border-bottom.border-left,\n .graph-before-activity-overview, .access-form-wrapper, .timeline-comment-group,\n .summarylink-btn, .pinned-item-list-item, .avatar-before-user-status,\n .profile-timeline-card, .pinned-issue-item, #wiki-footer .border-dashed,\n #wiki-rightbar .border-dashed, .list-group-item.standalone, .commit-form,\n .sidebar-progress-bar > .d-flex,\n .pagination-loader-container .discussion-item-header .border,\n .pr-toolbar.is-stuck, .hx_badge-search-container, .file, #search-member,\n .js-notice.border {\n background: #181818 !important;\n }\n .Box-row--hover-blue, .notifications-list .list-style-none.bg-gray {\n background: #181818;\n }\n .bg-white, .radio-label, [style*=\"background-color: #2f363d\"],\n .project-full-screen .project-header {\n background-color: #181818 !important;\n }\n /* https://github.com/StylishThemes/GitHub-Dark/issues/811 */\n .application-main > main .container-sm > .pt-4.bg-white.text-center {\n background: none !important;\n }\n /* Labels/Milestone links https://github.com/StylishThemes/Github-Dark/issues */\n .subnav-links {\n background: #181818;\n }\n /* bottom panel on actions */\n .flex-auto > .bg-gray-light {\n background: none !important;\n }\n /* blankslates */\n /* bordered: https://github.com/StylishThemes/GitHub-Dark/actions/runs/42585904 */\n /* bordered: https://github.com/StylishThemes/GitHub-Dark/network/alerts */\n /* unbordered: https://github.com/StylishThemes/GitHub-Dark/pull/1069/files/d0801046a22eaf88d9081de9c7d415825cb1f9fa..291b428577d344d54039de9aa0d8ed3a8fcfaebc */\n .blankslate {\n background: none !important;\n }\n .blankslate.border, .blankslate.border-gray-light,\n .js-updatable-content > .border.rounded-1 {\n background: #181818 !important;\n }\n button.bg-white.subnav-link, main [style=\"background-color: #fcfdfd;\"],\n .repository-content > .bg-white:not(.card-filter-autocomplete-dropdown) {\n background-color: transparent !important;\n }\n .sidebar-module, div.search-form input, #search > input[name=\"q\"],\n .ais-SearchBox-input {\n background-color: #181818;\n border-color: #343434;\n }\n .blob-num-context, #user-content-toc td, .markdown-body table tr:nth-child(2n) {\n background: #141414 !important;\n }\n .blame .blob-num, .blame-blob-num, .collection-card, .team-grid .team,\n .code-list .divider .blob-num, .code-list .divider .blob-code,\n .expandable-line-num .diff-expander:hover, .build-status-item, .more-branches,\n .plan-choice.open, .uploaded-files>li.delete, .more-repos,\n .billing-per-seat-callout::after, .code-list-item .blob-num,\n .blob-num.js-line-number, .bg-gray-light.disabled,\n .MarketplaceBackground-buffer, .team-left-column.bg-white, .overall-summary,\n .markdown-body table tr {\n background: #1c1c1c !important;\n }\n .action-card::after, .action-card::before {\n background-color: #202020 !important;\n box-shadow: 0 0 0 1px #555 !important;\n }\n /* Navigation focus */\n .list-browser-item.navigation-focus, .js-details-container.navigation-focus,\n .js-details-container.navigation-focus:nth-child(2n), .team-grid .team-members,\n .tree-browser tr.navigation-focus td,\n .issues-listing .table-list-issues .selectable:hover,\n .issues-listing .table-list-issues .navigation-focus, .setup-plans tr.selected,\n .notifications .navigation-focus, .sidebar-module ul ul li a:hover,\n .no-results, #gollum-editor-help-list, .owner-select-target,\n .divider .blob-code div.highlight,\n .oauth-org-access-details .boxed-group-list > li.on:hover, pre div:hover,\n .summary-stats li a:hover, .pinned-repos-selection-list-item.selected,\n .Box-body-row--highlight.navigation-focus, .Box-body-row--highlight:hover,\n .js-current .standalone a, .Box-row--focus-gray.navigation-focus,\n .team-listing .is-open.root-team, .Box-row--hover-gray:hover,\n .label-select-menu .select-menu-item.navigation-focus,\n .label-select-menu .select-menu-item:focus,\n .label-select-menu .select-menu-item:hover {\n background: #242424 !important;\n }\n #main, .capped-box, .unread_count, #browser table th,\n .markdown-format table th, table.upgrades tr.current td, .definitions,\n .discussion-topic-header, .timeline-commits-minimal .commit-icon .octicon,\n .timeline-commits .commit-icon .octicon, .upload-progress,\n .search-results-listing em, .discussion-bubble-inner, #wiki-history table td,\n .gist .gist-file .gist-data, .logo-box, .markdown-example .rendered,\n .team-grid .team-members, .diagram-icon:not(.active), table.capped-list th,\n .filter-bar, .audit-search-clear, .country-info, .file-diff-split .empty-cell,\n .composer-infobar, .completeness-indicator-blank, .leaflet-control-zoom,\n .manage-repo-access-not-active, .header-search-scope, .featurette.py-5,\n .payment-history .refunded, .payment-history .failed,\n .profile-timeline-month-heading.bg-white, .project-card,\n .BlobToolbar .btn-octicon, .MarketplaceHeader, .table-list-header,\n .boxed-group > h3, .boxed-group .heading, .file-header, .capped-card h3,\n #gist-form .file .meta, .file .meta, .file-box .meta, .menu-heading,\n .audit-results-header, .branches .branch-group-heading, .auth-form-header,\n .migration-jumbotron, .migration-sub-header, .manage-repo-access-title,\n .signed-commit-header,\n .reorderable-task-lists .markdown-body .task-list-item.hovered,\n .next-charge-box, .credit-card, .review-thread-reply,\n a.card.bg-gray-light:hover, .add-member-team-list .team-row-header,\n .listgroup-header, .merge-status-item, .Header .header-search-wrapper,\n .Header .header-search-wrapper input, .user-key-email-unverified,\n .action-card-header::before, .commits-listing .octicon-git-commit,\n .new-discussion-timeline .composer .comment-form-head.tabnav,\n .advisory-form .bg-gray-light {\n background: #202020 !important;\n }\n #browser, .repos, .options-group, .pagehead ul.tabs li a.selected, .subnav-bar,\n .options-content, span.gravatar, .browsered, .browsered .inner,\n .subnav-bar > ul > li > ul, .comment-form ul.tabs a.selected,\n .issue.open.read .summary, .unselected_month, .commits th, #MathJax_Message,\n .chzn-single, .user-commits, .user-commits th, .metabox,\n .ranked-repositories > li, .pagehead ul.actions, #issues_search .comment,\n #header-wrapper, ul.feature-tabs li.highlight, .filterbar .filters li,\n .starting-comment .body, .list-tip, .commit_oneline, .filterbox,\n .conversation-list-heading .inner, .autocomplete-results, .new-comments .body,\n .display tr, .render-container, .boxed-group-table th, .features-highlight,\n .outline-box-highlighted, .nav-bar-tabs, #watchers li, .browser .listing,\n .item, .context-pane, .context-loader, .sidebar .module, .tip-body, #assignee,\n .commit_oneline td, .notifications th, .content table th, .repo-collection>ul,\n #graph_data .tab.selected, .full-width-divider, .markdown-body .csv-data th,\n h3.conversation-list-heading strong, .file-commit-form .commit-form,\n .facebox-footer, .gcr-ext-editor-close, .gcr-ext-editor-header,\n .logos-download-link,\n .ajax-pagination-form:not(.progressive-timeline-loader-container):not(.pagination-loader-container) .ajax-pagination-btn:hover,\n .ajax-pagination-form:not(.progressive-timeline-loader-container):not(.pagination-loader-container) .ajax-pagination-btn:focus,\n .ajax-pagination-form:not(.progressive-timeline-loader-container):not(.pagination-loader-container) .ajax-pagination-btn:active {\n background: #222 !important;\n border-color: #343434 !important;\n }\n .search-result-group, .gist-quicksearch-result-group {\n background: #282828 !important;\n border-color: rgba(68, 68, 68, .5) !important;\n color: #555 !important;\n }\n .blame-commit-next .blame-commit-info, .blame-commit-next + .blame-line,\n .ScreenshotCarousel-nav {\n box-shadow: inset 0 1px 0 #343434 !important;\n }\n /* semi-transparent */\n .context-loader.large-format-loader, #graphs .loader, .org-header,\n .render-shell .slider, .illflow-item:not(.selected):hover,\n .leaflet-control-attribution, .orghead, .dropdown-toggle:hover,\n .dropdown-toggle.selected {\n background: rgba(29, 29, 29, .4) !important;\n }\n /* repo/page header */\n .page-responsive .repohead, .page-responsive .pagehead,\n .repohead.bg-gray-light, .pagehead.bg-gray-light {\n background: rgba(29, 29, 29, .4) !important;\n }\n .explore-signup-entice-inner {\n background: rgba(29, 29, 29, .9) !important;\n }\n .starred-repo.navigation-focus, .marketing-section-stripe,\n .blob-expanded .blob-num, .blob-expanded .blob-code, .migration-section-grey {\n background: rgba(50, 50, 50, .5) !important;\n }\n .details-expanded-dark[open] > summary::before,\n .details-overlay-dark[open] > summary::before,\n body.status .details-overlay-dark[open] > summary::before,\n body[class=\"page-responsive\"] .details-overlay-dark[open] > summary::before,\n .SelectMenu::before {\n background: rgba(0, 0, 0, .5) !important;\n }\n .svg-tip {\n background: rgba(12, 12, 12, .8) !important;\n }\n .svg-tip::after {\n border-top-color: rgba(12, 12, 12, .9) !important;\n }\n .shelf {\n background-color: rgba(0, 0, 0, .2) !important;\n background-image: none !important;\n }\n /* page overlay */\n .select-menu-loading-overlay, .slow-loading-overlay,\n .branches .loading-overlay {\n background-color: rgba(24, 24, 24, .6) !important;\n }\n /* #333 */\n .pagehead ul.actions a.feed, .explore h2 .feed, #code_search_instructions h2,\n td.inst, .metabox-loader, .pull-flag, .browser-content,\n .filterbar ul.filters li, .pagehead ul.tabs li.contextswitch,\n #wiki-header > div, .pagehead ul.tabs li.contextswitch:hover, .bigbutton a,\n #new_message, #issues_next ul.sorts li, ul.sorts li.asc, ul.sorts li.desc,\n .listings-layout .columns.main .content, .fieldswrap, .filterbar li.selected,\n #issues_next ul.filters li, table.instruction tr:nth-child(2n),\n .email-hidden-toggle a, #commit-activity-master-head, .action-indicator,\n .pull-head .diffstat, ul.suggestions, .discusion-topic-infobar,\n .commits-listing::before, .jstree-wholerow-hovered, .bubble-contents,\n .ellipsis-button, .filter-list li span.bar, .selectable_day.today,\n .billing-plans .current, .commits-listing::before, .billing-section .usage-bar,\n .file-info-divider, .pagehead ul.tabs li a:hover, .repos .bottom-bar,\n #languages .popular, .tip-box h4, table.upgrades td, .commit-preview .message,\n .pagehead ul.tabs li.contextswitch, #browser tr th, .status-box h4,\n .line_numbers, #files span.icon, #issues_list .actions, #repos .public,\n .inset-callout, #repo-message, .repo-private-label, .label-admin,\n .credit-card.normal .signature, .credit-card.amex .gladiator,\n .progress-bar:not(.anim-grow-x), .header-search-scope:hover,\n .CommunityTemplate-highlight--focus, .related-issue-item.navigation-focus {\n background: #333 !important;\n }\n .discussion-item-locked .discussion-item-icon,\n .discussion-item-unlocked .discussion-item-icon,\n .discussion-item-head_ref_deleted .discussion-item-icon {\n background-color: #444;\n }\n /* remove background */\n body > pre, .textographic a.repo, .stars-browser .filter-bar,\n .highlight .file-diff-line:hover pre, .gravatar, .topsearch span.search-input,\n p.meta, .sidebar .milestone, #facebox, .profilecols .filter-bar, .btn-group,\n div.content-header .search-form, .file-code, .org-header .edit-org:hover,\n #wrapper, .gravatar img, .commit-comments-header-sha, pre.headers code,\n .audit-search-form, .columns.equacols.bordered, .gist-item ul.meta>li>a:hover,\n .commits li img, a.minibutton code, .milestone, .keyboard-mappings th,\n .api #header-wrapper .nav, .marketing-nav a.selected, #graph_data .tabs,\n .org-nav-item.selected, .edit-team-member:hover, tr.commit,\n .release-timeline .js-details-container,\n .section-heading-title a.js-selected-navigation-item,\n .featured-callout .screenshot, .timeline-commits .commit-meta .status,\n .theme-picker-spinner, .timeline-commits .commit-meta .octicon,\n .file .meta-divider, .avatar-stack.multiple-avatars::before, #feedHandler,\n .discussion-sidebar-item .thread-subscription-status,\n .boxed-group.application-show-group .logo-upload, .diagram-icon-small,\n #readme .highlight, .ace-github, .theme-picker, .avatar-stack .avatar,\n .boxed-group, .prose-diff > .markdown-body ins, .header .divider-vertical,\n .ace-github-base16, .markdown-body pre code, .markdown-body pre tt,\n #readme .plain pre, .uploaded-files, .input_area, #notebook .highlight,\n #notebook .highlight pre, .output_area pre,\n .gist-snippet-meta .gist-count-links>li>a:hover, .delete-owners-button:hover,\n .avatar-child, .session-authentication .header-logged-out,\n .session-authentication .auth-form-header,\n .timeline-progressive-disclosure-items, #com #footer, .shade-gradient,\n #categories .list, .gist-banner, .main-content, .showcase-page-header,\n .showcase-page-pattern::after, .description-inline, .result-group a,\n .border-wrap, a.feed-icon, .session-device,\n .boxed-group-list > li.session-device:hover,\n .merge-status-item .merge-status-icon,\n .js-release-form .comment-form-head.tabnav, .project-columns, .project-header,\n .user-profile-nav, .profile-timeline-year-list.bg-white,\n .discussion-item-review .timeline-comment, .libraries-jumbotron,\n .menu-item.selected, .bg-shade-gradient, .dev-hero,\n .render-container.is-render-ready.is-render-requested:not(.is-render-failed),\n .user-list li em, .CodeMirror-lines, .api table, .dashboard-notice .coupon,\n .release-label, .oauth-org-access-details .oauth-org-item.on,\n .MarketplaceSideNav, .timeline-inline-comments, .AvatarStack-body,\n .team-discussions-container, .Collection ~ div[style*=\"linear-grad\"],\n .application-main > div[style*=\"background\"], .AvatarStack-body .avatar,\n .dropdown-toggle, ul.add-member-team-list.table-list, .gh-header,\n iframe[src*=\"zuora.com\"], .pr-toolbar, .enterprise-prompt,\n .enterprise-prompt *, .diffbar, .footer .bg-gray-light, button.btn-invisible,\n button.btn-invisible:hover, .btn.btn-invisible, .btn.btn-invisible:hover,\n .application-main [style*=\"background: linear-gradient(#ffffff, #fcfcfc)\"],\n section[style=\"background-color: #fafbfc;\"], div[style=\"background:#fafbfc;\"],\n .team-left-column, .render-container.js-actions-page,\n .deployments-timeline-icon, .TimelineItem--condensed .TimelineItem-badge,\n .previewable-comment-form .comment-form-head.tabnav.bg-white,\n .notification-navigation, .check-annotation code pre,\n .merge-status-item > [style*=\"#fff\"], .pagehead, .pagehead nav {\n background: none !important;\n }\n @media (min-width: 1012px) {\n .file-commit-form--full {\n background: none !important;\n }\n }\n body[class=\"page-responsive\"] .repo-list .private {\n background-color: initial;\n }\n .select-menu-item:hover {\n background-color: rgb(79, 140, 201);\n }\n @media (hover: hover) {\n .SelectMenu-item:hover, body:not(.intent-mouse) .SelectMenu-item:focus {\n color: #bebebe;\n background-color: #202020;\n }\n .SelectMenu-item:active {\n color: #c0c0c0;\n background-color: #242424;\n }\n .SelectMenu-item[aria-checked=true]:active,\n .SelectMenu-item[aria-checked=true]:hover,\n body:not(.intent-mouse) .SelectMenu-item[aria-checked=true]:focus {\n color: #e0e0e0;\n }\n .SelectMenu-tab[aria-selected=true]:active,\n .SelectMenu-tab[aria-selected=true]:hover {\n color: #d2d2d2;\n background-color: #181818;\n }\n body:not(.intent-mouse) .SelectMenu-tab:focus {\n background-color: #182030;\n }\n .SelectMenu-tab:not([aria-checked=true]):not([aria-selected=true]):hover {\n color: #d2d2d2;\n background-color: #303030;\n }\n .SelectMenu-tab:not([aria-checked=true]):active {\n color: #d2d2d2;\n background-color: #181818;\n }\n }\n @media (hover: none) {\n .SelectMenu-item:active, .SelectMenu-item:focus {\n background-color: rgb(79, 140, 201);\n color: #fff;\n }\n .SelectMenu-item {\n -webkit-tap-highlight-color: rgb(79, 140, 201);\n }\n }\n .comment-form, #issues .labels, .listings .odd, .feed, #files .description,\n #message .envelope .header .info .title.unread, li.contextswitch ul li.current,\n .watcher-widget, ul.main_nav li.selected a, .add_file, .inset, li.label,\n .filterbar, .divider-vertical, .user-commits td, .starting-comment .infobar,\n #issues_next .infobar, .formbody, .commandbar .display, .none p,\n .display div.choice, ul.fieldpills li, .documentation-results a,\n .plans-pricing-callout, .auto-search-group .search-filters, .editbox,\n .editbox .body, .commentstyle, #issues .display, #issues .display .admin,\n #issues .labels .list li, .issue .summary, .hidden-text-expander a,\n .view-modes, .standard_form, #reply_body, #commit div, #commit td, #commit tr,\n #commit .envelope, .file-minibutton, .context-pane .title,\n .browser .listing:hover, #dashboard .repos, .list-module .list-body,\n .list-module a, .label-permissions, .tree-browser th, .browser .listing.closed,\n .starting-comment, .section-nav a:hover, .chzn-drop, .module .inner,\n .team-repositories-blankslate,\n .discussion-event-status-head_ref_deleted .discussion-item-icon, .pull-head,\n .tabs, #browser td, #issues_next li.selected, .avatarname img, #readme .name,\n #wiki-history .author img, .options-content h3,\n .display div.choice:nth-child(2n+1), #issues-dashboard .actions,\n .list-tip a:hover {\n background-color: #333 !important;\n border-color: #484848 !important;\n }\n /* org page graphs - https://github.com/StylishThemes */\n rect[style*=\"#gradient-\"] {\n fill: rgb(79, 140, 201) !important;\n }\n /* contribution calendar */\n .calendar-graph rect[fill=\"#216e39\"], .calendar-graph rect[fill=\"#9be9a8\"],\n .calendar-graph rect[fill=\"#40c463\"], .calendar-graph rect[fill=\"#30a14e\"],\n .contrib-legend .legend li[style],\n .contribution-activity-listing .progress-bar[style*=\"background-color\"] {\n background-color: rgb(79, 140, 201) !important;\n fill: rgb(79, 140, 201) !important;\n }\n .calendar-graph .days-selected rect.day.active {\n stroke: #ddd !important;\n }\n .calendar-graph rect.day:hover {\n stroke: #fff !important;\n }\n /* contribution progress bars on user page */\n .contribution-activity-listing .progress-bar[style*=\"7bc96f\"],\n .facebox-close:hover {\n opacity: 1 !important;\n }\n .contribution-activity-listing .progress-bar[style*=\"c6e48b\"], .facebox-close {\n opacity: .75 !important;\n }\n .notifications .read .avatar img {\n opacity: .7;\n }\n /* contribution calendar/legend - regular colors */\n .calendar-graph rect[fill=\"#ebedf0\"],\n .contrib-legend .legend li[style*=\"#ebedf0\"],\n .js-activity-overview-graph-container [fill=\"white\"] {\n background-color: #282828 !important;\n fill: #282828 !important;\n }\n .calendar-graph rect[fill=\"#216e39\"],\n .contrib-legend .legend li[style*=\"#216e39\"] {\n opacity: 1 !important;\n }\n .calendar-graph rect[fill=\"#30a14e\"],\n .contrib-legend .legend li[style*=\"#30a14e\"] {\n opacity: .75 !important;\n }\n .calendar-graph rect[fill=\"#40c463\"],\n .contrib-legend .legend li[style*=\"#40c463\"] {\n opacity: .5 !important;\n }\n .calendar-graph rect[fill=\"#9be9a8\"],\n .contrib-legend .legend li[style*=\"#9be9a8\"] {\n opacity: .25 !important;\n }\n /* contribution calendar - halloween colors */\n .calendar-graph rect[fill=\"#FFEE4A\"], .calendar-graph rect[fill=\"#FFC501\"],\n .calendar-graph rect[fill=\"#FE9600\"],\n .contrib-legend .legend li[style*=\"#FFEE4A\"],\n .contrib-legend li[style*=\"#FFC501\"],\n .contrib-legend .legend li[style*=\"#FE9600\"] {\n background-color: #fe9600 !important;\n fill: #fe9600 !important;\n }\n .calendar-graph rect[fill=\"#FFEE4A\"],\n .contrib-legend .legend li[style*=\"#FFEE4A\"] {\n opacity: .2 !important;\n }\n .calendar-graph rect[fill=\"#FFC501\"],\n .contrib-legend .legend li[style*=\"#FFC501\"] {\n opacity: .4 !important;\n }\n .calendar-graph rect[fill=\"#FE9600\"],\n .contrib-legend .legend li[style*=\"#FE9600\"] {\n opacity: .8 !important;\n }\n .calendar-graph rect[fill=\"#03001C\"],\n .contrib-legend .legend li[style*=\"#03001C\"] {\n background-color: #fc3 !important;\n fill: #fc3 !important;\n }\n .contrib-person path {\n fill-opacity: .6;\n }\n .progress-bar.anim-grow-x, .dev-hero, .header-search-key-slash,\n input[src$=\"with-facebook.png\"], #parallax_field, #parallax_illustration,\n figure .callout-permalink-big-image, figure .callout-permalink-stacked-image {\n filter: brightness(75%) !important;\n }\n img#parallax_error_text, div img[alt*=\"404\"] {\n filter: invert(100%) hue-rotate(180deg) brightness(120%) !important;\n }\n img[src*=\"data:image/jpeg;base64,/9j/4AAQSkZJRgA\"] {\n filter: brightness(90%);\n }\n img[src*=\"//render.githubusercontent.com/render/math\"] {\n filter: invert(90%);\n }\n .header-search-key-slash {\n filter: grayscale(100%) contrast(1.5) !important;\n }\n /* Activity Overview on userpage */\n .activity-overview-axis, .activity-overview-point {\n stroke: rgb(79, 140, 201) !important;\n }\n #user-activity-overview .js-highlight-blob {\n stroke: rgb(79, 140, 201) !important;\n fill: rgb(79, 140, 201) !important;\n opacity: .4 !important;\n }\n /* invert (rgb) */\n #header .logo, img[src=\"/images/logo@2x.png\"], .site-logo a,\n .github-jobs-promotion a.jobs-logo strong, iframe[src*=\"polldaddy.com\"],\n .jstree-node:not(.jstree-leaf) > .jstree-icon.jstree-ocl,\n .swipe .swipe-frame .swipe-bar .top-handle,\n .swipe .swipe-frame .swipe-bar .bottom-handle,\n .onion-skin .controls .transparent, .onion-skin .controls .opaque,\n .onion-skin .controls .slider .slider-track,\n .onion-skin .controls .slider .slider-track .dragger, .leaflet-control-zoom a,\n .leaflet-control-attribution.leaflet-compact-attribution::after,\n img[src$=\"favicons.githubusercontent.com/github.com\"],\n img[src$=\"favicons.githubusercontent.com/gist.github.com\"],\n img[src$=\"invertocat.png\"], .ghd-invert, .render-shell img.math,\n #footer .github img, #com span.octicon:not(.octicon-comment-discussion),\n .developer-thanks-image img, img[alt=\"GitHub Support\"] {\n filter: invert(100%) hue-rotate(180deg) !important;\n }\n .code-navigation-banner .code-navigation-banner-illo {\n filter: invert(900%) hue-rotate(180deg) contrast(70%) brightness(110%) !important;\n }\n /* code coverage */\n /* example: https://github.com/go-gitea/gitea/pull/6969 */\n img[data-canonical-src^=\"https://codecov.io\"][alt=\"Impacted file tree graph\"] {\n filter: invert(92%) hue-rotate(180deg) saturate(250%) !important;\n }\n /* marketplace + help + feature img invert */\n img[src*=\"marketplace-illustration-01.svg\"],\n img[src*=\"marketplace-illustration-02.svg\"],\n svg [data-name=\"Layer 2\"] #Layer_5[data-name=\"Layer 5\"],\n .illoTeam svg [data-name=\"Layer 2\"], .illoIndiv #Layer_2[data-name=\"Layer 2\"],\n svg [data-name=\"Layer 2\"] g[data-name=\"octocat header\"],\n svg[viewBox=\"0 0 1461.5 677.84\"][width=\"700\"],\n .feature-preview-dialog svg[fill=\"none\"],\n div[data-url*=\"/notifications/beta\"] img[src*=\"-zero.svg\"],\n div[data-url*=\"/notifications/beta\"] img[src*=\"saved-blank.svg\"] {\n filter: invert(85%) hue-rotate(-180deg) brightness(125%) contrast(85%) !important;\n }\n .action-logo::after {\n filter: invert(100%) hue-rotate(180deg) brightness(350%) !important;\n }\n /* invert network graph; gh-polls (https://github.com/apex/gh-polls) */\n img[alt=\"FOSSA Status\"], img[data-canonical-src*=\"prod/timeseries/\"],\n a[href$=\"vote\"] img[data-canonical-src*=\"/poll/\"], #parallax_error_text:not(p),\n img[data-canonical-src*=\"img.shields.io\"][data-canonical-src*=\"style=social\"],\n img[alt=\"Mona Lisa\"] {\n filter: invert(90%) hue-rotate(180deg) contrast(120%) !important;\n mix-blend-mode: exclusion;\n }\n div#network.network > div > canvas {\n filter: invert(90%) hue-rotate(180deg) contrast(95%);\n }\n .spinner-forking[src*=\"spinners/fork.gif\"] {\n filter: invert(1) hue-rotate(180deg) contrast(110%) brightness(110%);\n mix-blend-mode: screen;\n }\n /* invert problematic emoji */\n /* images */\n [alt=\":soon:\"], [alt=\":on:\"], [alt=\":end:\"], [alt=\":heavy_dollar_sign:\"],\n [alt=\":heavy_multiplication_x:\"], [alt=\":heavy_plus_sign:\"],\n [alt=\":heavy_minus_sign:\"], [alt=\":heavy_division_sign:\"], [alt=\":wavy_dash:\"],\n [alt=\":curly_loop:\"], [alt=\":currency_exchange:\"], [alt=\":top:\"],\n [alt=\":back:\"], [alt=\":zzz:\"], [alt=\":notes:\"], [alt=\":musical_score:\"],\n [alt=\":black_large_square:\"], [alt=\":black_medium_small_square:\"],\n [alt=\":ant:\"], [alt=\":musical_note:\"], [alt=\":loop:\"], [alt=\":feet:\"],\n [alt=\":paw_prints:\"],\n /* unicode */\n /* some emoji don't need to be inverted on Windows */\n /* from https://github.com/Dunedan/mbp-2016-linux on Windows*/\n /* ✔️ */\n [alias=\"soon\"], [alias=\"on\"], [alias=\"end\"], [alias=\"heavy_dollar_sign\"],\n [alias=\"heavy_multiplication_x\"],\n [alias=\"heavy_plus_sign\"], [alias=\"heavy_minus_sign\"],\n [alias=\"heavy_division_sign\"], [alias=\"wavy_dash\"],\n [alias=\"curly_loop\"], [alias=\"currency_exchange\"],\n [alias=\"top\"], [alias=\"back\"], [alias=\"zzz\"], [alias=\"notes\"],\n [alias=\"musical_score\"], [alias=\"black_large_square\"],\n [alias=\"black_medium_small_square\"], [alias=\"ant\"], [alias=\"musical_note\"],\n [alias=\"loop\"], [alias=\"feet\"], [alias=\"paw_prints\"] {\n filter: invert(100%) hue-rotate(180deg) brightness(80%) !important;\n background: transparent !important;\n }\n .emoji-result [alt=\"tm\"], [alias=\"tm\"] {\n filter: invert(100%);\n }\n [alt=\":heavy_check_mark:\"], [alias=\"heavy_check_mark\"] {\n background: transparent !important;\n }\n /* Invert problematic emoji fallback images used on Windows */\n /* use tools/unicode-gen.js to generate */\n g-emoji[fallback-src$=\"2795.png\"], g-emoji[fallback-src$=\"2796.png\"],\n g-emoji[fallback-src$=\"2797.png\"], g-emoji[fallback-src$=\"27b0.png\"],\n g-emoji[fallback-src$=\"2b1b.png\"], g-emoji[fallback-src$=\"25fe.png\"],\n g-emoji[fallback-src$=\"1f3b6.png\"], g-emoji[fallback-src$=\"1f3bc.png\"],\n g-emoji[fallback-src$=\"1f4b1.png\"], g-emoji[fallback-src$=\"1f4b2.png\"],\n g-emoji[fallback-src$=\"1f519.png\"], g-emoji[fallback-src$=\"1f51a.png\"],\n g-emoji[fallback-src$=\"1f51b.png\"], g-emoji[fallback-src$=\"1f51c.png\"],\n g-emoji[fallback-src$=\"1f51d.png\"], g-emoji[fallback-src$=\"1f3b5.png\"],\n g-emoji[fallback-src$=\"27bf.png\"], g-emoji[fallback-src$=\"1f43e.png\"],\n g-emoji[fallback-src$=\"1f43e.png\"], g-emoji[fallback-src$=\"a9.png\"],\n g-emoji[fallback-src$=\"fe0f.png\"], g-emoji[fallback-src$=\"ae.png\"],\n g-emoji[fallback-src$=\"fe0f.png\"], img[src*=\"resources-logo\"], svg.IconNav-img,\n .container-xl[id] svg\n /* https://github.com/ten */,\n body.logged-out .col-md-7 svg {\n filter: invert(83%) !important;\n }\n .container-xl[id] img {\n z-index: 100 !important;\n }\n /* GeoJSON maps */\n /* https://github.com/benbalter/dc-maps/blob/master/maps/embassies.geojson */\n .leaflet-tile-container img {\n filter: invert(100%) hue-rotate(180deg) brightness(150%) !important;\n }\n .leaflet-marker-pane img, .gundamcat {\n filter: brightness(.8) !important;\n }\n /* invert #fff to #181818 */\n /* https://github.com/sujitpal/statlearning-notebooks/blob/master/src/chapter2.ipynb */\n .project-preview-img img, img[src$=\"bg-callout.svg\"],\n img[data-canonical-src*=\"saucelabs.com/browser-matrix\"],\n img[src*=\"images/modules/checks\"], img[src$=\"profile-first-pr.png\"],\n img[src$=\"profile-joined-github.png\"], img[src$=\"profile-first-repo.png\"],\n img[src$=\"profile-first-issue.png\"], .github-jobs-logo strong {\n filter: invert(90.5%) hue-rotate(180deg) saturate(200%) !important;\n }\n .render-shell .output_area .output_png img {\n filter: invert(90.5%) hue-rotate(180deg) saturate(200%) brightness(85%) !important;\n }\n .render-shell .output_area .output_png:hover img {\n filter: none !important;\n }\n /* workaround filter creating a stacking context */\n .contribution-first-issue, .contribution-first-pull-request,\n .contribution-first-repository {\n opacity: .999 !important;\n }\n /* brighten language colors */\n .language-color, .repo-language-color {\n filter: brightness(125%) !important;\n }\n /* soft badges */\n .box-title-count {\n background-color: #484848 !important;\n color: #ccc !important;\n }\n /* svg styling */\n line, rect, path {\n shape-rendering: geometricPrecision !important;\n }\n .js-graph-punchcard svg.viz {\n background: transparent !important;\n border: none !important;\n }\n .reorderable-task-lists .markdown-body .task-list-item .drag-handle {\n fill: #c0c0c0 !important;\n }\n /* Firefox: Exclude text inside an svg loaded through an img, as seen in svg badges */\n *:not(img) text, circle.day {\n fill: #ccc !important;\n }\n circle.day:hover {\n fill: #fff !important;\n }\n path.js-diff-placeholder {\n fill: #282828 !important;\n }\n #contributors-master svg.viz {\n display: block !important;\n }\n g.dots circle {\n stroke: #222 !important;\n }\n .traffic-graph g.axis:not(.views):not(.unique) g.tick:not(:nth-child(15)):not(:first-of-type) line,\n g.axis path, line.axis, svg:not(.vis) g.axis line {\n stroke: #444 !important;\n }\n svg .path:not(.total):not(.unique):not(.views) {\n stroke: #aaa !important;\n }\n .workflow-string--crossover svg path[stroke=\"#D1D5DA\"] {\n stroke: #404040 !important;\n }\n #commit-activity-detail path.path,\n .traffic-graph g.x.axis g.tick:first-of-type line {\n stroke: #1db34f !important;\n }\n [style*=\"stroke: #dbab09\"], [stroke=\"#dbab0a\"] {\n stroke: #cb4 !important;\n }\n .traffic-graph g.x.axis g.tick:nth-child(15) line {\n stroke: #1d7fb3 !important;\n }\n svg.tick {\n fill: #444 !important;\n }\n svg.arrow[stroke=\"#1277eb\"], svg path[stroke=\"#1074E7\"] {\n stroke: rgb(79, 140, 201) !important;\n }\n .features-branch-diagram path[stroke=\"#c6d9ed\"],\n .features-branch-diagram path[stroke=\"#4182C4\"],\n .features-branch-diagram div:not(.active) .mega-octicon {\n stroke: rgb(79, 140, 201) !important;\n color: rgb(79, 140, 201) !important;\n }\n .features-branch-diagram circle[fill=\"#4183c4\"],\n .repo-list-stats a.issues:hover svg {\n fill: rgb(79, 140, 201) !important;\n }\n .features-branch-diagram circle[stroke=\"#ffffff\"] {\n stroke: #222 !important;\n }\n rect.map-background, .audit-log-map {\n fill: #1e4062 !important;\n background: #1e4062 !important;\n }\n path.land {\n stroke: #17334f !important;\n }\n circle.audit-point {\n fill: #742d14 !important;\n stroke: #57210f !important;\n }\n .graphs .selection .selection {\n fill: #888 !important;\n stroke: #888 !important;\n }\n /* monochrome backgrounds */\n .list-browser-item.closed, .content .verseblock-content,\n .content .verseblock-content, .simple-stacked-bar,\n .date_selector td.selectable_day:hover, .date_selector td.selectable_day.hover,\n .dropdown-divider, .js-current .standalone a, .sidebar-module .disable>a,\n .label-select-menu div.labelstyle-000000.selected,\n .ScreenshotCarousel-navitem.selected {\n background: #282828 !important;\n }\n div#common-issues ul li a:hover, .rss-subscribe:hover {\n background-color: #282828 !important;\n }\n .jumbotron-codelines {\n background-color: #222 !important;\n }\n .community-checklist .progress-bar .progress {\n background-color: #333;\n }\n .profile-timeline.discussion-timeline::before,\n .profile-timeline.discussion-timeline .profile-timeline-month-heading::after,\n div[style*=\"background-color: #eaecef\"] {\n background: #343434 !important;\n }\n .hidden-text-expander a, .profile-timeline-month-heading::after,\n .review-comment-contents::after, .review-comment.is-comment-editing::after,\n .release-timeline-tags .expander-dots {\n background: #383838 !important;\n }\n ul.sidetabs li a:hover, .editbox h1, #issues .labels .admin,\n #issues .display .sortbar, #facebox .close, #issues_search .wrapper,\n .ranked-repositories .meta a, .actor, ul.nav.logged_out, .tip-box a.next,\n #inbox .list .unread, .main .filterbar, .browser-content .footerbar,\n ul.smalltabs, .snippet, .supportstaffer, .discussion-form, .chooser-box,\n .chooser-box h3, #forkqueue .instructions, .selector-item.clear:hover,\n #contributors-master svg, .inset-callout h2, .documentation ul.nav,\n .date_selector td.selected, #contributors-master, .context-title,\n .list-module h2, .bootcamp-help h1, .ellipsis-button:hover,\n .codesearch-results .repo-list-name em,\n .codesearch-results .repo-list-description em, .codesearch-cols em,\n ul.bignav li a:hover, ul.smallnav li a:hover, .comments-wrapper, .rackspace,\n .subnav-bar > ul > li > ul > li > a:hover, .issue.active, .orgs-nav .count,\n .task-progress .progress-bar .progress,\n .oauth-connection-illustration .oauth-image,\n .manage-repo-access-wrapper::before, .block-diff-neutral,\n .oauth-permissions-details .permission-summary em.highlight,\n .marketplace-product-callout .branch-action-item-icon {\n background: #444 !important;\n }\n .switcher > span::after, .list-module a:hover, .section-nav .active a,\n #dashboard .filter-bar li a.filter_selected::after,\n .settings-email .label:not(.default), .key, .date::after,\n .branch-a-b-count .bar, .branch-a-b-count .meter,\n .hidden-text-expander a:hover {\n background: #555 !important;\n }\n .labels .label-neutral, li.ssh-key .ssh-key-state-indicator.not-recent,\n .render-shell > .slider .dragger {\n background: #666 !important;\n }\n .render-shell > .slider .dragger:hover,\n .render-shell > .slider .dragger:active, .issues-reset-query-icon,\n .projects-reset-query-icon {\n background: #949494 !important;\n }\n /* https://github.com/StylishThemes/GitHub-Dark/search?q=test&unscoped_q=test */\n .Counter--gray {\n background: #aaa;\n }\n .diverge-widget .separator {\n background: #ccc !important;\n }\n .menu-item.selected::before {\n background: #eee !important;\n }\n #network canvas, .qr-code-table, .qr-code-table .white {\n background: #fff !important;\n }\n /* actions in issues - this style needs to be after .bubble */\n .action-bubble .bubble,\n /* https://github.com/StylishThemes/GitHub-Dark/community/license/new?branch=master&template=mit */\n body .CommunityTemplate-header,\n [data-url$=\"recently_touched_branches_list\"],\n .merge-status-list .status-actions:hover, body > .application-main > .bg-gray {\n background: transparent !important;\n }\n .btn-mktg {\n background-color: rgba(79, 140, 201, .9);\n border-color: rgb(79, 140, 201);\n color: #ddd;\n }\n .btn-mktg:hover {\n background-color: rgba(79, 140, 201, 1);\n border-color: rgb(79, 140, 201);\n color: #eee;\n }\n .btn-outline-mktg {\n background-color: transparent;\n border-color: rgba(79, 140, 201, .9);\n color: rgba(79, 140, 201, .9);\n }\n .btn-outline-mktg:hover {\n background-color: transparent;\n border-color: rgba(79, 140, 201, 1);\n color: rgba(79, 140, 201, 1);\n }\n .MarketplaceAnnouncement .btn-outline-mktg {\n background-color: transparent;\n border-color: #eee;\n color: #eee;\n }\n .MarketplaceAnnouncement .btn-outline-mktg:hover {\n color: #fff;\n border-color: #fff;\n }\n /* blue box */\n .github-jobs-promotion p, .octotip, .bootcamp h1, .bootcamp-body,\n .owners-notice, .blob-history, .branch-name, .new-user-avatar-cta,\n .jstree-wholerow-clicked, .commit-ref, .file-history-tease, .feature-banner,\n .hook-delivery-guid, .topic-tag, .topic-tag-action, .delete-topic-button,\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button,\n .RecentBranches, .signup-prompt-bg, ul.search-results li .label,\n div[style*=\"background-color: #044d6e\"],\n .topic-tag-contrast .delete-topic-link,\n body[class=\"page-responsive\"] .bg-blue-light,\n .repository-content > .Box--condensed > .Box-body.bg-blue-light {\n background: #182030 !important;\n }\n aside [style*=\"background-color: #4764f1\"] .text-white {\n background-color: #182030 !important;\n }\n .repo-file-upload-progress .repo-file-upload-meter, .topic-tag-link:hover,\n .delete-topic-button:hover, .topic-tag-contrast .delete-topic-link:hover {\n background: #273045 !important;\n }\n .new-user-avatar-cta, .blob-history, .feature-banner,\n .recently-touched-branches, .recently-touched-branches li, .commit-ref,\n .project-updated-message, .timeline-comment-label.collaborator-comment,\n .hook-delivery-guid .octicon, .hook-delivery-guid a, a.topic-tag,\n .RecentBranches, .RecentBranches-item-link, ul.search-results li .label,\n .markdown-format table th, div[style*=\"background-color: #044d6e\"],\n .subset-files-tab .stale-files-tab-link,\n .timeline-comment.current-user:not(.is-internal) .link-gray {\n color: #9daccc !important;\n }\n .timeline-comment.current-user:not(.is-internal) .timeline-comment-header,\n .timeline-comment.current-user:not(.is-internal) .timeline-comment-action {\n color: #9daccc;\n }\n .RecentBranches-item, .commit-ref .user {\n color: #6d7c9c !important;\n }\n .github-jobs-promotion p, .octotip, .bootcamp .bootcamp-body, .bootcamp h1,\n .owners-notice, .new-user-avatar-cta, .commit-ref, .branch-name,\n .file-history-tease, .feature-banner, .recently-touched-branches,\n .timeline-progressive-disclosure-items button, .RecentBranches,\n .js-tag-input-tag, ul.search-results li .label, .topic-tag-action {\n border: 1px solid #246 !important;\n }\n .repo-file-upload-progress, .project-updated-message,\n .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button,\n .commit-desc + .commit-branches,\n .pricing-matrix-table .pricing-matrix-table-dark,\n .topic-tag-contrast .delete-topic-link,\n .repository-content > .Box--condensed:not(#readme):not(.file-holder),\n .border-blue, body[class=\"page-responsive\"] .border-blue,\n .timeline-comment.current-user .tabnav-tab.selected, .full-commit,\n .full-commit .commit-meta {\n border-color: #246 !important;\n }\n .blob-history, .recently-touched-branches li {\n border-bottom-color: #246 !important;\n }\n .blob-history, .file-history-tease .participation {\n border-top: 1px solid #246 !important;\n }\n #new_hook .fields {\n border-width: 0 !important;\n }\n .commit-icon .octicon {\n border-radius: 100% !important;\n }\n /* original colors */\n .discussion-item-integrations-callout .discussion-item-icon {\n background: #4095c6 !important;\n }\n /* notebooks */\n .input_prompt {\n color: hsla(234, 100%, 65%, 1) !important;\n }\n .output_prompt {\n color: hsla(0, 100%, 65%, 1) !important;\n }\n /* gradient */\n /* file drag&drop overlay */\n .repo-file-upload-tree-target {\n background: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, .6) 65%, rgba(0, 0, 0, .6) 100%) !important;\n }\n .TimelineItem-break {\n background: linear-gradient(to bottom, rgba(25, 25, 25, .8) 1%, transparent 80%) !important;\n }\n /* light grey gradient */\n .signup-button:hover, a.signin:hover, .hero .textographic,\n .hero .screenographic, .box-action:active,\n .clone-url-button.selected > .clone-url-link:hover, ul#bootcamp li a:hover h4 {\n background: linear-gradient(#303030, #282828) !important;\n border-color: #484848 !important;\n }\n /* dark grey gradient */\n header.nav-bar, .bubble .bubble-title, kbd, a.feed, .list-browser-filterbar,\n .gobutton, .comment-header, .pagehead ul.tabs li a,\n .login_form input[type=\"submit\"], .top-bar, ul#bootcamp li a h4,\n #gists .context-menu-container, body#com #header, .white-nav .selected span,\n .filter-tab, #header-wrapper, #header-wrapper .nav, .cheatsheet h2,\n .section a.section-head, .list-heading, .dashboard-tabs li a,\n a.function-button, .add-pill-form, .gist .gist-file .gist-meta,\n ul.comparison-list > li.title, button.button, a.button, span.button,\n button.minibutton, a.minibutton, span.minibutton {\n background: linear-gradient(#202020, #181818) !important;\n border-color: #383838 !important;\n }\n .clone-url-button > .clone-url-link {\n border-color: #383838;\n }\n .search-form button, .issues-list-actions, a.gollum-minibutton,\n a.gollum-minibutton:visited {\n background: linear-gradient(#202020, #181818) !important;\n }\n /* inverted dark grey gradient */\n .asc .sort-type, .desc .sort-type, .mini-bar-graph, .issues-list>ul>li.unread,\n .timeline-commits-header, .usage-bar dd, .render-bar {\n background: linear-gradient(#181818, #202020) !important;\n border-color: #383838 !important;\n }\n .project-issue-body-blur {\n background: linear-gradient(to top, #181818, rgba(0, 0, 0, 0)) !important;\n }\n .bg-custom-gradient {\n background-image: linear-gradient(180deg, #1c1c1c, rgba(0, 0, 0, 0)) !important;\n }\n .billing-per-seat-callout::after {\n box-shadow: 1px -1px 0 0 #343434 !important;\n }\n main [style=\"background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));\"] {\n background: linear-gradient(to top, #181818, transparent) !important;\n }\n .ScreenshotCarousel-navitem.selected {\n box-shadow: inset 0 0 10px rgba(255, 255, 255, .05) !important;\n }\n /* commits page - committer icon */\n .commits-list-item .committer-avatar {\n box-shadow: -2px -2px 0 rgba(0, 0, 0, .4) !important;\n }\n .Header .header-search-wrapper.focus {\n box-shadow: none !important;\n }\n /* box shadow below attach box - https://github.com/StylishThemes/GitHub-Dark/releases/new */\n /* + remove box shadowns on buttons and the like */\n .upload-progress, .social-count, .btn {\n box-shadow: none;\n }\n /* https://github.com/team inline HTML fixes */\n .bg-white[style*=\"box-shadow: 0 0 20px 20px #ffffff\"] {\n box-shadow: 0 0 20px 20px #181818 !important;\n }\n [href=\"#organizations\"][style*=\"background-color: #fff\"] {\n background-color: transparent !important;\n }\n .Box-header[style*=\"background-color: #FFF3FA\"] {\n background-color: #222 !important;\n }\n .Box-header[style*=\"border-color: #FFF3FA\"] {\n border-color: #343434 !important;\n }\n /* text color */\n html[prefix] .ellipsis-expander:active,\n html[prefix] .hidden-text-expander a:active,\n html[prefix] .site-header-nav .dropdown-menu a:hover, .btn-blue,\n .feature-preview-dialog .text-white, .text-white {\n color: #fff !important;\n }\n /* Bright text */\n .gist-snippet-meta .gist-count-links > li > a:hover,\n .topic-tag-action .add-topic-button:hover,\n .topic-tag-action .remove-topic-button:hover,\n .discussion-item-changes-marker.is-unread .discussion-item-icon,\n .toc-select .navigation-focus *, .owner-select-target, a.filter-item.selected,\n .filter-item.selected h4, .filter-item.selected .f3,\n .filter-item.selected .Label--outline-white, .octicon.text-white,\n .user-status-org-button:hover .user-status-org-detail,\n .user-status-org-button.selected .user-status-org-detail,\n .member-suggestion[aria-selected=true] .octicon,\n .member-suggestion[aria-selected=true] .member-name,\n .member-suggestion:hover .octicon, .member-suggestion:hover .member-name,\n .diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized,\n .diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized,\n .filter-item.selected p, .filter-item:hover .marketplace-plan-per-time,\n .oauth-permissions-details .permission-summary em.highlight, .btn-primary {\n color: #f0f0f0;\n }\n ul.repo-stats li a:hover, .minibutton.danger:hover, #gist-form label,\n .subnav li a:hover, .filters li.selected a, .filters li a:hover, .code-list em,\n a.header-anchor, .commandbar .choice .command, .search-term,\n .codesearch-cols em, .image, .selector-item:hover .mini-icon::before,\n .selector-item.selected .mini-icon::before, .new-repo .octicon, #header .nav a,\n .minibutton i, .minibutton, .commit .mini-icon::before, .featured-callout,\n .sidebar-milestone-widget .title, #network .explain b,\n .dashboard-tabs a.selected, .message .time, #graph_data .tab.selected a,\n .explore-collection .see-more-link, ul.color-label-list .count,\n a.filter-tab.selected, .orgs-nav .count, .facebox-user-list-item a,\n a.org-module-link, .org-header-info .name-link,\n .calendar-graph .contrib-details div .num,\n .commandbar .display table td:first-child, .file-history-tease .author a,\n ul.summary-stats li .num, .pull-head-meta .pull-number a,\n .mini-discussion-bubble .mini-discussion-bubble-action, .sub-nav h2,\n .sub-nav h2 a, .accordion .section a.section-head,\n .orgs-nav .org-nav-item.selected, .sub-nav li a.active, a.org-link,\n .infobar-widget .text a, .view-modes-menu li.active, a.signin:hover,\n .highlight-module .mega-icon::before, #wiki-rightbar li, .i-am-error p,\n .markdown-body .octicon-link, .gist-item ul.meta > li > a:hover,\n .native-download .mega-icon::before, #article-platform-nav ul li.selected a,\n .section-heading-title a.selected, .marketing-nav a.selected,\n .dashboard-tabs a:hover, .hidden-text-expander a:hover, .codesearch-cols em,\n .branch-action-state-clean .branch-action-icon::before,\n .hook-list li.selected a, .oauth-permissions-details .permission-title,\n p.read-it, .branch-action-state-dirty .branch-action-icon::before,\n .branch-action-state-closed-dirty.branch-action-icon::before,\n .branch-action-state-merged .branch-action-icon::before,\n .showcase-featured .featured-grid-link, .collection-card-title,\n .collection-card-image:hover, .explore-page .see-more-link, .mute,\n .pull-request-link:hover, .expandable:hover::before,\n .follow-list .follow-list-name a, a.comment-header-author,\n .wiki-edit-link:hover, .infotip p, .form-actions .tip, dl.form.warn dd.warning,\n .page-notice, ol.toc > li a.active, .example-nav li a.selected, .facebox-alert,\n .typeahead-result, .no-results, #user-links > li * button,\n .timeline-commits .hidden-text-expander a:hover, .color-editor-input,\n #user-links .sign-out-button, .table-list-item label,\n .audit-action-info .context, .token-scope, .segmented-nav li.active a,\n .tabs > a.selected, .member-username, kbd, .kbd,\n .boxed-profile .profile-preview .vcard-fullname, .integrations .site-footer a,\n .email-format .email-hidden-toggle a:hover,\n #gollum-editor-help-parent li a.selected,\n #gollum-editor-help-list li a.selected, a.gollum-minibutton,\n a.gollum-minibutton:visited, a.token-warning, a.lightertooltipped,\n .org-team-sidebar .team-note .note-emphasis, #com h1 span, #com h2 span,\n .breadcrumb .final-path, button.button, a.button, span.button,\n button.minibutton, a.minibutton, .button.primary:hover, .repo-private-label,\n a.repo_filter.js-repo-filter-tab.filter-selected, .keyboard-mappings th,\n .rendered_html, .render-health:hover .symbol, .radio-label,\n .gist-snippet-meta .description, .clone-url-button > .clone-url-link,\n a.team-mention, .team-mention, .boxed-group-inner h4,\n .leaflet-control-attribution, .leaflet-control-attribution a,\n .integrations-breadcrumb-link, a.integrations-breadcrumb-link, #message .title,\n .exploregrid-item-title, .explore-collection h2, #com h1, #com h2, #com h3,\n .content > h2, .content > h3, .audit-results-header-title,\n .session-authentication .auth-form-header, .org-settings-team-type,\n .org-settings-team-count, .intgrs-lstng-item-header, .octokit-language span,\n .site-header-nav a, .menu-item.selected, article h2, #message-list h1,\n #message-list h3, .graph-page h1, .graph-page h3, .dashboard-notice h2,\n .site-header-dark .site-header .site-header-link, .version-picker a:hover,\n .markdown-format .octicon-link,\n .jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,\n .jump-to-suggestions-results-container [aria-selected=\"true\"] .jump-to-octicon,\n .markdown-body strong, .markdown-format strong, .btn-danger:hover,\n .btn-danger:active, .btn-danger.selected, [open] > .btn-danger,\n .discussion-item-icon, .blob-num-expandable .diff-expander:hover,\n .js-expandable-line:hover .diff-expander,\n .site-header-nav .dropdown-menu a.active,\n .site-header-nav .dropdown-menu a .octicon-check,\n .marketplace-product-callout .branch-action-item-icon,\n .user-status-org-button span.text-bold, .octicon-fold,\n .jump-to-suggestions-path {\n color: #dcdcdc !important;\n }\n .add-line-comment {\n color: #dcdcdc;\n }\n pre, #languages a.bar, .lineoption p, table.notifications th,\n .usagestats dl dt.numbers, .commit-preview p.name .date, .download-list h4,\n .fieldgroup p.explain.planusage, .explore h2, .tabnav .active a,\n .vcard-username, #markdown-toc li a, .tag-info .tag-name, .language,\n .featured-callout h2, .commit-title .message, .files .message,\n .revision .creator, .mini-icon.search-input, .lines-changed,\n .lines-changed:hover, .discussion-topic-author a, .graph .data .number,\n .box-title, a.box-action, .octofication .message p, .repolist .description,\n .addon p, .keyboard-mappings, .accessibility-aid:focus,\n .list-group-item .list-group-item-name a,\n .list-group-item .list-group-item-meta a, .list-browser-sorts .sort-type,\n #commits_tab_counter, .auto-search-group .search-filter, .usage-bar dt,\n .github-jobs-promotion p a, .file-info .file-name, .file-box .meta,\n .gh-header-meta .author, .timeline-commits .author,\n .sidebar-assignee .assignee, .rss-subscribe, .sidebar-module h3.disable span,\n .octotip, .billing-section .section-content, #readme span.name,\n .steps li.current, .context-loader, .box-title a,\n .branch-infobar .lightweight-actions > li a:hover,\n .discussion-item-ref-title .title-link, .org-teams-list .team, .ace-github,\n a.pagehead-nav-item.selected, a.pagehead-nav-item:hover,\n .repo-collection .collection-stat, a.subscribe-feed, header ul.links a:hover,\n div.container > p, .commits-list-item .commit-author,\n .discussion-item .renamed-was, .discussion-item .renamed-is,\n a.discussion-item-entity, span.discussion-item-entity:not(:hover),\n .table-list-header-toggle .btn-link.selected,\n .table-list-header-toggle .btn-link.selected:hover,\n .table-list-header-toggle .btn-link:hover, a.issue-title-link,\n .milestone-title-link a, .org-header .edit-org, .org-name, .blob-code,\n .blob-code-inner, .diff-line-code, .contrib-number,\n .pulse-summary .summary-box .count, .list-options .selected .list-item-title,\n .nav-bar-inner .brand-logo-invertocat .octicon-mark-github, .menu a .octicon,\n .issue-list-meta a, .stat-number, div.search-form button span,\n .fullscreen-overlay .octicon:hover::before,\n .fullscreen-overlay .mega-octicon:hover::before, .protip-callout,\n .fullscreen-overlay textarea:focus, .fullscreen-overlay textarea:hover,\n #header ul.top-nav > li > a, #header ul.top-nav > li > button,\n a.team-member-ellipsis:hover, .rendered_html pre, .rendered_html code,\n .team-grid .team-name, .stats-group-stat.no-link:hover .stat-number,\n .application-authorizations .oauth-app-access-name, .header-logo-invertocat,\n a.header-logo-wordmark, .pull-request-integrations-title,\n .intgrs-dir-intro .directory-header-back,\n .intgrs-dir-intro .directory-header-back .header-link,\n .oauth-application-info .application-title,\n .session-authentication .header-logo, .repo-file-upload-progress,\n a .mega-octicon, .anchor, .gcr-ext-editor-close .delete-button:hover svg,\n .repo-filterer .repo-filter.filter-selected,\n .signed-commit-signer-name .signer, .display-heading-1, .display-heading-2,\n .display-heading-3, .display-heading-4,\n .pinned-repos-selection-list-item.selected, .Box-body-row--highlight,\n .text-pending, .compare-pr-placeholder p, .compare-pr-placeholder .help-link,\n #message.good, #message.major, .boxed-group-success, ul#bootcamp li a h4,\n .menu-heading, .text-black, .markdown-format h4,\n .access-token .token-description,\n .oauth-org-access-details .boxed-group-list > li.on strong, .content h1,\n .octokit-language span, .lead, .merge-branch-heading,\n .org-user-notice-content strong, .Box-row-link, .header .header-search-scope,\n .discussion-item-private, .label-select-menu div.labelstyle-000000.selected,\n .marketplace-plan-emphasis, .header-nav-link, .header-navlink,\n .Header .header-search-scope, a.notification-indicator, .HeaderNavlink,\n .text-gray-dark, .label-select-menu .select-menu-item:hover,\n .check-annotation code pre, .Header-link {\n color: #bebebe !important;\n }\n .news .alert .simple .title, #network .graph-date, .tabnav-widget.text,\n .feature .intro, span.diffstat, span.diffstat a, .commit .commit-branches a,\n #readme .plain, .news blockquote, .news blockquote p, .collection-stat,\n .calendar-graph .contrib-details div .lbl, .tag-info a, a.browse-button,\n .ghead .dir, .comment-header-action-text a, .comment-header-right a,\n .gist-item .creator, .dashboard-tabs a, #graph_data .tab a, .pull-info,\n .list-group-item .list-group-item-summary a, #contributors .capped-card .cmt,\n .boxed-group-list .access-level, h3.conversation-list-heading, a.filter-tab,\n .starred-repo p.description, .org-repo-stats a, .org-repo-updated a,\n .org-repo-description, .org-repo-forked a, .commandbar .display table td span,\n .clone-options, .pulse-section, .discussion-sidebar p,\n .discussion-topic-header .discussion-topic-author, .gist-description, .explain,\n p.subtext, .team-grid .team-description, .orgs-nav .org-nav-item,\n .form-actions-protip .protip, .discussion-item .author,\n .inline-comments .comment-count, .sidebar-heading, .clear-issue-filters a,\n .render-view-modes li.active::before, ul.comparison-list > li em,\n .marketing-benefits .column p, .sub-nav li a, .headlines a .date,\n .sidebar-module ul ul li span, .merge-branch-description,\n .gist-item ul.meta > li > a, ul#categories li h5 a,\n .render-view-modes li.active, .user-leaderboard-list .repo-list-item .repo,\n .repo-stats li a, .about p, dl.form > dd p.note, p.subdued,\n .team-header .team-description, .hfields dl.form > dt label,\n .boxed-group > h3 a.boxed-group-breadcrumb,\n .boxed-group .heading a.boxed-group-breadcrumb, .subscriptions-sidebar .note,\n .thread-subscription-status, .ellipsis-button, .follow-list .follow-list-info,\n form.btn .count, .blame .commitinfo .date, .gist .gist-file .gist-meta a,\n .hidden-text-expander a, .news div.message, .news li blockquote,\n .news .alert .pull-info, .news .alert .branch-link,\n .release .release-authorship a, .wiki-wrapper .wiki-empty-box:hover,\n .diffstat-summary a, .branches .branch-group-heading .branch-group-name,\n .render-notice, .table-list-milestones .stat, .repo-list-description,\n .file .meta, .email-format .email-hidden-toggle a, .file-diffstat,\n .program-info-column .mega-octicon, .octofication .notice-dismiss:hover,\n .markdown-format .intro, .label-admin, .program-info-column p,\n .file-history-tease, .gist-snippet-meta .gist-count-links > li > a,\n .commit-author-section, .manage-repo-access-not-active, .milestone-name,\n .feature-callout, .repo-file-upload-file-wrap .remove-file:hover,\n .rss-subscribe, table.capped-list .octicon, .site-header-menu .nav-item,\n .exploregrid-item, .markdown-body blockquote,\n .commits-list-item .commit-desc pre,\n .review-comment .pending-batched-suggestion-label, main .note.bg-green-light p,\n .CheckStep-timestamp {\n color: #afafaf !important;\n }\n .tabnav-tab {\n color: #afafaf;\n }\n .calendar-graph .contrib-details div, .time, .gist-item .metadata .datetime,\n .list-group-item-meta, a.keyboard-shortcuts, button.keyboard-shortcuts,\n .simple-conversation-list, .simple-conversation-list > li .title .num,\n .starred-repo .sort-info, .org-stats, .commandbar .choice,\n .commandbar .loading, .commandbar .description, ul.summary-stats li a,\n .authorship, .sha-block, .gh-header-meta, #last-edit, .setup-header .lead a,\n .mini-icon-remove-close:hover, .section-heading-title .separator, .hook-list a,\n .github-jobs-promotion a.jobs-logo, .org-teams-list .team-meta,\n .repo-list-item .repo-description, .branch-infobar .lightweight-actions > li a,\n .repo-leaderboard-list .repo-leaderboard-meta-item a,\n .changed .moved-up::before, .changed .moved-down::before,\n .comment-header .octicon, a.section-heading-back,\n .list-group-item-meta .octicon, .repo-leaderboard-title .title-meta,\n a.pagehead-nav-item, .wiki-wrapper .wiki-empty-box,\n .commits-list-item .commits-comments-link, .commits-list-item .commit-meta,\n .issues-listing .table-list-issues .issue-comments-link,\n .issues-listing .table-list-issues .issue-meta-section a, .labels-list-action,\n table.tag-list p a, table.tag-list td.date a, .render-view-modes li,\n .site-footer, .site-footer .octicon-mark-github:hover,\n .repo-list-stats .repo-list-stat-item, .range-editor span.flag .octicon,\n .commit-info .commit-meta a, .notifications .read a,\n .auth-form-header .octicon, .releases-tag-list p a, .history-link a,\n a.issue-nwo-link, .member-meta .teams-link, .member-meta .btn-link,\n ul.comparison-list > li em, ul.comparison-list > li.title, .diffstat-summary,\n a.team-member-ellipsis, a.discussion-item-toggle-open,\n a.discussion-item-toggle-closed, button.discussion-item-toggle-open,\n button.discussion-item-toggle-closed, .dropdown-header, .participation a,\n .completeness-indicator-info, .type-icon-state-none, .delete-owners-button,\n .stats-group-stat, .stats-group-stat.no-link:hover, .wiki-edit-link,\n .member-meta .member-meta-link, .hidden-text-expander a, .text-muted,\n .listgroup-item, .discussion-item-header, .discussion-sidebar-heading,\n .org-header-meta .meta-item .meta-link, .boxed-group-inner, .lead,\n .form-checkbox .note, .bot-identifier, .dashboard-notice .dismiss:hover,\n td.icon .octicon-file-text, td.icon .octicon-file-symlink-file,\n .project-header-link, button.project-header-link, td.icon, .facebox-close,\n .tree-browser-result mark, .octicon.text-gray, .notification-actions .age {\n color: #949494 !important;\n }\n .timeline-comment-action, #suggestions a, .table-list-header-toggle .btn-link,\n .discussion-sidebar-item {\n color: #949494;\n }\n .vcard-detail .octicon, .member-badge .octicon,\n .command-bar .octicon-question::before, .news .alert .time,\n ul.color-label-list .color-label.zeroed,\n ul.color-label-list .color-label.zeroed .count, .gh-header-title .issue-number,\n a.leaderboard-list-rank, .bootcamp ul li a, .ssh-key-fingerprint,\n .tag-references > li a, .release .release-authorship,\n .branches .branch-summary, .branches .no-results-message,\n header ul.links > li a, .team-info-card .stats-group .stat,\n .team-info-card .stats-group .stat.no-link:hover,\n .issues-listing .table-list-issues .issue-meta, .task-progress,\n .table-list-milestones .stat-label, .diff-line-num,\n .file-data .line-numbers span, .discussion-item .timestamp,\n .branch-status .divider, .news .alert .octicon, .news .alert .mega-octicon,\n .repo-list-meta, a.discussion-item-help, .page-new-repo .license-info,\n .commit-info .commit-meta, .list-item .byline, .issue-list-meta,\n .file-type-icon, .uploaded-files .remove, .releases-tag-list td.date a,\n .collaborators .collab-remove .remove-link, .octofication .notice-dismiss,\n ul.comparison-list > li .octicon, div.content-header h6,\n .fullscreen-overlay textarea, .breadcrumb,\n .application-authorizations .oauth-app-list-meta,\n .application-authorizations .oauth-app-owner, .boxed-group-inner .help,\n .thread-subscription-status .reason, .toc-diff-stats .octicon,\n .recent-gists .description .blank, .recent-gists .metadata,\n .member-meta .access-link, .gist-quicksearch-no-results,\n #user-content-toc ul ul li::before, .user-list li em, #graph_data h2,\n #message-list .message .time, .tabnav .tabnav-extras,\n .discussion-item-integrations-callout .pull-request-integrations-dismiss,\n .oauth-application-info .meta-link, .oauth-application-info .app-info,\n .repo-file-upload-file-wrap .remove-file, .gcr-ext-editor-close svg,\n .commit-id, .orghead .edit-org, a.footer-octicon:hover,\n .table-of-contents .toc-diff-stats .octicon,\n .notification-actions .unsaved-notification {\n color: #757575 !important;\n }\n .signed-commit-badge {\n color: #757575;\n }\n .branch-infobar .lightweight-actions > li .octicon,\n .manage-repo-access-icon .octicon, .wiki-wrapper .wiki-history .date,\n .issue-meta-section .octicon, .thread-subscription-status .mega-octicon,\n .subnav-search-icon, .auto-search-group > .octicon,\n .page-gist-edit .octicon-gist, .unselected-month, .profile-rollup-toggle,\n .dashboard-notice .dismiss, .reblame-link {\n color: #5a5a5a !important;\n }\n .context-pane .selector-item:hover a, .mega-icon::before,\n .mini-icon-public-repo::before, .mini-icon-pull-request,\n .mini-icon-remove-close, .mini-icon-link, .task-progress .octicon,\n .milestone-link .octicon, .site-footer .octicon-mark-github, .steps li,\n .branch-delete.disabled, .date_selector td.unselected_month,\n .bootcamp .desc h2,\n .issues-listing .table-list-issues .issue-comments-link.no-comment,\n .diffstat-bar, .issue-comments-no-comment, a.footer-octicon {\n color: #474747 !important;\n }\n .list-tip::before, .selector-item .mini-icon::before,\n .browser .mini-icon-arr-right, .octicon-person-team::before,\n a.darkertooltipped, #subscribeButton, .js-new-label-color svg.text-gray-dark,\n .user-status-header .text-gray-dark, .Spotlight .text-gray-dark {\n color: #313131 !important;\n }\n .issues-reset-query-icon, .issues-reset-query:hover .issues-reset-query-icon,\n .projects-reset-query-icon.text-white,\n .projects-reset-query:hover .projects-reset-query-icon,\n .user-status-header.user-status-limited-availability .text-gray-dark,\n .MarketplaceFeature-link .text-gray-dark, .Counter--gray {\n color: #1c1c1c !important;\n }\n a.pagehead-heading, a.text-inherit, .boxed-group > h3 a,\n .boxed-group .heading a, .list-heading a, .table-list-milestones .stat a,\n .timeline-comment-header .js-comment-edit-history summary.text-gray,\n .timeline-comment-header .js-comment-edit-history > .text-gray-light,\n .delete-topic-button, .timeline-comment-header code,\n .timeline-comment-header-text code a {\n color: inherit !important;\n }\n .donut-chart [style*=\"fill: none\"], .workflow-string svg,\n .workflow-success circle, .workflow-success path {\n fill: none !important;\n }\n /* Alerts and activity, remove background gradient */\n .metabox .editable-text:hover, #inbox .list .item .title span,\n .Subhead.border-bottom-0 {\n background-color: transparent !important;\n border: none !important;\n }\n /* Panels */\n #posts #rss, .signup-button, .hero h1, .plan.personal, .caption,\n .centered-graphic, .login_form h1 {\n background-color: rgb(79, 140, 201) !important;\n border-color: rgb(79, 140, 201) !important;\n }\n /* Red panel */\n .majorproblem .pageheader_wrap, .error_box, .btn-close-issue, .closed-issues,\n .topic-tag-action .remove-topic-button:hover, .menu-item-danger:hover,\n .menu-item-danger.navigation-focus, .menu-item-danger.selected:hover,\n .menu-item-danger.selected.navigation-focus {\n background: #911 !important;\n border-color: #383838 !important;\n }\n .btn-close-issue:hover, .btn-danger:hover, .minibutton.danger:hover,\n .remove-topic-button:hover, .btn-danger:active, .btn-danger.selected,\n [open] > .btn-danger {\n background: #911 !important;\n border-color: #b00 !important;\n }\n .deprecation-banner {\n background: #200;\n border-color: #911;\n }\n .mergeable-dirty .bubble, .mergeable-dirty .merge-status-icon,\n .dangerzone > h3 {\n background: #911 !important;\n }\n .block-diff-deleted, .text-diff-deleted .block-diff-neutral {\n background: #b22 !important;\n }\n /* pink */\n /* https://github.com/StylishThemes/GitHub-Dark/issues/949 */\n /* Github uses !important inline styles on some of these elements which are\n impossible to overrides via userstyle */\n [style*=\"border-bottom: 1px solid #f9b3dd\"] {\n border-bottom: 1px solid #c49 !important;\n }\n [style*=\"border: 1px solid #f9b3dd\"], [style*=\"border: 1px solid #ec6cb9\"] {\n border: 1px solid #c49 !important;\n }\n [style*=\"border: 1px solid #f9b3dd\"] .text-gray-dark {\n color: #333 !important;\n }\n [style*=\"background: #ffeef8\"], [style*=\"background-color: #ffeef8\"] {\n background-color: #170711 !important;\n }\n /* brown */\n #feedHeaderContainer, .feedBackground, .infotip, .form-actions .tip,\n .mini-callout, .snippet em, #message .sent, .notification, .callout, .ejector,\n #issues_search .results em, .bootcamp-help ul li, .btn-download,\n .feature-tabs .tab-button, .plan.free, #message.minor, .chzn-results li em,\n #missing-readme, .page-notice, .facebox-alert, .deprecation-warning,\n .branch-status.status-pending .discussion-item-icon,\n .discussion-event-status-renamed .discussion-item-icon,\n .discussion-topic .branch-status.status-pending,\n .discussion-item-review.is-pending .file-header,\n .discussion-item-review.is-pending .comment-form-head.tabnav,\n .timeline-comment.unread-item .timeline-comment-header, .Label.bg-yellow,\n .code-list-item-private .blob-num {\n background-color: #261d08 !important;\n border-color: #542 !important;\n color: #ddd !important;\n }\n .discussion-item-review.is-pending .file, .timeline-comment.unread-item,\n .timeline-comment.unread-item .timeline-comment-label,\n .review-comment .pending-batched-suggestion-label,\n .is-pending .review-summary-form-wrapper, .code-list-item-private .file-box {\n border-color: #542 !important;\n }\n .timeline-comment-wrapper .timeline-comment.unread-item::before {\n border-right-color: #542 !important;\n }\n .timeline-comment-wrapper .timeline-comment.unread-item::after {\n border-right-color: #261d08 !important;\n }\n #toc .octicon-diff-modified, .secret .repo-label span, .api .s2 {\n color: #b74 !important;\n }\n .deprecation-warning a {\n color: #c97 !important;\n }\n .code-list-item-private .divider .blob-code,\n .code-list-item-private .divider .blob-num,\n .AnnotationsPopover .bg-yellow-light.flash-warn,\n .js-notification-search-autocomplete-results .bg-yellow-light {\n background-color: #261d08 !important;\n }\n /* semi-transparent brown */\n .compare-pr-placeholder, .compare-cutoff, .diff-cutoff,\n .markdown-body li.added.moved, .repo-private-label, .gist-secret-label,\n .label-private, .stale-files-tab, .signed-out-comment, .commits-list-item em,\n .unsupported-browser, .prereceive-feedback, .code-list em, .issue-list em,\n .user-list em, .wiki-list em, .blob-code .bg-yellow-light,\n .codesearch-results #code_search_results .bg-yellow-light {\n background: rgba(51, 34, 17, .4) !important;\n border: 1px solid #542 !important;\n color: #ddd !important;\n }\n .btn.btn-secret {\n background: linear-gradient(#321, #210) !important;\n border-color: #542 !important;\n }\n .btn.btn-secret:hover {\n background: linear-gradient(#432, #321) !important;\n }\n .btn.btn-secret[disabled], .btn.btn-secret[disabled]:hover {\n background: #321 !important;\n border-color: #542 !important;\n opacity: .8;\n }\n /* yellow text */\n /* inline style, note this does not work when color is not first */\n /* https://github.com/StylishThemes/GitHub-Dark/issues/952#issuecomment-501451675 */\n [style^=\"color: #d3ac3b\"] {\n color: #cb4 !important;\n }\n /* .bg-pending might be a GitHub bug as it sets the fg */\n .text-pending, .text-renamed, .bg-pending, .page-new-repo .octicon-lock,\n body[class=\"page-responsive\"] .repo-list .private .octicon-lock,\n .menu a .octicon.color-yellow-7 {\n color: #cb4 !important;\n }\n .archived-project-cards-pane .project-card .archived-header {\n color: #fbca04 !important;\n }\n /* yellow border (travis) */\n .branch-action-state-unknown .branch-action-body,\n .branch-action-state-unknown .branch-status,\n .branch-action-state-unstable .branch-action-body,\n .branch-action-state-unstable .branch-status {\n border-color: #884 !important;\n }\n .branch-action-state-unknown .branch-action-body::before,\n .branch-action-state-unstable .branch-action-body::before {\n border-right-color: #884 !important;\n }\n /* yellow background */\n .Label--outline.bg-yellow-light,\n .review-comment .pending-batched-suggestion-label {\n background: #302808 !important;\n }\n .border-bottom.bg-yellow-light {\n background: #302808 !important;\n border-color: #542 !important;\n }\n /* green */\n /* labels */\n #forkqueue .legend .clean, #revisions ul li.current, .excerpt, .plan.business,\n .popout, #statusbar, .clean td, #download_button, .status-box.good a,\n .new-issues, .new-pulls, .mergeable-clean .merge-status-icon,\n .settings-email .default, .repo-owner-comment .comment-header-tag,\n .mergeable-clean .bubble, .gh-header-status.open,\n .branch-status.status-success .discussion-item-icon, .boxed-group-success,\n #message.good, .add-topic-button:hover,\n .topic-tag-action .add-topic-button:hover {\n background: #163 !important;\n border-color: #041 !important;\n }\n main .note.bg-green-light {\n background: #002800 !important;\n border-color: #060 !important;\n }\n /* Green border */\n .mergeable-clean .bubble .mergeable,\n .branch-action-state-clean .branch-action-body {\n border-color: #041 !important;\n }\n .mergeable-clean .bubble::after,\n .branch-action-state-clean .branch-action-body::before {\n border-right-color: #041 !important;\n }\n .billing-confirmation-box {\n border-color: #083 !important;\n }\n .border.border-green {\n border-color: #060 !important;\n }\n /* original color */\n .signed-commit-badge.verified:hover, .Label--outline-green {\n border-color: #6cc644;\n }\n .signed-commit-verified-label, .signed-commit-badge.verified,\n .reponame-suggestion {\n color: #55a532;\n }\n /* Green text */\n /* inline style, note this does not work when color is not first */\n /* https://github.com/StylishThemes/GitHub-Dark/issues/952#issuecomment-501451675 */\n [style^=\"color: #28a745\"] {\n color: #6cc644 !important;\n }\n .text-open, .text-success, .insertions, .cadd, .gi .diff-line-num,\n .authors-and-code .insertions, span.diffstat .diffstat-bar.diff-added,\n span.diffstat .diffstat-bar i.plus,\n ul.summary-stats li .octicon-git-branch-create,\n ul.summary-stats li .octicon-issue-opened, #toc .octicon-diff-added,\n .setup-info-module .features-list .octicon, .setup-form-container .secure,\n .highlight .gi, .type-icon-state-open, .release-label.latest a,\n .release .Label--latest a, .menu a .octicon.text-green {\n color: #6cc644 !important;\n }\n /* bright green background */\n .block-diff-added, .text-diff-added .block-diff-neutral {\n background: #6cc644 !important;\n }\n .noproblems .pageheader_wrap, a.new-repo:hover {\n background: #373 !important;\n }\n /* New additions */\n .repo-owner-tag .tag, .gist-owner-tag .tag {\n background: #070 !important;\n color: #ddd !important;\n }\n /* orange */\n #user-links .unread_count, .minorproblem .pageheader_wrap {\n background: rgba(203, 108, 0, .8) !important;\n }\n .text-orange, .release-label.prerelease, .release .Label--prerelease,\n a.stale-files-tab-link {\n color: #f3582c !important;\n }\n .release-label.prerelease, .release .Label--prerelease {\n border-color: #f66a0a !important;\n }\n /* pjax loading */\n .pjax-loader-bar .progress {\n background: rgb(79, 140, 201) !important;\n box-shadow: 0 0 10px rgb(79, 140, 201) !important;\n }\n ul.view-modes-menu {\n background-image: url(\"data:image/gif;base64,R0lGODlhBwAEAIAAACIiIv///yH5BAEAAAEALAAAAAAHAAQAAAIIhA+BGWoNWSgAOw==\") !important;\n }\n .mini-icon-windows::before {\n background-position: -18px 0 !important;\n }\n /* Repo list (https://github.com/{user}?tab=repositories) */\n .repo-list-item p, .repo-list-item .repo-list-stats, .review-thread-reply {\n position: relative !important;\n z-index: 1 !important;\n }\n /* GitHub Enterprise (GHE) stuff */\n body.enterprise .repohead.experiment-repo-nav {\n background: rgba(24, 24, 24, .4);\n }\n body.enterprise .new-discussion-timeline .previewable-comment-form .comment-form-head.tabnav {\n background: #202020;\n }\n body.enterprise .timeline-comment-wrapper .timeline-comment.current-user::before {\n border-right-color: #246;\n }\n body.enterprise .timeline-comment-wrapper .timeline-comment.current-user::after {\n border-right-color: #182030;\n }\n body.enterprise .timeline-new-comment .timeline-comment::before {\n border-right-color: #404040;\n }\n body.enterprise .timeline-new-comment .timeline-comment::after {\n border-right-color: #202020;\n }\n body.enterprise .commit-tease {\n background-color: #182030;\n border-color: #246;\n }\n /* HACK: Fix review comment timeline */\n /* https://github.com/nodejs/node/pull/8519#r78637092 */\n .review-comment-contents::after, .review-comment.is-comment-editing::after {\n z-index: 0 !important;\n }\n .review-comment .avatar {\n position: relative !important;\n z-index: 1 !important;\n background: #181818 !important;\n box-shadow: 0 0 0 4px #181818 !important;\n }\n /* center the dot icon inside green discussion timeline icons */\n .discussion-item-reopened .discussion-item-icon {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n /* add borders to full-page flash on top of repos */\n main > .flash-full.flash-warn {\n border-top: 1px solid #bba257 !important;\n border-bottom: 1px solid #bba257 !important;\n }\n main > .flash-full.flash-error {\n border-top: 1px solid #f44 !important;\n border-bottom: 1px solid #f44 !important;\n }\n main > .flash-full.flash-success {\n border-top: 1px solid #6cc644 !important;\n border-bottom: 1px solid #6cc644 !important;\n }\n /* Make text selection work over file path separators because in Firefox */\n /* a text selection can not start over a pseudo element. The precise values */\n /* are to match the rendering of GitHub's single-space pseudo contents */\n .breadcrumb .separator {\n margin-left: .283em;\n margin-right: .283em;\n }\n .breadcrumb .separator::after, .breadcrumb .separator::before {\n content: none;\n }\n /* Hack to add a background to the sticky toolbar on the pr files tab when using unified diffs */\n body:not(.full-width) .pr-toolbar.is-stuck + .toolbar-shadow::before {\n content: \"\";\n position: absolute;\n top: -60px;\n left: 0;\n right: 0;\n height: 60px;\n background: #181818;\n box-shadow: 0 0 .75rem rgba(0, 0, 0, .7);\n }\n .gh-header-shadow {\n border: none !important;\n box-shadow: 0 0 .75rem rgba(0, 0, 0, .7) !important;\n }\n .participation-graph svg {\n background: transparent !important;\n opacity: .1 !important;\n z-index: 0 !important;\n }\n .inbox-zero-octocat, .network-graph-container, img.TenYears-hero {\n opacity: .6 !important;\n }\n .search .minibutton span {\n background-position: center -95px !important;\n }\n /* history expand buttons */\n .commit .minibutton.expander-minibutton span {\n background-position: 50% -45px !important;\n }\n .commit.open .minibutton.expander-minibutton span {\n background-position: 50% -145px !important;\n }\n /* pull request avatar bubble */\n .avatar-bubble::before, .discussion-bubble-content::before {\n border-color: transparent #333 transparent transparent !important;\n }\n /* octocat spinners */\n img[src*=\"octocat-spinner\"], img[src=\"/images/spinner.gif\"],\n .profile-picture-spinner {\n width: 0 !important;\n height: 0 !important;\n }\n img[src*=\"octocat-spinner\"], img[src=\"/images/spinner.gif\"], .facebox-loading,\n .branch-action-body .spinner, .status-indicator-loading,\n .ajax-pagination-form.loading .ajax-pagination-btn::after,\n .profile-picture-spinner, .more-repos-link.is-loading,\n auto-check .is-autocheck-loading {\n background-image: url('data:image/svg+xml;utf8,') !important;\n background-size: contain !important;\n background-repeat: no-repeat !important;\n background-position: 50% 50% !important;\n }\n .more-repos-link.is-loading {\n background-repeat: no-repeat !important;\n background-position: 50% 50% !important;\n background-size: 16px 16px !important;\n }\n auto-check .is-autocheck-loading {\n background-size: 16px 16px !important;\n background-position: 97% 50% !important;\n }\n /* Timeline Load More squiggly line */\n /* https://github.com/go-gitea/gitea/pull/8346#issuecomment-638578779 */\n /* https://github.com/swagger-api/swagger-ui/pull/6030#issuecomment-638412978 */\n .pagination-loader-container {\n background: transparent url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NHB4IiBoZWlnaHQ9IjM0cHgiIHZpZXdCb3g9IjAgMCA0NCAzNCI+PHBvbHlsaW5lIGZpbGw9IiM0NDQiIHBvaW50cz0iMCwyMSAyMiw4IDQ0LDIxIDQ0LDI2IDIyLDEzIDAsMjYiLz48L3N2Zz4NCg==\") repeat-x left center/22px 17px !important;\n }\n img[src*=\"octocat-spinner\"][width=\"128\"] {\n padding: 64px !important;\n }\n img[src*=\"octocat-spinner\"][width=\"64\"],\n .profile-picture-spinner\n img[src=\"/images/spinner.gif\"] {\n padding: 32px !important;\n }\n img[src*=\"octocat-spinner\"][width=\"32\"] {\n padding: 16px !important;\n }\n img[src*=\"octocat-spinner\"][width=\"16\"] {\n padding: 8px !important;\n }\n .sponsors-questions::after {\n opacity: .35;\n }\n /* remove code view padding */\n .Box-body.blob-wrapper {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n /* remove actions editor padding */\n form[action*=\"/.github/workflows/\"] .commit-create {\n padding-top: 0 !important;\n }\n /* remove margin above codemirror */\n .file-header.mb-2 {\n margin-bottom: 0 !important;\n }\n /* network members */\n .network-tree {\n width: 19px !important;\n height: 0 !important;\n padding-top: 26px !important;\n background-repeat: no-repeat !important;\n background-position: -2px center !important;\n }\n .network-tree[src$=\"t.png\"] {\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAIAAAMzMzP///yH5BAEAAAEALAAAAAAUABoAAAIkjI+pG8APY5O0uorfzRzt3n1g5pSTOTJiSq1s5L6ajMW0YgcFADs=\") !important;\n }\n .network-tree[src$=\"i.png\"] {\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAIAAAMzMzP///yH5BAEAAAEALAAAAAAUABoAAAIhjI+pG8APY5O0uorfzRzt3n1gJo6WGaJcqUJsy7ywIgcFADs=\") !important;\n }\n .network-tree[src$=\"l.png\"] {\n background-image: url(\"data:image/gif;base64,R0lGODlhFAAaAIAAAMzMzP///yH5BAEAAAEALAAAAAAUABoAAAIejI+pG8APY5O0uorfzRzt3n1g5pSTOabqyrbuC68FADs=\") !important;\n }\n #searchfield {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAMAAABFNRROAAAAM1BMVEUAAABKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkrmvr7+AAAAEXRSTlMAmEgOJpKQimpgRHVzVk8fFp8jXkwAAABRSURBVAjXVY1JDsAwCAMxhGxNl/+/toVEKpmLNcLCRJRqKTXRhOGwS4KyCCv8eoBnY1hkiIUgb6ah2THWly7SFS0uAKfZWm+mP59eUfNNgYdehjcBh7PIFcgAAAAASUVORK5CYII=\") !important;\n background-repeat: no-repeat !important;\n background-position: 8px center !important;\n }\n /* front page: 'more' spinner */\n .ajax-pagination-form.loading .ajax-pagination-btn {\n position: relative !important;\n border-color: #343434 !important;\n background: #181818 !important;\n }\n .ajax-pagination-form.loading .ajax-pagination-btn::after {\n content: \"\" !important;\n position: absolute !important;\n width: 16px !important;\n height: 16px !important;\n left: 50% !important;\n top: 50% !important;\n transform: translate(-50%, -50%) !important;\n }\n .branch-action-body .spinner, div.facebox-loading, .status-indicator-loading {\n background-position: center center !important;\n width: 100% !important;\n background-repeat: no-repeat !important;\n }\n /* image preview background */\n .render-shell .img-view img, .file .image img, .file .image canvas, img.asset {\n background-image: url(\"data:image/gif;base64,R0lGODlhCgAKAIAAABoaGgAAACwAAAAACgAKAAACEYQdmYcaDNxjEspKndVZbc8UADs=\") !important;\n }\n .render-shell:hover .img-view img, .file:hover .image img,\n .file:hover .image canvas, img.asset:hover {\n background-image: url(\"data:image/gif;base64,R0lGODlhCgAKAIAAAOXl5f///yH5BAAAAAAALAAAAAAKAAoAAAIRhB2ZhxoM3GMSykqd1VltzxQAOw==\") !important;\n }\n /*