diff --git a/CHANGELOG.md b/CHANGELOG.md index fe7bfc5..431c55b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog --- +# 4.2.3 [Dashboard Fix] + +- Fixed the GitHub dashboard look and feel + # 4.2.2 [Tooltip Fix] - Fixed the tool tip overlay color. diff --git a/buildSrc/src/BuildThemes.ts b/buildSrc/src/BuildThemes.ts index e60e3ec..b1a4db9 100644 --- a/buildSrc/src/BuildThemes.ts +++ b/buildSrc/src/BuildThemes.ts @@ -466,12 +466,13 @@ walkDir(githubThemeDefinitionDirectoryPath) }) .then(dokiThemes => - walkDir(path.resolve(__dirname, '..', 'temp')) - .then(paths => paths.map(p => { - return { - url: p, - } - })) + //walkDir(path.resolve(__dirname, '..', 'temp')) + // .then(paths => paths.map(p => { + // return { + // url: p, + // } + // })) + Promise.resolve() // local cached CSS (fast) .then(()=> fs.readFileSync(path.resolve(githubTemplateDirectoryPath, 'tempCss.css.txt'), {encoding:"utf-8"})) diff --git a/buildSrc/templates/tempCss.css.txt b/buildSrc/templates/tempCss.css.txt index d994577..e583acf 100644 --- a/buildSrc/templates/tempCss.css.txt +++ b/buildSrc/templates/tempCss.css.txt @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: {{textEditorBackground}}; --color-bg-canvas: {{baseBackground}}; + --color-bg-canvas-inset: {{baseBackground}}; --color-bg-primary: {{baseBackground}}; --color-calendar-graph-day-bg: {{codeBlock}}; --color-underlinenav-counter-text: {{foregroundColor}}; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: {{stopColor}}; --color-verified-badge-bg: #00000000; --color-bg-overlay: {{secondaryBackground}}; + --color-border-primary: {{borderColor}}; + --color-border-primary: {{borderColor}}; } .suggester li:hover .octicon, diff --git a/package.json b/package.json index 6b57e25..1c07ab3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-github", - "version": "4.2.2", + "version": "4.2.3", "dependencies": { } } diff --git a/themes/aqua.user.css b/themes/aqua.user.css index 121714a..d83dbff 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #262940; --color-bg-canvas: #282b42; + --color-bg-canvas-inset: #282b42; --color-bg-primary: #282b42; --color-calendar-graph-day-bg: #2e3149; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #688dee; --color-verified-badge-bg: #00000000; --color-bg-overlay: #242942; + --color-border-primary: #2a334b; + --color-border-primary: #2a334b; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/asuna.user.css b/themes/asuna.user.css index 1f6a010..9f11f3b 100644 --- a/themes/asuna.user.css +++ b/themes/asuna.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Asuna @namespace github.com/doki-theme -@version 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #fcfcfc; --color-bg-canvas: #ffffff; + --color-bg-canvas-inset: #ffffff; --color-bg-primary: #ffffff; --color-calendar-graph-day-bg: #f6f6f6; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ec081e; --color-verified-badge-bg: #00000000; --color-bg-overlay: #fcfcfc; + --color-border-primary: #eeeeee; + --color-border-primary: #eeeeee; } .suggester li:hover .octicon, diff --git a/themes/beatrice.user.css b/themes/beatrice.user.css index 6bceb38..f0163c1 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #FFE5F1; --color-bg-canvas: #ffe4f1; + --color-bg-canvas-inset: #ffe4f1; --color-bg-primary: #ffe4f1; --color-calendar-graph-day-bg: #FDD8FF; --color-underlinenav-counter-text: #000000; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #fbadff; --color-verified-badge-bg: #00000000; --color-bg-overlay: #f3cfe0; + --color-border-primary: #F1D7E6; + --color-border-primary: #F1D7E6; } .suggester li:hover .octicon, diff --git a/themes/darkness_dark.user.css b/themes/darkness_dark.user.css index 7f19355..b479e99 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #0a0904; --color-bg-canvas: #080703; + --color-bg-canvas-inset: #080703; --color-bg-primary: #080703; --color-calendar-graph-day-bg: #191715; --color-underlinenav-counter-text: #c3c3c3; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ee6a12; --color-verified-badge-bg: #00000000; --color-bg-overlay: #100d03; + --color-border-primary: #1c1500; + --color-border-primary: #1c1500; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/darkness_light.user.css b/themes/darkness_light.user.css index 7d8109d..3b8d551 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #FFFEF9; --color-bg-canvas: #fefefa; + --color-bg-canvas-inset: #fefefa; --color-bg-primary: #fefefa; --color-calendar-graph-day-bg: #F3F2E2; --color-underlinenav-counter-text: #000000; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #FCFFA5; --color-verified-badge-bg: #00000000; --color-bg-overlay: #fffff7; + --color-border-primary: #f1f4e0; + --color-border-primary: #f1f4e0; } .suggester li:hover .octicon, diff --git a/themes/emilia_dark.user.css b/themes/emilia_dark.user.css index 28386cd..44e1f69 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #492d5a; --color-bg-canvas: #4e3162; + --color-bg-canvas-inset: #4e3162; --color-bg-primary: #4e3162; --color-calendar-graph-day-bg: #402a54; --color-underlinenav-counter-text: #DADADA; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #F667FF; --color-verified-badge-bg: #00000000; --color-bg-overlay: #4e2d62; + --color-border-primary: #553a63; + --color-border-primary: #553a63; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/emilia_light.user.css b/themes/emilia_light.user.css index dba2a38..80019ee 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #fbf0ff; --color-bg-canvas: #fcf3ff; + --color-bg-canvas-inset: #fcf3ff; --color-bg-primary: #fcf3ff; --color-calendar-graph-day-bg: #f2eaf6; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #e984ed; --color-verified-badge-bg: #00000000; --color-bg-overlay: #faecff; + --color-border-primary: #e9d8f6; + --color-border-primary: #e9d8f6; } .suggester li:hover .octicon, diff --git a/themes/hatsune_miku.user.css b/themes/hatsune_miku.user.css index 3b84760..57fac33 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #2f3635; --color-bg-canvas: #293030; + --color-bg-canvas-inset: #293030; --color-bg-primary: #293030; --color-calendar-graph-day-bg: #293433; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #68eede; --color-verified-badge-bg: #00000000; --color-bg-overlay: #313939; + --color-border-primary: #2d3839; + --color-border-primary: #2d3839; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/ishtar_dark.user.css b/themes/ishtar_dark.user.css index 20bb162..0d82939 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,10 +42,11 @@ :root { --color-previewable-comment-form-bg: #110F10; --color-bg-canvas: #0f0d0e; + --color-bg-canvas-inset: #0f0d0e; --color-bg-primary: #0f0d0e; --color-calendar-graph-day-bg: #191718; --color-underlinenav-counter-text: #c2c2c2; - --color-text-primary: #0f68b4; + --color-text-primary: #0f6ab7; --color-alert-warn-bg: #161602; --color-alert-info-bg: #0d0b0c; --color-alert-error-bg: #ff000022; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #fec144; --color-verified-badge-bg: #00000000; --color-bg-overlay: #0a0a06; + --color-border-primary: #1a1a00; + --color-border-primary: #1a1a00; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,11 +19237,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* constant.other.symbol */ .pl-e { @@ -19335,7 +19338,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* support.function */ .pl-mb { - color: #0f68b4 !important; + color: #0f6ab7 !important; font-weight: bold !important; } /* markup.bold */ @@ -19358,7 +19361,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.italic */ .pl-ml { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* markup.list */ .pl-mm { @@ -19386,7 +19389,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* meta.selector */ .pl-pdb { - color: #0f68b4 !important; + color: #0f6ab7 !important; font-weight: bold !important; } /* punctuation.definition.bold */ @@ -19409,7 +19412,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.italic */ .pl-pds { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* punctuation.definition.string */ .pl-pdv { @@ -19429,7 +19432,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* storage */ .pl-s1 { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* string */ .pl-s2 { @@ -19473,7 +19476,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* support.other.keyword */ .pl-sol { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* string.other.link */ .pl-som { @@ -19659,7 +19662,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { font-weight: normal !important; } .cm-string { - color: #0f68b4 !important; + color: #0f6ab7 !important; } .cm-string-2 { color: #bd6b18 !important; @@ -19898,20 +19901,20 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Literal.Number.Oct */ :is(#notebook, body.api) .highlight .sb, .highlight code .sb { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Backtick */ :is(#notebook, body.api) .highlight .sc, .highlight code .sc { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Char */ :is(#notebook, body.api) .highlight .sd, .highlight code .sd { - color: #0f68b4 !important; + color: #0f6ab7 !important; font-style: italic !important; } /* Literal.String.Doc */ :is(#notebook, body.api) .highlight .s2, .highlight code .s2 { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Double */ :is(#notebook, body.api) .highlight .se, .highlight code .se { @@ -19920,7 +19923,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Literal.String.Escape */ :is(#notebook, body.api) .highlight .sh, .highlight code .sh { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Heredoc */ :is(#notebook, body.api) .highlight .si, .highlight code .si { @@ -19929,7 +19932,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Literal.String.Interpol */ :is(#notebook, body.api) .highlight .sx, .highlight code .sx { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Other */ :is(#notebook, body.api) .highlight .sr, .highlight code .sr { @@ -19937,7 +19940,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Literal.String.Regex */ :is(#notebook, body.api) .highlight .s1, .highlight code .s1 { - color: #0f68b4 !important; + color: #0f6ab7 !important; } /* Literal.String.Single */ :is(#notebook, body.api) .highlight .ss, .highlight code .ss { diff --git a/themes/ishtar_light.user.css b/themes/ishtar_light.user.css index 3bffe42..6797ba9 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #fffefb; --color-bg-canvas: #fffffc; + --color-bg-canvas-inset: #fffffc; --color-bg-primary: #fffffc; --color-calendar-graph-day-bg: #f6f6f6; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ec081e; --color-verified-badge-bg: #00000000; --color-bg-overlay: #fcfcfa; + --color-border-primary: #eeeeee; + --color-border-primary: #eeeeee; } .suggester li:hover .octicon, diff --git a/themes/kanna.user.css b/themes/kanna.user.css index 1d52dfa..bcefa70 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #1a1426; --color-bg-canvas: #1b1529; + --color-bg-canvas-inset: #1b1529; --color-bg-primary: #1b1529; --color-calendar-graph-day-bg: #1d152d; --color-underlinenav-counter-text: #d0d0d0; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #344acb; --color-verified-badge-bg: #00000000; --color-bg-overlay: #150f20; + --color-border-primary: #221f2e; + --color-border-primary: #221f2e; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/konata.user.css b/themes/konata.user.css index be50e5c..3cfe529 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #608ee9; --color-bg-canvas: #6192ee; + --color-bg-canvas-inset: #6192ee; --color-bg-primary: #6192ee; --color-calendar-graph-day-bg: #6c95ee; --color-underlinenav-counter-text: #f3edff; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #98ff3d; --color-verified-badge-bg: #00000000; --color-bg-overlay: #5c89e8; + --color-border-primary: #5a86dc; + --color-border-primary: #5a86dc; } .suggester li:hover .octicon, diff --git a/themes/megumin.user.css b/themes/megumin.user.css index fe91503..3c4f7c2 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #2c2126; --color-bg-canvas: #271c21; + --color-bg-canvas-inset: #271c21; --color-bg-primary: #271c21; --color-calendar-graph-day-bg: #2f2329; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ee2e37; --color-verified-badge-bg: #00000000; --color-bg-overlay: #2f2329; + --color-border-primary: #32262c; + --color-border-primary: #32262c; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/mioda_ibuki_dark.user.css b/themes/mioda_ibuki_dark.user.css index 9514b89..28a357e 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #191b1d; --color-bg-canvas: #141617; + --color-bg-canvas-inset: #141617; --color-bg-primary: #141617; --color-calendar-graph-day-bg: #343434; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #68c4ee; --color-verified-badge-bg: #00000000; --color-bg-overlay: #1a1e20; + --color-border-primary: #1e2021; + --color-border-primary: #1e2021; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/mioda_ibuki_light.user.css b/themes/mioda_ibuki_light.user.css index f171e29..d36f406 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #ffeefd; --color-bg-canvas: #ffedfe; + --color-bg-canvas-inset: #ffedfe; --color-bg-primary: #ffedfe; --color-calendar-graph-day-bg: #ecf2f8; --color-underlinenav-counter-text: #272426; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #469fda; --color-verified-badge-bg: #00000000; --color-bg-overlay: #FFEAF9; + --color-border-primary: #ede1e9; + --color-border-primary: #ede1e9; } .suggester li:hover .octicon, diff --git a/themes/misato_katsuragi.user.css b/themes/misato_katsuragi.user.css index e97e8cb..6731e8a 100644 --- a/themes/misato_katsuragi.user.css +++ b/themes/misato_katsuragi.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Misato Katsuragi @namespace github.com/doki-theme -@version 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #382536; --color-bg-canvas: #3a2333; + --color-bg-canvas-inset: #3a2333; --color-bg-primary: #3a2333; --color-calendar-graph-day-bg: #322130; --color-underlinenav-counter-text: #b5a3b0; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ec1f62; --color-verified-badge-bg: #00000000; --color-bg-overlay: #382639; + --color-border-primary: #432E3D; + --color-border-primary: #432E3D; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/monika_dark.user.css b/themes/monika_dark.user.css index 7fd8c9c..148aefb 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #1d2115; --color-bg-canvas: #1A1E12; + --color-bg-canvas-inset: #1A1E12; --color-bg-primary: #1A1E12; --color-calendar-graph-day-bg: #23271A; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #FFFA11; --color-verified-badge-bg: #00000000; --color-bg-overlay: #1a1e12; + --color-border-primary: #202416; + --color-border-primary: #202416; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/monika_light.user.css b/themes/monika_light.user.css index 8c4ac07..8970d9a 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #f2fff0; --color-bg-canvas: #f3fff4; + --color-bg-canvas-inset: #f3fff4; --color-bg-primary: #f3fff4; --color-calendar-graph-day-bg: #eaf6eb; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #5EEF1B; --color-verified-badge-bg: #00000000; --color-bg-overlay: #edffec; + --color-border-primary: #e2eee3; + --color-border-primary: #e2eee3; } .suggester li:hover .octicon, diff --git a/themes/natsuki_dark.user.css b/themes/natsuki_dark.user.css index 702f1a3..6434921 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #35102c; --color-bg-canvas: #310a29; + --color-bg-canvas-inset: #310a29; --color-bg-primary: #310a29; --color-calendar-graph-day-bg: #3d1c31; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #F650FF; --color-verified-badge-bg: #00000000; --color-bg-overlay: #330A2B; + --color-border-primary: #381927; + --color-border-primary: #381927; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/natsuki_light.user.css b/themes/natsuki_light.user.css index 6d0db25..ad00ad1 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #FFE5F1; --color-bg-canvas: #ffe4f1; + --color-bg-canvas-inset: #ffe4f1; --color-bg-primary: #ffe4f1; --color-calendar-graph-day-bg: #FDD8FF; --color-underlinenav-counter-text: #000000; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #fbadff; --color-verified-badge-bg: #00000000; --color-bg-overlay: #f3cfe0; + --color-border-primary: #F1D7E6; + --color-border-primary: #F1D7E6; } .suggester li:hover .octicon, diff --git a/themes/ram.user.css b/themes/ram.user.css index 35b986f..8408162 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #342f36; --color-bg-canvas: #302930; + --color-bg-canvas-inset: #302930; --color-bg-primary: #302930; --color-calendar-graph-day-bg: #2c2934; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #e565ee; --color-verified-badge-bg: #00000000; --color-bg-overlay: #373139; + --color-border-primary: #362d39; + --color-border-primary: #362d39; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/rem.user.css b/themes/rem.user.css index 3493d16..6e4c3b6 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #2f3036; --color-bg-canvas: #292A30; + --color-bg-canvas-inset: #292A30; --color-bg-primary: #292A30; --color-calendar-graph-day-bg: #292e34; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #688dee; --color-verified-badge-bg: #00000000; --color-bg-overlay: #313239; + --color-border-primary: #2d3439; + --color-border-primary: #2d3439; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/rias.user.css b/themes/rias.user.css index ce90ad8..69e4674 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #3E1010; --color-bg-canvas: #401112; + --color-bg-canvas-inset: #401112; --color-bg-primary: #401112; --color-calendar-graph-day-bg: #491818; --color-underlinenav-counter-text: #fafafa; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ec081e; --color-verified-badge-bg: #00000000; --color-bg-overlay: #401010; + --color-border-primary: #551818; + --color-border-primary: #551818; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/rory_mercury.user.css b/themes/rory_mercury.user.css index 83f1dba..658f24b 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #141417; --color-bg-canvas: #161619; + --color-bg-canvas-inset: #161619; --color-bg-primary: #161619; --color-calendar-graph-day-bg: #191715; --color-underlinenav-counter-text: #c3c3c3; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ee2726; --color-verified-badge-bg: #00000000; --color-bg-overlay: #111114; + --color-border-primary: #261616; + --color-border-primary: #261616; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/ryuko.user.css b/themes/ryuko.user.css index 64e832a..8d72243 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #2b3238; --color-bg-canvas: #2f363c; + --color-bg-canvas-inset: #2f363c; --color-bg-primary: #2f363c; --color-calendar-graph-day-bg: #292e34; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ee2726; --color-verified-badge-bg: #00000000; --color-bg-overlay: #282f35; + --color-border-primary: #30383d; + --color-border-primary: #30383d; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/satsuki.user.css b/themes/satsuki.user.css index 8899bfc..27b0f7d 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #e7e6eb; --color-bg-canvas: #eae9ee; + --color-bg-canvas-inset: #eae9ee; --color-bg-primary: #eae9ee; --color-calendar-graph-day-bg: #ECEDF8; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #7aa9ed; --color-verified-badge-bg: #00000000; --color-bg-overlay: #efeef3; + --color-border-primary: #dadbe6; + --color-border-primary: #dadbe6; } .suggester li:hover .octicon, diff --git a/themes/sayori_dark.user.css b/themes/sayori_dark.user.css index 12b959f..f220a56 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #111b2d; --color-bg-canvas: #0E1D31; + --color-bg-canvas-inset: #0E1D31; --color-bg-primary: #0E1D31; --color-calendar-graph-day-bg: #1B1D31; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #11FFFD; --color-verified-badge-bg: #00000000; --color-bg-overlay: #131d2d; + --color-border-primary: #1a1c2d; + --color-border-primary: #1a1c2d; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/sayori_light.user.css b/themes/sayori_light.user.css index 47fc27d..a8217c3 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #f0faff; --color-bg-canvas: #f3faff; + --color-bg-canvas-inset: #f3faff; --color-bg-primary: #f3faff; --color-calendar-graph-day-bg: #eaf0f6; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #3DFFF3; --color-verified-badge-bg: #00000000; --color-bg-overlay: #ecfbff; + --color-border-primary: #e2eaee; + --color-border-primary: #e2eaee; } .suggester li:hover .octicon, diff --git a/themes/tohsaka_rin.user.css b/themes/tohsaka_rin.user.css index b3b8b94..a4e63b7 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #161415; --color-bg-canvas: #191718; + --color-bg-canvas-inset: #191718; --color-bg-primary: #191718; --color-calendar-graph-day-bg: #211D1E; --color-underlinenav-counter-text: #bbbbbb; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #ee2726; --color-verified-badge-bg: #00000000; --color-bg-overlay: #151314; + --color-border-primary: #211e1e; + --color-border-primary: #211e1e; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/yuri_dark.user.css b/themes/yuri_dark.user.css index 8ba1833..2a22680 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #422D5A; --color-bg-canvas: #493162; + --color-bg-canvas-inset: #493162; --color-bg-primary: #493162; --color-calendar-graph-day-bg: #392A54; --color-underlinenav-counter-text: #DADADA; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #F667FF; --color-verified-badge-bg: #00000000; --color-bg-overlay: #412D62; + --color-border-primary: #4d3a63; + --color-border-primary: #4d3a63; } .suggester li:hover .octicon, @@ -19225,7 +19228,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant */ .pl-cce { - color: #BD93F9 !important; + color: #86dbfd !important; font-weight: normal !important; } /* constant.character.escape */ @@ -19234,7 +19237,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.numeric */ .pl-coc { - color: #BD93F9 !important; + color: #86dbfd !important; } /* constant.other.color */ .pl-cos { diff --git a/themes/yuri_light.user.css b/themes/yuri_light.user.css index 1a9420c..81b1dc9 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 4.2.2 +@version 4.2.3 @description Browse code with your waifu. @author Unthrottled @license MIT @@ -42,6 +42,7 @@ :root { --color-previewable-comment-form-bg: #f3f0ff; --color-bg-canvas: #f7f3ff; + --color-bg-canvas-inset: #f7f3ff; --color-bg-primary: #f7f3ff; --color-calendar-graph-day-bg: #efeaf6; --color-underlinenav-counter-text: #252427; @@ -55,6 +56,8 @@ --color-calendar-graph-day-L4-bg: #f595ff; --color-verified-badge-bg: #00000000; --color-bg-overlay: #f5ecff; + --color-border-primary: #e2e3ee; + --color-border-primary: #e2e3ee; } .suggester li:hover .octicon,