diff --git a/CHANGELOG.md b/CHANGELOG.md index 410eb6a..fc2a8f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog --- +# 5.1.1 [Consistency Updates] + +- Updated syntax coloring when editing yaml files and readme files. + # 5.1.0 [GitHub Updates] - Fixed major styling issues with newest GitHub style update. diff --git a/buildSrc/src/BuildThemes.ts b/buildSrc/src/BuildThemes.ts index b1a4db9..3d076d8 100644 --- a/buildSrc/src/BuildThemes.ts +++ b/buildSrc/src/BuildThemes.ts @@ -166,6 +166,8 @@ function constructNamedColorTemplate( ...resolvedColors, ...resolvedColorTemplate, ...resolvedNameColors, + accentColorEditor: dokiThemeTemplateJson.overrides?.editorScheme?.colors?.accentColor || + dokiThemeTemplateJson.colors.accentColor, }; } diff --git a/buildSrc/src/types.ts b/buildSrc/src/types.ts index 1078d24..c7bfc67 100644 --- a/buildSrc/src/types.ts +++ b/buildSrc/src/types.ts @@ -12,6 +12,11 @@ export interface MasterDokiThemeDefinition { product?: 'community' | 'ultimate'; stickers: Stickers; colors: StringDictonary; + overrides?: { + editorScheme? : { + colors: StringDictonary; + } + } } export interface StringDictonary { diff --git a/buildSrc/templates/tempCss.css.txt b/buildSrc/templates/tempCss.css.txt index 97b92d2..b98ae4c 100644 --- a/buildSrc/templates/tempCss.css.txt +++ b/buildSrc/templates/tempCss.css.txt @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: {{infoForeground}} !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: {{keywordColor}} !important; } .cm-comment { - color: #777 !important; + color: {{classNameColor}} !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: {{htmlTagColor}} !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: {{accentColorEditor}} !important; font-style: italic !important; text-decoration: none !important; } diff --git a/package.json b/package.json index ab4325f..50da040 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-github", - "version": "5.1.0", + "version": "5.1.1", "dependencies": { } } diff --git a/themes/aqua.user.css b/themes/aqua.user.css index c8ab35d..a3b2420 100644 --- a/themes/aqua.user.css +++ b/themes/aqua.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Aqua @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #7b8bab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #988F9A !important; } .cm-comment { - color: #777 !important; + color: #8dc6ef !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #578CDA !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/asuna_dark.user.css b/themes/asuna_dark.user.css index 5ba7dd4..7761063 100644 --- a/themes/asuna_dark.user.css +++ b/themes/asuna_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Asuna Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -18914,11 +18914,11 @@ table.files { .blob-code-deletion, .CodeMirror-linebackground.conflict-background, .conflict-gutter-marker, .conflict-background + .CodeMirror-gutter-wrapper .CodeMirror-linenumber { - background-color: #40424599 !important; + background-color: #24242699 !important; border-color: #600 !important; } .blob-num-deletion { - background-color: #40424599 !important; + background-color: #24242699 !important; } /* code splitter in diffs */ .blob-num-expandable, .blob-num-hunk { @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #7a3f41 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #988F9A !important; } .cm-comment { - color: #777 !important; + color: #db974d !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e53935 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #e0474b !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/asuna_light.user.css b/themes/asuna_light.user.css index 882b155..712037f 100644 --- a/themes/asuna_light.user.css +++ b/themes/asuna_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Asuna Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #a25252 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #a61d0d !important; } .cm-comment { - color: #777 !important; + color: #db974d !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e53935 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #212121 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/beatrice.user.css b/themes/beatrice.user.css index 236030f..a2dbfa9 100644 --- a/themes/beatrice.user.css +++ b/themes/beatrice.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Beatrice @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #dd87a1 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #C869A3 !important; } .cm-comment { - color: #777 !important; + color: #df81b8 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #7B6970 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #5c84da !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/darkness_dark.user.css b/themes/darkness_dark.user.css index 0438d19..fdcc15e 100644 --- a/themes/darkness_dark.user.css +++ b/themes/darkness_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Darkness Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #7c7262 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #ffba2f !important; } .cm-comment { - color: #777 !important; + color: #d53a4a !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #f4fa8c !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/darkness_light.user.css b/themes/darkness_light.user.css index 8cc88c6..819e163 100644 --- a/themes/darkness_light.user.css +++ b/themes/darkness_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Darkness Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #fefefa !important; --color-bg-canvas-inset: #fefefa !important; --color-bg-primary: #fefefa !important; - --color-calendar-graph-day-bg: #F3F2E2 !important; - --color-workflow-card-bg: #F3F2E2 !important; + --color-calendar-graph-day-bg: #f4f3ee !important; + --color-workflow-card-bg: #f4f3ee !important; --color-bg-tertiary: #FFFEF9 !important; --color-bg-secondary: #FFF6E4 !important; --color-bg-discussions-row-emoji-box: #fffef7 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #fffff7 !important; --color-border-primary: #f1f4e0 !important; --color-border-primary: #f1f4e0 !important; - --color-notifications-row-read-bg: #F3F2E2 !important; + --color-notifications-row-read-bg: #f4f3ee !important; --color-notifications-row-bg: #FFF6E4 !important; --color-input-disabled-bg: #FFFFBC !important; --color-input-disabled-border: #f1f4e0 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #aaaaaa !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #E36207 !important; } .cm-comment { - color: #777 !important; + color: #c79c19 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #22863a !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #b6323f !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/echidna.user.css b/themes/echidna.user.css index 64adaed..77c56fd 100644 --- a/themes/echidna.user.css +++ b/themes/echidna.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Echidna @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #75aaab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8b8b8b !important; } .cm-comment { - color: #777 !important; + color: #EFA554 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #8daeef !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #7ceec8 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/emilia_dark.user.css b/themes/emilia_dark.user.css index 78ebb6a..126e156 100644 --- a/themes/emilia_dark.user.css +++ b/themes/emilia_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Emilia Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #4e3162 !important; --color-bg-canvas-inset: #4e3162 !important; --color-bg-primary: #4e3162 !important; - --color-calendar-graph-day-bg: #402a54 !important; - --color-workflow-card-bg: #402a54 !important; + --color-calendar-graph-day-bg: #442a55 !important; + --color-workflow-card-bg: #442a55 !important; --color-bg-tertiary: #492d5a !important; --color-bg-secondary: #543466 !important; --color-bg-discussions-row-emoji-box: #553967 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #4e2d62 !important; --color-border-primary: #553a63 !important; --color-border-primary: #553a63 !important; - --color-notifications-row-read-bg: #402a54 !important; + --color-notifications-row-read-bg: #442a55 !important; --color-notifications-row-bg: #543466 !important; --color-input-disabled-bg: #513466 !important; --color-input-disabled-border: #553a63 !important; @@ -19288,7 +19288,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.section */ .pl-ent { - color: #E03FA4 !important; + color: #e049b0 !important; } /* entity.name.tag */ .pl-entc { @@ -19305,7 +19305,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.type.module */ .pl-eoa { - color: #E03FA4 !important; + color: #e049b0 !important; } /* entity.other.attribute-name */ .pl-eoac { @@ -19317,11 +19317,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.entity */ .pl-eoai { - color: #E03FA4 !important; + color: #e049b0 !important; } /* entity.other.attribute-name.id */ .pl-eoai .pl-pde { - color: #E03FA4 !important; + color: #e049b0 !important; } /* punctuation.definition.entity */ .pl-eoi { @@ -19329,15 +19329,15 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.other.inherited-class */ .pl-k { - color: #E03FA4 !important; + color: #e049b0 !important; } /* keyword */ .pl-ko { - color: #E03FA4 !important; + color: #e049b0 !important; } /* keyword.operator */ .pl-kolp { - color: #E03FA4 !important; + color: #e049b0 !important; } /* keyword.operator.logical.python */ .pl-kos { @@ -19358,7 +19358,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.bold */ .pl-mc { - color: #E03FA4 !important; + color: #e049b0 !important; } /* markup.changed */ .pl-mh { @@ -19371,7 +19371,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.heading punctuation.definition.heading */ .pl-mi { - color: #E03FA4 !important; + color: #e049b0 !important; font-style: italic !important; } /* markup.italic */ @@ -19396,11 +19396,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.quote */ .pl-mr { - color: #E03FA4 !important; + color: #e049b0 !important; } /* meta.require */ .pl-ms { - color: #E03FA4 !important; + color: #e049b0 !important; } /* meta.selector */ .pl-pdb { @@ -19422,7 +19422,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.entity */ .pl-pdi { - color: #E03FA4 !important; + color: #e049b0 !important; font-style: italic !important; } /* punctuation.definition.italic */ @@ -19455,7 +19455,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* source */ .pl-mp .pl-s3 { - color: #E03FA4 !important; + color: #e049b0 !important; } /* support */ .pl-s3 { @@ -19487,7 +19487,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* storage.modifier.package */ .pl-sok { - color: #E03FA4 !important; + color: #e049b0 !important; } /* support.other.keyword */ .pl-sol { @@ -19503,19 +19503,19 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* string.regexp */ .pl-sra { - color: #E03FA4 !important; + color: #e049b0 !important; } /* string.regexp string.regexp.arbitrary-repetition */ .pl-src { - color: #E03FA4 !important; + color: #e049b0 !important; } /* string.regexp.character-class */ .pl-sre { - color: #E03FA4 !important; + color: #e049b0 !important; } /* string.regexp source.ruby.embedded */ .pl-st { - color: #E03FA4 !important; + color: #e049b0 !important; } /* support.type */ .pl-stj { @@ -19663,16 +19663,16 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #a775ab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; } .cm-operator { - color: #E03FA4 !important; + color: #e049b0 !important; } .cm-comment { - color: #777 !important; + color: #FF9CD6 !important; font-style: italic !important; font-weight: normal !important; } @@ -19687,7 +19687,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #f7f7f7 !important; } .cm-builtin { - color: #E03FA4 !important; + color: #e049b0 !important; } .cm-tag { color: #997643 !important; @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #bca3aa !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #BC60CB !important; font-style: italic !important; text-decoration: none !important; } @@ -19739,7 +19739,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Name */ :is(#notebook, body.api) .highlight .k, .highlight code .k { - color: #E03FA4 !important; + color: #e049b0 !important; } /* Keyword */ :is(#notebook, body.api) .highlight .l, .highlight code .l { @@ -19854,7 +19854,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Name.Attribute */ :is(#notebook, body.api) .highlight .nb, .highlight code .nb { - color: #E03FA4 !important; + color: #e049b0 !important; } /* Name.Builtin */ :is(#notebook, body.api) .highlight .nc, .highlight code .nc { @@ -19886,7 +19886,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Name.Namespace */ :is(#notebook, body.api) .highlight .nt, .highlight code .nt { - color: #E03FA4 !important; + color: #e049b0 !important; font-weight: bold !important; } /* Name.Tag */ diff --git a/themes/emilia_light.user.css b/themes/emilia_light.user.css index bed2678..8bee88f 100644 --- a/themes/emilia_light.user.css +++ b/themes/emilia_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Emilia Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #8864ac !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #C869A3 !important; } .cm-comment { - color: #777 !important; + color: #cb70a5 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #7B6970 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #90468c !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/hatsune_miku.user.css b/themes/hatsune_miku.user.css index 5e8259b..97936fc 100644 --- a/themes/hatsune_miku.user.css +++ b/themes/hatsune_miku.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hatsune Miku @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #293030 !important; --color-bg-canvas-inset: #293030 !important; --color-bg-primary: #293030 !important; - --color-calendar-graph-day-bg: #293433 !important; - --color-workflow-card-bg: #293433 !important; + --color-calendar-graph-day-bg: #2b3231 !important; + --color-workflow-card-bg: #2b3231 !important; --color-bg-tertiary: #2f3635 !important; --color-bg-secondary: #313938 !important; --color-bg-discussions-row-emoji-box: #323737 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #313939 !important; --color-border-primary: #2d3839 !important; --color-border-primary: #2d3839 !important; - --color-notifications-row-read-bg: #293433 !important; + --color-notifications-row-read-bg: #2b3231 !important; --color-notifications-row-bg: #313938 !important; --color-input-disabled-bg: #3a4444 !important; --color-input-disabled-border: #2d3839 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #73999b !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #988F9A !important; } .cm-comment { - color: #777 !important; + color: #8defe4 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #ff69df !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/ishtar_dark.user.css b/themes/ishtar_dark.user.css index 077a20b..15c7dd3 100644 --- a/themes/ishtar_dark.user.css +++ b/themes/ishtar_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ishtar Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #866e45 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #db974d !important; } .cm-comment { - color: #777 !important; + color: #7C7C82 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e53935 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #f5c443 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/ishtar_light.user.css b/themes/ishtar_light.user.css index da0cd6b..326a755 100644 --- a/themes/ishtar_light.user.css +++ b/themes/ishtar_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ishtar Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #5078a5 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #db974d !important; } .cm-comment { - color: #777 !important; + color: #131f3b !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e53935 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #9c3123 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/kanna.user.css b/themes/kanna.user.css index b6f4ca5..1bc9e33 100644 --- a/themes/kanna.user.css +++ b/themes/kanna.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Kanna @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #9d79c2 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d285fd !important; } .cm-comment { - color: #777 !important; + color: #6AADFF !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #BD84DD !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #69ecf5 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/katsuragi_misato.user.css b/themes/katsuragi_misato.user.css index 2cbeea9..1877062 100644 --- a/themes/katsuragi_misato.user.css +++ b/themes/katsuragi_misato.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Katsuragi Misato @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #8c72a9 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #BD84DD !important; } .cm-comment { - color: #777 !important; + color: #6AADFF !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #BD84DD !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #42E66C !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/konata.user.css b/themes/konata.user.css index 74283e8..091e1c5 100644 --- a/themes/konata.user.css +++ b/themes/konata.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Konata @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #addfa9 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #ffc9d7 !important; } .cm-comment { - color: #777 !important; + color: #cda8fa !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #f4ffa2 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #60ff62 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/makise_kurisu.user.css b/themes/makise_kurisu.user.css index e5300cd..b1d6ae7 100644 --- a/themes/makise_kurisu.user.css +++ b/themes/makise_kurisu.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Makise Kurisu @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #843030 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #BD93F9 !important; } .cm-comment { - color: #777 !important; + color: #e0474b !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #bca3aa !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #DEC4AA !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/megumin.user.css b/themes/megumin.user.css index 394c899..5bebef2 100644 --- a/themes/megumin.user.css +++ b/themes/megumin.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Megumin @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #75595d !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #a28a92 !important; } .cm-comment { - color: #777 !important; + color: #dae838 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #e4ff10 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/mioda_ibuki_dark.user.css b/themes/mioda_ibuki_dark.user.css index bfc68d5..46071d2 100644 --- a/themes/mioda_ibuki_dark.user.css +++ b/themes/mioda_ibuki_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Mioda Ibuki Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #141617 !important; --color-bg-canvas-inset: #141617 !important; --color-bg-primary: #141617 !important; - --color-calendar-graph-day-bg: #343434 !important; - --color-workflow-card-bg: #343434 !important; + --color-calendar-graph-day-bg: #1f2123 !important; + --color-workflow-card-bg: #1f2123 !important; --color-bg-tertiary: #191b1d !important; --color-bg-secondary: #222526 !important; --color-bg-discussions-row-emoji-box: #262c32 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #1a1e20 !important; --color-border-primary: #1e2021 !important; --color-border-primary: #1e2021 !important; - --color-notifications-row-read-bg: #343434 !important; + --color-notifications-row-read-bg: #1f2123 !important; --color-notifications-row-bg: #222526 !important; --color-input-disabled-bg: #333333 !important; --color-input-disabled-border: #1e2021 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #ab8d9f !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8b8b8b !important; } .cm-comment { - color: #777 !important; + color: #8daeef !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #ff69df !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/mioda_ibuki_light.user.css b/themes/mioda_ibuki_light.user.css index eae1a79..e2850e1 100644 --- a/themes/mioda_ibuki_light.user.css +++ b/themes/mioda_ibuki_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Mioda Ibuki Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #5ca4d4 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #C869A3 !important; } .cm-comment { - color: #777 !important; + color: #cb70a5 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #7B6970 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #DA46A7 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/monika_dark.user.css b/themes/monika_dark.user.css index 1e06ae0..a82e0c9 100644 --- a/themes/monika_dark.user.css +++ b/themes/monika_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Monika Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #3b753d !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #3eae5d !important; } .cm-comment { - color: #777 !important; + color: #bca3aa !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #3eae5d !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #388E3C !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/monika_light.user.css b/themes/monika_light.user.css index 0558a8c..72590c2 100644 --- a/themes/monika_light.user.css +++ b/themes/monika_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Monika Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #3b753d !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #3eae5d !important; } .cm-comment { - color: #777 !important; + color: #7AA42E !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #3eae5d !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #388E3C !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/natsuki_dark.user.css b/themes/natsuki_dark.user.css index 5f76cda..6f927d0 100644 --- a/themes/natsuki_dark.user.css +++ b/themes/natsuki_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Natsuki Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #b74170 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #bca3aa !important; } .cm-comment { - color: #777 !important; + color: #FF9CD6 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #bca3aa !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #E94686 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/natsuki_light.user.css b/themes/natsuki_light.user.css index 0d7a3ec..69fe52b 100644 --- a/themes/natsuki_light.user.css +++ b/themes/natsuki_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Natsuki Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #dd87a1 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #C869A3 !important; } .cm-comment { - color: #777 !important; + color: #df81b8 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #7B6970 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #E94686 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/ram.user.css b/themes/ram.user.css index 2323b76..8ca9306 100644 --- a/themes/ram.user.css +++ b/themes/ram.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ram @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #302930 !important; --color-bg-canvas-inset: #302930 !important; --color-bg-primary: #302930 !important; - --color-calendar-graph-day-bg: #2c2934 !important; - --color-workflow-card-bg: #2c2934 !important; + --color-calendar-graph-day-bg: #302b32 !important; + --color-workflow-card-bg: #302b32 !important; --color-bg-tertiary: #342f36 !important; --color-bg-secondary: #353139 !important; --color-bg-discussions-row-emoji-box: #373237 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #373139 !important; --color-border-primary: #362d39 !important; --color-border-primary: #362d39 !important; - --color-notifications-row-read-bg: #2c2934 !important; + --color-notifications-row-read-bg: #302b32 !important; --color-notifications-row-bg: #353139 !important; --color-input-disabled-bg: #413a44 !important; --color-input-disabled-border: #362d39 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #ab7b9d !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #988F9A !important; } .cm-comment { - color: #777 !important; + color: #EF9FD8 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #a87ff8 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/rem.user.css b/themes/rem.user.css index 5835243..d5d2aa5 100644 --- a/themes/rem.user.css +++ b/themes/rem.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rem @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #292A30 !important; --color-bg-canvas-inset: #292A30 !important; --color-bg-primary: #292A30 !important; - --color-calendar-graph-day-bg: #292e34 !important; - --color-workflow-card-bg: #292e34 !important; + --color-calendar-graph-day-bg: #2b2c32 !important; + --color-workflow-card-bg: #2b2c32 !important; --color-bg-tertiary: #2f3036 !important; --color-bg-secondary: #313439 !important; --color-bg-discussions-row-emoji-box: #323337 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #313239 !important; --color-border-primary: #2d3439 !important; --color-border-primary: #2d3439 !important; - --color-notifications-row-read-bg: #292e34 !important; + --color-notifications-row-read-bg: #2b2c32 !important; --color-notifications-row-bg: #313439 !important; --color-input-disabled-bg: #3a3f44 !important; --color-input-disabled-border: #2d3439 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #7b8bab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #988F9A !important; } .cm-comment { - color: #777 !important; + color: #8dc6ef !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #a87ff8 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/rias.user.css b/themes/rias.user.css index 0c195b8..27f7638 100644 --- a/themes/rias.user.css +++ b/themes/rias.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rias @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #cdacac !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #C04750 !important; } .cm-comment { - color: #777 !important; + color: #e03392 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #fbf96e !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/rory_mercury.user.css b/themes/rory_mercury.user.css index dc39761..eb39cfe 100644 --- a/themes/rory_mercury.user.css +++ b/themes/rory_mercury.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rory Mercury @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #843030 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #e0474b !important; } .cm-comment { - color: #777 !important; + color: #BD93F9 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #666f71 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #b53241 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/ryuko.user.css b/themes/ryuko.user.css index 95c9ae9..ab4b912 100644 --- a/themes/ryuko.user.css +++ b/themes/ryuko.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ryuko @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #6e707a !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #e0474b !important; } .cm-comment { - color: #777 !important; + color: #6893f3 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #a28a92 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #e4ff10 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/satsuki.user.css b/themes/satsuki.user.css index 54503fe..e10ec0d 100644 --- a/themes/satsuki.user.css +++ b/themes/satsuki.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Satsuki @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #6581c8 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #275AB3 !important; } .cm-comment { - color: #777 !important; + color: #757881 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e53935 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #275AB3 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/sayori_dark.user.css b/themes/sayori_dark.user.css index 60d0172..96db56f 100644 --- a/themes/sayori_dark.user.css +++ b/themes/sayori_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Sayori Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #3a9fb1 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #bca3aa !important; } .cm-comment { - color: #777 !important; + color: #c1ff10 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #bca3aa !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #00BCD4 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/sayori_light.user.css b/themes/sayori_light.user.css index b983203..c7c696b 100644 --- a/themes/sayori_light.user.css +++ b/themes/sayori_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Sayori Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #64a6ac !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #9D868D !important; } .cm-comment { - color: #777 !important; + color: #FF3889 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #9D868D !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #2e7093 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/sonoda_umi.user.css b/themes/sonoda_umi.user.css index 73babbe..1f15827 100644 --- a/themes/sonoda_umi.user.css +++ b/themes/sonoda_umi.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Sonoda Umi @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -18914,11 +18914,11 @@ table.files { .blob-code-deletion, .CodeMirror-linebackground.conflict-background, .conflict-gutter-marker, .conflict-background + .CodeMirror-gutter-wrapper .CodeMirror-linenumber { - background-color: #2D2A3699 !important; + background-color: #21214099 !important; border-color: #600 !important; } .blob-num-deletion { - background-color: #2D2A3699 !important; + background-color: #21214099 !important; } /* code splitter in diffs */ .blob-num-expandable, .blob-num-hunk { @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #6878c2 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #58b7ff !important; } .cm-comment { - color: #777 !important; + color: #78F5F0 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #FF357C !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #EFA554 !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/tohsaka_rin.user.css b/themes/tohsaka_rin.user.css index ad37e8a..bd3d142 100644 --- a/themes/tohsaka_rin.user.css +++ b/themes/tohsaka_rin.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Tohsaka Rin @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #86a4ab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #666f71 !important; } .cm-comment { - color: #777 !important; + color: #EFA554 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #e0474b !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #68a8cb !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/yukinoshita_yukino.user.css b/themes/yukinoshita_yukino.user.css index eafc983..e544455 100644 --- a/themes/yukinoshita_yukino.user.css +++ b/themes/yukinoshita_yukino.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Yukinoshita Yukino @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -22,7 +22,7 @@ fill: none; } .Popover-message::before { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } .Popover-message::after { border-bottom-color: #1f2126; @@ -62,12 +62,12 @@ --color-calendar-graph-day-L4-bg: #3d63bd !important; --color-verified-badge-bg: #00000000 !important; --color-bg-overlay: #222429 !important; - --color-border-primary: #202227 !important; - --color-border-primary: #202227 !important; + --color-border-primary: #2b2d32 !important; + --color-border-primary: #2b2d32 !important; --color-notifications-row-read-bg: #25272c !important; --color-notifications-row-bg: #23252a !important; --color-input-disabled-bg: #303237 !important; - --color-input-disabled-border: #202227 !important; + --color-input-disabled-border: #2b2d32 !important; } .suggester li:hover .octicon, @@ -102,11 +102,11 @@ } .SelectMenu-tabs { - box-shadow: inset 0 -1px 0 #202227; + box-shadow: inset 0 -1px 0 #2b2d32; } .SelectMenu-tab { - box-shadow: inset 0 -1px 0 #202227; + box-shadow: inset 0 -1px 0 #2b2d32; } .autocomplete-item { @@ -121,7 +121,7 @@ display: flex; overflow-x: auto; overflow-y: hidden; - box-shadow: inset 0 -1px 0 #202227; + box-shadow: inset 0 -1px 0 #2b2d32; justify-content: space-between; } @@ -175,7 +175,7 @@ } /* source #0: "#f5f5f5","#fff" */ .shade-gradient { - background-image: linear-gradient(180deg, #202227, #1f2126; background-image: none); + background-image: linear-gradient(180deg, #2b2d32, #1f2126; background-image: none); } /* source #0: "color: #333" */ .text-emphasized { @@ -243,7 +243,7 @@ } /* source #0: "#fff", "none", "#e5e5e5" */ .btn-outline { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "none" */ .btn-outline.selected, .btn-outline.zeroclipboard-is-active, @@ -264,7 +264,7 @@ color: #767676; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#4183c4" */ .ellipsis-expander:active, .hidden-text-expander a:active { @@ -322,7 +322,7 @@ color: #bbbbbbEE; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #0: "color: #bbbbbb66" */ .tabnav-extra { @@ -356,7 +356,7 @@ } /* source #0: "#e5e5e5" */ .blankslate { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "box-shadow: none" */ .blankslate-clean-background { @@ -401,7 +401,7 @@ .data-table tbody td, .data-table tbody th, .data-table tbody tr:last-child td, .data-table tbody tr:last-child th, abbr[data-original-title], abbr[title] { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #0: "color: #767676" */ body { @@ -417,19 +417,19 @@ } /* source #0: "#e5e5e5" */ .border-top, .border-y { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } /* source #0: "#e5e5e5" */ .border-bottom, .border-y { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* source #0: "#e5e5e5" */ blockquote { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #0: "#ddd" */ .border-gray-dark { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #0: "color: #767676" */ .link-muted { @@ -477,7 +477,7 @@ } [class*="btn-outline"] { background-color: transparent; - border-color: #202227; + border-color: #2b2d32; } /* source #0: "none" */ [class*="btn-outline"].selected, @@ -491,7 +491,7 @@ [class*="btn-outline"]:disabled, [class*="btn-outline"]:disabled:hover { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#fff" */ .btn-outline-white { @@ -510,7 +510,7 @@ } /* source #0: "#f5f5f5", "#e5e5e5" */ .card, .highlight { - border-color: #202227; + border-color: #2b2d32; } .highlight { background-color: #282a2f; @@ -521,15 +521,15 @@ } /* source #0: "#e5e5e5" */ .menu-item, .site-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #0: "#e5e5e5" */ .example { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#e5e5e5" */ .footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #0: "transparent", "transparent" */ .jumbotron::after { @@ -547,12 +547,12 @@ } /* source #0: "#e5e5e5" */ .data-table { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#e5e5e5", "#e5e5e5" */ .data-table td, .data-table th { - border-right-color: #202227; - border-bottom-color: #202227; + border-right-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #0: "color: #3c4146" */ .header-enterprise-version { @@ -623,7 +623,7 @@ } /* source #0: "#ddd" */ .sub-nav ul { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #0: "color: #767676" */ .sub-nav ul a { @@ -637,7 +637,7 @@ /* source #0: "#ddd" */ @media screen and (min-width: 469px) { .sub-nav { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } } /* source #0: "color: #333" */ @@ -650,7 +650,7 @@ background-image: none; } .libraries-jumbotron { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #0: "color: #333" */ .octokit-language span { @@ -658,7 +658,7 @@ } /* source #0: "#fff", "#e5e5e5" */ .sidebar-menu, .sidebar-module { - border-color: #202227; + border-color: #2b2d32; } .sidebar-menu { background-color: #1f2126; @@ -670,12 +670,12 @@ } /* source #0: "#eee" */ .sidebar-module ul li:last-child ul li:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #0: "color: #bbbbbb66", "#eee" */ .headlines > li, .sidebar-module ul h3 { color: #bbbbbb94; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #0: "color: #333" */ .headlines > li > a { @@ -700,7 +700,7 @@ } /* source #0: "#eee", "color: #bbbbbb66", "#f9f9f9" */ .sidebar-module ul ul li { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbb94; background-color: #1f2126; } @@ -773,15 +773,15 @@ } /* source #0: "#ddd" */ .app-container img { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#ddd" */ ol > li::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #0: "#ddd" */ .content ol > li img { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "color: #bbbbbb66" */ .content .full-image:hover .octicon, .full-image:hover .mini-icon { @@ -804,7 +804,7 @@ } /* source #0: "#ddd" */ .content table th { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#fff" */ .content table tr { @@ -813,7 +813,7 @@ } /* source #0: "#ddd" */ .content table td { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#fafafb" */ pre { @@ -844,12 +844,12 @@ .pagination > span, .pagination a, .pagination em { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #0: "#e5e5e5" */ .pagination > span:focus, .pagination > span:hover, .pagination a:focus, .pagination a:hover, .pagination em:focus, .pagination em:hover { - border-color: #202227; + border-color: #2b2d32; } /* source #0: "color: #000" */ code .gd, code .gd .x, code .gi, code .gi .x { @@ -873,7 +873,7 @@ } /* source #0: "#f5f5f5" */ .bg-custom-gradient { - background-image: linear-gradient(180deg, #202227, rgba(245, 245, 245, 0)); + background-image: linear-gradient(180deg, #2b2d32, rgba(245, 245, 245, 0)); } /* source #1: "color: #24292e" */ .gisthead .pagehead-actions .octicon-mute { @@ -917,17 +917,17 @@ .gist-quicksearch-results { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #1: "#d1d5da" */ .gist-quicksearch-results .gist-quicksearch-result-group { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #1: "color: #6a737d", "#f6f8fa", "#d1d5da" */ .gist-quicksearch-results .gist-quicksearch-result-header { color: #bbbbbb94; background: #282a2f; - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #1: "#f6f8fa" */ .gist-quicksearch-results .select-menu-item { @@ -1009,7 +1009,7 @@ } /* source #2: "#dfe2e5", "color: #6a737d" */ .ghh-issue-body blockquote, .ghh-readme blockquote { - border-left-color: #202227; + border-left-color: #2b2d32; color: #bbbbbb94; } /* source #2: "transparent" */ @@ -1026,7 +1026,7 @@ /* source #2: "#eaecef" */ .ghh-theme-github .ghh-issue-body h1, .ghh-theme-github .ghh-issue-body h2, .ghh-theme-github .ghh-readme h1, .ghh-theme-github .ghh-readme h2 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #2: "#fff" */ .ghh-theme-github .ghh-issue-body tr, .ghh-theme-github .ghh-readme tr { @@ -1041,7 +1041,7 @@ /* source #2: "#dfe2e5" */ .ghh-theme-github .ghh-issue-body td, .ghh-theme-github .ghh-issue-body th, .ghh-theme-github .ghh-readme td, .ghh-theme-github .ghh-readme th { - border-color: #202227; + border-color: #2b2d32; } /* source #2: "color: #0366d6" */ .ghh-theme-github .ghh .ghh-issue-body a, @@ -1115,13 +1115,13 @@ } /* source #2: "#eee" */ .ghh-overlay form h3 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #2: "#fff", "#d1d5da", "color: #586069" */ .ghh-theme-github .tooltipster-box .tooltipster-content { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; color: #bbbbbbCC; } /* source #2: "transparent" */ @@ -1134,7 +1134,7 @@ } /* source #2: "#d1d5da" */ .ghh-theme-github .tooltipster-right .tooltipster-arrow-border { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #2: "#fff" */ .ghh-theme-github .tooltipster-left .tooltipster-arrow-background { @@ -1142,7 +1142,7 @@ } /* source #2: "#d1d5da" */ .ghh-theme-github .tooltipster-left .tooltipster-arrow-border { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #2: "#fff" */ .ghh-theme-github .tooltipster-top .tooltipster-arrow-background { @@ -1150,7 +1150,7 @@ } /* source #2: "#d1d5da" */ .ghh-theme-github .tooltipster-top .tooltipster-arrow-border { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #2: "#fff" */ .ghh-theme-github .tooltipster-bottom .tooltipster-arrow-background { @@ -1158,7 +1158,7 @@ } /* source #2: "#d1d5da" */ .ghh-theme-github .tooltipster-bottom .tooltipster-arrow-border { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #2: "color: #24292e" */ .ghh-theme-github .ghh a { @@ -1170,11 +1170,11 @@ } /* source #2: "#dfe2e5" */ .ghh-theme-github .ghh-markdown-separator { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #2: "#dfe2e5" */ .ghh-theme-github .ghh .ghh-stats > a + a { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #2: "color: #24292e" */ .ghh-theme-github .ghh .ghh-stats span { @@ -1182,11 +1182,11 @@ } /* source #2: "#dfe2e5" */ .ghh-theme-github .ghh .ghh-more-separator { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #2: "#e1e4e8", "#fff" */ .ghh-theme-github .ghh .ghh-state-verified { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -1233,7 +1233,7 @@ } /* source #3: "#eee" */ #new_issue .discussion-sidebar h3 { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff" */ .zh-app--board-visible .zh-app--is-fullscreen { @@ -1265,11 +1265,11 @@ } /* source #3: "#e5e5e5" */ .zh-estimate-create-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#e5e5e5","transparent" */ a.zh-topbar-item.selected { - border-color: #3c4992 #202227 transparent; + border-color: #3c4992 #2b2d32 transparent; } /* source #3: "transparent" */ .zh-topbar-item.UnderlineNav-item:not(.selected):not(:hover) { @@ -1309,12 +1309,12 @@ /* source #3: "#f5f5f5", "#e5e5e5" */ .zh-pipeline { background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f5f5", "#e5e5e5" */ .zh-pipeline-heading-container { background: #303237; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "box-shadow: none !important" */ .zh-pipeline-heading-edit { @@ -1338,7 +1338,7 @@ } /* source #3: "#e5e5e5", "#fff" */ .zh-pipeline-issue-content { - border-color: #202227; + border-color: #2b2d32; background: #1f2126; background-image: none; } @@ -1377,11 +1377,11 @@ } /* source #3: "#e5e5e5" */ .zh-pipeline-collapsed .zh-pipeline-heading-container { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e5e5e5" */ .zh-pipeline-collapsed .zh-pipeline-options.zh-pipeline-icon { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent","#fff" */ .zh-pipeline-expanded .zh-issue-meta { @@ -1406,7 +1406,7 @@ background-image: none; } .zh-board-loading-message { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #767676" */ .zh-markdown-body { @@ -1414,19 +1414,19 @@ } /* source #3: "#e5e5e5", "#f8f8f8" */ .zh-milestone-dates { - border-color: #202227; + border-color: #2b2d32; background-color: #24262b; } /* source #3: "#ddd", "#fff" */ .zh-milestone-dates .milestone-start-calendar-container { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e5e5e5", "#e5e5e5" */ .zh-burndown-chart-container { - border-left-color: #202227; - border-right-color: #202227; + border-left-color: #2b2d32; + border-right-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .burndown-chart-tip { @@ -1434,11 +1434,11 @@ } /* source #3: "#e5e5e5" */ .zh-reports .stats-container { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e5e5e5" */ .zh-reports .stats-item { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "color: #767676" */ .zh-reports .stats-item--issues .zh-estimate-badge-closed, @@ -1447,7 +1447,7 @@ } /* source #3: "#e5e5e5" */ .zh-issue-list .table-list-title { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zh-issue-list .table-list-header { @@ -1455,7 +1455,7 @@ } /* source #3: "#e5e5e5" */ .zh-burndown-repo-selector { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zh-reports .btn { @@ -1478,7 +1478,7 @@ .zh-repo-switcher .zh-repo-switcher-btn:hover { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#fff" */ @@ -1489,7 +1489,7 @@ /* source #3: "color: #586069", "#ddd","#eee" */ .zh-timeline-comment-header { color: #bbbbbbCC; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #555" */ .zh-timeline-comment-header-text { @@ -1504,7 +1504,7 @@ } /* source #3: "#e6ebf1" */ .zh-collapse-manager-container--isExpanded .discussion-item:last-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent" */ .zh-collapse-control-container { @@ -1516,13 +1516,13 @@ } /* source #3: "#e9e9e9", "#fff" */ .zh-collapse-control:hover, .zh-collapse-control__main-icon { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e5e5e5", "#fff" */ .zh-issuecard-container { - border-color: #202227; + border-color: #2b2d32; background: #1f2126; background-image: none; } @@ -1541,7 +1541,7 @@ } /* source #3: "#e5e5e5" */ .zh-issuecard-meta { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent" */ .zh-merge-repository-body { @@ -1628,7 +1628,7 @@ } /* source #3: "#eee" */ .zh-select-menu-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#0366d6" */ .zh-select-menu-item.navigation-focus, .zh-select-menu-item:hover { @@ -1669,11 +1669,11 @@ } /* source #3: "#ddd" */ .zh-select-menu-text-filter { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#ddd" */ .zh-select-menu-text-filter input { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zh-reload-update-prompt-container { @@ -1767,7 +1767,7 @@ } /* source #3: "#ddd" */ .zh-epic-creator-nav { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "initial", "color: #000" */ .zh-epic-creator-tab { @@ -1778,14 +1778,14 @@ .zh-epic-creator-tab.selected { background: #1f2126; background-image: none; - border-color: #3e4b9e #202227 #1f2126; + border-color: #3e4b9e #2b2d32 #1f2126; } /* source #3: "color: #333", "#f6f8fa", "#e9e9e9", "#e9e9e9" */ .zh-epic-creator-issue-list .zh-epic-creator-issue-list-not-in-workspace { color: #bbbbbbEE; background-color: #282a2f; - border-bottom-color: #202227; - border-top-color: #202227; + border-bottom-color: #2b2d32; + border-top-color: #2b2d32; } /* source #3: "color: #767676" */ .zh-progress-title { @@ -1805,7 +1805,7 @@ } /* source #3: "#eee" */ .zh-board-menu { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #767676" */ .zh-epic-pipeline-selector-name { @@ -1813,7 +1813,7 @@ } /* source #3: "#e5e5e5" */ .zh-epic-issues-picker-new-issue { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zh-epic-picker-issue-placeholder:hover { @@ -1822,7 +1822,7 @@ } /* source #3: "#e5e5e5" */ .zh-epic-issue-list-container, .zh-epic-issue-list-footer { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #767676" */ .zh-epic-issue-list-empty span { @@ -1839,7 +1839,7 @@ /* source #3: "color: #333", "#ddd" */ .zh-epic-form-control, .zh-epic-form-control-small { color: #bbbbbbEE; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zh-epic-form-control-small:focus, .zh-epic-form-control:focus { @@ -1860,7 +1860,7 @@ } /* source #3: "#e9ecef", "none", "rgba(27,31,35,0.35)" */ .zh-webapp.zh-epic-creator-page-visible .btn:active { - background-color: #202227; + background-color: #2b2d32; background-image: none; border-color: rgba(200, 200, 200, 0.3); } @@ -1882,7 +1882,7 @@ /* source #3: "#f6f8fa", "#e1e4e8" */ .zh-webapp.zh-epic-creator-page-visible .table-list-header { background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zh-webapp.zh-epic-creator-page-visible .zh-board-menu-itemgroup .zh-select-menu-item.navigation-focus, @@ -1905,7 +1905,7 @@ /* source #3: "#ddd", "#ddd" */ .zh-estimate-badge--epic-points { background-color: #222429; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #000" */ .zh-badge-value { @@ -1985,19 +1985,19 @@ } /* source #3: "#ddd" */ .zhc-markdown h1, .zhc-markdown h2 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-markdown hr { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-markdown blockquote { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-markdown table td, .zhc-markdown table th, .zhc-markdown table tr { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-markdown table tr { @@ -2036,7 +2036,7 @@ .zhc-btn[disabled]:focus, .zhc-btn[disabled]:hover { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-btn.zhc-btn--is-active, .zhc-btn:active, .zhc-btn:focus, .zhc-btn:hover { @@ -2046,7 +2046,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-btn.zhc-btn--is-active, .zhc-btn:active { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-btn--default, .zhc-btn--default.zhc-btn--disabled, @@ -2059,7 +2059,7 @@ .zhc-btn--default[disabled]:hover { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-btn--default.zhc-btn--is-active, .zhc-btn--default:active, @@ -2070,7 +2070,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-btn--default.zhc-btn--is-active, .zhc-btn--default:active { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-btn--action.zhc-btn--disabled, @@ -2081,7 +2081,7 @@ .zhc-btn--action[disabled].zhc-btn--is-active, .zhc-btn--action[disabled]:active, .zhc-btn--action[disabled]:focus, .zhc-btn--action[disabled]:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "none" */ .zhc-btn--danger { @@ -2136,7 +2136,7 @@ .zhc-btn--primary[disabled].zhc-btn--is-active, .zhc-btn--primary[disabled]:active, .zhc-btn--primary[disabled]:focus, .zhc-btn--primary[disabled]:hover { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "#5e60ba" */ .zhc-btn--primary-bordered, .zhc-btn--primary-bordered.zhc-btn--disabled, @@ -2174,18 +2174,18 @@ .zhc-btn--secondary[disabled]:active, .zhc-btn--secondary[disabled]:focus, .zhc-btn--secondary[disabled]:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-btn--secondary.zhc-btn--is-active, .zhc-btn--secondary:active, .zhc-btn--secondary:focus, .zhc-btn--secondary:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9", "color: #bbbbbb66", "transparent" */ .zhc-btn--secondary-bordered { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; color: #bbbbbb94; background-color: transparent; } @@ -2202,7 +2202,7 @@ .zhc-btn--secondary-bordered[disabled]:hover { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-btn--secondary-bordered.zhc-btn--is-active, @@ -2215,7 +2215,7 @@ .zhc-btn--secondary-bordered.zhc-btn--is-active, .zhc-btn--secondary-bordered:active { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-btn--secondary-bordered.zhc-btn--is-active, @@ -2243,7 +2243,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-btn--topbar:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-btn--text { @@ -2258,7 +2258,7 @@ .zhc-btn--text[disabled].zhc-btn--is-active, .zhc-btn--text[disabled]:active, .zhc-btn--text[disabled]:focus, .zhc-btn--text[disabled]:hover { background-color: transparent !important; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-btn--text.zhc-btn--is-active, .zhc-btn--text:active, @@ -2286,14 +2286,14 @@ } /* source #3: "#e9e9e9", "color: #bbbbbb66" */ .zhc-confirm-dialog__footer { - border-top-color: #202227; + border-top-color: #2b2d32; color: #bbbbbb94; } /* source #3: "#fff", "#e9e9e9" */ .zhc-input { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-input--disabled { @@ -2309,7 +2309,7 @@ } /* source #3: "#e9e9e9" */ .zhu-blankslate, .zhu-checkbox { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhu-checkbox:focus { @@ -2327,11 +2327,11 @@ .zhu-panel { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhu-tag-default { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "color: #333" */ .zhu-text-important { @@ -2345,11 +2345,11 @@ .zhc-account-details__section { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-account-details__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-account-details__item--edit input { @@ -2361,7 +2361,7 @@ } /* source #3: "#e9e9e9" */ .zhc-billing-history__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-billing-history__item:first-child { @@ -2375,7 +2375,7 @@ /* source #3: "color: #333", "#e9e9e9" */ .zhc-cancel-subscription-modal__cancellation-reason { color: #bbbbbbEE; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-cancel-subscription-modal__missing-features { @@ -2393,7 +2393,7 @@ } /* source #3: "#e9e9e9" */ .zhc-cancel-subscription-modal__other-comments__input { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-cancel-subscription-modal__warning, .zhc-cancel-subscription-page__text { @@ -2406,7 +2406,7 @@ } /* source #3: "#e9e9e9" */ .zhc-remove-licenses__section { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-remove-licenses__subtext { @@ -2415,7 +2415,7 @@ /* source #3: "color: #bbbbbb66", "#e9e9e9" */ .zhc-remove-licenses__quantity { color: #bbbbbb94; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "color: #bbbbbb66" */ .zhc-account-settings__section { @@ -2433,7 +2433,7 @@ } /* source #3: "#e9e9e9" */ .zhc-account-settings__link .zhu-panel { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fcf9e4", "#faebcc" */ .zhc-account-settings__summary--warning { @@ -2446,7 +2446,7 @@ } /* source #3: "#e9e9e9" */ .zhc-organization-admin-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-organization-admin-item__username { @@ -2465,7 +2465,7 @@ /* source #3: "transparent", "#e9e9e9" */ .zhc-badge--estimate-average { background-color: transparent; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-badge--issue-count { @@ -2493,19 +2493,19 @@ .zhc-banner--neutral { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-board-loading__pipeline-section { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66", "#fff", "#e9e9e9" */ .zhc-board-loading__message { color: #bbbbbb94; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-board-loading__message .zhc-spinner-outline { @@ -2527,7 +2527,7 @@ .zhc-breadcrumbs--default .zhc-breadcrumbs__button--active, .zhc-breadcrumbs--default .zhc-breadcrumbs__button:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-breadcrumbs--extension-topbar, @@ -2536,7 +2536,7 @@ } /* source #3: "#e9e9e9", "#f4f4f4" */ .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button:hover { - border-color: #202227; + border-color: #2b2d32; background-color: #303237; } /* source #3: "transparent", "transparent" */ @@ -2547,7 +2547,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-breadcrumbs--extension-topbar .zhc-breadcrumbs__button--active { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#ccc" */ .zhc-breadcrumbs__button__untitled-tag { @@ -2568,16 +2568,16 @@ background-image: none; } .zhc-burndown-chart__placeholder__message { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-burndown-chart__stats { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #3: "#e9e9e9" */ @media (max-width: 759px) { .zhc-burndown-chart__stats:first-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } } /* source #3: "color: #333" */ @@ -2590,7 +2590,7 @@ } /* source #3: "color: #333", "#e9e9e9", "#fff", "#e9e9e9" */ .zhc-button { - border-color: #202227; + border-color: #2b2d32; color: #bbbbbbEE; } /* source #3: "#fff" */ @@ -2602,7 +2602,7 @@ .zhc-button[disabled], .zhc-button[disabled]:active, .zhc-button[disabled]:focus, .zhc-button[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent", "box-shadow: none" */ @@ -2614,7 +2614,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none", "transparent" */ .zhc-button--variant-text[disabled] { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; background-color: transparent; } @@ -2623,7 +2623,7 @@ .zhc-button--variant-text[disabled]:focus, .zhc-button--variant-text[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent" */ @@ -2638,7 +2638,7 @@ .zhc-button--color-primary[disabled]:focus, .zhc-button--color-primary[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent", "box-shadow: none" */ @@ -2650,7 +2650,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none", "transparent" */ .zhc-button--color-primary.zhc-button--variant-text[disabled] { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; background-color: transparent; } @@ -2659,7 +2659,7 @@ .zhc-button--color-primary.zhc-button--variant-text[disabled]:focus, .zhc-button--color-primary.zhc-button--variant-text[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent" */ @@ -2681,7 +2681,7 @@ .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:focus, .zhc-button--color-primary.zhc-button--variant-outlined[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#fff", "#5e60ba" */ @@ -2695,13 +2695,13 @@ /* source #3: "#f8f8f8", "#e9e9e9", "color: #bbbbbb66" */ .zhc-button--color-secondary { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; color: #bbbbbb94; } /* source #3: "#e9e9e9" */ .zhc-button--color-secondary:active, .zhc-button--color-secondary:focus, .zhc-button--color-secondary:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none" */ .zhc-button--color-secondary[disabled], @@ -2709,7 +2709,7 @@ .zhc-button--color-secondary[disabled]:focus, .zhc-button--color-secondary[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "color: #bbbbbb66", "transparent", "transparent", "box-shadow: none" */ @@ -2722,7 +2722,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none", "transparent" */ .zhc-button--color-secondary.zhc-button--variant-text[disabled] { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; background-color: transparent; } @@ -2731,7 +2731,7 @@ .zhc-button--color-secondary.zhc-button--variant-text[disabled]:focus, .zhc-button--color-secondary.zhc-button--variant-text[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "color: #333", "transparent", "transparent" */ @@ -2752,7 +2752,7 @@ background: #1f2126; background-image: none; color: #bbbbbbEE; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none" */ .zhc-button--color-secondary.zhc-button--variant-outlined[disabled], @@ -2760,7 +2760,7 @@ .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:focus, .zhc-button--color-secondary.zhc-button--variant-outlined[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#fff" */ @@ -2776,7 +2776,7 @@ .zhc-button--color-action[disabled]:focus, .zhc-button--color-action[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent", "box-shadow: none" */ @@ -2788,7 +2788,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none", "transparent" */ .zhc-button--color-action.zhc-button--variant-text[disabled] { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; background-color: transparent; } @@ -2797,7 +2797,7 @@ .zhc-button--color-action.zhc-button--variant-text[disabled]:focus, .zhc-button--color-action.zhc-button--variant-text[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent" */ @@ -2818,7 +2818,7 @@ .zhc-button--color-action.zhc-button--variant-outlined[disabled]:focus, .zhc-button--color-action.zhc-button--variant-outlined[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#fff" */ @@ -2834,7 +2834,7 @@ .zhc-button--color-danger[disabled]:focus, .zhc-button--color-danger[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent", "box-shadow: none" */ @@ -2846,7 +2846,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "box-shadow: none", "transparent" */ .zhc-button--color-danger.zhc-button--variant-text[disabled] { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; background-color: transparent; } @@ -2855,7 +2855,7 @@ .zhc-button--color-danger.zhc-button--variant-text[disabled]:focus, .zhc-button--color-danger.zhc-button--variant-text[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "transparent", "transparent" */ @@ -2876,7 +2876,7 @@ .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:focus, .zhc-button--color-danger.zhc-button--variant-outlined[disabled]:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#fff", "#e9e9e9", "color: #333", "#f8f8f8", "#e9e9e9" */ @@ -2890,7 +2890,7 @@ .zhc-button--color-inactive { color: #bbbbbbEE; background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-button--color-inactive:active, .zhc-button--color-inactive:focus, @@ -2898,7 +2898,7 @@ background-color: #1f2126; background-image: none; background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-button-group > * { @@ -2912,12 +2912,12 @@ .zhc-chart-container { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-chart-container__header { background-color: #303237; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-chart-container__info-toggle { @@ -2925,38 +2925,38 @@ } /* source #3: "#e9e9e9" */ .zhc-chart-container__footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-chart-legend__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ @media (max-width: 759px) { .zhc-chart-legend__item:nth-child(even) { - border-left-color: #202227; + border-left-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 760px) and (max-width: 1019px) { .zhc-chart-legend__item:not(:nth-child(4n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 1020px) { .zhc-chart-legend__item:not(:nth-child(5n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ .zhc-chart-stats__stat { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-chart-info__wrapper { background: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-chart-info__close { @@ -2964,31 +2964,31 @@ } /* source #3: "#e9e9e9" */ .zhc-chart-legend::after { - background: #202227; + background: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-chart-legend .zhc-dropdown, .zhc-chart-legend display flex { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ @media (max-width: 759px) { .zhc-chart-legend .zhc-dropdown:nth-child(odd), .zhc-chart-legend display flex:nth-child(odd) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 760px) and (max-width: 1019px) { .zhc-chart-legend .zhc-dropdown:not(:nth-child(4n)), .zhc-chart-legend display flex:not(:nth-child(4n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 1020px) { .zhc-chart-legend .zhc-dropdown:not(:nth-child(5n)), .zhc-chart-legend display flex:not(:nth-child(5n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "none", "#fff" */ @@ -3011,7 +3011,7 @@ } /* source #3: "#e9e9e9" */ .zhc-chart-legend__labels { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-chart-legend__labels--notselected { @@ -3020,24 +3020,24 @@ /* source #3: "#e9e9e9" */ @media (max-width: 759px) { .zhc-chart-legend__labels:nth-child(odd) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 760px) and (max-width: 1019px) { .zhc-chart-legend__labels:not(:nth-child(4n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ @media (min-width: 1020px) { .zhc-chart-legend__labels:not(:nth-child(5n)) { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #3: "#e9e9e9" */ .zhc-chart-legend__labels-label-item:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-chart-legend__labels-x { @@ -3063,7 +3063,7 @@ } /* source #3: "#e9e9e9" */ .zhc-checkout-box__input { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-checkout-box__input input:focus { @@ -3088,7 +3088,7 @@ } /* source #3: "#fff", "#e9e9e9" */ .zhc-chip--outlined { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-chip--outlined, .zhc-choose-organization { @@ -3098,7 +3098,7 @@ /* source #3: "#e9e9e9" */ .zhc-choose-organization__learn-more, .zhc-choose-organization__section + .zhc-choose-organization__section { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent" */ .zhc-organization-item { @@ -3107,11 +3107,11 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-organization-item:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-organization-item__content .zhc-avatar { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-organization-item__name { @@ -3124,7 +3124,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-collapsible__content { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-collapsible-control { @@ -3140,21 +3140,21 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-collapsible-control:hover.zhc-collapsible-control--border { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9", "#fff" */ @media (max-width: 759px) { .zhc-collapsible-control { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } } /* source #3: "#e9e9e9" */ .zhc-collapsible-control__main-icon { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "color: #333" */ .zhc-confetti-announcement { @@ -3177,12 +3177,12 @@ } /* source #3: "#e9e9e9", "color: #333" */ .zhc-consent-form__title { - border-top-color: #202227; + border-top-color: #2b2d32; color: #bbbbbbEE; } /* source #3: "#e9e9e9" */ .zhc-consent-form__checkbox input { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ @media (min-width: 1020px) { @@ -3219,16 +3219,16 @@ } /* source #3: "#f8f8f8" */ .zhc-dashboard-nav .zhc-org-dropdown__toggle-button { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-dashboard-nav .zhc-org-dropdown__toggle-button:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-dashboard-nav__section { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-dashboard-nav__item--secondary { @@ -3238,17 +3238,17 @@ .zhc-dashboard-topbar { background-color: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9" */ .DateRangePickerInput { background: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ @media (min-width: 760px) { .DateRangePickerInput .DateRangePicker_picker { - border-color: #202227; + border-color: #2b2d32; } } /* source #3: "none", "color: #bbbbbb66" */ @@ -3267,14 +3267,14 @@ .DayPicker__horizontal .DayPicker_nav__next, .DayPicker__horizontal .DayPicker_nav__prev { color: #bbbbbb94; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66", "#e9e9e9" */ .CalendarDay, .CalendarMonth_caption { color: #bbbbbb94; } .CalendarDay { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .DayPicker_weekHeader { @@ -3324,7 +3324,7 @@ } /* source #3: "#e9e9e9" */ .zhc-dependency-item-simple .zhc-selection-item:hover { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-dependency-item-simple a { @@ -3338,7 +3338,7 @@ .zhc-dependency { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-dependency-type-dropdown { @@ -3346,7 +3346,7 @@ } /* source #3: "#e9e9e9" */ .zhc-dependency-type-dropdown__control { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-dependency-type-dropdown__control .zhc-svg-icon { @@ -3359,7 +3359,7 @@ } /* source #3: "#e9e9e9" */ .zhc-dependency-type-dropdown__list__item { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ @media (max-width: 759px) { @@ -3389,7 +3389,7 @@ .zhc-epic-list { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-epic-list .zhc-svg-icon { @@ -3397,7 +3397,7 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-epic-list__epic-icon { - background-color: #202227; + background-color: #2b2d32; border-color: #1f2126; } /* source #3: "color: #333" */ @@ -3424,13 +3424,13 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-filter-expand-button { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9" */ .zhc-filter-tag { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-filter-tag .zhc-svg-icon--x { @@ -3447,7 +3447,7 @@ } /* source #3: "#e9e9e9", "color: #bbbbbb66" */ .zhc-footer__wrapper { - border-top-color: #202227; + border-top-color: #2b2d32; color: #bbbbbb94; } /* source #3: "color: #bbbbbb66" */ @@ -3491,7 +3491,7 @@ background-image: none; } .zhc-integrations .zhc-integrations-section { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-integrations .zhc-integrations-section input { @@ -3507,7 +3507,7 @@ } /* source #3: "#e9e9e9" */ .zhc-integrations-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-integrations-item .zhc-integrations__hook:first-child:not(:last-child), @@ -3517,7 +3517,7 @@ } /* source #3: "#e9e9e9", "color: #bbbbbb66" */ .zhc-integrations-list__header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbb94; } /* source #3: "#fff" */ @@ -3527,7 +3527,7 @@ } /* source #3: "#e9e9e9" */ .zhc-invite-link-modal__sharing-link { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-invite-link-modal__icon { @@ -3554,23 +3554,23 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-invite-your-team-section--suggested:not(.zhc-invite-your-team-section--empty) { background: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-invite-your-team__controls { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-invite-your-team-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-invite-your-team-item--toggle-text { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-invitees-list { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-invitees-list input:focus { @@ -3584,7 +3584,7 @@ .zhc-issue-card { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#5e60ba" */ .zhc-issue-card--options-open { @@ -3593,7 +3593,7 @@ /* source #3: "#5e60ba", "#e9e9e9" */ .zhc-issue-card__action-notification { border-left-color: #8368aa; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff" */ .zhc-issue-card__action-notification .zhc-icon--has-notification::after, @@ -3607,8 +3607,8 @@ } /* source #3: "#e9e9e9", "#ddd" */ .zhc-issue-card--is-dragging { - background-color: #202227; - border-color: #202227; + background-color: #2b2d32; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-issue-card__main { @@ -3616,7 +3616,7 @@ } /* source #3: "#e9e9e9" */ .zhc-issue-card__meta { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-issue-card__issue-title { @@ -3625,7 +3625,7 @@ /* source #3: "#e9e9e9" */ .zhc-issue-card__assignees .zhc-avatar, .zhc-issue-card__assignees .zhc-issue-card__multiple-assignees { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-issue-card__heading__main { @@ -3635,7 +3635,7 @@ .zhc-issue-card__actions__btn { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-issue-card__epic-filter { @@ -3644,7 +3644,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-issue-card__connected-pull-request { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff","rgba(0,0,0,0)", "#fff","rgba(0,0,0,0)" */ .zhc-selection-list-deprecated--issue-card-actions .zhc-selection-list-deprecated__body .zhc-selection-list-deprecated__list { @@ -3668,7 +3668,7 @@ .zhc-add-comment { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-add-comment__username { @@ -3678,7 +3678,7 @@ .zhc-comment { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-comment__username { @@ -3690,7 +3690,7 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-edit-comment__preview, .zhc-edit-comment__textarea { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -3698,11 +3698,11 @@ .zhc-edit-comment__file-upload { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-discussion-events__icon, .zhc-edit-comment__tag-loading { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#6a737d" */ .zhc-discussion-events__icon--grey, .zhc-discussion-events__icon--grey-dark { @@ -3715,7 +3715,7 @@ /* source #3: "transparent", "#e9e9e9" */ .zhc-edit-issue__title-input { background-color: transparent; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#ffd33d" */ .zhc-issue-badge--pr-draft { @@ -3728,7 +3728,7 @@ } /* source #3: "#e9e9e9" */ .zhc-issue-meta { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-issue-meta__username { @@ -3745,7 +3745,7 @@ } /* source #3: "#e9e9e9" */ .zhc-issue-sidebar .zhc-sidebar-selector { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-new-issue-body__username { @@ -3755,7 +3755,7 @@ .zhc-new-issue-body__title-input { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-issue-item .zhc-svg-icon--board { @@ -3849,16 +3849,16 @@ } /* source #3: "#e9e9e9" */ .zhc-issues-list { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-issues-list__header { background-color: #303237; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-issues-list-item__wrapper { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff" */ .zhc-issues-list-item { @@ -3875,7 +3875,7 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-item-table { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -3885,7 +3885,7 @@ } /* source #3: "#e9e9e9" */ .zhc-item-table__cell, .zhc-item-table__column-title { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-item-table__row--closed { @@ -3907,7 +3907,7 @@ .zhc-manage-plan__offer, .zhc-manage-plan__summary { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-manage-plan__renewal-date, .zhc-manage-plan__subtitle { @@ -3924,13 +3924,13 @@ } /* source #3: "#e9e9e9" */ .zhc-manage-plan__licensed-members, .zhc-manage-plan__team-members-header { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-team-member__options-icon-wrapper--active, .zhc-team-member__options-icon-wrapper:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fcf9e4", "#faebcc" */ .zhc-manage-plan__non-licensed-members { @@ -3945,7 +3945,7 @@ /* source #3: "#e9e9e9" */ @media (max-width: 759px) { .zhc-menu-bar-item--search-bar { - border-top-color: #202227; + border-top-color: #2b2d32; } } /* source #3: "#fff" */ @@ -3970,7 +3970,7 @@ .zhc-merge-repo-finder__container { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-merge-repo-finder__header, .zhc-merge-repo-finder__header__text { @@ -3991,7 +3991,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-merge-repo-finder-input__text-input { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-merging-tool { @@ -4010,17 +4010,17 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-merging-tool-pipeline { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-merging-tool-pipeline--is-new { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-merging-tool-pipeline__header, .zhc-merging-tool-pipeline__header--is-edit { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent" */ .zhc-merging-tool-pipeline--placeholder, @@ -4029,19 +4029,19 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-merging-tool-pipeline--add__input { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9", "#ddd", "box-shadow: none" */ .zhc-merging-tool-pipeline-card--is-dragging .zhc-merging-tool-pipeline-card__body { - background-color: #202227; - border-color: #202227; + background-color: #2b2d32; + border-color: #2b2d32; box-shadow: none; } /* source #3: "#e9e9e9", "#f8f8f8" */ .zhc-merging-tool-pipeline-card__body { - border-color: #202227; + border-color: #2b2d32; background-color: #24262b; } /* source #3: "color: #333" */ @@ -4050,7 +4050,7 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-merging-tool-pipeline-card__issue-count { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -4065,20 +4065,20 @@ } /* source #3: "#e9e9e9" */ .zhc-merging-tool-repo-dropdown::after { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper .zhc-selection-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9", "transparent" */ .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper .zhc-selection-item:hover { background-color: #303237; - border-color: transparent #202227 #202227; + border-color: transparent #2b2d32 #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper:first-child .zhc-selection-item:hover { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent" */ .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper:last-child .zhc-selection-item { @@ -4086,7 +4086,7 @@ } /* source #3: "#e9e9e9" */ .zhc-merging-tool-repo-dropdown .zhc-selection-list-deprecated__list .zhc-tooltip-wrapper:last-child .zhc-selection-item:hover { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-merging-tool-repo-dropdown .zhc-selection-button { @@ -4115,7 +4115,7 @@ } /* source #3: "#e9e9e9" */ .zhc-milestone-modal__info input, .zhc-milestone-modal__info textarea { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-milestone-modal__info input { @@ -4138,7 +4138,7 @@ .zhc-modal__header { background-color: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-modal__header--no-title { @@ -4172,7 +4172,7 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-app-notification { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -4190,13 +4190,13 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-notifications-body__manage { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9" */ .zhc-notifications-manager__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-notifications-manager__item-name { @@ -4212,7 +4212,7 @@ } /* source #3: "#e9e9e9" */ .zhc-subscription-menu__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-subscription-menu__item:hover { @@ -4225,20 +4225,20 @@ } /* source #3: "#e9e9e9" */ .zhc-notifications-sidebar__item:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-notifications-sidebar__header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-repo-notifications { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-repo-notifications__header { background-color: #303237; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent" */ .zhc-repo-notifications--single-repo .zhc-repo-notifications__header { @@ -4247,11 +4247,11 @@ /* source #3: "#e9e9e9" */ .zhc-repo-notifications--single-repo .zhc-repo-notifications__load-more, .zhc-repo-notifications--single-repo .zhc-repo-notifications__notification-list { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9", "#fff" */ .zhc-repo-notifications__load-more { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff" */ .zh-onboarding-banner__progress-dot, .zhc-repo-notifications__load-more { @@ -4268,11 +4268,11 @@ .zhc-onboarding-page .zhc-sidebar-container { background: #1f2126; background-image: none; - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-org-dropdown__toggle-button--bordered { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "none" */ @media (max-width: 759px) { @@ -4283,11 +4283,11 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-pipeline { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9", "#fff" */ .zhc-pipeline--add__input { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -4297,7 +4297,7 @@ } /* source #3: "#e9e9e9" */ .zhc-pipeline--is-collapsed .zhc-pipeline-header__collapsed-actions { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #4183c4" */ .zhc-pipeline__load-more { @@ -4310,7 +4310,7 @@ } /* source #3: "#e9e9e9" */ .zhc-pipeline-body { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-pipeline-sorted-placeholder { @@ -4318,11 +4318,11 @@ } /* source #3: "#e9e9e9" */ .zhc-pipeline-form { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9", "color: #333" */ .zhc-pipeline-form__input, .zhc-pipeline-form__text-area { - border-color: #202227; + border-color: #2b2d32; color: #bbbbbbEE; } /* source #3: "#f4f4f4" */ @@ -4339,17 +4339,17 @@ } /* source #3: "#e9e9e9" */ .zhc-pipeline-sort-status { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-popover { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-progress-bar { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#ccc" */ .zhc-progress-dot { @@ -4379,7 +4379,7 @@ .zhc-release-add-repos-dropdown__repo-item { border-left-color: transparent; border-right-color: transparent; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent" */ .zhc-release-add-repos-dropdown__repo-item:first-child { @@ -4392,19 +4392,19 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-release-add-repos-dropdown__repo-item:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-release-add-repos-dropdown__repo-item:hover:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-release-add-repos-dropdown__repo-item:hover:last-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9", "color: #333" */ .zhc-release-connected-repos-dropdown__repo-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbbEE; } /* source #3: "transparent" */ @@ -4413,7 +4413,7 @@ } /* source #3: "#e9e9e9", "color: #bbbbbb66" */ .zhc-release-event { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbb94; } /* source #3: "color: #333" */ @@ -4424,7 +4424,7 @@ } /* source #3: "#e9e9e9" */ .zhc-release-progress__header { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-release-progress--diff, .zhc-release-progress--no-prediction { @@ -4432,15 +4432,15 @@ } /* source #3: "#e9e9e9" */ .zhc-release-progress__section { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-release-progress__stats { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-release-issues .zhc-release-issues__info-alert { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-release--no-issues { @@ -4466,13 +4466,13 @@ /* source #3: "#e9e9e9", "#fff" */ .zhc-release-report-form__desc-textarea, .zhc-release-report-form__title-input { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9" */ .zhc-remove-filter-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #000" */ .zhc-repo-item__lock .zhc-svg-icon { @@ -4514,7 +4514,7 @@ .zhc-report-card { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-report-card__title { @@ -4526,13 +4526,13 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-report-tabs { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9", "color: #bbbbbb66", "#f4f4f4" */ .zhc-report-tabs__nav { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbb94; background-color: #303237; } @@ -4551,7 +4551,7 @@ } /* source #3: "#e9e9e9", "color: #bbbbbb66", "#f8f8f8" */ .zhc-report-tabs__filters { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: #bbbbbb94; background-color: #24262b; } @@ -4576,7 +4576,7 @@ /* source #3: "transparent", "#ddd" */ .zhc-search__input { background-color: transparent; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-search__display { @@ -4585,7 +4585,7 @@ /* source #3: "#f4f4f4", "#ddd" */ .zhc-search--with-icon { background: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-search-bar .zhc-svg-icon--search { @@ -4599,7 +4599,7 @@ .zhc-search-bar__input { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#5e60ba" */ .zhc-selection-button--active-filter, @@ -4617,7 +4617,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-selection-item--is-active { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent", "transparent" */ .zhc-selection-item--is-disabled, @@ -4630,13 +4630,13 @@ } /* source #3: "#ddd" */ .zhc-selection-list__layout { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "#ddd" */ .zhc-selection-list__item { background: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-selection-list__item--is-highlighted { @@ -4644,7 +4644,7 @@ } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated--footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-selection-list-deprecated-header { @@ -4652,21 +4652,21 @@ } /* source #3: "border: 1px solid", "transparent","#e9e9e9" */ .zhc-seleciton-list-action-modifier { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-seleciton-list-action-modifier--is-hovering { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "border: 1px solid", "transparent","#e9e9e9" */ .zhnc-selection-list-item { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhnc-selection-list-item--is-hovering { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-selection-filter { @@ -4675,7 +4675,7 @@ } /* source #3: "#e9e9e9" */ .zhc-selection-filter__input { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-selection-list-deprecated { @@ -4684,31 +4684,31 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-selection-list-deprecated--simple .zhc-selection-list-item:hover:not(.zhc-selection-item--is-disabled) { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated--issue-card-actions .zhc-issue-card__actions__dependency-section { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated--issue-card-actions .zhc-issue-card__actions__quick-action-section { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-selection-list-deprecated:not(.zhc-selection-list-deprecated--has-search) .zhc-selectable-selection-item:hover:not(.zhc-selection-item--is-disabled), .zhc-selection-list-deprecated:not(.zhc-selection-list-deprecated--has-search) .zhc-selection-list-item:hover:not(.zhc-selection-item--is-disabled) { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-selection-list-deprecated__body { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent", "#e9e9e9" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; } /* source #3: "transparent" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item:last-child { @@ -4717,12 +4717,12 @@ /* source #3: "#f4f4f4", "#e9e9e9", "#e9e9e9", "transparent" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active { background-color: #303237; - border-left-color: #202227; - border-right-color: #202227; + border-left-color: #2b2d32; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-disabled, @@ -4742,16 +4742,16 @@ } /* source #3: "#e9e9e9", "transparent" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active { - border-color: transparent #202227 #202227; + border-color: transparent #2b2d32 #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:last-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:not(:first-child)::after, .zhc-selection-list-deprecated__list-container--items-underlined .zhc-selection-item--is-active:not(:first-child)::before { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-selection-list-deprecated__header { @@ -4784,11 +4784,11 @@ } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated__footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent", "#e9e9e9" */ .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; } /* source #3: "transparent" */ .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item:last-child { @@ -4797,13 +4797,13 @@ /* source #3: "#f4f4f4", "#e9e9e9", "#e9e9e9", "transparent" */ .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item--is-active { background-color: #303237; - border-left-color: #202227; - border-right-color: #202227; + border-left-color: #2b2d32; + border-right-color: #2b2d32; border-top-color: transparent; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item--is-active:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "transparent" */ .zhc-selection-list-deprecated__footer--items-underlined .zhc-selection-item--is-disabled, @@ -4825,11 +4825,11 @@ .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-dependency-banner + .zhc-selection-item--is-active:nth-child(2), .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-dependency-banner + .zhc-selection-item:hover:nth-child(2), .zhc-selection-list-deprecated__footer:not(.zhc-selection-list-deprecated__footer--items-underlined) .zhc-issue-card__action-notification { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#e9e9e9", "#fff" */ .zhc-shortcut-indicator { - border-color: #202227; + border-color: #2b2d32; background: #1f2126; background-image: none; } @@ -4839,7 +4839,7 @@ } /* source #3: "#e9e9e9" */ .zhc-shortcuts-guide__nav-item:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-shortcuts-guide__nav-item:focus { @@ -4857,7 +4857,7 @@ .zhc-shortcuts-guide__shortcuts-list { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#5e60ba" */ .zhc-shortcuts-guide__webapp-only-tag { @@ -4871,7 +4871,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-board-settings-item:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent", "transparent" */ .zhc-collapse-toggle--is-active { @@ -4880,11 +4880,11 @@ } /* source #3: "#e9e9e9" */ .zhc-collapse-toggle--is-active:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-sidebar-divider__bar { - background: #202227; + background: #2b2d32; } /* source #3: "transparent" */ .zhc-sidebar-link-item { @@ -4923,7 +4923,7 @@ /* source #3: "#e9e9e9", "#fff" */ .zhc-sidebar-nav-item__action--is-active, .zhc-sidebar-nav-item__action:hover { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -4950,7 +4950,7 @@ } /* source #3: "#e9e9e9" */ .zhc-sidebar-profile__header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-sidebar-profile__name { @@ -4968,7 +4968,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-sidebar-profile__item:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fcf9e4", "#faebcc" */ .zhc-sidebar-warning { @@ -4990,12 +4990,12 @@ .zhc-sidebar--is-dropdown-open .zhc-sidebar__container .zhc-sidebar__container__inner, .zhc-sidebar--is-full-width .zhc-sidebar__container .zhc-sidebar__container__inner, .zhc-sidebar--is-hovered .zhc-sidebar__container .zhc-sidebar__container__inner { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-sidebar--is-wide-screen .zhc-sidebar__footer, .zhc-sidebar:not(.zhc-sidebar--is-wide-screen):hover .zhc-sidebar__footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-sidebar a:focus { @@ -5007,7 +5007,7 @@ } /* source #3: "#fff", "#e9e9e9" */ .zhc-sidebar__container { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#fff" */ .zhc-sidebar__container, .zhc-sidebar__container__inner { @@ -5020,30 +5020,30 @@ } /* source #3: "#e9e9e9" */ .zhc-sidebar__footer-left { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-skeleton-avatar, .zhc-skeleton-row { - background-image: linear-gradient(90deg, #202227 0px, rgba(0, 0, 0, 0.15) 40px, #202227 80px); + background-image: linear-gradient(90deg, #2b2d32 0px, rgba(0, 0, 0, 0.15) 40px, #2b2d32 80px); } /* source #3: "#e9e9e9" */ .zhc-skeleton-avatar-description-container--with-border, .zhc-skeleton-paragraph--with-border { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-skeleton-content-box { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-skeleton-title { - background-image: linear-gradient(90deg, #202227 0px, rgba(0, 0, 0, 0.15) 40px, #202227 80px); + background-image: linear-gradient(90deg, #2b2d32 0px, rgba(0, 0, 0, 0.15) 40px, #2b2d32 80px); } /* source #3: "#fff", "#e9e9e9" */ .zhc-skeleton-input-box { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-skeleton-input-box, .zhc-spinner:not(.zhc-spinner--no-outline) { @@ -5058,7 +5058,7 @@ .zhc-status-tag { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #000" */ .zhc-status-tag strong { @@ -5070,18 +5070,18 @@ } /* source #3: "#e9e9e9", "#f4f4f4" */ .zhc-stripe-billing .StripeElement, .zhc-stripe-billing input { - border-color: #202227; + border-color: #2b2d32; background: #303237; } /* source #3: "#e9e9e9", "#e9e9e9" */ .zhc-table { - border-top-color: #202227; - border-right-color: #202227; + border-top-color: #2b2d32; + border-right-color: #2b2d32; } /* source #3: "#e9e9e9", "#e9e9e9", "#fff" */ .zhc-table .zhc-table__cell { - border-bottom-color: #202227; - border-left-color: #202227; + border-bottom-color: #2b2d32; + border-left-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -5091,7 +5091,7 @@ } /* source #3: "#e9e9e9" */ .zhc-table-expand-button { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-table-expand-button .zhc-btn:active { @@ -5104,7 +5104,7 @@ } /* source #3: "#e9e9e9" */ .zhc-tabs-nav--dropdown { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent", "color: #bbbbbb66" */ .zhc-tab-navitem { @@ -5119,7 +5119,7 @@ } /* source #3: "#e9e9e9" */ .zhc-tab-navitem--full { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-tab-navitem--full:hover { @@ -5143,15 +5143,15 @@ color: #bbbbbbEE; background-color: #1f2126; background-image: none; - border-color: #202227 #202227 #1f2126; + border-color: #2b2d32 #2b2d32 #1f2126; } /* source #3: "#e9e9e9" */ .zhc-tag { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-team-member-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-team-members .zhc-svg-icon--check-green { @@ -5159,13 +5159,13 @@ } /* source #3: "#e9e9e9", "#fff" */ .zhc-team-members__content { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } /* source #3: "#e9e9e9", "#f8f8f8" */ .zhc-team-members__searchbar { - border-color: #202227; + border-color: #2b2d32; background-color: #24262b; } /* source #3: "#f8f8f8" */ @@ -5182,7 +5182,7 @@ } /* source #3: "#e9e9e9" */ .zhc-team-member { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#5e60ba" */ .zhc-toggle-button--purple-when-active--is-active { @@ -5218,11 +5218,11 @@ .zhc-topbar { background-color: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-topbar__sidebar-toggle { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "#fff" */ .zhc-tutorial-card { @@ -5243,7 +5243,7 @@ } /* source #3: "#e9e9e9" */ .zhc-tutorial-checklist-modal__left { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#fff" */ .zhc-tutorial-checklist-modal__dropdown .zhc-btn { @@ -5253,7 +5253,7 @@ /* source #3: "#e9e9e9" */ .zhc-tutorial-checklist-modal__description input, .zhc-tutorial-checklist-modal__description textarea { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zhc-tutorial-checklist-modal__description input { @@ -5285,7 +5285,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-workspace-form-input__text-input { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-workspace-form-input__icon-right--lock .zhc-svg-icon, @@ -5294,7 +5294,7 @@ } /* source #3: "#e9e9e9" */ .zhc-workspace-form-repo-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-workspace-form-repo-item__name { @@ -5302,17 +5302,17 @@ } /* source #3: "#e9e9e9" */ .zhc-workspace-form-section--connected-repos { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66", "#f8f8f8", "#e9e9e9" */ .zhc-workspace-form-section__tip { color: #bbbbbb94; background: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-workspace-form-section__title { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#fff" */ .zhc-workspace-form { @@ -5327,7 +5327,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-workspace-form__load-info { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-workspace-form__load-info .zhc-svg-icon { @@ -5339,7 +5339,7 @@ } /* source #3: "#e9e9e9", "#f4f4f4" */ .zhc-workspace-form__close:hover { - border-color: #202227; + border-color: #2b2d32; background-color: #303237; } /* source #3: "#fff" */ @@ -5349,7 +5349,7 @@ } /* source #3: "#e9e9e9" */ .zhc-workspace-form__footer__actions { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-workspace-form__footer__actions-learn-link .zhc-svg-icon { @@ -5361,18 +5361,18 @@ } /* source #3: "#e9e9e9", "#f4f4f4" */ .zhc-workspace-switcher__x:hover { - border-color: #202227; + border-color: #2b2d32; background-color: #303237; } /* source #3: "#fff", "#e9e9e9" */ .zhc-workspace-import { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-workspace-import__header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-workspace-import-sidebar__main .zhc-svg-icon { @@ -5389,7 +5389,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-workspace-switcher-search__input { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-workspace-switcher-search__input:focus { @@ -5421,7 +5421,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-workspace-switcher__header .zhc-org-dropdown:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent" */ .zhc-workspace-switcher__close { @@ -5430,11 +5430,11 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-workspace-switcher__close:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "border: 1px solid", "transparent","#e9e9e9", "color: #333" */ .zhc-workspace-switcher-item { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; color: #bbbbbbEE; } /* source #3: "transparent" */ @@ -5443,7 +5443,7 @@ } /* source #3: "#e9e9e9", "#f8f8f8" */ .zhc-workspace-switcher-item:hover { - border-color: #202227; + border-color: #2b2d32; background-color: #24262b; } /* source #3: "color: #bbbbbb66" */ @@ -5479,7 +5479,7 @@ } /* source #3: "#e9e9e9" */ .zhc-enterprise-manage-plan__header, .zhc-enterprise-manage-plan__item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #333" */ .zhc-enterprise-manage-plan__item .zhu-font-bold, @@ -5499,7 +5499,7 @@ .zhc-seated-user-options-button--is-open.zhc-seated-user-options-button--is-open, .zhc-seated-user-options-button:hover { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-seated-user-options-list { @@ -5507,8 +5507,8 @@ } /* source #3: "#e9e9e9", "#e9e9e9" */ .zhc-banner--zhc-renewal-notice-section { - border-top-color: #202227; - border-bottom-color: #202227; + border-top-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #3: "#fff" */ .zhc-collapsible-team-member-list__header, .zhc-team-members-page__container { @@ -5521,7 +5521,7 @@ } /* source #3: "#e9e9e9" */ .zhc-unlicensed-team-list > .zhc-collapsible-team-member-list__header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#fcf9e4", "#faebcc" */ .zhc-unlicensed-team-list__requested-team-list { @@ -5534,17 +5534,17 @@ } /* source #3: "#e9e9e9" */ .zhc-unlicensed-team-list__default-team-list { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-team-members-page__search { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-epic-issue-list { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-roadmap-calendar.zhc-popover .DateRangePicker .DateRangePicker_picker .DayPicker.DayPicker__horizontal { @@ -5552,17 +5552,17 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap-onboarding__fake-add-button { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-roadmap-body-empty { background: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-roadmap-body-empty-panel-divider { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-roadmap-body-empty-panel__desc { @@ -5576,7 +5576,7 @@ /* source #3: "#e9e9e9" */ .zhc-roadmap-sidebar-empty-placeholder__square, .zhc-roadmap-sidebar-empty-placeholder__topLine { - background: #202227; + background: #2b2d32; } /* source #3: "#f4f4f4" */ .zhc-roadmap-sidebar-empty-placeholder__bottomLine { @@ -5604,11 +5604,11 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-roadmap-temp-project-overlay { background-color: #24262b; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-roadmap-temp-project__item { - background-color: #202227; + background-color: #2b2d32; } /* source #3: "#f8f8f8" */ .zhc-roadmap { @@ -5616,7 +5616,7 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap .zhc-roadmap-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#fff" */ .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body { @@ -5631,17 +5631,17 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap .zhc-roadmap-content .zhc-roadmap-body-view--sub-item { - background: #202227; + background: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-roadmap-options-selector-section { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-roadmap-row { background: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-roadmap-row.zhc-roadmap-row--color-secondary { @@ -5653,12 +5653,12 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap-row.zhc-roadmap-row--modifier-last-sub-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9", "#e9e9e9" */ .zhc-roadmap-row.zhc-roadmap-row--size-large { - border-bottom-color: #202227; - border-top-color: #202227; + border-bottom-color: #2b2d32; + border-top-color: #2b2d32; } /* source #3: "transparent", "transparent" */ .zhc-roadmap-row.zhc-roadmap-row--modifier-striped::before { @@ -5667,31 +5667,31 @@ } /* source #3: "border: 1px solid", "transparent","#e9e9e9" */ .zhc-roadmap-selection-item { - border-color: transparent transparent #202227; + border-color: transparent transparent #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-roadmap-selection-item--is-active { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-roadmap-add-epics-dropdown__footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-sidebar-item-add-to-project { background: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#e9e9e9" */ .zhc-add-panel__divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#fff", "#e9e9e9" */ .zhc-sidebar-item-add { background: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "transparent", "transparent" */ .zhc-sidebar-expand-toggle { @@ -5705,7 +5705,7 @@ /* source #3: "#e9e9e9" */ .zhc-sidebar-expand-toggle--enabled:hover, .zhc-sidebar-expand-toggle--enabled:hover .zhc-sidebar-expand-toggle__title { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-sidebar-input__char-count { @@ -5713,7 +5713,7 @@ } /* source #3: "#fff", "#e9e9e9" */ .zhc-options-panel, .zhc-sidebar-input__input { - border-color: #202227; + border-color: #2b2d32; } .zhc-options-panel { background-color: #1f2126; @@ -5721,12 +5721,12 @@ } /* source #3: "#e9e9e9" */ .zhc-options-panel__actions-section { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-sidebar-project-display__toggle--collapsed { background: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-roadmap-add-epic-item__title { @@ -5739,7 +5739,7 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap-sidebar__body { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "box-shadow: none" */ .zhc-roadmap-sidebar__body--empty { @@ -5756,7 +5756,7 @@ /* source #3: "#f8f8f8", "#e9e9e9" */ .zhc-roadmap__title { background-color: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "#ddd" */ .zhc-roadmap__title--secondary { @@ -5764,7 +5764,7 @@ } /* source #3: "#e9e9e9" */ .zhc-roadmap-date-strip { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #3: "color: #bbbbbb66" */ .zhc-roadmap-date-strip__unit-top { @@ -5773,7 +5773,7 @@ /* source #3: "#f8f8f8", "#e9e9e9", "#eee", "#f8f8f8" */ .zhc-roadmap-subheader { background-color: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; background: #24262b; } /* source #3: "#fff" */ @@ -5851,12 +5851,12 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zhc-workflows-workspace { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "color: #333", "#ddd" */ .zh-form-control, .zh-form-control-small { color: #bbbbbbEE; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .zh-form-control-small:focus, .zh-form-control:focus { @@ -5885,7 +5885,7 @@ } /* source #3: "#eeeeee" */ .icon-border { - border-color: #202227; + border-color: #2b2d32; } /* source #3: "#fff" */ .dropdown-menu > .active > a > [class*=" icon-"], @@ -5926,7 +5926,7 @@ /* source #3: "#f4f4f4", "#e9e9e9" */ .zh-menu-content__item:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #3: "transparent", "transparent" */ .zh-menu-content__item--disabled:hover { @@ -5939,7 +5939,7 @@ } /* source #5: "#f6f8fa", "#e1e4e8" */ .Box, .Box-header { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#d73a49" */ .Box--danger, .Box--danger .Box-body:last-of-type, @@ -6016,7 +6016,7 @@ } /* source #5: "color: #24292e", "#fff", "#e1e4e8" */ .form-control, .form-select { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #959da5" */ .form-control[disabled], .form-select[disabled] { @@ -6036,7 +6036,7 @@ } /* source #5: "#fff", "#e1e4e8" */ .menu, .radio-label { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #1b1f23", "#eaecef" */ .menu-item { @@ -6060,7 +6060,7 @@ } /* source #5: "#e1e4e8" */ .tabnav { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #24292e", "initial", "transparent" */ .tabnav-tab { @@ -6070,7 +6070,7 @@ /* source #5: "#fff", "#e1e4e8" */ .tabnav-tab.selected, .tabnav-tab[aria-current]:not([aria-current="false"]), .tabnav-tab[aria-selected="true"] { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .tabnav-tab:focus, .tabnav-tab:hover { @@ -6126,7 +6126,7 @@ } /* source #5: "#eaecef" */ .pagination a:active, .pagination em:active, .pagination span:active { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #0366d6" */ .pagination .next_page, .pagination .previous_page { @@ -6146,7 +6146,7 @@ } /* source #5: "#e1e4e8" */ .drag-and-drop { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #6a737d" */ .flash .btn .octicon { @@ -6166,7 +6166,7 @@ color: /*[[base-color]]*/ #2d6382; background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #0366d6", "#f6f8fa" */ .ajax-pagination-form .ajax-pagination-btn:focus, @@ -6177,7 +6177,7 @@ /* source #5: "#f6f8fa", "#d1d5da" */ .ajax-pagination-form.loading .ajax-pagination-btn { background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "box-shadow: none" */ body.intent-mouse [role="button"]:focus, @@ -6196,7 +6196,7 @@ } /* source #5: "#959da5" */ .form-group:hover .form-field-hover, .placeholder-box { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e" */ .template-previews .discussion-sidebar-heading { @@ -6208,7 +6208,7 @@ } /* source #5: "#dfe2e5" */ .gollum-editor .comment-form-head.tabnav { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #0366d6", "none" */ .zeroclipboard-link { @@ -6222,11 +6222,11 @@ } /* source #5: "#eaeaea" */ .two-factor-help { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eaeaea" */ .u2f-auth-header:not(:last-child) { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#f9f9f9" */ .session-authentication { @@ -6273,7 +6273,7 @@ } /* source #5: "#eaecef" */ .page-responsive .HeaderMenu--logged-out .header-search-wrapper { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e" */ .page-responsive .HeaderMenu--logged-out .header-search-input { @@ -6390,7 +6390,7 @@ } /* source #5: "#e1e4e8" */ .header-search-current .jump-to-suggestions-results-container .navigation-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#0366d6" */ .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path, @@ -6446,7 +6446,7 @@ } /* source #5: "#e1e4e8" */ .header-search-prototype .ems-result-types { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "color: #24292e !important" */ .header-search-prototype .jump-to-field-active { @@ -6478,7 +6478,7 @@ } /* source #5: "#e1e4e8" */ .header-search-prototype .jump-to-suggestions-results-container .navigation-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#0366d6" */ .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path, @@ -6497,7 +6497,7 @@ } /* source #5: "#fff", "#e1e4e8" */ .dropdown-menu { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "transparent" */ .IssueLabel { @@ -6506,12 +6506,12 @@ /* source #5: "initial", "#e1e4e8" */ .label, .Label { background-color: initial !important; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069", "#e1e4e8" */ .Label--gray, .Label--outline { color: #bbbbbbCC; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e" */ .Label--gray-darker { @@ -6564,12 +6564,12 @@ /* source #5: "#e1e4e8" */ @media (min-width: 544px) { .SelectMenu-modal { - border-color: #202227; + border-color: #2b2d32; } } /* source #5: "#eaecef" */ .SelectMenu-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #959da5", "initial" */ .SelectMenu-closeButton { @@ -6578,7 +6578,7 @@ } /* source #5: "#eaecef" */ .SelectMenu-filter { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #24292e", "#fff", "#eaecef" */ .SelectMenu-item { @@ -6595,7 +6595,7 @@ } /* source #5: "#eaecef" */ .SelectMenu-list--borderless .SelectMenu-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #6a737d" */ .SelectMenu-item:disabled, .SelectMenu-item[aria-disabled="true"] { @@ -6654,11 +6654,11 @@ color: #bbbbbbCC; background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#dfe2e5" */ .boxed-group-inner .help, .boxed-group-inner .tabnav-tab.selected { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .boxed-group-inner .help { @@ -6666,11 +6666,11 @@ } /* source #5: "#e1e4e8" */ .boxed-group-list > li { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#dfe2e5" */ .boxed-group-list > li:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#dcffe4" */ .boxed-group-list > li.selected { @@ -6682,7 +6682,7 @@ } /* source #5: "#eaecef" */ .boxed-group-table td, .boxed-group-table th { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: rgba(27,31,35,.85)", "#fffbdd", "rgba(27,31,35,.15)" */ .boxed-group-warning { @@ -6692,7 +6692,7 @@ } /* source #5: "#e1e4e8" */ .list-group-item { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fafbfc" */ .list-group-item.closed { @@ -6736,7 +6736,7 @@ } /* source #5: "#eaecef" */ .progress-bar { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#2cbe4e" */ .progress-bar .progress { @@ -6744,16 +6744,16 @@ } /* source #5: "#e1e4e8", "#28a745","#cb2431" */ .reverse-progress-container { - background-color: #202227; + background-color: #2b2d32; background-image: linear-gradient(90deg, #373, #005cc5, #3a1d6e, #911, #f66a0a); } /* source #5: "#e1e4e8" */ .reverse-progress-bar { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#e1e4e8" */ .progress-bar-inline .progress-bar { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e", "#fff", "border-color: #dfe2e5 #dfe2e5 #fff" */ .select-menu-tabs .select-menu-tab-nav.selected, @@ -6762,7 +6762,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227 #202227 #1f2126; + border-color: #2b2d32 #2b2d32 #1f2126; } /* source #5: "color: #6a737d" */ .select-menu-item.disabled, .select-menu-item.disabled .description, @@ -6833,15 +6833,15 @@ } /* source #5: "#eaecef" */ .table-list, .table-list-bordered { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#eaecef" */ .table-list-bordered .table-list-cell:first-child { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "#eaecef" */ .table-list-bordered .table-list-cell:last-child { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "box-shadow: inset 2px 0 0 #0366d6" */ .table-list-item.unread .table-list-cell:first-child { @@ -6849,12 +6849,12 @@ } /* source #5: "#eaecef" */ .table-list-cell { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#f6f8fa", "#e1e4e8" */ .table-list-header { background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .table-list-header-meta, .table-list-header-toggle .btn-link { @@ -6879,11 +6879,11 @@ } /* source #5: "#dfe2e5" */ .capped-card { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eaecef" */ .capped-card > p, .capped-card h3 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .capped-card > p { @@ -6909,7 +6909,7 @@ /* source #5: "color: #586069", "#dfe2e5" */ .email-format .email-quoted-reply, .email-format .email-signature-reply { color: #bbbbbbCC; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "color: #444d56", "#dfe2e5" */ .email-format .email-hidden-toggle a { @@ -6932,7 +6932,7 @@ } /* source #5: "#f6f8fa", "#eaecef" */ .commit-form, .commit-sha { - border-color: #202227; + border-color: #2b2d32; } .commit-sha { background-color: #282a2f; @@ -6981,7 +6981,7 @@ } /* source #5: "#e1e4e8" */ .commits-list-item + .commits-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "rgba(27,31,35,.15)" */ .full-commit { @@ -7056,7 +7056,7 @@ /* source #5: "#f6f8fa", "#e1e4e8" */ .signed-commit-header { background-color: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #28a745" */ .signed-commit-header .octicon-verified { @@ -7070,7 +7070,7 @@ .signed-commit-badge { color: #bbbbbbCC; background: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e" */ .signed-commit-signer-name .signer { @@ -7078,7 +7078,7 @@ } /* source #5: "#eaecef" */ .table-of-contents li + li { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #c6cbd1" */ .table-of-contents .toc-diff-stats .octicon { @@ -7123,7 +7123,7 @@ /* source #5: "color: #6a737d", "#dfe2e5" */ .conversation-list-heading { color: #bbbbbb94; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fff" */ .conversation-list-heading .inner { @@ -7148,12 +7148,12 @@ } /* source #5: "#e1e4e8" */ .diff-table .line-comments { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#e1e4e8", "#e1e4e8" */ .diff-table tr:not(:last-child) .line-comments { - border-top-color: #202227; - border-bottom-color: #202227; + border-top-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #5: "color: rgba(27,31,35,.3)" */ .blob-num { @@ -7193,7 +7193,7 @@ .blob-expanded .blob-num-hunk, tr:not(.blob-expanded) + .blob-expanded .blob-code, tr:not(.blob-expanded) + .blob-expanded .blob-num { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .blob-num-expandable .diff-expander, @@ -7247,11 +7247,11 @@ } /* source #5: "#dfe2e5" */ .inline-comment-form { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eaecef" */ .empty-cell + .line-comments, .line-comments + .line-comments { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "#f6f8fa" */ .file-diff-split .blob-code + .blob-num { @@ -7260,7 +7260,7 @@ /* source #5: "#fafbfc", "#eaecef" */ .file-diff-split .empty-cell { background-color: #1f2126; - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "color: #cb2431" */ .submodule-diff-stats .octicon-diff-removed { @@ -7277,7 +7277,7 @@ /* source #5: "#e1e4e8" */ .discussion-timeline.team-discussion-timeline::before, .discussion-timeline::before { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#fff" */ .discussion-timeline.team-discussion-timeline .blankslate { @@ -7298,7 +7298,7 @@ } /* source #5: "#e1e4e8" */ .discussion-sidebar-item + .discussion-sidebar-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .discussion-sidebar-heading { @@ -7348,11 +7348,11 @@ /* source #5: "color: #586069", "#e1e4e8" */ .gh-header-meta { color: #bbbbbbCC; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e1e4e8" */ .tabnav-pr { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .tabnav-pr .tabnav-tab { @@ -7361,7 +7361,7 @@ /* source #5: "color: #24292e", "#e1e4e8" */ .tabnav-pr .tabnav-tab.selected { color: #bbbbbbAA; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff", "#fff" */ .timeline-comment-wrapper { @@ -7373,7 +7373,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#c0d3eb" */ .timeline-comment.current-user { @@ -7417,7 +7417,7 @@ } /* source #5: "#e1e4e8" */ .timeline-comment .comment + .comment { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "transparent" */ .timeline-comment--caret::after, .timeline-comment--caret::before { @@ -7429,7 +7429,7 @@ } /* source #5: "#d1d5da" */ .timeline-comment--caret::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "transparent" */ .is-pending .timeline-comment--caret::after, @@ -7492,7 +7492,7 @@ .timeline-comment-header { color: #bbbbbbCC; background-color: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .timeline-comment-header .author { @@ -7521,16 +7521,16 @@ } /* source #5: "color: #d1d5da" */ .timeline-comment-action.disabled, .timeline-comment-action.disabled:hover { - color: #202227; + color: #2b2d32; } /* source #5: "#e1e4e8" */ .timeline-new-comment .previewable-comment-form .comment-body { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #24292e", "#e1e4e8", "#fff" */ .discussion-item-icon { color: #bbbbbbAA; - background-color: #202227; + background-color: #2b2d32; border-color: #1f2126; } /* source #5: "color: #586069" */ @@ -7573,7 +7573,7 @@ /* source #5: "initial", "#e1e4e8" */ .previewable-comment-form .comment-body { background-color: initial; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fff" */ .new-discussion-timeline .composer .timeline-comment::after { @@ -7587,7 +7587,7 @@ /* source #5: "#d1d5da", "transparent", "#fff", "#d1d5da" */ @media (min-width: 768px) { .composer.composer-responsive .timeline-comment { - border-color: #202227; + border-color: #2b2d32; } .composer.composer-responsive .timeline-comment::after, .composer.composer-responsive .timeline-comment::before { @@ -7597,12 +7597,12 @@ border-right-color: #1f2126; } .composer.composer-responsive .timeline-comment::before { - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #5: "#fff", "#e1e4e8" */ .discussion-timeline-actions { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fff" */ .discussion-timeline-actions, .pagination-loader-container { @@ -7621,11 +7621,11 @@ } /* source #5: "#e1e4e8" */ .discussion-item-review-comment { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e1e4e8" */ .discussion-item-icon-gray { - background-color: #202227 !important; + background-color: #2b2d32 !important; } /* source #5: "color: #c6cbd1" */ .footer-octicon { @@ -7667,7 +7667,7 @@ } /* source #5: "#e1e4e8" */ .pagehead { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #24292e" */ .pagehead-actions > li { @@ -7699,7 +7699,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #e36209 #202227 transparent; + border-color: #e36209 #2b2d32 transparent; } /* source #5: "color: #586069" */ .repohead h1 { @@ -7734,7 +7734,7 @@ .reponav-item.selected { color: #bbbbbbAA; background-image: none; - border-color: #e36209 #202227 transparent; + border-color: #e36209 #2b2d32 transparent; } /* source #5: "#24292e" */ .reponav-item.selected, .reponav-wrapper { @@ -7746,13 +7746,13 @@ } /* source #5: "#dfe2e5" */ .steps { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #c6cbd1", "#fafbfc", "#dfe2e5" */ .steps li { color: #5a5a5a; background-color: #1f2126; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "color: #24292e", "#fff" */ .steps li.current { @@ -7778,7 +7778,7 @@ } /* source #5: "color: #d1d5da" */ .prose-diff.collapsed .rich-diff-level-zero.expandable .octicon { - color: #202227; + color: #2b2d32; } /* source #5: "color: #24292e" */ .prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon { @@ -7786,7 +7786,7 @@ } /* source #5: "color: #d1d5da" */ .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child::before { - color: #202227; + color: #2b2d32; } /* source #5: "color: #24292e" */ .prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover::before { @@ -7802,7 +7802,7 @@ /* source #5: "color: #d1d5da" */ .prose-diff > .markdown-body li.added.moved-down .octicon, .prose-diff > .markdown-body li.added.moved-up .octicon { - color: #202227; + color: #2b2d32; } /* source #5: "#fffdef" */ .prose-diff > .markdown-body li.added.moved { @@ -7812,7 +7812,7 @@ .prose-diff > .markdown-body td.changed, .prose-diff > .markdown-body th.changed { background: #222429; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "color: #cb2431" */ .prose-diff > .markdown-body li:not(.moved).removed { @@ -7832,7 +7832,7 @@ } /* source #5: "#e1e4e8" */ .comment-reactions.has-reactions { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#f1f8ff" */ .comment-reactions .user-has-reacted { @@ -7840,7 +7840,7 @@ } /* source #5: "#e1e4e8" */ .reaction-summary-item { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#dfe2e5" */ .render-container { @@ -7862,7 +7862,7 @@ } /* source #5: "#dfe2e5" */ .content-attachment { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "#fff" */ .max--md .content-attachment-content--gradient { @@ -7882,11 +7882,11 @@ } /* source #5: "#e5e5e5" */ .marketing-section { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e5e5e5" */ .marketing-hero-octicon { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #0366d6" */ .marketing-hero-octicon .octicon { @@ -7998,7 +7998,7 @@ } /* source #5: "#eee" */ .plan-notice { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#cb2431" */ .alert-label--high { @@ -8023,7 +8023,7 @@ /* source #5: "#f6f8fa", "#e1e4e8" */ .advisory-form { background-color: #282a2f; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fff" */ .advisory-form .form-actions, .advisory-form .form-control, @@ -8055,7 +8055,7 @@ } /* source #5: "#eee" */ .billing-addon-items tr { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fafbfc" */ .billing-addon-items tr:nth-child(2n) { @@ -8079,7 +8079,7 @@ } /* source #5: "#eee" */ .billing-extra-box, .billing-vat-box { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "color: #586069" */ .billing-section .section-label { @@ -8111,7 +8111,7 @@ } /* source #5: "#ddd" */ .braintree-paypal-loggedin { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #5: "color: #586069" */ .payment-history .currency, .payment-history .status { @@ -8140,7 +8140,7 @@ /* source #5: "#f9f9f9", "#eee" */ .billing-manager-banner { background: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .billing-manager-banner-text, .billing-manager-banner-title { @@ -8149,7 +8149,7 @@ /* source #5: "#fafbfc", "#e0e0e0" */ .plan-choice { background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff" */ .plan-choice.open, .plan-choice.selected { @@ -8158,7 +8158,7 @@ } /* source #5: "#d1d5da" */ .plan-choice--experiment.open, .plan-choice--experiment.selected { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#28a745" */ .plan-choice--experiment.open .plan-choice-icon, @@ -8191,7 +8191,7 @@ } /* source #5: "#e0e0e0" */ .billing-line-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #6a737d" */ .billing-box-accordion:hover .billing-box-accordion-state .octicon { @@ -8215,7 +8215,7 @@ } /* source #5: "color: #d1d5da" */ .reblame-link { - color: #202227; + color: #2b2d32; } /* source #5: "color: #6a737d" */ .blame-hunk:hover .reblame-link { @@ -8223,7 +8223,7 @@ } /* source #5: "#e5e5e5" */ .blob-interaction-bar { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .blob-interaction-bar .octicon-search { @@ -8257,20 +8257,20 @@ } /* source #5: "#ddd" */ .commit-form::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#d1d5da" */ .merge-pr { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#e1e4e8" */ .merge-status-list { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fafbfc", "#e1e4e8" */ .merge-status-item { background-color: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .merge-pr-more-commits, .status-meta { @@ -8280,7 +8280,7 @@ .branch-action-body { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "transparent" */ .branch-action-body::after, .branch-action-body::before { @@ -8292,17 +8292,17 @@ } /* source #5: "#d1d5da" */ .branch-action-body::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#fafbfc", "#e1e4e8" */ .branch-action-body .merge-branch-form, .branch-action-body .merge-message { background-color: #1f2126; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#e1e4e8" */ .branch-action-item + .branch-action-item, .branch-action-item + .mergeability-details { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#2cbe4e" */ .branch-action-state-clean .branch-action-icon { @@ -8335,13 +8335,13 @@ .branch-action-state-closed-dirty .branch-action-body, .branch-action-state-dirty .branch-action-body, .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#d1d5da" */ .branch-action-state-closed-dirty .branch-action-body::before, .branch-action-state-dirty .branch-action-body::before, .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#d73a49" */ .branch-action-state-error .branch-action-icon, @@ -8350,7 +8350,7 @@ } /* source #5: "#e1e4e8" */ .merge-branch-form .commit-form::before { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#2cbe4e" */ .completeness-indicator-success { @@ -8376,7 +8376,7 @@ /* source #5: "#fafbfc", "#e1e4e8" */ .range-editor { background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .range-editor-icon { @@ -8386,11 +8386,11 @@ ul.comparison-list { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eaecef" */ ul.comparison-list > li { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ ul.comparison-list > li em { @@ -8419,7 +8419,7 @@ } /* source #5: "#eaecef" */ .branch-a-b-count .bar-ahead.even, .branch-a-b-count .bar-behind.even { - background: #202227; + background: #2b2d32; } /* source #5: "color: #586069" */ .admin-options-block .policy-enforcement { @@ -8481,7 +8481,7 @@ } /* source #5: "#eaecef", "#444d56" */ .CheckRun-header { - border-top-color: #202227; + border-top-color: #2b2d32; border-bottom-color: #484848; } /* source #5: "color: #959da5" */ @@ -8508,7 +8508,7 @@ } /* source #5: "#586069" */ .CheckStep-line.selected { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "color: #24292e !important", "#ffdf5d" */ .CheckStep-line .dt-fm { @@ -8533,7 +8533,7 @@ } /* source #5: "#e1e4e8" */ .CheckStep .ansibg-w { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "fill: #2cbe4e" */ .code-frequency .addition { @@ -8553,11 +8553,11 @@ } /* source #5: "#e1e4e8" */ .code-list .file-box { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eee" */ .code-list .code-list-item + .code-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #0366d6" */ .code-list .blob-num a:hover { @@ -8591,7 +8591,7 @@ } /* source #5: "#e1e4e8" */ .codesearch-results .repo-list-item + .repo-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "none", "box-shadow: none" */ .search-form-fluid .search-page-input { @@ -8608,7 +8608,7 @@ color: #bbbbbbCC; background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } } /* source #5: "color: #24292e", "#ffd33d" */ @@ -8680,12 +8680,12 @@ } /* source #5: "#e1e4e8" */ .dashboard-rollup-items > .dashboard-rollup-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fafbfc", "#d1d5da" */ .dashboard-notice { background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #959da5" */ .dashboard-notice .dismiss { @@ -8831,7 +8831,7 @@ } /* source #5: "#eee" */ .newsletter-frequency-choice { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #28a745" */ .newsletter-frequency-choice .notice { @@ -8840,7 +8840,7 @@ /* source #5: "#fafbfc", "#eee" */ .newsletter-frequency-choice h3 { background-color: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#0366d6", "#0366d6" */ .newsletter-frequency-choice:hover, .newsletter-frequency-choice:hover h3 { @@ -8874,7 +8874,7 @@ } /* source #5: "#ddd" */ .file { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em #c8e1ff" */ .file:target { @@ -8911,7 +8911,7 @@ /* source #5: "#fafbfc", "#e1e4e8" */ .file-header { background-color: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#ddd" */ .file-info-divider { @@ -9000,11 +9000,11 @@ } /* source #5: "#e1e4e8" */ .topic-list .topic-list-item + .topic-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #d1d5da" */ .topic-box .unstarred { - color: #202227; + color: #2b2d32; } /* source #5: "#fafbfc" */ .discussion-post .timeline-inline-comments { @@ -9012,7 +9012,7 @@ } /* source #5: "#e1e4e8" */ .discussion-post .reply-comment:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fafbfc" */ .discussion-post .reply-comment .review-comment.is-comment-editing { @@ -9020,7 +9020,7 @@ } /* source #5: "#e1e4e8" */ .discussion-post .reply-comments-holder::before { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#f6f8fa", "box-shadow: none" */ .team-discussion-new-post .review-thread-reply-button:disabled { @@ -9109,7 +9109,7 @@ } /* source #5: "#e1e4e8" */ .issue-list-item + .issue-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#f1f8ff" */ .pinned-issue-item.is-dragging, .pinned-issue-item.sortable-ghost { @@ -9180,7 +9180,7 @@ } /* source #5: "#eee" */ .subnav .btn + .issues-search { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "transparent" */ .reaction-sort-item { @@ -9225,7 +9225,7 @@ } /* source #5: "#ddd" */ .repository-lang-stats-graph { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff" */ .repository-lang-stats-graph .language-color:not(:first-child) { @@ -9252,16 +9252,16 @@ .MarketplaceSideNav { background-color: #1f2126; background-image: none; - border-right-color: #202227; + border-right-color: #2b2d32; } } /* source #5: "#e1e4e8" */ .ScreenshotCarousel { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#e1e4e8" */ .ScreenshotCarousel-navitem { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#f6f8fa" */ .ScreenshotCarousel-navitem.selected { @@ -9277,12 +9277,12 @@ } /* source #5: "#d1d5da" */ .marketplace-product-callout { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #5: "color: #586069", "#e1e4e8" */ .marketplace-product-callout .branch-action-item-icon { color: #bbbbbbCC; - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#fff" */ .filter-item.selected .Label--outline-white { @@ -9356,7 +9356,7 @@ /* source #5: "initial", "#ddd" */ .merge-branch-manually { background-color: initial; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #a04100" */ .unavailable-merge-method { @@ -9423,7 +9423,7 @@ } /* source #5: "#d1d5da" */ .notification-thread-subscription:first-child { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069", "none" */ .notifications-sso-prompt a { @@ -9477,7 +9477,7 @@ } /* source #5: "color: #d1d5da" */ .notification-actions .unsaved-notification { - color: #202227; + color: #2b2d32; } /* source #5: "color: #bbbbbb66" */ .repo-subscription-container .intro, .subscriptions-content .repo-icon { @@ -9488,7 +9488,7 @@ color: #bbbbbbCC; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff" */ @media (max-width: 767px) { @@ -9544,7 +9544,7 @@ /* source #5: "color: #24292e !important", "#e1e4e8" */ .notifications-list-item:hover .notification-list-item-actions .btn:hover { color: #bbbbbbAA !important; - background-color: #202227 !important; + background-color: #2b2d32 !important; } /* source #5: "#f1f8ff" */ .notifications-list-item:hover .AvatarStack-body { @@ -9680,7 +9680,7 @@ } /* source #5: "#e5e5e5" */ .oauth-border { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #24292e" */ .developer-app-item .developer-app-name { @@ -9712,7 +9712,7 @@ } /* source #5: "#e1e4e8","transparent" */ .org-insights-svg-tip::before { - border-color: #202227 transparent transparent; + border-color: #2b2d32 transparent transparent; } /* source #5: "color: #0366d6" */ .org-insights-card-legend .metric-0 { @@ -9758,7 +9758,7 @@ .orghead { color: #bbbbbbAA; background-color: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #333" */ .org-name { @@ -9786,7 +9786,7 @@ } /* source #5: "#fff","#f5f5f5" */ .saml-enabled-banner-container { - background-image: linear-gradient(-1deg, #1f2126; background-image: none, #202227); + background-image: linear-gradient(-1deg, #1f2126; background-image: none, #2b2d32); } /* source #5: "#cb2431" */ .saml-settings-form .test-status-indicator-error { @@ -9807,7 +9807,7 @@ } /* source #5: "#eee" */ .org-list .list-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .org-repos-mini .org-repo-name .octicon-repo { @@ -9839,7 +9839,7 @@ } /* source #5: "#eee" */ .team-stats { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .stats-group-stat { @@ -9847,7 +9847,7 @@ } /* source #5: "#eee" */ .stats-group-stat:first-child { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "color: #0366d6" */ .stats-group-stat:hover, .stats-group-stat:hover .stat-number { @@ -9891,11 +9891,11 @@ } /* source #5: "#eaeaea" */ .confirm-removal-list-container { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eaeaea" */ .confirm-removal-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .confirm-removal-repo .octicon, .confirm-removal-team .octicon, @@ -9919,12 +9919,12 @@ .manage-repo-access-group { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#f8f8f8", "#ddd" */ .manage-repo-access-title { background-color: #24262b; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#eee" */ .manage-repo-access-wrapper::before { @@ -9937,11 +9937,11 @@ } /* source #5: "#ddd" */ .manage-repo-access-teams-group { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#eee" */ .manage-repo-access-team-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #24292e", "#fafbfc" */ .manage-repo-access-not-active { @@ -9954,7 +9954,7 @@ } /* source #5: "#ddd" */ .manage-access-remove-footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #0366d6" */ .ldap-memberships-list .edit { @@ -9962,7 +9962,7 @@ } /* source #5: "#eee" */ .invited .team-member-list .list-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "transparent", "transparent" */ .manage-memberships-tabs-item { @@ -9983,7 +9983,7 @@ } /* source #5: "#eee" */ .theme-picker-thumbs { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "none" */ .theme-toggle { @@ -9991,7 +9991,7 @@ } /* source #5: "#ddd" */ .theme-selector-thumbnail { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#f5f5f5" */ .theme-selector-thumbnail:hover { @@ -10036,7 +10036,7 @@ background: none; } .blob-num { - border-right-color: #202227; + border-right-color: #2b2d32; } .blob-num-deletion { border-right-color: #b00; @@ -10045,7 +10045,7 @@ border-bottom-color: #b00; } .diffstat-block-neutral { - border-color: #202227; + border-color: #2b2d32; } .diffstat-block-deleted { border-color: #b00; @@ -10119,7 +10119,7 @@ } /* source #5: "#959da5" */ .new-project-column { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #5: "#f6f8fa" */ .sortable-ghost { @@ -10128,11 +10128,11 @@ /* source #5: "color: #6a737d", "#dfe2e5" */ .project-card blockquote { color: #bbbbbb94; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "#d1d5da" */ .project-card:hover { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important" */ @media (min-width: 544px) { @@ -10180,11 +10180,11 @@ .projects-comment-form .comment-form-head .toolbar-commenting { background-color: #1f2126; background-image: none; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#d1d5da" */ .projects-comment-form .preview-content { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fff" */ .project-issue-body-blur { @@ -10212,7 +10212,7 @@ .user-profile-sticky-bar.user-profile-sticky-bar-with-bg::after { background-color: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #cb2431", "#d73a49" */ .blocked-user-notice { @@ -10223,7 +10223,7 @@ .user-profile-nav { background-color: #1f2126; background-image: none; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; box-shadow: none; } /* source #5: "color: #586069" */ @@ -10237,7 +10237,7 @@ /* source #5: "#eaecef" */ .profile-timeline.discussion-timeline .profile-timeline-month-heading::after, .profile-timeline.discussion-timeline::before { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#fff", "#fff" */ .profile-timeline-card-wrapper { @@ -10251,7 +10251,7 @@ /* source #5: "#eaecef" */ .profile-rollup-summarized + .profile-rollup-summarized, .profile-rollup-wrapper + .profile-rollup-wrapper { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #a04100" */ .stale-files-tab { @@ -10273,7 +10273,7 @@ } /* source #5: "#eee" */ .diffbar .table-of-contents li { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#f1f8ff", "rgba(27,31,35,.15)" */ .diffbar-range-menu .in-range:not(.is-range-selected) { @@ -10298,7 +10298,7 @@ } /* source #5: "#e1e4e8" */ .conflict-resolver.loading { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "rgba(27,31,35,.15)" */ .pull-request-review-menu, .pull-request-suggested-changes-menu { @@ -10322,12 +10322,12 @@ .review-comment .is-comment-editing { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#f6f8fa", "#e1e4e8" */ .review-thread-reply { background-color: #282a2f; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fff", "#e1e4e8" */ .review-summary-form-wrapper, .review-thread-reply .inline-comment-form { @@ -10335,7 +10335,7 @@ background-image: none; } .review-summary-form-wrapper { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #555" */ .diffstat-summary, .diffstat-summary a { @@ -10356,7 +10356,7 @@ /* source #5: "color: #586069", "#e1e4e8" */ .summary-stats li { color: #bbbbbbCC; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #5: "color: #586069" */ .summary-stats li a { @@ -10388,7 +10388,7 @@ } /* source #5: "#e1e4e8", "#fff" */ .release-timeline-tags .tag-timeline-date::after { - background-color: #202227; + background-color: #2b2d32; border-color: #1f2126; } /* source #5: "color: #cb2431", "#d73a49" */ @@ -10402,7 +10402,7 @@ } /* source #5: "border: 1px solid", "#ddd","#e5e5e5" */ .uploaded-files.is-populated { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#f9f9f9" */ .uploaded-files > li.delete { @@ -10414,12 +10414,12 @@ } /* source #5: "#e1e4e8" */ .release-entry { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e1e4e8" */ @media (min-width: 768px) { .release-main-section { - border-left-color: #202227; + border-left-color: #2b2d32; } } /* source #5: "color: #bbbbbb66" */ @@ -10428,7 +10428,7 @@ } /* source #5: "#ddd" */ .repo-file-upload-target.dragover .repo-file-upload-outline { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff", "#e5e5e5" */ .is-bad-file .repo-file-upload-errors, .is-empty .repo-file-upload-errors, @@ -10437,7 +10437,7 @@ .is-too-big .repo-file-upload-errors, .is-too-many .repo-file-upload-errors { background-color: #1f2126; background-image: none; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #bbbbbb66", "#fff" */ .repo-file-upload-tree-target { @@ -10446,7 +10446,7 @@ } /* source #5: "#ddd" */ .repo-file-upload-tree-target .repo-file-upload-outline { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #bbbbbb66" */ .repo-file-upload-file-wrap .remove-file:hover { @@ -10458,11 +10458,11 @@ } /* source #5: "#eee" */ .repo-list-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#d1d5da" */ .mini-repo-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #6a737d" */ .mini-repo-list-item .repo-icon, .mini-repo-list-item .stars { @@ -10483,11 +10483,11 @@ /* source #5: "#fafbfc", "#e5e5e5" */ .filter-bar { background-color: #1f2126; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#ddd" */ .url-box { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #24292e" */ .url-box p strong { @@ -10524,7 +10524,7 @@ text-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.6); background-color: #484848; background-image: linear-gradient(#303030, #282828); - border-color: #202227; + border-color: #2b2d32; box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.075); } /* source #5: "initial" */ @@ -10537,7 +10537,7 @@ } /* source #5: "#dfe2e5" */ .overall-summary { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .numbers-summary li > .nolink, .numbers-summary li > a { @@ -10553,11 +10553,11 @@ } /* source #5: "#e1e4e8" */ .file-navigation .get-repo-btn { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#e1e4e8" */ .file-navigation .get-repo-btn:first-child { - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #5: "#fff" */ table.files { @@ -10570,7 +10570,7 @@ } /* source #5: "#eaecef" */ table.files td { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: rgba(3, 47, 98, 0.55)" */ table.files td.icon { @@ -10590,8 +10590,8 @@ } /* source #5: "#eaecef", "#eaecef" */ table.files tr.up-tree { - border-top-color: #202227; - border-bottom-color: #202227; + border-top-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #5: "#dfe2e5" */ table.files tr.up-tree a:hover { @@ -10601,7 +10601,7 @@ .branch-infobar { color: #bbbbbbCC; background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #959da5" */ .branch-infobar .muted-link .octicon { @@ -10609,7 +10609,7 @@ } /* source #5: "#dfe2e5" */ .prereceive-feedback { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #b08800" */ .prereceive-feedback-heading { @@ -10621,7 +10621,7 @@ } /* source #5: "#e1e4e8" */ .custom-role-icon { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "color: #bbbbbb66" */ .edit-profile-avatar .drag-and-drop { @@ -10638,7 +10638,7 @@ } /* source #5: "#e5e5e5" */ dl.new-email-form { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .boxed-group .fork-flag { @@ -10650,12 +10650,12 @@ } /* source #5: "#ddd" */ .user-key-badge, .user-key-email { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #bbbbbb66", "#ddd" */ .user-key-email-unverified { color: #bbbbbb94; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #28a745" */ .recent-user-key { @@ -10667,7 +10667,7 @@ } /* source #5: "#ddd" */ .notification-center .overview { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .oauth-app-info-container dl.keys dt { @@ -10692,7 +10692,7 @@ /* source #5: "#eee", "#d1d5da" */ .logo-box { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069", "text-shadow: 0 1px 0 #fff" */ .logo-placeholder { @@ -10701,16 +10701,16 @@ } /* source #5: "#ddd" */ .saved-reply-form { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "initial", "#eaecef" */ .saved-reply-form .comment-body { background-color: initial; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e5e5e5" */ .access-token { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "rgba(108,198,68,.1)" */ .access-token.new-token { @@ -10734,15 +10734,15 @@ } /* source #5: "#eaecef" */ .email-preference-exceptions .exception { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#eaecef" */ .email-preference-exceptions .exception:last-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#eaecef" */ .two-factor-steps { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #cb2431" */ .two-factor-steps .error-icon { @@ -10755,7 +10755,7 @@ /* source #5: "color: #586069", "#eaeaea" */ .two-factor-toggle .two-factor-status { color: #bbbbbbCC; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#28a745" */ .two-factor-toggle .two-factor-on { @@ -10763,7 +10763,7 @@ } /* source #5: "#f8f8f8" */ .two-factor-settings-group, .u2f-registration { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: rgba(47,38,6,.5)" */ .u2f-registration-icon { @@ -10771,7 +10771,7 @@ } /* source #5: "#ddd" */ .github-access-banner { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #cb2431" */ .github-access-banner .octicon { @@ -10779,7 +10779,7 @@ } /* source #5: "#eaecef" */ .qr-code-table { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "transparent" */ .qr-code-table tr { @@ -10829,7 +10829,7 @@ } /* source #5: "#ddd" */ .access-form-wrapper { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#fafbfc" */ .oauth-pending-deletion-list-item, .oauth-pending-deletion-list-item:hover { @@ -10841,11 +10841,11 @@ } /* source #5: "#e5e5e5" */ .form-hr { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#e5e5e5" */ .listgroup { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #586069" */ .listgroup-item { @@ -10853,11 +10853,11 @@ } /* source #5: "#e5e5e5" */ .listgroup-item + .listgroup-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#e5e5e5" */ .listgroup-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#f5f5f5" */ .listgroup-overflow { @@ -10904,7 +10904,7 @@ } /* source #5: "#ddd" */ .setup-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .setup-header .lead a { @@ -10925,7 +10925,7 @@ } /* source #5: "#ddd" */ .setup-info-module h2 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #586069" */ .setup-info-module h2 .price { @@ -10934,11 +10934,11 @@ /* source #5: "#f9f9f9", "#e0e0e0" */ .setup-info-module .setup-info-note { background: #1f2126; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#eee" */ .features-list .list-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #555" */ .features-list .octicon-question { @@ -10954,12 +10954,12 @@ } /* source #5: "#eee", "#eee" */ .setup-form .setup-organization-next, .setup-form .tos-info { - border-top-color: #202227; - border-bottom-color: #202227; + border-top-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #5: "#d1d5da" */ .setup-form .setup-plans { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#f1f8ff" */ .setup-form .setup-plans tr.selected { @@ -11003,7 +11003,7 @@ } /* source #5: "#d1d5da" */ .orgs-help-shelf-content .orgs-help-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "color: #586069" */ .orgs-help-lead { @@ -11013,7 +11013,7 @@ .orgs-help-item-octicon { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #0366d6" */ .orgs-help-item-octicon .octicon { @@ -11029,7 +11029,7 @@ } /* source #5: "#fff", "#d1d5da" */ .signup-plan-card { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff" */ .signup-plan-card, .signup-plan-card:hover { @@ -11048,7 +11048,7 @@ } /* source #5: "#eee" */ .showcase-page-repo-list { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#ffd33d" */ .sponsors-goal-completed-bar, .sponsors-goal-progress-bar:hover { @@ -11065,11 +11065,11 @@ .org-sso .business-sso-panel, .org-sso .org-sso-panel { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#d1d5da" */ .business-sso .sso-recovery-callout, .org-sso .sso-recovery-callout { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "none", "box-shadow: none" */ .tag-input input { @@ -11087,7 +11087,7 @@ /* source #5: "color: #586069", "#eaeaea", "box-shadow: none" */ .team-label-ldap { color: #bbbbbbCC; - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } /* source #5: "color: #0366d6", "#f6f8fa" */ @@ -11115,7 +11115,7 @@ } /* source #5: "#eaecef" */ table.capped-list td, table.capped-list th { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #444d56" */ table.capped-list .octicon { @@ -11127,7 +11127,7 @@ } /* source #5: "#dfe2e5" */ .traffic-graph-stats { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "box-shadow: none" */ .tree-finder-input, .tree-finder-input:focus { @@ -11190,7 +11190,7 @@ } /* source #5: "#e1e4e8" */ .user-list-item + .user-list-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #5: "#cb2431" */ .follow-list .flagged-banner { @@ -11203,7 +11203,7 @@ /* source #5: "#e1e4e8" */ @media (min-width: 768px) { .avatar-before-user-status { - border-color: #202227; + border-color: #2b2d32; } } /* source #5: "color: #586069" */ @@ -11229,7 +11229,7 @@ .user-status-circle-badge { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #5: "none" */ .wiki-footer .markdown-body img { @@ -11294,7 +11294,7 @@ /* source #5: "#d1d5da", "box-shadow: inset 2px 0 0 #0366d6" */ @media (min-width: 544px) { .Box--responsive { - border-color: #202227; + border-color: #2b2d32; } .Box--responsive .Box-row--unread { box-shadow: inset 2px 0 0 #eee; @@ -11309,16 +11309,16 @@ } /* source #5: "#e1e4e8" */ .preview-selected .tabnav--responsive { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fafbfc", "#e1e4e8", "#fff" */ @media (max-width: 767px) { .tabnav--responsive .tabnav-tab { background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } .tabnav--responsive .tabnav-tab:first-child { - border-left-color: #202227; + border-left-color: #2b2d32; } .tabnav--responsive .tabnav-tab.selected, .tabnav--responsive .tabnav-tab[aria-selected="true"] { @@ -11329,7 +11329,7 @@ /* source #5: "#e1e4e8" */ @media (max-width: 767px) { .hx_sm-hide-drag-drop textarea { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } } /* source #5: "#fff" */ @@ -11348,28 +11348,28 @@ } /* source #5: "#e1e4e8" */ .BorderGrid-cell { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#e1e4e8" */ @media (min-width: 544px) { .Box--responsive { - border-color: #202227; + border-color: #2b2d32; } } /* source #5: "#e1e4e8" */ .timeline-comment, .timeline-comment-header { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#e1e4e8" */ .branch-action-item.border-gray-dark { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #5: "#e1e4e8" */ .branch-action-body, .branch-action-state-closed-dirty .branch-action-body, .branch-action-state-dirty .branch-action-body, .is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body, .select-menu-modal { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "#fff" */ .select-menu-filters, .select-menu-header { @@ -11405,7 +11405,7 @@ /* source #5: "#e1e4e8" */ .signed-commit-badge-large, .signed-commit-badge-medium, .signed-commit-badge-small, .timeline-comment-label { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "transparent", "color: #0366d6" */ .delete-topic-button, .topic-tag, .topic-tag-action { @@ -11481,7 +11481,7 @@ } /* source #5: "#eee" */ hr { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fb8532" */ .bg-orange { @@ -11493,7 +11493,7 @@ } /* source #5: "#d1d5da" */ .underline-dashed { - background-image: linear-gradient(90deg, #202227 50%, hsla(0, 0%, 100%, 0) 0); + background-image: linear-gradient(90deg, #2b2d32 50%, hsla(0, 0%, 100%, 0) 0); } /* source #5: "color: #1074e7", "box-shadow: 0 1px 0 0 rgba(16,116,231,.5)" */ .link-mktg { @@ -11528,7 +11528,7 @@ } /* source #5: "#e1e4e8" */ .sponsors-discussion::after { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "transparent" */ .sponsors-popover::after, .sponsors-popover::before { @@ -11554,7 +11554,7 @@ /* source #5: "color: #24292e", "#e1e4e8" */ .subnav-link:hover { color: #bbbbbbAA; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "color: #1b1f23 !important", "#1074e7" */ .subnav-link.selected { @@ -11583,7 +11583,7 @@ /* source #5: "#e1e4e8" */ @media (min-width: 768px) { .subnav-primary:hover { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } } /* source #5: "transparent" */ @@ -11602,12 +11602,12 @@ } /* source #5: "#eaecef" */ .pricing-table td, .pricing-table thead th { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#eaecef", "#eaecef" */ .pricing-table td + td { - border-right-color: #202227; - border-left-color: #202227; + border-right-color: #2b2d32; + border-left-color: #2b2d32; } /* source #5: "#fff" */ .fade-img-to-white-bg::before { @@ -11629,7 +11629,7 @@ } /* source #5: "#e1e4e8" */ .pricing-testimonial-logo-active { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "initial" */ .pricing-matrix-row-button { @@ -11638,7 +11638,7 @@ /* source #5: "#e1e4e8" */ .pricing-matrix-row:hover .pricing-matrix-column-feature, .pricing-matrix-row:hover .pricing-matrix-row-text { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#fff" */ .pricing-matrix-column-tier { @@ -11655,7 +11655,7 @@ } /* source #5: "#e1e4e8" */ .codespaces-develop-time { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "box-shadow: none" */ .section-codespaces-develop-night .codespaces-sun { @@ -11722,7 +11722,7 @@ } /* source #5: "#444d56" */ .IconNav-item.selected { - border-color: #202227; + border-color: #2b2d32; } /* source #5: "color: #24292e" */ .home-hero-signup .form-control-lg:-ms-input-placeholder { @@ -11758,7 +11758,7 @@ } /* source #5: "color: #d1d5da" */ .actions-event-token span { - color: #202227; + color: #2b2d32; } /* source #5: "color: #0366d6" */ .actions-template-card:hover .actions-template-repo { @@ -11774,7 +11774,7 @@ } /* source #5: "color: #d1d5da" */ .security-nav-icon { - color: #202227; + color: #2b2d32; } /* source #5: "initial" */ @media (min-width: 1012px) { @@ -11868,7 +11868,7 @@ /* source #5: "#d1d5da" */ @media (min-width: 544px) { .summarylink:active .summarylink-btn, .summarylink:hover .summarylink-btn { - border-color: #202227; + border-color: #2b2d32; } } /* source #5: "transparent" */ @@ -11889,7 +11889,7 @@ } /* source #5: "#e1e4e8" */ .apps-quadrangle .CircleBadge::after { - background-color: #202227; + background-color: #2b2d32; } /* source #5: "#24292e" */ .DeveloperVideo-data { @@ -11950,7 +11950,7 @@ } /* source #5: "#d1d5da" */ .team-collaboration-box::before { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #5: "#fff" */ .team-collaboration-box::after { @@ -11960,7 +11960,7 @@ @media (min-width: 768px) { .team-collaboration-box--left::before { border-bottom-color: transparent; - border-left-color: #202227; + border-left-color: #2b2d32; } .team-collaboration-box--left::after { border-bottom-color: transparent; @@ -11970,7 +11970,7 @@ /* source #5: "#d1d5da", "transparent", "#fff", "transparent" */ @media (min-width: 768px) { .team-collaboration-box--right::before { - border-right-color: #202227; + border-right-color: #2b2d32; border-bottom-color: transparent; } .team-collaboration-box--right::after { @@ -11987,7 +11987,7 @@ /* source #6: "#bbb", "white" */ ._2NFgh0Z6tkGorUToiId47k [class^="Content__ChildWrapper"] > [class^="Content"], ._3c5eahGieigDTmRHO-d7l3 [class^="Content__ChildWrapper"] > [class^="Content"] { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -12003,24 +12003,24 @@ } /* source #6: "#ddd" */ .ak-editor-wrapper table, .markdown-display table { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#ddd" */ .ak-editor-wrapper table td, .markdown-display table td { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#ddd" */ .ak-editor-wrapper table td + td, .ak-editor-wrapper table th + th, .markdown-display table td + td, .markdown-display table th + th { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #6: "#d0d0d0" */ ._2-I6T1F9kpUp2j9G31LMYN { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#bbb" */ ._1JN3aEKlPD7X5jqB1dXYzx input { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "white" */ ._2dv0LNfUzjAAPh-wPACjXb { @@ -12048,15 +12048,15 @@ } /* source #6: "#e0e0e0" */ .well { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#e5e5e5" */ hr { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#ddd" */ abbr { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "#f5f5f5" */ pre.code-display { @@ -12070,7 +12070,7 @@ .chzn-container-single .chzn-single, input[type="email"], input[type="number"], input[type="password"], input[type="text"], select, textarea { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "color: #bbbbbb66" */ .chzn-container-single .chzn-single, input[type="email"], @@ -12080,12 +12080,12 @@ /* source #6: "#f5f5f5", "#ddd" */ input[disabled], select[disabled], select[readonly], textarea[disabled] { background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#ddd" */ input[disabled]:hover, select[disabled]:hover, select[readonly]:hover, textarea[disabled]:hover { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#f4f4f4", "color: #bbbbbb66" */ .controls.append label, .controls.prepend label { @@ -12094,15 +12094,15 @@ } /* source #6: "#e0e0e0" */ .form-bordered .control-group { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "#e0e0e0" */ .form-bordered .control-group.first-border { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#eee" */ .fa-border { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "transparent" */ .tooltipster-sidetip .tooltipster-arrow-background, @@ -12112,7 +12112,7 @@ } /* source #6: "#BBB" */ .cpt-admin-simple-search-form button { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#ffffff" */ .carousel-control { @@ -12124,7 +12124,7 @@ } /* source #6: "#d0d0d0", "#fff" */ .component-statuses .component-status-container .component-dropdown-selector .status-dropdown { - border-color: #202227; + border-color: #2b2d32; background-color: #1f2126; background-image: none; } @@ -12182,7 +12182,7 @@ } /* source #6: "#bbb" */ .grouped-items-selector { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "box-shadow: none" */ .grouped-items-selector.inline { @@ -12190,7 +12190,7 @@ } /* source #6: "#ddd" */ .grouped-items-selector.inline .border-color { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "color: #333" */ .grouped-items-selector.inline .grouped-item.active { @@ -12207,7 +12207,7 @@ } /* source #6: "#e0e0e0" */ .modal .modal-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "color: #000" */ .modal .modal-header .close, .modal .modal-header .close:hover { @@ -12216,7 +12216,7 @@ /* source #6: "#f5f5f5", "#ddd" */ .modal .modal-footer { background-color: #282a2f; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#fff", "transparent" */ .panel { @@ -12226,13 +12226,13 @@ } /* source #6: "#ddd" */ .panel.panel-default { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "color: #333", "#f5f5f5", "#ddd" */ .panel.panel-default .panel-heading { color: #bbbbbbEE; background-color: #282a2f; - border-color: #202227; + border-color: #2b2d32; } /* source #6: "transparent" */ .panel .panel-heading { @@ -12266,7 +12266,7 @@ /* source #6: "#f5f5f5", "#eee" */ .popover .popover-title { background-color: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "#fff" */ .cpt-table .content { @@ -12275,19 +12275,19 @@ } /* source #6: "#e0e0e0" */ .cpt-table .content .table-row.blank-state { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #6: "#ddd" */ .cpt-tabular-table { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#ddd" */ .cpt-tabular-table td { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#ddd" */ .cpt-tabular-table td + td, .cpt-tabular-table th + th { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #6: "#f9f9f9" */ .cpt-tabular-table.striped tbody tr:nth-child(odd) td, @@ -12296,7 +12296,7 @@ } /* source #6: "#ddd" */ .cpt-tabs:not(.unstyled) { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "transparent" */ .cpt-tabs:not(.unstyled) li a { @@ -12316,20 +12316,20 @@ color: #bbbbbbEE; background-color: #1f2126; background-image: none; - border-color: #202227 #202227 transparent; + border-color: #2b2d32 #2b2d32 transparent; } /* source #6: "#e0e0e0" */ .cpt-tabs:not(.unstyled).mobile { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#e0e0e0" */ .cpt-tabs:not(.unstyled).mobile.open li:last-of-type { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "#e0e0e0", "#e0e0e0" */ .cpt-tabs:not(.unstyled).mobile.open li a { - border-left-color: #202227; - border-right-color: #202227; + border-left-color: #2b2d32; + border-right-color: #2b2d32; } /* source #6: "#fff" */ .cpt-tabs:not(.unstyled).mobile li.active a, @@ -12350,7 +12350,7 @@ } /* source #6: "color: #bbbbbb66", "#e0e0e0" */ .tooltip-base { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "color: #bbbbbb66" */ .tooltip-base, .tooltip-base:hover { @@ -12391,7 +12391,7 @@ } /* source #6: "#bbb" */ .cpt-button.style-outline.color-grey { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "box-shadow: none" */ .cpt-button.disabled { @@ -12403,7 +12403,7 @@ } /* source #6: "#EEEEEE" */ .domain-helper .dns-records { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "#EEEEEE" */ .domain-helper .dns-records .dns-records-header { @@ -12411,7 +12411,7 @@ } /* source #6: "#EEEEEE" */ .domain-helper .dns-records .dns-records-row { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#fff" */ .cpt-pill-group button.pill { @@ -12420,7 +12420,7 @@ } /* source #6: "#E0E0E0", "color: #333" */ .cpt-pill-group button.pill.active { - border-color: #202227; + border-color: #2b2d32; color: #bbbbbbEE; } /* source #6: "transparent" */ @@ -12430,8 +12430,8 @@ /* source #6: "#f8f8f8", "#e0e0e0", "#e0e0e0" */ .updates-dropdown-container .updates-dropdown .updates-dropdown-nav a { background-color: #24262b; - border-right-color: #202227; - border-bottom-color: #202227; + border-right-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #6: "color: #bbbbbb66 !important" */ .updates-dropdown-container .updates-dropdown .updates-dropdown-nav a:last-of-type { @@ -12470,7 +12470,7 @@ } /* source #6: "#e0e0e0", "color: #333" */ .layout-content.status-internal { - border-color: #202227; + border-color: #2b2d32; color: #bbbbbbEE; } /* source #6: "#fff" */ @@ -12524,7 +12524,7 @@ } /* source #6: "#e6ebf1" */ .page-footer { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } /* source #6: "#f6f8fa" */ .component-items-selector .grouped-item:hover { @@ -12546,7 +12546,7 @@ } /* source #6: "#e6ebf1" */ .month-title { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* source #6: "#e6ebf1" */ .incident-container::before { @@ -12627,20 +12627,20 @@ #uptime-tooltip .tooltip-box, .markdown-display table, .tooltip-base, body.status .layout-content.status .border-color, div[id^="subscribe-modal"], hr { - border-color: #202227; + border-color: #2b2d32; } /* source #6: "#e1e4e8" */ .markdown-display table td, div[id^="subscribe-modal"] .modal-footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #6: "#e1e4e8" */ .markdown-display table td + td, .markdown-display table th + th { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #6: "#e1e4e8" */ #uptime-tooltip .pointer-container .pointer-larger, div[id^="subscribe-modal"] .modal-header { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #6: "rgba(225,228,232,0.31)" */ #uptime-tooltip .tooltip-box .outage-field { @@ -12734,12 +12734,12 @@ /* source #7: "linear-gradient(#f7f7f7, #e2e2e2)", "#d0d0d0" */ .graphiql-container .topBar { background: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #7: "linear-gradient(#f7f7f7, #e2e2e2)", "#d0d0d0", "color: #3b5998" */ .graphiql-container .docExplorerShow, .graphiql-container .historyShow { background: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; color: /*[[base-color]]*/ #2d6382; } /* source #7: "#3B5998", "#3B5998" */ @@ -12749,7 +12749,7 @@ } /* source #7: "#e0e0e0" */ .graphiql-container .resultWrap { - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #7: "white" */ .graphiql-container .docExplorerWrap, .graphiql-container .historyPaneWrap { @@ -12759,13 +12759,13 @@ /* source #7: "#eeeeee", "#d6d6d6", "#e0e0e0" */ .graphiql-container .variable-editor-title { background: #303237; - border-bottom-color: #202227; - border-top-color: #202227; + border-bottom-color: #2b2d32; + border-top-color: #2b2d32; } /* source #7: "#e0e0e0", "#e0e0e0" */ .graphiql-container .footer { - border-left-color: #202227; - border-top-color: #202227; + border-left-color: #2b2d32; + border-top-color: #2b2d32; } /* source #7: "#eeeeee" */ .graphiql-container .footer::before { @@ -12775,12 +12775,12 @@ .graphiql-container .toolbar-button { background: #1f2126; background: linear-gradient(#303030, #282828); - box-shadow: 0 0 0 0.1px #202227; + box-shadow: 0 0 0 0.1px #2b2d32; color: #bbbbbbCC; } /* source #7: "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)" */ .graphiql-container .toolbar-button:active { - background: linear-gradient(#202227, #222429); + background: linear-gradient(#2b2d32, #222429); box-shadow: 0 0 0 1px #484848; } /* source #7: "linear-gradient(#fdfdfd, #d2d3d6)", "box-shadow: 0 1px 0 #fff" */ @@ -12790,7 +12790,7 @@ } /* source #7: "linear-gradient(#e6e6e6, #c3c3c3)" */ .graphiql-container .execute-button:active { - background: linear-gradient(#202227, #222429); + background: linear-gradient(#2b2d32, #222429); } /* source #7: "#fff" */ .graphiql-container .execute-options, @@ -12824,11 +12824,11 @@ .graphiql-container .history-contents { background-color: #1f2126; background-image: none; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #7: "#e0e0e0" */ .graphiql-container .doc-category-title { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #7: "color: #555" */ .graphiql-container .doc-category-item { @@ -12856,7 +12856,7 @@ } /* source #7: "#e0e0e0" */ .graphiql-container .history-contents p, .graphiql-container .search-box { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #7: "color: #000" */ mark { @@ -12868,7 +12868,7 @@ } /* source #7: "#e9ecef", "none", "rgba(27,31,35,0.35)" */ .btn.selected, .btn:active, [open] > .btn { - background-color: #202227; + background-color: #2b2d32; background-image: none; border-color: rgba(200, 200, 200, 0.3); } @@ -12962,7 +12962,7 @@ background-image: none; } .tabnav-tab.selected, .tabnav-tab[aria-selected="true"] { - border-color: #202227; + border-color: #2b2d32; } /* source #7: "#0366d6", "#0366d6" */ .filter-item.selected, .subnav-item.selected, .subnav-item.selected:focus, @@ -12985,19 +12985,19 @@ /* source #7: "color: #d1d5da", "#fafbfc" */ .pagination .disabled, .pagination .disabled:hover, .pagination .gap, .pagination .gap:hover { - color: #202227; + color: #2b2d32; background-color: #1f2126; } /* source #7: "#d1d5da", "box-shadow: 0 1px 5px rgba(27,31,35,.15)" */ @media (min-width: 544px) { .SelectMenu-modal { - border-color: #202227; + border-color: #2b2d32; box-shadow: 0 1px 5px #000; } } /* source #7: "#eaecef" */ .SelectMenu-item + .SelectMenu-item { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #7: "transparent" */ @media (min-width: 544px) { @@ -13014,17 +13014,17 @@ /* source #7: "#e1e4e8", "box-shadow: none" */ @media (min-width: 544px) { .SelectMenu-tab[aria-selected="true"] { - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } } /* source #7: "color: #6a737d", "#f6f8fa", "#e1e4e8", "#e1e4e8" */ .SelectMenu-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #7: "box-shadow: 0 1px 0 #eaecef" */ .SelectMenu--hasFilter .SelectMenu-item:last-child { - box-shadow: 0 1px 0 #202227; + box-shadow: 0 1px 0 #2b2d32; } /* source #7: "color: #24292e" */ .SelectMenu-item[aria-checked="true"] { @@ -13042,7 +13042,7 @@ } .SelectMenu-tab:not([aria-checked="true"]):hover { color: #bbbbbbAA; - background-color: #202227; + background-color: #2b2d32; } .SelectMenu-tab:not([aria-checked="true"]):active { color: #bbbbbbAA; @@ -13063,7 +13063,7 @@ } /* source #7: "#e0e0e0" */ .graphiql-ide { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #7: "#ddd" */ .graphiql-ide.signed-out::after { @@ -13075,18 +13075,18 @@ } /* source #8: "color: #444d56", "#fafbfc", "#d1d5da", "#d1d5da", "box-shadow: inset 0 -1px 0 #d1d5da" */ .markdown-body kbd { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #8: "#eaecef" */ .markdown-body h1, .markdown-body h2 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #8: "color: #24292e", "#fff", "#d1d5da" */ .ais-SearchBox-input, .form-control, .form-select { color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #8: "#2188ff", "box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)" */ .ais-SearchBox-input:focus, .focus.ais-SearchBox-input, .form-control.focus, @@ -13149,7 +13149,7 @@ } /* source #8: "#d1d5da" */ .underline-dashed { - background-image: linear-gradient(to right, #202227 50%, rgba(255, 255, 255, 0) 0%); + background-image: linear-gradient(to right, #2b2d32 50%, rgba(255, 255, 255, 0) 0%); } /* source #8: "#032f62" */ .bg-blue-dark { @@ -13188,11 +13188,11 @@ } /* source #8: "#eee" */ .markdown-body ol > li { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #8: "#eee" */ .procedural-image-wrapper img { - border-color: #202227; + border-color: #2b2d32; } /* source #8: "none" */ .ais-SearchBox-reset { @@ -13239,7 +13239,7 @@ } /* source #8: "#ddd" */ iframe#graphiql { - border-color: #202227; + border-color: #2b2d32; } /* source #8: "color: #333", "#f8f8f8" */ .hljs { @@ -13290,7 +13290,7 @@ } /* source #9: "#e6ebf1", "linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%)", "rgba(27,31,35,.35)" */ .btn.hover, .btn:hover { - background-image: linear-gradient(#202227, #222429); + background-image: linear-gradient(#2b2d32, #222429); } /* source #9: "#28a745", "#28a745" */ .btn-primary { @@ -13313,7 +13313,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #9: "#2188ff", "box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)" */ .form-control.focus, .form-control:focus, .form-select.focus, @@ -13348,7 +13348,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #9: "#0366d6" */ .filter-item.selected, @@ -13402,83 +13402,83 @@ } /* source #9: "#e1e4e8" */ .border-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* source #9: "#e1e4e8", "#e1e4e8" */ @media (min-width: 544px) { .border-sm { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-sm-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-sm-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-sm-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-sm-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #9: "#e1e4e8", "#e1e4e8" */ @media (min-width: 768px) { .border-md { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-md-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-md-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-md-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-md-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #9: "#e1e4e8", "#e1e4e8" */ @media (min-width: 1012px) { .border-lg { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-lg-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-lg-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-lg-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-lg-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #9: "#e1e4e8", "#e1e4e8" */ @media (min-width: 1280px) { .border-xl { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-xl-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-xl-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-xl-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-xl-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #9: "#eaecef" */ .border-gray-light { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #9: "color: #586069 !important" */ .text-gray { @@ -13509,12 +13509,12 @@ .suggester { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; box-shadow: 0 1px 5px #000; } /* source #9: "#e1e4e8" */ .suggester li { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #586069" */ .suggester li small { @@ -13549,15 +13549,15 @@ } /* source #9: "outline: 1px solid #fff" */ .avatar.avatar-more::after, .avatar.avatar-more::before { - outline-color: #202227; + outline-color: #2b2d32; } /* source #9: "#e1e4e8" */ .avatar.avatar-more::before { - background: #202227; + background: #2b2d32; } /* source #9: "#d1d5da" */ .avatar.avatar-more::after, .AvatarStack--right .avatar.avatar-more { - background: #202227; + background: #2b2d32; } /* source #9: "#f6f8fa" */ .AvatarStack--right .avatar.avatar-more::after { @@ -13569,13 +13569,13 @@ } /* source #9: "#e1e4e8" */ .DashedConnection::before { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "#fff", "#eaecef" */ .blankslate code { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #9: "color: #a3aab1" */ .blankslate-icon { @@ -13591,7 +13591,7 @@ } /* source #9: "#444d56","transparent" */ .dropdown-menu-dark.dropdown-menu-ne::before { - border-color: #202227 transparent transparent; + border-color: #2b2d32 transparent transparent; } /* source #9: "#2f363d","transparent" */ .dropdown-menu-dark.dropdown-menu-ne::after { @@ -13604,7 +13604,7 @@ /* source #9: "color: #586069", "#eaecef" */ .Label--gray { color: #bbbbbbCC; - background-color: #202227; + background-color: #2b2d32; } /* source #9: "color: #586069", "transparent", "rgba(27,31,35,.15)", "box-shadow: none" */ .Label--outline { @@ -13670,13 +13670,13 @@ } /* source #9: "#d1d5da" */ .diffstat-block-neutral { - background-color: #202227; + background-color: #2b2d32; } /* source #9: "color: #444d56", "#fafbfc", "#d1d5da", "box-shadow: inset 0 -1px 0 #d1d5da" */ .markdown-body kbd { color: #bbbbbbCC; background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; box-shadow: inset 0 -2px 0 #222429; } /* source #9: "color: #cb2431" */ @@ -13685,12 +13685,12 @@ } /* source #9: "#e1e4e8" */ .markdown-body hr { - background-color: #202227; + background-color: #2b2d32; } /* source #9: "color: #6a737d", "#dfe2e5" */ .markdown-body blockquote { color: #bbbbbb94; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #9: "color: #1b1f23" */ .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link, @@ -13700,7 +13700,7 @@ } /* source #9: "#eaecef" */ .markdown-body h1, .markdown-body h2 { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #6a737d" */ .markdown-body h6 { @@ -13708,7 +13708,7 @@ } /* source #9: "#dfe2e5" */ .markdown-body table td, .markdown-body table th { - border-color: #202227; + border-color: #2b2d32; } /* source #9: "#fff" */ .markdown-body table tr { @@ -13734,7 +13734,7 @@ } /* source #9: "#dfe2e5" */ .markdown-body span.frame > span { - border-color: #202227; + border-color: #2b2d32; } /* source #9: "color: #24292e" */ .markdown-body span.frame span span { @@ -13827,7 +13827,7 @@ /* source #9: "#d1d5da", "box-shadow: 0 1px 5px rgba(27,31,35,.15)" */ @media (min-width: 544px) { .SelectMenu-modal { - border-color: #202227; + border-color: #2b2d32; box-shadow: 0 1px 5px #000; } } @@ -13838,7 +13838,7 @@ } /* source #9: "#fff", "#e1e4e8" */ .SelectMenu-filter, .SelectMenu-list { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #9: "color: #586069", "#fff", "#eaecef" */ .SelectMenu-item, .SelectMenu-list { @@ -13847,11 +13847,11 @@ } .SelectMenu-item { color: #bbbbbbCC; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "#e1e4e8" */ .SelectMenu-tabs { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #9: "color: #6a737d", "transparent" */ .SelectMenu-tab { @@ -13873,13 +13873,13 @@ /* source #9: "#e1e4e8", "box-shadow: none" */ @media (min-width: 544px) { .SelectMenu-tab[aria-selected="true"] { - border-color: #202227; + border-color: #2b2d32; box-shadow: none; } } /* source #9: "#eaecef" */ .SelectMenu-message { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "#fff" */ .SelectMenu-blankslate, .SelectMenu-loading, .SelectMenu-message { @@ -13890,12 +13890,12 @@ .SelectMenu-divider { color: #bbbbbb94; background-color: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #6a737d", "#e1e4e8" */ .SelectMenu-footer { color: #bbbbbb94; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #9: "color: #24292e" */ .SelectMenu-item[aria-checked="true"] { @@ -13914,7 +13914,7 @@ } .SelectMenu-tab:not([aria-selected="true"]):hover { color: #bbbbbbAA; - background-color: #202227; + background-color: #2b2d32; } .SelectMenu-tab:not([aria-selected="true"]):active { color: #bbbbbbAA; @@ -13929,7 +13929,7 @@ } /* source #9: "#e1e4e8" */ .Subhead { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #cb2431" */ .Subhead-heading--danger { @@ -13978,18 +13978,18 @@ } /* source #9: "#586069" */ .Toast--loading .Toast-icon { - background-color: #202227; + background-color: #2b2d32; } /* source #9: "color: #586069", "#e1e4e8" */ .pullquote { color: #bbbbbbCC; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #9: "#fff", "#444d56" */ .Box--overlay { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #9: "#0366d6" */ .dropdown-item.selected, .dropdown-item:focus, .dropdown-item:hover { @@ -14055,7 +14055,7 @@ } /* source #9: "color: #d1d5da" */ .registration-progress-steps .step-loading { - color: #202227; + color: #2b2d32; } /* source #9: "color: #b08800" */ .registration-progress-steps .step--current .step-loading { @@ -14083,7 +14083,7 @@ /* source #9: "#f6f8fa", "#e1e4e8" */ .select-menu-divider, .select-menu-header { background: #282a2f; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #24292e" */ .select-menu-divider, .select-menu-header .select-menu-title { @@ -14091,7 +14091,7 @@ } /* source #9: "#e1e4e8" */ .select-menu-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #9: "color: #c6cbd1" */ .select-menu-header .close-button, .select-menu-header .octicon { @@ -14107,11 +14107,11 @@ } /* source #9: "#dfe2e5" */ .select-menu-text-filter:first-child:last-child { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "#dfe2e5" */ .select-menu-text-filter input { - border-color: #202227; + border-color: #2b2d32; } /* source #9: "color: #a3aab1" */ .select-menu-text-filter input::-webkit-input-placeholder { @@ -14131,7 +14131,7 @@ } /* source #9: "#dfe2e5" */ .select-menu-tabs { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #6a737d", "transparent", "transparent" */ .select-menu-tabs .select-menu-tab-nav, .select-menu-tabs a { @@ -14149,7 +14149,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227 #202227 #1f2126; + border-color: #2b2d32 #2b2d32 #1f2126; } /* source #9: "color: #24292e" */ .select-menu-blankslate h3 { @@ -14157,7 +14157,7 @@ } /* source #9: "#eaecef" */ .select-menu-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #9: "color: #6a737d" */ .select-menu-item.disabled, .select-menu-item.disabled .description, @@ -14236,7 +14236,7 @@ } /* source #9: "color: #d1d5da" */ .footer-octicon { - color: #202227; + color: #2b2d32; } /* source #9: "color: #6a737d" */ .course-details p:first-child, .footer-octicon:hover { @@ -14260,7 +14260,7 @@ } /* source #10: "#DDD" */ .npmhub-deps > li { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #11: "transparent" */ #nprogress .spinner-icon { @@ -14272,7 +14272,7 @@ } /* source #11: "#d1d5da", "#fafbfc" */ .markdown-body .clippy-wrapper .clippy { - border-color: #202227; + border-color: #2b2d32; background: #1f2126; } /* source #11: "#fff" */ @@ -14290,7 +14290,7 @@ } /* source #11: "#e1e4e8", "#f6f8fa" */ .gitako-toggle-show-button-wrapper.collapsed { - border-color: #202227; + border-color: #2b2d32; background: #282a2f; } /* source #11: "color: #0366d6" */ @@ -14322,30 +14322,30 @@ /* source #11: "transparent", "#dfe2e5" */ .gitako-side-bar .rule, .gitako-side-bar hr { background: transparent; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #11: "color: #444d56", "#fafbfc", "#d1d5da", "#d1d5da", "box-shadow: inset 0 -1px 0 #d1d5da" */ .gitako-side-bar kbd { color: #bbbbbbCC; background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; box-shadow: inset 0 -2px 0 #222429; } /* source #11: "#f6f8fa", "#d1d5da" */ .gitako-side-bar .gitako-resize-handler { background: #282a2f; - border-right-color: #202227; + border-right-color: #2b2d32; } /* source #11: "#fafbfc", "#d1d5da" */ .gitako-side-bar .gitako-resize-handler:active, .gitako-side-bar .gitako-resize-handler:hover { background: #1f2126; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #11: "#fafbfc", "#e1e4e8" */ .gitako-side-bar .gitako-side-bar-body { background: #1f2126; - border-left-color: #202227; + border-left-color: #2b2d32; } /* source #11: "color: rgba(3, 47, 98, 0.55)" */ .gitako-side-bar .gitako-side-bar-body .octicon, @@ -14359,7 +14359,7 @@ /* source #11: "#e1e4e8" */ .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .description, .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .loading-indicator-container { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #11: "box-shadow: none" */ .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .search-input-wrapper .search-input { @@ -14374,7 +14374,7 @@ background: #1f2126; background-image: none; color: /*[[base-color]]*/ #2d6382; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #11: "#fafbfc" */ .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item:hover { @@ -14399,7 +14399,7 @@ } /* source #11: "#eaecef" */ .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-title { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #11: "#fafbfc" */ .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .shadow-shelter { @@ -14409,7 +14409,7 @@ .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar-content .settings-section .field select { background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #11: "color: #6a737d" */ .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar .hint { @@ -14418,16 +14418,16 @@ /* source #12: "#ddd", "#ddd" */ .gitako-side-bar .gitako-side-bar-body .gitako-settings-bar .header-row, .pdf-page { - border-top-color: #202227; + border-top-color: #2b2d32; } .pdf-page { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #12: "#fff", "#ddd" */ .click-for-more { background: #1f2126; background-image: none; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #12: "color: #333", "#eee", "#eee" */ .click-for-more .button { @@ -14442,12 +14442,12 @@ } /* source #13: "#ddd" */ .is-embedded .render-shell { - border-color: #202227; + border-color: #2b2d32; } /* source #13: "rgba(0,0,0,0.8)", "#eee" */ .render-info .message { background: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #13: "color: #4183c4" */ .render-info .message a { @@ -14460,7 +14460,7 @@ } /* source #13: "#ddd" */ .render-bar { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #13: "color: #bbbbbb66" */ .render-message a { @@ -14514,12 +14514,12 @@ /* source #14: "transparent", "#dfe2e5" */ .rule, hr { background: transparent; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "color: #444d56", "#fafbfc", "#d1d5da", "#d1d5da", "box-shadow: inset 0 -1px 0 #d1d5da" */ kbd { color: #bbbbbbCC; - border-color: #202227; + border-color: #2b2d32; box-shadow: inset 0 -2px 0 #222429; } /* source #14: "#fff", "#d1d5da" */ @@ -14531,18 +14531,18 @@ } /* source #14: "#f6f8fa", "#d1d5da" */ .Box, .Box-header { - border-color: #202227; + border-color: #2b2d32; } .Box-header { background-color: #282a2f; } /* source #14: "#e1e4e8" */ .Box-body { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "#e1e4e8" */ .Box-row { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #14: "color: #0366d6" */ .Box-row.navigation-focus .Box-row--drag-button { @@ -14580,7 +14580,7 @@ } /* source #14: "#e1e4e8" */ .Box-footer { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #14: "#c8e1ff" */ .Box--blue { @@ -14654,7 +14654,7 @@ } /* source #14: "#e9ecef", "none", "rgba(27,31,35,0.35)" */ .btn.selected, .btn:active, .btn[aria-selected="true"], [open] > .btn { - background-color: #202227; + background-color: #2b2d32; background-image: none; border-color: rgba(200, 200, 200, 0.3); } @@ -14864,7 +14864,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#2188ff", "box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)" */ #q:focus, .focus#q, .form-control.focus, .form-control:focus, @@ -15025,7 +15025,7 @@ .drag-and-drop { color: #bbbbbbCC; background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "color: #cb2431" */ .drag-and-drop .error { @@ -15041,7 +15041,7 @@ } /* source #14: "#dfe2e5" */ .upload-enabled textarea { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)" */ .upload-enabled.focused { @@ -15054,7 +15054,7 @@ } /* source #14: "#c3c8cf" */ .previewable-comment-form .comment { - border-color: #202227; + border-color: #2b2d32; } /* source #14: "color: #586069" */ h2.account, p.explain { @@ -15071,7 +15071,7 @@ /* source #14: "color: #24292e", "#d1d5da" */ .radio-label { color: #bbbbbbAA; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#0366d6" */ :checked + .radio-label { @@ -15081,11 +15081,11 @@ .menu { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#e1e4e8" */ .menu-item { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "#f6f8fa" */ .menu-item:hover { @@ -15109,11 +15109,11 @@ /* source #14: "color: #586069", "#e1e4e8" */ .menu-heading { color: #bbbbbbCC; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "#d1d5da" */ .tabnav { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "color: #586069", "transparent", "transparent" */ .tabnav-tab { @@ -15127,7 +15127,7 @@ color: #bbbbbbAA; background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "color: #24292e" */ .tabnav-tab:focus, .tabnav-tab:hover { @@ -15158,7 +15158,7 @@ } /* source #14: "#eaecef" */ .filter-item:hover { - background-color: #202227; + background-color: #2b2d32; } /* source #14: "#0366d6" */ .filter-item.selected, .filter-item[aria-current], @@ -15179,7 +15179,7 @@ .SideNav-item { color: #bbbbbbCC; background-color: transparent; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #14: "color: #24292e", "#f6f8fa" */ .SideNav-item:focus, .SideNav-item:hover { @@ -15188,7 +15188,7 @@ } /* source #14: "#d1d5da" */ .SideNav-item:focus::before, .SideNav-item:hover::before { - background-color: #202227; + background-color: #2b2d32; } /* source #14: "#fff" */ .SideNav-item:active { @@ -15218,12 +15218,12 @@ } /* source #14: "#eaecef" */ .subnav-bordered { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "color: #586069", "#e1e4e8" */ .subnav-item { color: #bbbbbbCC; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#f6f8fa" */ .subnav-item:focus, .subnav-item:hover { @@ -15251,7 +15251,7 @@ } /* source #14: "#e1e4e8" */ .UnderlineNav { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* source #14: "color: #586069", "transparent", "transparent" */ .UnderlineNav-item { @@ -15262,7 +15262,7 @@ /* source #14: "color: #24292e", "#d1d5da" */ .UnderlineNav-item:focus, .UnderlineNav-item:hover { color: #bbbbbbAA; - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } /* source #14: "color: #6a737d" */ .UnderlineNav-item:focus .UnderlineNav-octicon, @@ -15290,13 +15290,13 @@ color: /*[[base-color]]*/ #2d6382; background: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#eff3f6", "#e1e4e8" */ .pagination a:focus, .pagination a:hover, .pagination em:focus, .pagination em:hover, .pagination span:focus, .pagination span:hover { background-color: #303237; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#0366d6", "#0366d6" */ .pagination .current, .pagination .current:hover, .pagination [aria-current], @@ -15310,7 +15310,7 @@ .pagination .disabled, .pagination .disabled:hover, .pagination .gap, .pagination .gap:hover, .pagination [aria-disabled="true"], .pagination [aria-disabled="true"]:hover { - color: #202227; + color: #2b2d32; background-color: #1f2126; } /* source #14: "color: #1b1f23", "transparent" */ @@ -15392,7 +15392,7 @@ } /* source #14: "#e1e4e8" */ .Progress, .TimelineItem::before { - background-color: #202227; + background-color: #2b2d32; } /* source #14: "#2188ff", "box-shadow: 0 0 0.2em #c8e1ff" */ .TimelineItem:target .TimelineItem-badge { @@ -15402,7 +15402,7 @@ /* source #14: "color: #444d56", "#e1e4e8", "#fff" */ .TimelineItem-badge { color: #bbbbbbCC; - background-color: #202227; + background-color: #2b2d32; border-color: #1f2126; } /* source #14: "color: #444d56" */ @@ -15413,7 +15413,7 @@ .TimelineItem-break { background-color: #1f2126; background-image: none; - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #14: "color: #959da5", "#fff" */ .TimelineItem--condensed .TimelineItem-badge { @@ -15423,104 +15423,104 @@ } /* source #14: "#e1e4e8", "#e1e4e8" */ .border-x { - border-right-color: #202227 !important; - border-left-color: #202227 !important; + border-right-color: #2b2d32 !important; + border-left-color: #2b2d32 !important; } /* source #14: "#e1e4e8", "#e1e4e8" */ .border-y { - border-top-color: #202227 !important; - border-bottom-color: #202227 !important; + border-top-color: #2b2d32 !important; + border-bottom-color: #2b2d32 !important; } /* source #14: "#e1e4e8" */ .border { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #14: "#e1e4e8" */ .border-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } /* source #14: "#e1e4e8" */ .border-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } /* source #14: "#e1e4e8" */ #site-search-results .search-result, .border-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* source #14: "#e1e4e8" */ .border-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } /* source #14: "#e1e4e8", "#e1e4e8" */ @media (min-width: 544px) { .border-sm { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-sm-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-sm-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-sm-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-sm-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #14: "#e1e4e8", "#e1e4e8" */ @media (min-width: 768px) { .border-md { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-md-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-md-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-md-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-md-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #14: "#e1e4e8", "#e1e4e8" */ @media (min-width: 1012px) { .border-lg { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-lg-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-lg-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-lg-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-lg-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #14: "#e1e4e8", "#e1e4e8" */ @media (min-width: 1280px) { .border-xl { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-xl-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .border-xl-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .border-xl-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .border-xl-left { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } } /* source #14: "#0366d6" */ @@ -15557,11 +15557,11 @@ } /* source #14: "#eaecef" */ #site-search-results .search-result, .border-gray-light { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #14: "#d1d5da" */ .border-gray-dark { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* source #14: "rgba(27,31,35,0.15)" */ .border-black-fade { @@ -15643,15 +15643,15 @@ } /* source #14: "#e1e4e8" */ .bg-gray-2 { - background-color: #202227 !important; + background-color: #2b2d32 !important; } /* source #14: "color: #d1d5da !important" */ .color-gray-3 { - color: #202227 !important; + color: #2b2d32 !important; } /* source #14: "#d1d5da" */ .bg-gray-3 { - background-color: #202227 !important; + background-color: #2b2d32 !important; } /* source #14: "color: #959da5 !important" */ .color-gray-4 { @@ -15671,7 +15671,7 @@ } /* source #14: "#586069" */ .bg-gray-6 { - background-color: #202227 !important; + background-color: #2b2d32 !important; } /* source #14: "color: #444d56 !important" */ .color-gray-7 { @@ -15929,7 +15929,7 @@ } /* source #14: "#e1e4e8" */ .dropdown-divider { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #14: "color: #586069" */ .dropdown-header { @@ -15966,7 +15966,7 @@ /* source #14: "#2f363d", "#444d56" */ .dropdown-menu-dark { background: #282828; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "#444d56" */ .dropdown-menu-dark::before { @@ -15978,7 +15978,7 @@ } /* source #14: "color: #d1d5da" */ .dropdown-menu-dark .dropdown-header { - color: #202227; + color: #2b2d32; } /* source #14: "#444d56" */ .dropdown-menu-dark .dropdown-divider { @@ -16002,7 +16002,7 @@ } /* source #14: "#444d56","transparent" */ .dropdown-menu-dark.dropdown-menu-ne::before { - border-color: #202227 transparent transparent; + border-color: #2b2d32 transparent transparent; } /* source #14: "#2f363d","transparent" */ .dropdown-menu-dark.dropdown-menu-ne::after { @@ -16024,7 +16024,7 @@ details-dialog { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #14: "color: #6a737d" */ .gh-subheading { @@ -16065,7 +16065,7 @@ .dashboard .js-all-activity-header + div { background-color: #1f2126; background-image: none; - border-color: #202227; + border-color: #2b2d32; } /* source #15: "none" */ .dashboard .js-all-activity-header + div .Box { @@ -16073,7 +16073,7 @@ } /* source #15: "#e1e4e8" */ .dashboard-rollup-items .body { - border-top-color: #202227; + border-top-color: #2b2d32; } /* source #15: "color: #bbbbbb66" */ body > .footer li a { @@ -16086,7 +16086,7 @@ /* source #15: "#e1e4e8" */ @media (min-width: 700px) { :root .pinned-issue-item { - border-color: #202227 !important; + border-color: #2b2d32 !important; } } /* source #15: "none" */ @@ -16112,8 +16112,8 @@ } /* source #15: "#e1e4e8", "#e1e4e8" */ button.reaction-summary-item { - border-top-color: #202227; - border-bottom-color: #202227; + border-top-color: #2b2d32; + border-bottom-color: #2b2d32; } /* source #15: "#efefef" */ .reaction-summary-item a { @@ -16520,7 +16520,7 @@ body[data-render-url], .render-viewer, .comment-content, } /* Add border-top to PR checks results blank slate */ aside.border-top + section.bg-gray-dark:not([class*="js-"]) { - border-top: 1px solid #202227; + border-top: 1px solid #2b2d32; } /* Make it more apparent that
is clickable */ .markdown-body details summary:not([aria-haspopup]):hover { @@ -16581,7 +16581,7 @@ aside.border-top + section.bg-gray-dark:not([class*="js-"]) { } /* Add bottom border on subnav - https://github.com/topics */ .site-subnav { - box-shadow: 0 1px 0 #202227 !important; + box-shadow: 0 1px 0 #2b2d32 !important; } @media screen and (min-width: 1024px) { .site-subnav .subnav-primary.selected, .site-subnav .subnav-primary:hover { @@ -16669,7 +16669,7 @@ ul.search-results, .orgs-help-shelf-content .orgs-help-divider, .menu-heading, body .border-gray-dark, .discussion-item-review .blob-wrapper, .bot-identifier, div.marketplace-product-callout, .CodeMirror-dialog-top, .project-card:hover:not(:focus) { - border-color: #202227 !important; + border-color: #2b2d32 !important; } pre, h1, h2, h3, table, table tr, table td, table th, blockquote, .pulse-graph, .minibutton, .social-count, .discusion-topic-infobar, .box-body, .logo-box, @@ -16738,23 +16738,23 @@ a.gollum-minibutton, a.gollum-minibutton:visited, .profile-rollup-wrapper + .profile-rollup-wrapper, .email-preference-exceptions .exception, .user-key-email-unverified, .diffbar, .rendered_html hr, .drag-and-drop, .form-hr, .release-timeline-tags .main { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .discussion-item-icon, .date::after, ul.color-label-list .color, .facebox-header, .TimelineItem-badge, .release-timeline-tags .tag-timeline-date::after { - border-color: #202227; + border-color: #2b2d32; } .filter-tab.selected { border: 1px solid #444 !important; - border-bottom: 1px solid #202227 !important; + border-bottom: 1px solid #2b2d32 !important; } .follow-list .follow-list-item { - border-bottom: 1px solid #202227 !important; + border-bottom: 1px solid #2b2d32 !important; } .simple-conversation-list > li, .site-footer, .blame .section-first td, .wiki-list .wiki-list-item + .wiki-list-item, .member-badge + .member-badge { - border-top: 1px solid #202227 !important; + border-top: 1px solid #2b2d32 !important; } /* https://github.com/mobile/ */ .mobile-gradient-bg { @@ -16809,7 +16809,7 @@ svg.mobile-hero { } .word-upload-callout::before, .word-upload-callout::after, .select-menu-modal-arrow::after, .Popover-message--top-left::before { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .repo-filterer .repo-filter:hover, .review-summary::before { border-bottom-color: #484848 !important; @@ -16825,7 +16825,7 @@ svg.mobile-hero { border-top-width: 1px !important; } .reponav-item.selected { - border-color: #202227; + border-color: #2b2d32; } .pagehead-tabs-item { border-top-width: 1px !important; @@ -16862,19 +16862,19 @@ table.files td.age .css-truncate { border-color: #006 !important; } .tooltipped::after { - background: #202227 !important; + background: #2b2d32 !important; } .tooltipped-n::before, .tooltipped-ne::before, .tooltipped-nw::before { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .tooltipped-s::before, .tooltipped-se::before, .tooltipped-sw::before { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .tooltipped-e::before { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .tooltipped-w::before { - border-left-color: #202227 !important; + border-left-color: #2b2d32 !important; } .commitinfo, .gc .diff-line-code, .gc .diff-line-num, .gc .diff-line-pre, .featured-commit-activity-graph, .featured-repo-logo, .outline-box, @@ -16905,7 +16905,7 @@ ul.comparison-list, .wiki-custom-sidebar, .invitation-container, .card-filter-autocomplete-dropdown .autocomplete-keyword-only, .inbox-zero, .is-stuck .diffbar, .project-pane.bg-white { background: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .review-comment[aria-selected=true], .timeline-comment[aria-selected=true] .review-summary { @@ -16934,12 +16934,12 @@ ul.comparison-list, .wiki-custom-sidebar, .invitation-container, .simple-box, .btn-link.timeline-progressive-disclosure-button, .border.branch-action-item { background: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* search - language sidebar - https://github.com/StylishThemes/GitHub-Dark/search?q=markdown */ div.container-lg > div.float-left.px-md-2 > .border.rounded-1.d-none.d-md-block { background: #1f2126; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .header, .headers, #readme .markdown-body, .social-count, .box-body, .steps li, .explore-section:nth-child(2n), .markdown-format table, @@ -17020,7 +17020,7 @@ button.bg-white.subnav-link, main [style="background-color: #fcfdfd;"], .sidebar-module, div.search-form input, #search > input[name="q"], .ais-SearchBox-input { background-color: #1f2126; - border-color: #202227; + border-color: #2b2d32; } .blob-num-context, #user-content-toc td, .markdown-body table tr:nth-child(2n) { background: #222429 !important; @@ -17108,7 +17108,7 @@ h3.conversation-list-heading strong, .file-commit-form .commit-form, .ajax-pagination-form:not(.progressive-timeline-loader-container):not(.pagination-loader-container) .ajax-pagination-btn:focus, .ajax-pagination-form:not(.progressive-timeline-loader-container):not(.pagination-loader-container) .ajax-pagination-btn:active { background: #282a2f !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .search-result-group, .gist-quicksearch-result-group { background: #23252a !important; @@ -17117,7 +17117,7 @@ h3.conversation-list-heading strong, .file-commit-form .commit-form, } .blame-commit-next .blame-commit-info, .blame-commit-next + .blame-line, .ScreenshotCarousel-nav { - box-shadow: inset 0 1px 0 #202227 !important; + box-shadow: inset 0 1px 0 #2b2d32 !important; } /* semi-transparent */ .context-loader.large-format-loader, #graphs .loader, .org-header, @@ -17315,7 +17315,7 @@ li.label, .filterbar, .divider-vertical, .user-commits td, .display div.choice:nth-child(2n+1), #issues-dashboard .actions, .list-tip a:hover { background-color: #333 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* org page graphs - https://github.com/StylishThemes */ rect[style*="#gradient-"] { @@ -17350,7 +17350,7 @@ rect[style*="#gradient-"] { .calendar-graph rect[fill="#ebedf0"], .contrib-legend li[style*="#ebedf0"], .js-activity-overview-graph-container [fill="white"] { background-color: #282a2f !important; - fill: #202227 !important; + fill: #2b2d32 !important; } .calendar-graph rect[fill="#196127"], .contrib-legend li[style*="#196127"] { opacity: 1 !important; @@ -17586,7 +17586,7 @@ path.js-diff-placeholder { display: block !important; } g.dots circle { - stroke: #202227 !important; + stroke: #2b2d32 !important; } .traffic-graph g.axis:not(.views):not(.unique) g.tick:not(:nth-child(15)):not(:first-of-type) line, g.axis path, line.axis, svg:not(.vis) g.axis line { @@ -17596,7 +17596,7 @@ svg .path:not(.total):not(.unique):not(.views) { stroke: #aaa !important; } .workflow-string--crossover svg path[stroke="#D1D5DA"] { - stroke: #202227 !important; + stroke: #2b2d32 !important; } #commit-activity-detail path.path, .traffic-graph g.x.axis g.tick:first-of-type line { @@ -17625,7 +17625,7 @@ svg.arrow[stroke="#1277eb"], svg path[stroke="#1074E7"] { fill: /*[[base-color]]*/ #2d6382 !important; } .features-branch-diagram circle[stroke="#ffffff"] { - stroke: #202227 !important; + stroke: #2b2d32 !important; } rect.map-background, .audit-log-map { fill: #1e4062 !important; @@ -17663,7 +17663,7 @@ div#common-issues ul li a:hover, .rss-subscribe:hover { .profile-timeline.discussion-timeline::before, .profile-timeline.discussion-timeline .profile-timeline-month-heading::after, div[style*="background-color: #eaecef"] { - background: #202227 !important; + background: #2b2d32 !important; } .hidden-text-expander a, .profile-timeline-month-heading::after, .review-comment-contents::after, .review-comment.is-comment-editing::after, @@ -17857,7 +17857,7 @@ div[style*="background-color: #044d6e"], .hero .screenographic, .box-action:active, .clone-url-button.selected > .clone-url-link:hover, ul#bootcamp li a:hover h4 { background: linear-gradient(#303030, #282828) !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* dark grey gradient */ header.nav-bar, .bubble .bubble-title, kbd, a.feed, .list-browser-filterbar, @@ -17892,7 +17892,7 @@ a.gollum-minibutton:visited { background-image: linear-gradient(180deg, #1f2126, rgba(0, 0, 0, 0)) !important; } .billing-per-seat-callout::after { - box-shadow: 1px -1px 0 0 #202227 !important; + box-shadow: 1px -1px 0 0 #2b2d32 !important; } main [style="background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));"] { background: linear-gradient(to top, #1f2126, transparent) !important; @@ -18585,7 +18585,7 @@ body.enterprise .timeline-comment-wrapper .timeline-comment.current-user::after border-right-color: #2f3136; } body.enterprise .timeline-new-comment .timeline-comment::before { - border-right-color: #202227; + border-right-color: #2b2d32; } body.enterprise .timeline-new-comment .timeline-comment::after { border-right-color: #24262b; @@ -18751,7 +18751,7 @@ form[action*="/.github/workflows/"] .commit-create { /* front page: 'more' spinner */ .ajax-pagination-form.loading .ajax-pagination-btn { position: relative !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; background: #1f2126 !important; } .ajax-pagination-form.loading .ajax-pagination-btn::after { @@ -18803,7 +18803,7 @@ form[action*="/.github/workflows/"] .commit-create { border-right: 0 !important; } .js-details-container.navigation-focus .gobutton { - background: linear-gradient(#444, #202227) !important; + background: linear-gradient(#444, #2b2d32) !important; } /* no top border radius */ table.files { @@ -18832,12 +18832,12 @@ table.files { } .tutorial-e::after, .file-commit-form .commit-form::before, .merge-branch-form .commit-form::before { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; border-bottom-color: transparent !important; } .file-commit-form .commit-form::after, .ScreenshotCarousel-navitem, .new-discussion-timeline .composer .timeline-comment::after { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } #com .dropdown-menu::after { border: 9px solid; @@ -18864,7 +18864,7 @@ table.files { border-collapse: separate !important; } #facebox pre, #contributors-master svg.viz, #com .dropdown-menu { - border: 1px solid #202227 !important; + border: 1px solid #2b2d32 !important; } /* orange rss icon */ .dashboard-feed-icon.octicon-rss, .nav-rss a .octicon-rss, .feed-icon, @@ -18983,7 +18983,7 @@ textarea { /* rules for the new responsive layout */ @media (min-width: 768px) { .release-main-section { - border-left: 2px solid #202227 !important; + border-left: 2px solid #2b2d32 !important; } .release-entry { border-bottom: 0 !important; @@ -18996,7 +18996,7 @@ textarea { } @media (min-width: 1013px) { .Header, .Header-old { - border-bottom: 1px solid #202227 !important; + border-bottom: 1px solid #2b2d32 !important; } } /* rules for help pages */ @@ -19015,12 +19015,12 @@ textarea { } /* https://github.com/npmhub/npmhub */ .npmhub-deps > li { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* ZenHub */ body.zh_logged_in .zh-login-status { background: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; color: #bbbbbbEE !important; } body.zh_logged_in [style*="background-color: rgb(244, 244, 244)"] { @@ -19071,15 +19071,15 @@ html.octotree:not(.octotree-show) .zhc-board--is-fullscreen .zhc-menu-bar { /* octotree */ .octotree-sidebar { background: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .octotree-views, .octotree-sidebar .octotree-bottom { background: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .octotree-toggle:hover { background: linear-gradient(#303030, #282828) !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } .octotree-view-header, .octotree-toggle { background: linear-gradient(#24262b, #1f2126) !important; @@ -19106,22 +19106,22 @@ a.octotree-toggle:not(.octotree-loading):hover > span::after { } .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup { background-color: #1f2126 !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; box-shadow: 0 1px 15px #000 !important; } .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup > .arrow, .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup > .arrow::after { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } /* Github User Info userscript - see #481 */ .GithubUserInfo, .GithubUserInfo > div { background: #24262b !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* GitHub Notifications Dropdown userscript - see #478 */ .notifications-dropdown { background: #24262b !important; - border: 1px solid #202227 !important; + border: 1px solid #2b2d32 !important; } a.notifications-dropdown-see-all { background: #303237 !important; @@ -19146,7 +19146,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background: #1f2126 !important; } .refined-github .dashboard .js-all-activity-header + div { - border-color: #202227 !important; + border-color: #2b2d32 !important; } /* https://github.com/StylishThemes/GitHub-Dark/issues/1035 */ .refined-github .reaction-summary-item.user-has-reacted { @@ -19214,7 +19214,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { /* Styles auto-complete popups in the actions workflow editor */ .CodeMirror-hints { background: #1f2126; - border-color: #202227; + border-color: #2b2d32; box-shadow: 0 1px 5px #000; } .CodeMirror-hint { @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #456186 !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #e0474b !important; } .cm-comment { - color: #777 !important; + color: #9DACF6 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #BD84DD !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #84D0FF !important; font-style: italic !important; text-decoration: none !important; } @@ -20011,7 +20011,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { input, select { background: #1f2126 !important; color: #bbbbbbEE !important; - border-color: #202227 !important; + border-color: #2b2d32 !important; } select { background: #1f2126 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAQAAAAua3X8AAAARklEQVR4AWNABWcazjQg8zGl/wNhA15piBL80gglmNKYSjClMZUgpDGVwKXxKBl4QNiRBLxJIKAIBzXhyCIc3YQTDMEkBwBplPJRxEMa4wAAAABJRU5ErkJggg==") no-repeat right 8px center !important; @@ -20072,7 +20072,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } .sidebar { background-color: #1c1c1c; - border-right: 1px solid #202227; + border-right: 1px solid #2b2d32; } .sidebar-guide.active { background: #303237; @@ -20146,7 +20146,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #24262b !important; } .btn, .btn:disabled, .btn.disabled, .btn-danger:disabled, .btn-danger.disabled { - background-color: #202227; + background-color: #2b2d32; } .btn:hover, .btn.hover { background-color: #444; @@ -20167,48 +20167,48 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #1f2126 !important; } .drag-and-drop, .previewable-comment-form .comment { - border-color: #202227; + border-color: #2b2d32; } hr, .rule { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } .upload-enabled textarea { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } .form-control, .form-select { - border-color: #202227; + border-color: #2b2d32; } .border-gray-dark { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .data-table { - border-color: #202227; + border-color: #2b2d32; } .border { - border-color: #202227 !important; + border-color: #2b2d32 !important; } .border-top, .border-y, .border-sm-top, .border-md-top, .border-lg-top { - border-top-color: #202227 !important; + border-top-color: #2b2d32 !important; } .data-table td, .data-table th, .data-table tbody tr:last-child th, .data-table tbody tr:last-child td { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } .border-bottom, .border-y, .border-sm-bottom, .border-md-bottom, .border-lg-bottom { - border-bottom-color: #202227 !important; + border-bottom-color: #2b2d32 !important; } .data-table td, .data-table th { - border-right-color: #202227; + border-right-color: #2b2d32; } .border-right, .border-sm-right, .border-md-right, .border-lg-right { - border-right-color: #202227 !important; + border-right-color: #2b2d32 !important; } .data-table tbody th, .data-table tbody td { - border-bottom-color: #202227; + border-bottom-color: #2b2d32; } .page-responsive .HeaderMenu--logged-out .header-search-wrapper { - border-color: #202227; + border-color: #2b2d32; } .btn-transparent:hover, .btn-transparent:active { border-color: #1f2126; @@ -20860,12 +20860,12 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } #token { background: #2f3136; - border-color: #202227; + border-color: #2b2d32; } .token-did-copy { background: #1f2126; } .failed { - border-color: #202227; + border-color: #2b2d32; } } diff --git a/themes/yuri_dark.user.css b/themes/yuri_dark.user.css index 812075e..8031783 100644 --- a/themes/yuri_dark.user.css +++ b/themes/yuri_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Yuri Dark @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -46,8 +46,8 @@ --color-bg-canvas: #493162 !important; --color-bg-canvas-inset: #493162 !important; --color-bg-primary: #493162 !important; - --color-calendar-graph-day-bg: #392A54 !important; - --color-workflow-card-bg: #392A54 !important; + --color-calendar-graph-day-bg: #3e2955 !important; + --color-workflow-card-bg: #3e2955 !important; --color-bg-tertiary: #422D5A !important; --color-bg-secondary: #473466 !important; --color-bg-discussions-row-emoji-box: #483967 !important; @@ -64,7 +64,7 @@ --color-bg-overlay: #412D62 !important; --color-border-primary: #4d3a63 !important; --color-border-primary: #4d3a63 !important; - --color-notifications-row-read-bg: #392A54 !important; + --color-notifications-row-read-bg: #3e2955 !important; --color-notifications-row-bg: #473466 !important; --color-input-disabled-bg: #473466 !important; --color-input-disabled-border: #4d3a63 !important; @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #9d52ab !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #bca3aa !important; } .cm-comment { - color: #777 !important; + color: #FF9CD6 !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #bca3aa !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #BC60CB !important; font-style: italic !important; text-decoration: none !important; } diff --git a/themes/yuri_light.user.css b/themes/yuri_light.user.css index 5db0c4e..d19845f 100644 --- a/themes/yuri_light.user.css +++ b/themes/yuri_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Yuri Light @namespace github.com/doki-theme -@version 5.1.0 +@version 5.1.1 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -19663,7 +19663,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #8da6ce !important; } .cm-variable-2, span.cm-tag { - color: #607392 !important; + color: #8864ac !important; } .cm-variable-3, span.cm-def { color: #607392 !important; @@ -19672,7 +19672,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #c26a9d !important; } .cm-comment { - color: #777 !important; + color: #c26a9d !important; font-style: italic !important; font-weight: normal !important; } @@ -19696,13 +19696,13 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #ff6400 !important; + color: #7B6970 !important; } .cm-hr { color: #aeaeae !important; } .cm-link { - color: #ad9361 !important; + color: #90468c !important; font-style: italic !important; text-decoration: none !important; }