diff --git a/.gitignore b/.gitignore index 30c924c..4c77535 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ generatedThemes/*.json buildSrc/temp/ /masterThemes +.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ad27dd7..e7e2c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Changelog --- +# 88.5-1.1.0 [Initial New View Support] + +- Added some support for the `Light Default` and `Dark Default` GitHub new UI themes. + # 88.1-1.0.2 [Darling] Best Girl just got _better_. ❤️ diff --git a/LICENSE b/LICENSE index 699ba7f..0232cea 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Alex Simons +Copyright (c) 2023 Alex Simons Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/buildSrc/assets/templates/tempCss.css.txt b/buildSrc/assets/templates/tempCss.css.txt index f2cc8a7..59ed99e 100644 --- a/buildSrc/assets/templates/tempCss.css.txt +++ b/buildSrc/assets/templates/tempCss.css.txt @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: {{textEditorBackground}} !important; --color-avatar-bg: {{textEditorBackground}} !important; + --color-btn-primary-bg: {{accentColor}} !important; + --color-btn-primary-hover-bg: {{accentColor}} !important; + --color-btn-primary-fg: {{defaultButtonColor|selectionForeground}} !important; + --color-btn-primary-icon: {{defaultButtonColor|selectionForeground}} !important; --color-fg-default: {{foregroundColor}} !important; - --color-fg-muted: {{foregroundColor}}AA !important; + --color-btn-text: {{buttonFont}} !important; + --color-attention-subtle: {{fileYellow}}99 !important; + --color-attention-muted: {{fileYellow}}99 !important; + --color-accent-subtle: {{accentColor}}AA !important; --color-auto-gray-3: {{textEditorBackground}} !important; --color-auto-gray-1: {{textEditorBackground}} !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: {{caretRow}} !important; --color-bg-discussions-row-emoji-box: {{buttonColor}} !important; --color-current-user-tip-border: {{buttonColor}} !important; + --color-btn-bg: {{buttonColor}} !important; + --color-fg-muted: {{infoForeground}} !important; --color-underlinenav-counter-text: {{foregroundColor}} !important; --color-text-primary: {{keyColor}} !important; --color-text-link: {{accentColor}} !important; @@ -106,6 +115,10 @@ color: {{lineNumberColor}} !important; } +span.Button-label:hover { + color: {{defaultButtonColor|selectionForeground}}; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: {{defaultButtonColor|selectionForeground}}; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: {{infoForeground}}!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: {{buttonColor}}; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: {{headerColor}} !important; + } + + .kVpYHc { + border: {{borderColor}} !important; + } + + .kMwSDe .segmentedControl-content { + background-color: {{buttonColor}} !important; + border-color: {{accentColor}} !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: {{buttonColor}} !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: {{highlightColor}} !important; + } + + .beVJOq, + .cYvszO { + background-color: {{secondaryBackground}} !important; + border: {{borderColor}} !important; + } + + .kGYPAT { + color: {{accentColor}} !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: {{textEditorBackground}}; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ {{accentColor}} !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/buildSrc/package.json b/buildSrc/package.json index f859616..03e8569 100644 --- a/buildSrc/package.json +++ b/buildSrc/package.json @@ -12,7 +12,7 @@ "@types/jest": "^26.0.0", "@types/lodash": "^4.14.157", "copy-webpack-plugin": "^6.0.2", - "doki-build-source": "84.2.4", + "doki-build-source": "84.2.7", "fetch-css": "^3.0.1", "jest": "^26.0.1", "lodash": "^4.17.21", diff --git a/buildSrc/yarn.lock b/buildSrc/yarn.lock index 33647c2..7367b71 100644 --- a/buildSrc/yarn.lock +++ b/buildSrc/yarn.lock @@ -2315,10 +2315,10 @@ discontinuous-range@1.0.0: resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo= -doki-build-source@84.2.4: - version "84.2.4" - resolved "https://registry.yarnpkg.com/doki-build-source/-/doki-build-source-84.2.4.tgz#886e9be23447a0088928be92c6b3f8e032bb12f1" - integrity sha512-Nt8huxBM+92df4eGjRs1XX2lkkVmrnor8KJ1HQRRgDVC8Gq+mXTFfbg8EBM40Aj4tGE+iS9L1wjQB9bsjCtqDQ== +doki-build-source@84.2.7: + version "84.2.7" + resolved "https://registry.yarnpkg.com/doki-build-source/-/doki-build-source-84.2.7.tgz#ef84454522831cde620a592a579f9d3579b21dc2" + integrity sha512-gQLMqpFFKI/uGRHQdlyIT/pVMyMv3LybF7zZynXtJAzNGWbG4BOHNwGFRcJaTtvL+uEJZE/6vsjLXPk0qaG4SA== dom-serializer@0: version "0.2.2" diff --git a/package.json b/package.json index 313ca91..ab66c9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-github", - "version": "88.1.1", + "version": "88.1.2", "dependencies": { } } diff --git a/themes/aqua.user.css b/themes/aqua.user.css index 238acde..a584dd8 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #262940 !important; --color-avatar-bg: #262940 !important; + --color-btn-primary-bg: #578CDA !important; + --color-btn-primary-hover-bg: #578CDA !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #838daa !important; + --color-attention-subtle: #43444199 !important; + --color-attention-muted: #43444199 !important; + --color-accent-subtle: #578CDAAA !important; --color-auto-gray-3: #262940 !important; --color-auto-gray-1: #262940 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2d3047 !important; --color-bg-discussions-row-emoji-box: #31374b !important; --color-current-user-tip-border: #31374b !important; + --color-btn-bg: #31374b !important; + --color-fg-muted: #7b8bab !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #6893f3 !important; --color-text-link: #578CDA !important; @@ -106,6 +115,10 @@ color: #61647b !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7b8bab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #31374b; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2a2d44 !important; + } + + .kVpYHc { + border: #2a334b !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #31374b !important; + border-color: #578CDA !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #31374b !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2d3047 !important; + } + + .beVJOq, + .cYvszO { + background-color: #242942 !important; + border: #2a334b !important; + } + + .kGYPAT { + color: #578CDA !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #262940; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #578CDA !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/astolfo.user.css b/themes/astolfo.user.css index 9405e99..e2a3951 100644 --- a/themes/astolfo.user.css +++ b/themes/astolfo.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Astolfo @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1a1c19 !important; --color-avatar-bg: #1a1c19 !important; + --color-btn-primary-bg: #d58d9c !important; + --color-btn-primary-hover-bg: #d58d9c !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #33331a99 !important; + --color-attention-muted: #33331a99 !important; + --color-accent-subtle: #d58d9cAA !important; --color-auto-gray-3: #1a1c19 !important; --color-auto-gray-1: #1a1c19 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #20221f !important; --color-bg-discussions-row-emoji-box: #242422 !important; --color-current-user-tip-border: #242422 !important; + --color-btn-bg: #242422 !important; + --color-fg-muted: #957a4d !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #f6ebb7 !important; --color-text-link: #d58d9c !important; @@ -106,6 +115,10 @@ color: #8e856e !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #957a4d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #242422; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #181917 !important; + } + + .kVpYHc { + border: #212220 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #242422 !important; + border-color: #d58d9c !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #242422 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #241517 !important; + } + + .beVJOq, + .cYvszO { + background-color: #141513 !important; + border: #212220 !important; + } + + .kGYPAT { + color: #d58d9c !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1a1c19; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d58d9c !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/asuna_dark.user.css b/themes/asuna_dark.user.css index 66db9f7..f085b0f 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1b1b1b !important; --color-avatar-bg: #1b1b1b !important; + --color-btn-primary-bg: #99202c !important; + --color-btn-primary-hover-bg: #99202c !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #998c92 !important; + --color-attention-subtle: #38372099 !important; + --color-attention-muted: #38372099 !important; + --color-accent-subtle: #99202cAA !important; --color-auto-gray-3: #1b1b1b !important; --color-auto-gray-1: #1b1b1b !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #272727 !important; --color-bg-discussions-row-emoji-box: #272524 !important; --color-current-user-tip-border: #272524 !important; + --color-btn-bg: #272524 !important; + --color-fg-muted: #7a3f41 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #FCA57E !important; --color-text-link: #99202c !important; @@ -106,6 +115,10 @@ color: #5d5051 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7a3f41!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #272524; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1e1e1e !important; + } + + .kVpYHc { + border: #2a2929 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #272524 !important; + border-color: #99202c !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #272524 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #282828 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1c1c1c !important; + border: #2a2929 !important; + } + + .kGYPAT { + color: #99202c !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1b1b1b; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #99202c !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/asuna_light.user.css b/themes/asuna_light.user.css index 85afb24..5394f1d 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #fcfcfc !important; --color-avatar-bg: #fcfcfc !important; + --color-btn-primary-bg: #a61d0d !important; + --color-btn-primary-hover-bg: #a61d0d !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #f0edbc99 !important; + --color-attention-muted: #f0edbc99 !important; + --color-accent-subtle: #a61d0dAA !important; --color-auto-gray-3: #fcfcfc !important; --color-auto-gray-1: #fcfcfc !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #feeeee !important; --color-bg-discussions-row-emoji-box: #f9f2f2 !important; --color-current-user-tip-border: #f9f2f2 !important; + --color-btn-bg: #f9f2f2 !important; + --color-fg-muted: #a25252 !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #0d5fa6 !important; --color-text-link: #a61d0d !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #a25252!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #f9f2f2; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fdfdfd !important; + } + + .kVpYHc { + border: #eeeeee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #f9f2f2 !important; + border-color: #a61d0d !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #f9f2f2 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #fff1f5 !important; + } + + .beVJOq, + .cYvszO { + background-color: #fcfcfc !important; + border: #eeeeee !important; + } + + .kGYPAT { + color: #a61d0d !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #fcfcfc; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #a61d0d !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/azuki.user.css b/themes/azuki.user.css index ed46434..212c7ca 100644 --- a/themes/azuki.user.css +++ b/themes/azuki.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Azuki @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2e221f !important; --color-avatar-bg: #2e221f !important; + --color-btn-primary-bg: #e9b14e !important; + --color-btn-primary-hover-bg: #e9b14e !important; + --color-btn-primary-fg: #322623 !important; + --color-btn-primary-icon: #322623 !important; --color-fg-default: #bfbfbf !important; - --color-fg-muted: #bfbfbfAA !important; + --color-btn-text: #bfbaae !important; + --color-attention-subtle: #453b2199 !important; + --color-attention-muted: #453b2199 !important; + --color-accent-subtle: #e9b14eAA !important; --color-auto-gray-3: #2e221f !important; --color-auto-gray-1: #2e221f !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #382a26 !important; --color-bg-discussions-row-emoji-box: #48403d !important; --color-current-user-tip-border: #48403d !important; + --color-btn-bg: #48403d !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #bfbfbf !important; --color-text-primary: #96f3fd !important; --color-text-link: #e9b14e !important; @@ -106,6 +115,10 @@ color: #6c635a !important; } +span.Button-label:hover { + color: #322623; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #322623; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #48403d; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2d221f !important; + } + + .kVpYHc { + border: #403331 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #48403d !important; + border-color: #e9b14e !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #48403d !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #40312d !important; + } + + .beVJOq, + .cYvszO { + background-color: #291e1b !important; + border: #403331 !important; + } + + .kGYPAT { + color: #e9b14e !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2e221f; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e9b14e !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/beatrice.user.css b/themes/beatrice.user.css index a75183e..58d1d44 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFE5F1 !important; --color-avatar-bg: #FFE5F1 !important; + --color-btn-primary-bg: #78A5EB !important; + --color-btn-primary-hover-bg: #78A5EB !important; + --color-btn-primary-fg: #f049da !important; + --color-btn-primary-icon: #f049da !important; --color-fg-default: #000000 !important; - --color-fg-muted: #000000AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #f1d9b399 !important; + --color-attention-muted: #f1d9b399 !important; + --color-accent-subtle: #78A5EBAA !important; --color-auto-gray-3: #FFE5F1 !important; --color-auto-gray-1: #FFE5F1 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #ffdce6 !important; --color-bg-discussions-row-emoji-box: #fdd0e4 !important; --color-current-user-tip-border: #fdd0e4 !important; + --color-btn-bg: #fdd0e4 !important; + --color-fg-muted: #dd87a1 !important; --color-underlinenav-counter-text: #000000 !important; --color-text-primary: #7C75EF !important; --color-text-link: #78A5EB !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #f049da; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #f049da; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #dd87a1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #fdd0e4; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #FFE0F0 !important; + } + + .kVpYHc { + border: #F1D7E6 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #fdd0e4 !important; + border-color: #78A5EB !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #fdd0e4 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ffd4ec !important; + } + + .beVJOq, + .cYvszO { + background-color: #f5c1d4 !important; + border: #F1D7E6 !important; + } + + .kGYPAT { + color: #78A5EB !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFE5F1; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #78A5EB !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/c.c..user.css b/themes/c.c..user.css index d0738bb..a8fca3c 100644 --- a/themes/c.c..user.css +++ b/themes/c.c..user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: C.C. @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #C4EA8A !important; --color-avatar-bg: #C4EA8A !important; + --color-btn-primary-bg: #68ac17 !important; + --color-btn-primary-hover-bg: #68ac17 !important; + --color-btn-primary-fg: #d2f69b !important; + --color-btn-primary-icon: #d2f69b !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #6d7f2e !important; + --color-attention-subtle: #cbe78499 !important; + --color-attention-muted: #cbe78499 !important; + --color-accent-subtle: #68ac17AA !important; --color-auto-gray-3: #C4EA8A !important; --color-auto-gray-1: #C4EA8A !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #D0F09E !important; --color-bg-discussions-row-emoji-box: #e0ffb4 !important; --color-current-user-tip-border: #e0ffb4 !important; + --color-btn-bg: #e0ffb4 !important; + --color-fg-muted: #358969 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #098776 !important; --color-text-link: #68ac17 !important; @@ -106,6 +115,10 @@ color: #507433 !important; } +span.Button-label:hover { + color: #d2f69b; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #d2f69b; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #358969!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #e0ffb4; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #caec92 !important; + } + + .kVpYHc { + border: #a1bf75 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #e0ffb4 !important; + border-color: #68ac17 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #e0ffb4 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #c0f179 !important; + } + + .beVJOq, + .cYvszO { + background-color: #b5de76 !important; + border: #a1bf75 !important; + } + + .kGYPAT { + color: #68ac17 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #C4EA8A; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #68ac17 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/chocola.user.css b/themes/chocola.user.css index b523627..5d93bd4 100644 --- a/themes/chocola.user.css +++ b/themes/chocola.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Chocola @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2c2729 !important; --color-avatar-bg: #2c2729 !important; + --color-btn-primary-bg: #f771a3 !important; + --color-btn-primary-hover-bg: #f771a3 !important; + --color-btn-primary-fg: #30292c !important; + --color-btn-primary-icon: #30292c !important; --color-fg-default: #d3d3d3 !important; - --color-fg-muted: #d3d3d3AA !important; + --color-btn-text: #b4afa2 !important; + --color-attention-subtle: #443c2999 !important; + --color-attention-muted: #443c2999 !important; + --color-accent-subtle: #f771a3AA !important; --color-auto-gray-3: #2c2729 !important; --color-auto-gray-1: #2c2729 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #352f31 !important; --color-bg-discussions-row-emoji-box: #46393e !important; --color-current-user-tip-border: #46393e !important; + --color-btn-bg: #46393e !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #d3d3d3 !important; --color-text-primary: #48eae4 !important; --color-text-link: #f771a3 !important; @@ -106,6 +115,10 @@ color: #6c5a63 !important; } +span.Button-label:hover { + color: #30292c; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #30292c; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #46393e; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2c2428 !important; + } + + .kVpYHc { + border: #3a3336 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #46393e !important; + border-color: #f771a3 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #46393e !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #553c4c !important; + } + + .beVJOq, + .cYvszO { + background-color: #282023 !important; + border: #3a3336 !important; + } + + .kGYPAT { + color: #f771a3 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2c2729; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #f771a3 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/christmas_chocola.user.css b/themes/christmas_chocola.user.css index 1d94842..1a6ae50 100644 --- a/themes/christmas_chocola.user.css +++ b/themes/christmas_chocola.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Christmas Chocola @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -29,7 +29,7 @@ } .alert { background: #541827; - border-color: #23932455; + border-color: #FFFFFE55; } .CircleBadge, .page-profile .user-status-container { background: #3a141d; @@ -42,14 +42,21 @@ :root { --color-previewable-comment-form-bg: #3a141d !important; --color-avatar-bg: #3a141d !important; + --color-btn-primary-bg: #FFFFFE !important; + --color-btn-primary-hover-bg: #FFFFFE !important; + --color-btn-primary-fg: #fefefe !important; + --color-btn-primary-icon: #fefefe !important; --color-fg-default: #d3d3d3 !important; - --color-fg-muted: #d3d3d3AA !important; + --color-btn-text: #b4afa2 !important; + --color-attention-subtle: #4e2e1e99 !important; + --color-attention-muted: #4e2e1e99 !important; + --color-accent-subtle: #FFFFFEAA !important; --color-auto-gray-3: #3a141d !important; --color-auto-gray-1: #3a141d !important; --color-avatar-border: #00000000 !important; --color-bg-canvas: #3c161f !important; --color-canvas-inset: #3c161f !important; - --color-canvas-overlay: #14271c !important; + --color-canvas-overlay: #2d0c13 !important; --color-bg-primary: #3c161f !important; --color-calendar-graph-day-bg: #342422 !important; --color-workflow-card-bg: #342422 !important; @@ -61,12 +68,14 @@ --color-checks-step-header-open-bg: #4f1b27 !important; --color-bg-discussions-row-emoji-box: #541827 !important; --color-current-user-tip-border: #541827 !important; + --color-btn-bg: #541827 !important; + --color-fg-muted: #56b36f !important; --color-underlinenav-counter-text: #d3d3d3 !important; - --color-text-primary: #77EA6E !important; - --color-text-link: #239324 !important; + --color-text-primary: #ebc190 !important; + --color-text-link: #FFFFFE !important; --color-canvas-subtle: #4f1b27 !important; --color-accent-fg: #f16e7f !important; - --color-shadow-large: 0 8px 24px #23932422 !important; + --color-shadow-large: 0 8px 24px #FFFFFE22 !important; --color-alert-warn-bg: #3b1f20 !important; --color-alert-info-bg: #37131b !important; --color-page-header-bg: #3c161f !important; @@ -74,13 +83,13 @@ --color-checks-bg: #37131b !important; --color-checks-header-border: #37131b !important; --color-alert-error-bg: #ff000022 !important; - --color-calendar-graph-day-L1-bg: #23932477 !important; - --color-calendar-graph-day-L2-bg: #239324CC !important; - --color-calendar-graph-day-L3-bg: #239324FF !important; + --color-calendar-graph-day-L1-bg: #FFFFFE77 !important; + --color-calendar-graph-day-L2-bg: #FFFFFECC !important; + --color-calendar-graph-day-L3-bg: #FFFFFEFF !important; --color-calendar-graph-day-L4-bg: #e66895 !important; --color-verified-badge-bg: #00000000 !important; - --color-bg-overlay: #14271c !important; - --color-project-sidebar-bg: #14271c !important; + --color-bg-overlay: #2d0c13 !important; + --color-project-sidebar-bg: #2d0c13 !important; --color-border-primary: #4b1c27 !important; --color-notifications-row-read-bg: #342422 !important; --color-notifications-row-bg: #4f1b27 !important; @@ -106,6 +115,10 @@ color: #6d816c !important; } +span.Button-label:hover { + color: #fefefe; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fefefe; @@ -129,12 +142,16 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #56b36f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px #3a141d inset !important; - -webkit-text-fill-color: #239324 !important; + -webkit-text-fill-color: #FFFFFE !important; } .SelectMenu-tabs { @@ -184,11 +201,11 @@ } .btn-primary:active { - background-color: #239324A7; + background-color: #FFFFFEA7; } .btn-primary:hover { - background-color: #239324CC !important; + background-color: #FFFFFECC !important; background-image: none !important; } @@ -201,6 +218,46 @@ background-color: #541827; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #37131b !important; + } + + .kVpYHc { + border: #4b1c27 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #541827 !important; + border-color: #FFFFFE !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #541827 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #4e1d2a !important; + } + + .beVJOq, + .cYvszO { + background-color: #2d0c13 !important; + border: #4b1c27 !important; + } + + .kGYPAT { + color: #FFFFFE !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -314,7 +371,7 @@ } /* source #0: "#4183c4" */ .ellipsis-expander:active, .hidden-text-expander a:active { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } /* source #0: "color: #333", "#fff", "#ddd" */ .social-count { @@ -504,8 +561,8 @@ /* source #0: "#ddd", "#eee","#ddd" */ .btn.zeroclipboard-is-active, .btn.zeroclipboard-is-hover, .btn:active, .btn:hover { - background-color: #14271c; - background-image: linear-gradient(#2e2f24, #14271c); + background-color: #2d0c13; + background-image: linear-gradient(#2e2f24, #2d0c13); } /* source #0: "none" */ .btn.selected, .btn.zeroclipboard-is-active, .btn:active { @@ -653,7 +710,7 @@ } /* source #0: "#4183C4" */ .site-header-nav .dropdown-menu a:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } /* source #0: "color: #24292e" */ .site-header-nav .dropdown-menu a.active { @@ -729,7 +786,7 @@ } /* source #0: "color: #327fc7" */ .headlines > li > a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #0: "#fdfdfd" */ .headlines li:hover { @@ -741,7 +798,7 @@ } /* source #0: "color: #327fc7", "#fdfdfd" */ .sidebar-module h3 a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; } /* source #0: "#eee", "color: #d3d3d366", "#f9f9f9" */ @@ -768,7 +825,7 @@ /* source #0: "color: #264c72", "#97c1da", "#d8ebf8" */ .alert { color: #b4afa2; - border-color: #23932435; + border-color: #FFFFFE35; background-color: #541827; } /* source #0: "color: #613a00", "#dca874", "#ffe3c8" */ @@ -782,7 +839,7 @@ } /* source #0: "#ffe3c8" */ .warning table { - background-color: #14271c; + background-color: #2d0c13; } /* source #0: "color: #6f42c1", "#f8f4ff", "#f8f4ff", "#6f42c1" */ .product { @@ -793,7 +850,7 @@ } /* source #0: "color: #327fc7" */ .api-status a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #0: "color: #333" */ .content .anchor { @@ -846,7 +903,7 @@ } /* source #0: "color: #327fc7" */ #markdown-toc li a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #0: "#ddd" */ .content table th { @@ -875,7 +932,7 @@ } /* source #0: "#97c1da", "#d8ebf8", "color: #264c72" */ .preview-notice { - border-left-color: #23932435; + border-left-color: #FFFFFE35; background-color: #541827; color: #b4afa2; } @@ -883,8 +940,8 @@ .deprecation-warning { color: #EFA554; border-color: #542; - background-color: #14271c; - background: -webkit-linear-gradient(#14271c, #f5dac0); + background-color: #2d0c13; + background: -webkit-linear-gradient(#2d0c13, #f5dac0); } /* source #0: "#fff", "#e5e5e5" */ .pagination > span, .pagination a, .pagination em { @@ -911,7 +968,7 @@ } /* source #0: "box-shadow: 0 1px 0 0 #0058a2" */ .link-mono:hover { - box-shadow: 0 1px 0 0 /*[[base-color]]*/ #239324; + box-shadow: 0 1px 0 0 /*[[base-color]]*/ #FFFFFE; } /* source #0: "color: #767676" */ a.card.bg-gray-light { @@ -927,11 +984,11 @@ } /* source #1: "#0366d6" */ .gist-snippet .file-box:hover .file { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #1: "#0366d6" */ .gist-snippet .link-overlay .link { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -1039,7 +1096,7 @@ } /* source #2: "color: #b4d6fe" */ .ghh a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #2: "transparent" */ .windows .ghh ::-webkit-scrollbar { @@ -1092,7 +1149,7 @@ /* source #2: "color: #0366d6" */ .ghh-theme-github .ghh .ghh-issue-body a, .ghh-theme-github .ghh .ghh-readme a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #2: "color: #24292e" */ .ghh-theme-github .ghh .ghh-issue-body .user-mention, @@ -1113,7 +1170,7 @@ } /* source #2: "#0366d6" */ .ghh button.ghh-primary:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -1212,7 +1269,7 @@ } /* source #2: "color: #0366d6" */ .ghh-theme-github .ghh a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #2: "#dfe2e5" */ .ghh-theme-github .ghh-markdown-separator { @@ -1350,7 +1407,7 @@ } /* source #3: "#ddd" */ .horizontal-scrollbar::-webkit-scrollbar-thumb { - background: #14271c; + background: #2d0c13; } /* source #3: "#f5f5f5", "#e5e5e5" */ .zh-pipeline { @@ -1372,7 +1429,7 @@ } /* source #3: "#ddd" */ .zh-pipeline-issues::-webkit-scrollbar { - background: #14271c; + background: #2d0c13; } /* source #3: "#f5f5f5" */ .zh-pipeline-issues::-webkit-scrollbar-track { @@ -1380,7 +1437,7 @@ } /* source #3: "#ddd" */ .zh-pipeline-issues::-webkit-scrollbar-thumb { - background: #14271c; + background: #2d0c13; } /* source #3: "#e5e5e5", "#fff" */ .zh-pipeline-issue-content { @@ -1509,7 +1566,7 @@ } /* source #3: "#eee","#ddd", "color: #333" */ .zh-reports .btn:hover { - background: linear-gradient(#2e2f24, #14271c); + background: linear-gradient(#2e2f24, #2d0c13); color: #d3d3d3EE; } /* source #3: "transparent", "transparent", "none" */ @@ -1599,7 +1656,7 @@ } /* source #3: "color: #0366d6 !important" */ .zh-merge-repository-body .zh-open-cross-organization-btn:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #3: "#fff" */ .zh-mergetool-pipelines-dialog { @@ -1678,7 +1735,7 @@ } /* source #3: "#0366d6" */ .zh-select-menu-item.navigation-focus, .zh-select-menu-item:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -1732,7 +1789,7 @@ } /* source #3: "#ddd" */ .zh-issue-counter { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "#fff" */ .zh-progress-bar__completed { @@ -1783,7 +1840,7 @@ } /* source #3: "color: #0366d6" */ .zh-epic-issue-list-item-title-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #3: "color: #767676" */ .zh-epic-issue-list-item-number, .zh-epic-issue-list-item-status { @@ -1791,12 +1848,12 @@ } /* source #3: "#ddd", "#f4f4f4" */ .zh-pipeline-badge-light { - background-color: #14271c; + background-color: #2d0c13; background-color: #2e2f24; } /* source #3: "#ddd" */ .zh-pipeline-badge { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "color: #767676" */ .zh-epic-creator-header-label { @@ -1804,7 +1861,7 @@ } /* source #3: "color: #0366d6" */ .zh-epic-creator-header-repo a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #3: "#fff" */ .zh-epic-creator-title input { @@ -1921,7 +1978,7 @@ } /* source #3: "#279f43", "none", "rgba(27,31,35,0.5)" */ .zh-webapp.zh-epic-creator-page-visible .btn-primary:active { - background-color: #239324; + background-color: #FFFFFE; background-image: none; border-color: rgba(200, 200, 200, 0.3); } @@ -1950,7 +2007,7 @@ } /* source #3: "#ddd", "#ddd" */ .zh-estimate-badge--epic-points { - background-color: #14271c; + background-color: #2d0c13; border-color: #4b1c27; } /* source #3: "color: #000" */ @@ -2063,7 +2120,7 @@ .zhc-markdown kbd { color: #d3d3d3CC; border-bottom-color: #484848; - box-shadow: inset 0 -2px 0 #14271c; + box-shadow: inset 0 -2px 0 #2d0c13; } /* source #3: "transparent" */ img.gh-emoji { @@ -2515,7 +2572,7 @@ } /* source #3: "#ddd" */ .zhc-badge--issue-count { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "transparent" */ .zhc-badge--epic-points { @@ -3704,7 +3761,7 @@ /* source #3: "#ddd" */ .zhc-issue-cards::-webkit-scrollbar, .zhc-issue-cards::-webkit-scrollbar-thumb { - background: #14271c; + background: #2d0c13; } /* source #3: "#f4f4f4" */ .zhc-issue-cards::-webkit-scrollbar-track { @@ -4612,7 +4669,7 @@ } /* source #3: "#ddd" */ .zhc-highlighter { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "#fff" */ .zhc-search { @@ -4686,7 +4743,7 @@ } /* source #3: "#ddd" */ .zhc-selection-list__item--is-highlighted { - background: #14271c; + background: #2d0c13; } /* source #3: "#e9e9e9" */ .zhc-selection-list-deprecated--footer { @@ -5691,7 +5748,7 @@ } /* source #3: "#ddd" */ .zhc-roadmap-row.zhc-roadmap-row--color-secondary { - background: #14271c; + background: #2d0c13; } /* source #3: "#f8f8f8" */ .zhc-roadmap-row.zhc-roadmap-row--color-primary { @@ -5806,7 +5863,7 @@ } /* source #3: "#ddd" */ .zhc-roadmap__title--secondary { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "#e9e9e9" */ .zhc-roadmap-date-strip { @@ -5919,7 +5976,7 @@ } /* source #3: "color: #0366d6 !important" */ .zh-muted-link:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #3: "color: #586069 !important" */ .zh-text-muted { @@ -5962,7 +6019,7 @@ } /* source #3: "#ddd" */ .disabled { - background-color: #14271c; + background-color: #2d0c13; } /* source #3: "color: #d3d3d366", "transparent" */ .zh-menu-content__item { @@ -6038,7 +6095,7 @@ } /* source #5: "#0366d6", "rgba(27,31,35,.15)" */ .btn-outline:hover, [open] > .btn-outline { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; border-color: rgba(200, 200, 200, 0.1); @@ -6176,7 +6233,7 @@ } /* source #5: "color: #0366d6" */ .pagination .next_page, .pagination .previous_page { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#0366d6", "transparent" */ .pagination .current, .pagination .current:hover, @@ -6209,7 +6266,7 @@ } /* source #5: "color: #0366d6", "#fff", "#e1e4e8" */ .ajax-pagination-form .ajax-pagination-btn { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: #3a141d; background-image: none; border-color: #4b1c27; @@ -6217,7 +6274,7 @@ /* source #5: "color: #0366d6", "#f6f8fa" */ .ajax-pagination-form .ajax-pagination-btn:focus, .ajax-pagination-form .ajax-pagination-btn:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #37131b; } /* source #5: "#f6f8fa", "#d1d5da" */ @@ -6234,7 +6291,7 @@ } /* source #5: "#fffbdd" */ .conflict-gutter-marker { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#d73a49" */ .conflict-gutter-marker::after, .conflict-gutter-marker::before { @@ -6250,7 +6307,7 @@ } /* source #5: "color: #0366d6" */ .template-previews .discussion-sidebar-heading:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#dfe2e5" */ .gollum-editor .comment-form-head.tabnav { @@ -6258,7 +6315,7 @@ } /* source #5: "color: #0366d6", "none" */ .zeroclipboard-link { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: none; } /* source #5: "#fff" */ @@ -6370,11 +6427,11 @@ } /* source #5: "linear-gradient(#54a3ff,#006eed)" */ .notification-indicator .mail-status { - background-image: linear-gradient(/*[[base-color]]*/ #239324, /*[[base-color]]*/ #239324); + background-image: linear-gradient(/*[[base-color]]*/ #FFFFFE, /*[[base-color]]*/ #FFFFFE); } /* source #5: "#0366d6" */ .notification-indicator:hover .mail-status { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -6384,7 +6441,7 @@ } /* source #5: "linear-gradient(#54a3ff,#006eed)" */ .feature-preview-indicator { - background-image: linear-gradient(/*[[base-color]]*/ #239324, /*[[base-color]]*/ #239324); + background-image: linear-gradient(/*[[base-color]]*/ #FFFFFE, /*[[base-color]]*/ #FFFFFE); } /* source #5: "hsla(0,0%,100%,.125)", "box-shadow: none" */ .header-search-current .header-search-wrapper { @@ -6441,7 +6498,7 @@ /* source #5: "#0366d6" */ .header-search-current .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path, .header-search-current .jump-to-suggestions-results-container [aria-selected="true"] .jump-to-suggestions-path { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -6529,7 +6586,7 @@ /* source #5: "#0366d6" */ .header-search-prototype .jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path, .header-search-prototype .jump-to-suggestions-results-container [aria-selected="true"] .jump-to-suggestions-path { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -6573,8 +6630,8 @@ } /* source #5: "color: #0366d6", "#0366d6" */ .Label--blue { - color: /*[[base-color]]*/ #239324; - border-color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6f42c1", "#8a63d2" */ .Label--purple { @@ -6733,7 +6790,7 @@ /* source #5: "color: rgba(27,31,35,.85)", "#fffbdd", "rgba(27,31,35,.15)" */ .boxed-group-warning { color: rgba(230, 230, 230, 0.85); - background-color: #14271c; + background-color: #2d0c13; border-color: rgba(200, 200, 200, 0.1); } /* source #5: "#e1e4e8" */ @@ -6746,7 +6803,7 @@ } /* source #5: "#fffdef" */ .list-group-item.selected { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#f1f8ff" */ .list-group-item.navigation-focus, .list-group-item[aria-selected="true"] { @@ -6847,7 +6904,7 @@ .select-menu-item[aria-selected="true"].select-menu-action, .select-menu-item[aria-selected="true"]:focus, .select-menu-item[aria-selected="true"]:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -6945,7 +7002,7 @@ } /* source #5: "#0366d6" */ .comment-form-textarea.dragover { - border-color: #239324; + border-color: #FFFFFE; } /* source #5: "color: #86181d", "rgba(27,31,35,.15)" */ .comment-form-error { @@ -6960,7 +7017,7 @@ /* source #5: "color: #444d56", "#dfe2e5" */ .email-format .email-hidden-toggle a { color: #d3d3d3CC; - background: #14271c; + background: #2d0c13; } /* source #5: "#c6cbd1" */ .email-format .email-hidden-toggle a:hover { @@ -6968,7 +7025,7 @@ } /* source #5: "#0366d6" */ .email-format .email-hidden-toggle a:active { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -6993,7 +7050,7 @@ } /* source #5: "color: #0366d6" */ .commit-link, .commit .commit-title .issue-link { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#dbedff" */ a.commit-ref:hover { @@ -7076,7 +7133,7 @@ } /* source #5: "#d3e2f4" */ .branches-tag-list li .ellipsis-expander { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#d6e2f1" */ .branches-tag-list li .ellipsis-expander:hover { @@ -7219,7 +7276,7 @@ } /* source #5: "#fffbdd" */ .blob-code-inner.highlighted, .blob-code-inner .highlighted { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "color: rgba(27,31,35,.7)" */ .blob-code-hunk, .blob-num-expandable, .blob-num-hunk { @@ -7249,10 +7306,10 @@ /* source #5: "#0366d6", "#0366d6" */ .blob-num-expandable .diff-expander:hover, .blob-num-expandable .directional-expander:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #24292e" */ .blob-code-addition .x, .blob-code-deletion .x { @@ -7280,16 +7337,16 @@ } /* source #5: "#0366d6" */ .is-commenting .selected-line.blob-code::before { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } /* source #5: "#0366d6", "#0366d6" */ .add-line-comment { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - background-image: linear-gradient(#0372ef, /*[[base-color]]*/ #239324; color: #fff; background-image: none); + background-image: linear-gradient(#0372ef, /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none); } /* source #5: "#dfe2e5" */ .inline-comment-form { @@ -7340,7 +7397,7 @@ } /* source #5: "color: #0366d6" */ .discussion-sidebar-item .muted-icon:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#e1e4e8" */ .discussion-sidebar-item + .discussion-sidebar-item { @@ -7356,7 +7413,7 @@ } /* source #5: "color: #0366d6" */ .discussion-sidebar-toggle:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "none" */ button.discussion-sidebar-toggle { @@ -7368,7 +7425,7 @@ } /* source #5: "color: #0366d6" */ .sidebar-assignee .assignee:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #cb2431" */ .thread-subscribe-form.is-error .thread-subscribe-button { @@ -7380,7 +7437,7 @@ } /* source #5: "color: #0366d6" */ .participation a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#fff" */ .gh-header, .gh-header .gh-header-sticky.is-stuck + .gh-header-shadow { @@ -7423,22 +7480,22 @@ } /* source #5: "#c0d3eb" */ .timeline-comment.current-user { - border-color: #23932435; + border-color: #FFFFFE35; } /* source #5: "#f1f8ff", "#c0d3eb" */ .timeline-comment.current-user .timeline-comment-header { background-color: #541827; - border-bottom-color: #23932435; + border-bottom-color: #FFFFFE35; } /* source #5: "#c0d3eb" */ .timeline-comment.current-user .timeline-comment-label { - border-color: #23932435; + border-color: #FFFFFE35; } /* source #5: "color: #c0d3eb", "#f1f8ff", "#c0d3eb" */ .timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav { - color: #23932435; + color: #FFFFFE35; background-color: #541827; - border-bottom-color: #23932435; + border-bottom-color: #FFFFFE35; } /* source #5: "#e5d999" */ .timeline-comment.is-internal, .timeline-comment.unread-item { @@ -7447,7 +7504,7 @@ /* source #5: "#fffdef", "#e5d999" */ .timeline-comment.is-internal .timeline-comment-header, .timeline-comment.unread-item .timeline-comment-header { - background-color: #14271c; + background-color: #2d0c13; border-bottom-color: #542; } /* source #5: "#e5d999" */ @@ -7458,7 +7515,7 @@ /* source #5: "#fffdef", "#e5d999" */ .timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav, .timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav { - background-color: #14271c; + background-color: #2d0c13; border-bottom-color: #542; } /* source #5: "#e1e4e8" */ @@ -7484,7 +7541,7 @@ } /* source #5: "#fffdef" */ .is-pending .timeline-comment--caret::after { - border-right-color: #14271c; + border-right-color: #2d0c13; } /* source #5: "transparent" */ .timeline-comment--caret.current-user::after, @@ -7497,7 +7554,7 @@ } /* source #5: "#c0d3eb" */ .timeline-comment--caret.current-user::before { - border-right-color: #23932435; + border-right-color: #FFFFFE35; } /* source #5: "transparent" */ .timeline-comment--caret.is-internal::after, @@ -7509,7 +7566,7 @@ /* source #5: "#fffdef" */ .timeline-comment--caret.is-internal::after, .timeline-comment--caret.unread-item::after { - border-right-color: #14271c; + border-right-color: #2d0c13; } /* source #5: "#e5d999" */ .timeline-comment--caret.is-internal::before, @@ -7520,11 +7577,11 @@ :target .timeline-comment--caret::before { filter: drop-shadow(-0.28em 0 0 rgba(79, 140, 201, 0.3)); filter: drop-shadow(-0.28em 0 0 rgba(/*[[base-color-rgb]]*/, 0.3)); - border-right-color: /*[[base-color]]*/ #239324; + border-right-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em #c8e1ff" */ :target .timeline-comment { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em #c8e1ff" */ .review-comment:target, :target .timeline-comment { @@ -7532,7 +7589,7 @@ box-shadow: 0 0 0 0.2em rgba(/*[[base-color-rgb]]*/, 0.3); } .review-comment:target { - border-color: #239324; + border-color: #FFFFFE; } /* source #5: "color: #586069", "#f6f8fa", "#d1d5da" */ .timeline-comment-header { @@ -7543,7 +7600,7 @@ /* source #5: "color: #586069" */ .Link--primary, .timeline-comment-header .author { - color: #239324 !important; + color: #FFFFFE !important; } /* source #5: "rgba(27,31,35,.15)" */ .timeline-comment-label { @@ -7564,7 +7621,7 @@ } /* source #5: "color: #0366d6" */ .timeline-comment-action:focus, .timeline-comment-action:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #d1d5da" */ .timeline-comment-action.disabled, .timeline-comment-action.disabled:hover { @@ -7590,7 +7647,7 @@ } /* source #5: "color: #0366d6" */ .commit-message .issue-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: rgba(27,31,35,.7)" */ .discussion-item-private { @@ -7658,13 +7715,13 @@ } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em #c8e1ff" */ :target .timeline-comment-group .timeline-comment { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 0 0.2em rgba(79, 140, 201, 0.3); box-shadow: 0 0 0 0.2em rgba(/*[[base-color-rgb]]*/, 0.3); } /* source #5: "#fffdef" */ .is-pending .comment-form-head.tabnav, .is-pending .file-header { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#e1e4e8" */ .discussion-item-review-comment { @@ -7809,7 +7866,7 @@ } /* source #5: "color: #0366d6" */ .steps li.current .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .steps .complete { @@ -7821,7 +7878,7 @@ } /* source #5: "color: #0366d6" */ .prose-diff .show-rich-diff { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #d1d5da" */ .prose-diff.collapsed .rich-diff-level-zero.expandable .octicon { @@ -7853,12 +7910,12 @@ } /* source #5: "#fffdef" */ .prose-diff > .markdown-body li.added.moved { - background: #14271c; + background: #2d0c13; } /* source #5: "#fffdef", "#dfe2e5" */ .prose-diff > .markdown-body td.changed, .prose-diff > .markdown-body th.changed { - background: #14271c; + background: #2d0c13; border-left-color: #4b1c27; } /* source #5: "color: #cb2431" */ @@ -7891,7 +7948,7 @@ } /* source #5: "#dfe2e5" */ .render-container { - background: #14271c; + background: #2d0c13; } /* source #5: "none" */ .render-container.is-render-ready.is-render-requested:not(.is-render-failed) { @@ -7937,7 +7994,7 @@ } /* source #5: "color: #0366d6" */ .marketing-hero-octicon .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .hanging-icon-list .octicon { @@ -7975,7 +8032,7 @@ } /* source #5: "color: #0366d6" */ .intgrs-lstng-item-link:hover .intgrs-lstng-item-header { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #333" */ .intgrs-lstng-item-header { @@ -7991,7 +8048,7 @@ } /* source #5: "color: #0366d6" */ .intgr-admin-link:hover .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .intgr-admin-link .octicon { @@ -8020,7 +8077,7 @@ } /* source #5: "color: #0366d6" */ .listgroup-item:hover .link-small { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#d73a49" */ .manifest-errors { @@ -8413,7 +8470,7 @@ } /* source #5: "#fffbdd", "rgba(27,31,35,.15)" */ .RecentBranches { - background-color: #14271c; + background-color: #2d0c13; border-color: rgba(200, 200, 200, 0.1); } /* source #5: "color: #735c0f" */ @@ -8479,7 +8536,7 @@ } /* source #5: "#0366d6" */ .checks-list-item.selected .checks-list-item-name { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none !important; } @@ -8608,7 +8665,7 @@ } /* source #5: "color: #0366d6" */ .code-list .blob-num a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .code-list .full-path .octicon-repo { @@ -8620,7 +8677,7 @@ } /* source #5: "#fffdef" */ .code-list-item-private .blob-num { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "color: rgba(27,31,35,.7)" */ .code-list-item-private .blob-num a { @@ -8630,7 +8687,7 @@ .code-list-item-private .divider .blob-code, .code-list-item-private .divider .blob-num { color: rgba(230, 230, 230, 0.7); - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#ffd33d" */ .code-scanning-alert-warning-message { @@ -8665,7 +8722,7 @@ } /* source #5: "#0366d6" */ .CommunityTemplate-highlight--focus { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -8719,7 +8776,7 @@ } /* source #5: "color: #0366d6" */ .coupon-icon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "fill: #dbab09" */ .repo-private-icon { @@ -8744,7 +8801,7 @@ } /* source #5: "color: #0366d6" */ .dashboard-notice .octicon-organization { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #24292e" */ .dashboard-notice h2 { @@ -8767,7 +8824,7 @@ } /* source #5: "color: #0366d6" */ .dashboards-overview-cards .summary-stats .metric-1 { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #d3d3d366" */ .developer-thanks .hook { @@ -8850,7 +8907,7 @@ /* source #5: "color: #24292e", "border-bottom-color: #e36209" */ .emoji-tab[role="tab"][aria-selected="true"] { color: #d3d3d3AA; - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #5: "color: #6a737d" */ .emoji-tab[role="tab"][aria-selected="true"] .UnderlineNav-octicon { @@ -8858,7 +8915,7 @@ } /* source #5: "#0366d6" */ .selected-emoji { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -8891,10 +8948,10 @@ } /* source #5: "#0366d6", "#0366d6" */ .newsletter-frequency-choice:hover, .newsletter-frequency-choice:hover h3 { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } .newsletter-frequency-choice:hover h3 { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -8909,7 +8966,7 @@ } /* source #5: "color: #0366d6" */ .exploregrid-item:hover .exploregrid-item-title { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#f5f5f5" */ .exploregrid-item-header { @@ -8925,7 +8982,7 @@ } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em #c8e1ff" */ .file:target { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 0 0.2em rgba(79, 140, 201, 0.3); box-shadow: 0 0 0 0.2em rgba(/*[[base-color-rgb]]*/, 0.3); } @@ -8935,7 +8992,7 @@ } /* source #5: "#ddd" */ .file .image { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#fff" */ .file .image .border-wrap { @@ -8962,11 +9019,11 @@ } /* source #5: "#ddd" */ .file-info-divider { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "fill: #0366d6" */ .graphs .dot.padded circle:hover { - fill: /*[[base-color]]*/ #239324; + fill: /*[[base-color]]*/ #FFFFFE; } /* source #5: "fill: #24292e" */ .graphs .d3-tip { @@ -9000,7 +9057,7 @@ } /* source #5: "#2188ff" */ .svg-tip.comparison .metric-1 { - border-top-color: #239324; + border-top-color: #FFFFFE; } /* source #5: "#f1f8ff" */ .topic-tag { @@ -9168,11 +9225,11 @@ } /* source #5: "color: #0366d6" */ .issues-reset-query:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#0366d6" */ .issues-reset-query:hover .issues-reset-query-icon { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -9190,7 +9247,7 @@ } /* source #5: "color: #0366d6" */ .milestone-description .expand-more, .milestone-title-link a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#ccc" */ .task-progress .progress-bar .progress { @@ -9198,11 +9255,11 @@ } /* source #5: "color: #0366d6" */ a.task-progress:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#0366d6" */ a.task-progress:hover .progress-bar .progress { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -9235,14 +9292,14 @@ } /* source #5: "#0366d6" */ .reaction-sort-item:focus, .reaction-sort-item:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } /* source #5: "#f1f8ff", "#0366d6" */ .reaction-sort-item[aria-checked="true"] { background-color: #541827; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#959da5" */ .issue-keyword { @@ -9280,7 +9337,7 @@ } /* source #5: "fill: #0366d6" */ .map-background { - fill: /*[[base-color]]*/ #239324; + fill: /*[[base-color]]*/ #FFFFFE; } /* source #5: "fill: #e36209" */ .map-point:hover { @@ -9380,17 +9437,17 @@ } /* source #5: "#c8e1ff" */ .topic-tag-contrast { - background-color: #23932435; + background-color: #FFFFFE35; } /* source #5: "color: #24292e", "#c8e1ff", "rgba(27,31,35,.15)" */ .topic-tag-contrast .delete-topic-link { color: #d3d3d3AA; - background-color: #23932435; + background-color: #FFFFFE35; border-left-color: rgba(200, 200, 200, 0.1); } /* source #5: "#79b8ff" */ .topic-tag-contrast .delete-topic-link:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #24292e" */ .merge-branch-heading { @@ -9457,7 +9514,7 @@ } /* source #5: "color: #0366d6" */ .notifications .notifications-more > a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .notifications .read .list-group-item-name > a, @@ -9479,7 +9536,7 @@ } /* source #5: "color: #0366d6" */ .notifications-sso-prompt em { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .type-icon-state-none { @@ -9520,7 +9577,7 @@ } /* source #5: "color: #0366d6" */ .notification-actions .btn-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #d1d5da" */ .notification-actions .unsaved-notification { @@ -9561,7 +9618,7 @@ } /* source #5: "color: #0366d6 !important" */ .notification-navigation .menu-item.selected .octicon { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #5: "color: #6a737d !important" */ .notification-navigation .notification-configure-filters .octicon { @@ -9569,7 +9626,7 @@ } /* source #5: "color: #0366d6 !important" */ .notification-navigation .notification-configure-filters:hover .octicon { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #5: "color: #6a737d !important" */ .notifications-list-item .notification-list-item-link { @@ -9621,7 +9678,7 @@ } /* source #5: "#0366d6" */ .notifications-list-item.notification-unread .notification-list-item-unread-indicator { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -9706,7 +9763,7 @@ } /* source #5: "color: #0366d6" */ .oauth-application-whitelist .edit-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #24292e" */ .oauth-application-info .application-title { @@ -9735,7 +9792,7 @@ } /* source #5: "color: #0366d6" */ .developer-app-item .developer-app-name:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6a737d" */ .developer-app-item .developer-app-list-meta { @@ -9763,7 +9820,7 @@ } /* source #5: "color: #0366d6" */ .org-insights-card-legend .metric-0 { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #28a745" */ .org-insights-card-legend .metric-1 { @@ -9777,7 +9834,7 @@ .org-insights-graph-canvas .metric-0 circle, .org-insights-graph-canvas path.metric-0, .org-insights-svg-tip .metric-0 .legend { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -9882,7 +9939,7 @@ } /* source #5: "color: #0366d6" */ .invite-team-member-list .team-link { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#eee" */ .team-stats { @@ -9898,7 +9955,7 @@ } /* source #5: "color: #0366d6" */ .stats-group-stat:hover, .stats-group-stat:hover .stat-number { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .stats-group-stat.no-link:hover { @@ -10005,7 +10062,7 @@ } /* source #5: "color: #0366d6" */ .ldap-memberships-list .edit { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#eee" */ .invited .team-member-list .list-item { @@ -10046,7 +10103,7 @@ } /* source #5: "#0366d6" */ .theme-selector-thumbnail.selected { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -10118,7 +10175,7 @@ } /* source #5: "#79b8ff", "box-shadow: 0 0 10px rgba(121,184,255,.7)" */ .progress-pjax-loader > .progress-pjax-loader-bar { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 rgba(79, 140, 201, 0.3); box-shadow: 0 0 rgba(/*[[base-color-rgb]]*/, 0.3); } @@ -10147,13 +10204,13 @@ } /* source #5: "linear-gradient(#54a3ff,#006eed)", "#fff" */ .pending-cards-status { - background-image: linear-gradient(/*[[base-color]]*/ #239324, /*[[base-color]]*/ #239324); + background-image: linear-gradient(/*[[base-color]]*/ #FFFFFE, /*[[base-color]]*/ #FFFFFE); border-color: #3a141d; } /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em rgba(3,102,214,.3)" */ @media (min-width: 544px) { .project-column:focus { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; box-shadow: 0 0 0 0.2em rgba(79, 140, 201, 0.5); box-shadow: 0 0 0 0.2em rgba(/*[[base-color-rgb]]*/, 0.5); } @@ -10184,7 +10241,7 @@ /* source #5: "#2188ff", "box-shadow: 0 0 0 .2em rgba(3,102,214,.3) !important" */ @media (min-width: 544px) { .project-card:focus { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; box-shadow: 0 0 0 0.2em rgba(79, 140, 201, 0.5) !important; box-shadow: 0 0 0 0.2em rgba(/*[[base-color-rgb]]*/, 0.5) !important; } @@ -10215,7 +10272,7 @@ .card-filter-autocomplete-dropdown .navigation-focus, .card-filter-autocomplete-dropdown [aria-selected="true"], .projects-reset-query:hover .projects-reset-query-icon { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -10245,7 +10302,7 @@ /* source #5: "color: #0366d6" */ .project-comment-body-hover .octicon-pencil:hover, .project-comment-title-hover .octicon-pencil:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6a737d" */ .vcard-detail .octicon, .vcard-username { @@ -10330,14 +10387,14 @@ /* source #5: "#0366d6" */ .diffbar-range-menu .in-range:focus:not(.is-range-selected), .diffbar-range-menu .in-range:hover:not(.is-range-selected) { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } /* source #5: "color: #735c0f", "#fffbdd" */ .diffbar-range-menu .is-range-selected { color: #EFA554; - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#fff5b1" */ .diffbar-range-menu .is-last-in-range { @@ -10363,7 +10420,7 @@ /* source #5: "color: #b08800", "#fffdef" */ .review-comment .pending-batched-suggestion-label { color: #cb4; - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#fff", "#e1e4e8" */ .review-comment .is-comment-editing { @@ -10521,7 +10578,7 @@ } /* source #5: "#fffdef" */ .private .mini-repo-list-item { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "color: rgba(27,31,35,.7)" */ .private .mini-repo-list-item .repo-icon { @@ -10548,12 +10605,12 @@ /* source #5: "linear-gradient(#599bcd,#3072b3)", "#2a65a0" */ .clone-url-button > .clone-url-link:active, .clone-url-button > .clone-url-link:hover { - background-image: linear-gradient(/*[[base-color]]*/ #239324, /*[[base-color]]*/ #239324); - border-color: /*[[base-color]]*/ #239324; + background-image: linear-gradient(/*[[base-color]]*/ #FFFFFE, /*[[base-color]]*/ #FFFFFE); + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#3072b3", "none" */ .clone-url-button > .clone-url-link:active { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; background-image: none; } /* source #5: "box-shadow: inset 1px 0 0 #fff" */ @@ -10592,7 +10649,7 @@ } /* source #5: "color: #0366d6" */ .numbers-summary li > a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6a737d" */ .numbers-summary .octicon { @@ -10621,7 +10678,7 @@ } /* source #5: "color: rgba(3, 47, 98, 0.55)" */ table.files td.icon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6a737d" */ table.files td.message, table.files td.message a { @@ -10629,7 +10686,7 @@ } /* source #5: "color: #0366d6" */ table.files td.message a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #6a737d" */ table.files td.age { @@ -10642,7 +10699,7 @@ } /* source #5: "#dfe2e5" */ table.files tr.up-tree a:hover { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "color: #586069", "#fafbfc", "#dfe2e5" */ .branch-infobar { @@ -10693,7 +10750,7 @@ } /* source #5: "#fffdef" */ .selected-user-key { - background-color: #14271c; + background-color: #2d0c13; } /* source #5: "#ddd" */ .user-key-badge, .user-key-email { @@ -10856,7 +10913,7 @@ } /* source #5: "color: #0366d6" */ .session-details:hover .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .collaborators .collab-remove .remove-link { @@ -10943,7 +11000,7 @@ /* source #5: "color: #24292e", "border-bottom-color: #e36209" */ .repository-settings-actions [role="tab"][aria-selected="true"] { color: #d3d3d3AA; - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #5: "color: #6a737d" */ .repository-settings-actions [role="tab"][aria-selected="true"] .UnderlineNav-octicon { @@ -10959,7 +11016,7 @@ } /* source #5: "color: #0366d6" */ .setup-header .lead a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .setup-secondary .info { @@ -11026,7 +11083,7 @@ } /* source #5: "color: #0366d6" */ .shelf-dismiss:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: rgba(27,31,35,.7)", "rgba(27,31,35,.15)" */ .shelf-dismiss .close-button { @@ -11064,7 +11121,7 @@ } /* source #5: "color: #0366d6" */ .orgs-help-item-octicon .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .orgs-help-dismiss, .orgs-help-item-content { @@ -11072,7 +11129,7 @@ } /* source #5: "color: #0366d6" */ .orgs-help-dismiss:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#fff", "#d1d5da" */ .signup-plan-card { @@ -11085,7 +11142,7 @@ } /* source #5: "#0366d6" */ .plan-category-tab[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none !important; } @@ -11139,7 +11196,7 @@ } /* source #5: "color: #0366d6", "#f6f8fa" */ .team-member-ellipsis:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: #37131b; } /* source #5: "#fafbfc" */ @@ -11148,7 +11205,7 @@ } /* source #5: "#0366d6" */ .token-scanning-reset-query:hover .token-scanning-reset-query-icon { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -11189,7 +11246,7 @@ /* source #5: "color: #0366d6", "none" */ .tree-browser-result[aria-selected="true"] .octicon-chevron-right, .tree-browser-result mark { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "none" */ .toolbar-commenting .dropdown-item, .tree-browser-result mark { @@ -11198,7 +11255,7 @@ /* source #5: "color: #0366d6" */ .toolbar-commenting .dropdown-item:focus, .toolbar-commenting .dropdown-item:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069", "none" */ .toolbar-item, .toolbar-item .menu-target { @@ -11208,7 +11265,7 @@ /* source #5: "color: #0366d6" */ .toolbar-item .menu-target:focus, .toolbar-item .menu-target:hover, .toolbar-item:focus, .toolbar-item:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #333" */ .typeahead-result { @@ -11217,7 +11274,7 @@ /* source #5: "#0366d6" */ .typeahead-result.navigation-focus, .typeahead-result:hover, .typeahead-result[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -11259,7 +11316,7 @@ } /* source #5: "#0366d6" */ .user-status-org-button.selected { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -11270,7 +11327,7 @@ /* source #5: "color: #0366d6" */ .toggle-user-status-edit:focus .user-status-message-wrapper, .toggle-user-status-edit:hover .user-status-message-wrapper { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#fff", "#e1e4e8" */ .user-status-circle-badge { @@ -11306,10 +11363,10 @@ } /* source #5: "#0366d6", "#0366d6" */ .hx_badge[aria-pressed="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none !important; - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } /* source #5: "#fafbfc" */ @media (hover: hover) { @@ -11336,7 +11393,7 @@ } /* source #5: "linear-gradient(#54a3ff,#006eed)" */ .Box--responsive .Box-row--unread::before { - background-image: linear-gradient(/*[[base-color]]*/ #239324, /*[[base-color]]*/ #239324); + background-image: linear-gradient(/*[[base-color]]*/ #FFFFFE, /*[[base-color]]*/ #FFFFFE); } /* source #5: "#d1d5da", "box-shadow: inset 2px 0 0 #0366d6" */ @media (min-width: 544px) { @@ -11438,8 +11495,8 @@ } /* source #5: "color: #0366d6", "#0366d6" */ .label.bg-blue { - color: /*[[base-color]]*/ #239324; - border-color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "currentColor" */ .select-menu-item:hover .Label { @@ -11457,11 +11514,11 @@ /* source #5: "transparent", "color: #0366d6" */ .delete-topic-button, .topic-tag, .topic-tag-action { border-color: transparent; - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #0366d6" */ .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "initial", "none" */ .btn-transparent { @@ -11549,10 +11606,10 @@ } /* source #5: "color: #0366d6", "box-shadow: 0 1px 0 0 #1074e7" */ .link-mktg, .link-mktg:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .link-mktg:hover { - box-shadow: 0 1px 0 0 #239324; + box-shadow: 0 1px 0 0 #FFFFFE; box-shadow: 0 1px 0 0 /*[[base-color]]*/; } /* source #5: "#f6f8fa" */ @@ -11606,7 +11663,7 @@ /* source #5: "color: #1b1f23 !important", "#1074e7" */ .subnav-link.selected { color: #d3d3d3DD !important; - border-bottom-color: /*[[base-color]]*/ #239324; + border-bottom-color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "transparent", "transparent" */ .subnav-btn, .subnav-btn:hover { @@ -11618,7 +11675,7 @@ /* source #5: "#0366d6" */ @media (min-width: 768px) { .subnav-btn:hover { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -11640,7 +11697,7 @@ /* source #5: "#1074e7" */ @media (min-width: 768px) { .subnav-primary.selected { - border-bottom-color: /*[[base-color]]*/ #239324; + border-bottom-color: /*[[base-color]]*/ #FFFFFE; } } /* source #5: "color: #24292e" */ @@ -11710,7 +11767,7 @@ } /* source #5: "#24292e" */ .bg-gradient-gray { - background-image: linear-gradient(175.44deg, #14271c 1.44%, #3a141d 96.23%); + background-image: linear-gradient(175.44deg, #2d0c13 1.44%, #3a141d 96.23%); } /* source #5: "#fff" */ .bg-radial-white { @@ -11747,7 +11804,7 @@ border-color: transparent transparent #541827; } .illflow-blue .illflow-item .illflow-item-heading { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } } /* source #5: "color: #444d56" */ @@ -11809,7 +11866,7 @@ } /* source #5: "color: #0366d6" */ .actions-template-card:hover .actions-template-repo { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #959da5" */ .actions-template-repo { @@ -11838,13 +11895,13 @@ } /* source #5: "#0366d6" */ .insights-dash-dot-ripple > span { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } /* source #5: "#2188ff" */ .insights-dash-dot-ripple > div { - border-color: #239324; + border-color: #FFFFFE; } /* source #5: "transparent" */ .gpr-cli-tab-nav { @@ -11864,7 +11921,7 @@ } /* source #5: "color: #1074e7" */ .MarketingBody blockquote { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "color: #586069" */ .MarketingBody ol, .MarketingBody ul { @@ -11880,11 +11937,11 @@ } /* source #5: "color: #0366d6" */ .MarketingBody-lead a, .MarketingBody-lead a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #5: "#c8e1ff","#79b8ff" */ .section-mobile-notification::after { - background: linear-gradient(#23932435, /*[[base-color]]*/ #239324, #23932435); + background: linear-gradient(#FFFFFE35, /*[[base-color]]*/ #FFFFFE, #FFFFFE35); } /* source #5: "#fff" */ .phone-buttons, .phone-buttons::after, .phone-buttons::before { @@ -12548,7 +12605,7 @@ } /* source #6: "color: #0366d6 !important" */ .link-gray-dark:hover, .link-hover-blue:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #6: "#f6f8fa" */ body { @@ -12579,7 +12636,7 @@ } /* source #6: "#0366d6" */ .component-items-selector .active, .component-items-selector .active:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -12719,7 +12776,7 @@ .layout-content.status.status-index .status-day .update-title.impact-maintenance a, .layout-content.status.status-index .status-day .update-title.impact-maintenance a:hover, .layout-content.status.status-index .unresolved-incident.impact-maintenance .incident-title { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -12732,12 +12789,12 @@ .layout-content.status-index .components-statuses .component-container.status-blue::after, .layout-content.status.status-index .incidents-list .incident-title.impact-maintenance a, .status-blue .icon-indicator { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #6: "#0366d6" */ .layout-content.status.status-index .scheduled-incidents-container, .layout-content.status.status-index .unresolved-incident.impact-maintenance .updates { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #6: "#28a745" */ .layout-content.status.status-index .page-status.status-none { @@ -12755,12 +12812,12 @@ .layout-content.status-index .page-footer span a:hover, .layout-content.status-index .timeframes-container .timeframe:not(.active):hover, a, a:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #6: "#0366d6" */ .flat-button, .layout-content.status-full-history .show-filter.open, .masthead .updates-dropdown-container .show-updates-dropdown { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -12787,12 +12844,12 @@ .graphiql-container .docExplorerShow, .graphiql-container .historyShow { background: #37131b; border-bottom-color: #4b1c27; - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "#3B5998", "#3B5998" */ .graphiql-container .docExplorerShow::before { - border-left-color: #239324; - border-top-color: #239324; + border-left-color: #FFFFFE; + border-top-color: #FFFFFE; } /* source #7: "#e0e0e0" */ .graphiql-container .resultWrap { @@ -12827,7 +12884,7 @@ } /* 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(#4b1c27, #14271c); + background: linear-gradient(#4b1c27, #2d0c13); box-shadow: 0 0 0 1px #484848; } /* source #7: "linear-gradient(#fdfdfd, #d2d3d6)", "box-shadow: 0 1px 0 #fff" */ @@ -12837,7 +12894,7 @@ } /* source #7: "linear-gradient(#e6e6e6, #c3c3c3)" */ .graphiql-container .execute-button:active { - background: linear-gradient(#4b1c27, #14271c); + background: linear-gradient(#4b1c27, #2d0c13); } /* source #7: "#fff" */ .graphiql-container .execute-options, @@ -12859,12 +12916,12 @@ } /* source #7: "color: #3b5998" */ .graphiql-container .doc-explorer-back { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "#3B5998", "#3B5998" */ .graphiql-container .doc-explorer-back::before { - border-left-color: #239324; - border-top-color: #239324; + border-left-color: #FFFFFE; + border-top-color: #FFFFFE; } /* source #7: "#ffffff", "#d6d6d6" */ .graphiql-container .doc-explorer-contents, @@ -12891,7 +12948,7 @@ } /* source #7: "color: #1f61a0" */ .graphiql-container .field-name { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "color: #8b2bb9" */ .graphiql-container .arg-name { @@ -12929,13 +12986,13 @@ } /* source #7: "#279f43", "none", "rgba(27,31,35,0.5)" */ .btn-primary.selected, .btn-primary:active, [open] > .btn-primary { - background-color: #239324; + background-color: #FFFFFE; background-image: none; border-color: rgba(200, 200, 200, 0.3); } /* source #7: "background-color: #94d3a2", "none", "rgba(27,31,35,0.2)", "box-shadow: none" */ .btn-primary.disabled, .btn-primary:disabled { - background: #23932420; + background: #FFFFFE20; background-image: none; border-color: rgba(200, 200, 200, 0.15); box-shadow: none; @@ -12966,15 +13023,15 @@ /* source #7: "#0366d6", "none", "#0366d6" */ .btn-outline.selected, .btn-outline:active, .btn-outline:hover, [open] > .btn-outline { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "color: #0366d6", "#fff" */ .btn-outline.selected .Counter, .btn-outline:active .Counter, .btn-outline:hover .Counter, [open] > .btn-outline .Counter { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; background-image: none; } @@ -12994,7 +13051,7 @@ .btn-invisible.selected, .btn-invisible.zeroclipboard-is-active, .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active, .btn-invisible:focus, .btn-invisible:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: none; box-shadow: none; } @@ -13014,20 +13071,20 @@ /* source #7: "#0366d6", "#0366d6" */ .filter-item.selected, .subnav-item.selected, .subnav-item.selected:focus, .subnav-item.selected:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } .subnav-item.selected, .subnav-item.selected:focus, .subnav-item.selected:hover { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "#0366d6", "#0366d6" */ .pagination .current, .pagination .current:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #7: "color: #d1d5da", "#fafbfc" */ .pagination .disabled, .pagination .disabled:hover, .pagination .gap, @@ -13080,7 +13137,7 @@ /* source #7: "#0366d6", "#dbedff", "color: #24292e", "#e1e4e8", "#f6f8fa" */ @media (hover: hover) { .SelectMenu-item:hover, body:not(.intent-mouse) .SelectMenu-item:focus { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -13104,7 +13161,7 @@ } /* source #7: "#0366d6" */ .alpha-badge { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -13114,7 +13171,7 @@ } /* source #7: "#ddd" */ .graphiql-ide.signed-out::after { - background: #14271c; + background: #2d0c13; } /* source #8: "transparent" */ .Box-row:first-of-type { @@ -13138,7 +13195,7 @@ /* 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, .form-control:focus, .form-select.focus, .form-select:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 0 2px rgba(79, 140, 201, 0.3); box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, 0.3); } @@ -13192,7 +13249,7 @@ } /* source #8: "color: #0366d6 !important" */ .text-blue-mktg { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #8: "#d1d5da" */ .underline-dashed { @@ -13227,7 +13284,7 @@ } /* source #8: "#0366d6" */ .directory-link-box.Box:hover, .directory-link-box:hover .Box { - border-color: #239324; + border-color: #FFFFFE; } /* source #8: "color: #959da5" */ .breadcrumbs a:not(:last-child)::after { @@ -13255,11 +13312,11 @@ } /* source #8: "color: #0366d6" */ .search-result-title .ais-Highlight-highlighted, .search-result-title mark { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #8: "#0366d6" */ .search-result-intro .ais-Highlight-highlighted, .search-result-intro mark { - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #8: "#fff", "rgba(27,31,35,.15)" */ @media (min-width: 768px) { @@ -13319,12 +13376,12 @@ color: #d3d3d3AA; } .Box-row-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } } /* source #9: "#c8e1ff" */ .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row { - border-color: #23932435; + border-color: #FFFFFE35; } /* source #9: "color: #586069" */ .breadcrumb-item-selected, @@ -13337,7 +13394,7 @@ } /* source #9: "#e6ebf1", "linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%)", "rgba(27,31,35,.35)" */ .btn.hover, .btn:hover { - background-image: linear-gradient(#4b1c27, #14271c); + background-image: linear-gradient(#4b1c27, #2d0c13); } /* source #9: "#28a745", "#28a745" */ .btn-primary { @@ -13365,7 +13422,7 @@ /* 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, .form-select:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 0 2px rgba(79, 140, 201, 0.3); box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, 0.3); } @@ -13401,7 +13458,7 @@ .filter-item.selected, .filter-item[aria-current]:not([aria-current="false"]), .filter-item[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -13421,17 +13478,17 @@ .subnav-item.selected, .subnav-item[aria-current]:not([aria-current="false"]), .subnav-item[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "color: #24292e", "border-bottom-color: #e36209" */ .UnderlineNav-item.selected, .UnderlineNav-item[aria-current]:not([aria-current="false"]), .UnderlineNav-item[role="tab"][aria-selected="true"] { color: #d3d3d3AA; - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #9: "color: #6a737d" */ .UnderlineNav-item.selected .UnderlineNav-octicon, @@ -13442,10 +13499,10 @@ /* source #9: "#0366d6", "#0366d6" */ .pagination .current, .pagination .current:hover, .pagination [aria-current]:not([aria-current="false"]) { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "#e1e4e8" */ .border-bottom { @@ -13548,7 +13605,7 @@ /* source #9: "#0366d6" */ .autocomplete-item.navigation-focus, .autocomplete-item.selected, .autocomplete-item:hover, .autocomplete-item[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -13570,7 +13627,7 @@ /* source #9: "#0366d6" */ .suggester li.navigation-focus, .suggester li:hover, .suggester li[aria-selected="true"] { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; color: #fefefe; background-image: none; } @@ -13634,7 +13691,7 @@ } /* source #9: "color: #0366d6" */ a.branch-name { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "#444d56","transparent" */ .dropdown-menu-dark.dropdown-menu-ne::before { @@ -13721,7 +13778,7 @@ color: #d3d3d3CC; background-color: #3a141d; border-color: #4b1c27; - box-shadow: inset 0 -2px 0 #14271c; + box-shadow: inset 0 -2px 0 #2d0c13; } /* source #9: "color: #cb2431" */ .markdown-body .absent { @@ -13993,7 +14050,7 @@ background-image: none; } .Toast-icon { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; } /* source #9: "transparent" */ @@ -14037,7 +14094,7 @@ } /* source #9: "#0366d6" */ .dropdown-item.selected, .dropdown-item:focus, .dropdown-item:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -14059,7 +14116,7 @@ } /* source #9: "#79b8ff" */ .loader-bar { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "color: #24292e" */ .step { @@ -14222,7 +14279,7 @@ .select-menu-item[aria-selected="true"] .description-inline, .select-menu-item[aria-selected="true"].select-menu-action, .select-menu-item[aria-selected="true"].selected { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -14263,7 +14320,7 @@ } /* source #9: "color: #0366d6" */ .select-menu-action:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "color: #586069" */ .select-menu-item-text .description, @@ -14276,7 +14333,7 @@ } /* source #9: "color: #0366d6" */ .select-menu-new-item-form .octicon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #9: "color: #d1d5da" */ .footer-octicon { @@ -14339,7 +14396,7 @@ } /* source #11: "color: #0366d6" */ .gitako-toggle-show-button-wrapper.collapsed .action-icon { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #11: "color: #6a737d" */ .gitako-toggle-show-button-wrapper .action-icon { @@ -14361,7 +14418,7 @@ } /* source #11: "color: #0366d6" */ .gitako-side-bar a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #11: "transparent", "#dfe2e5" */ .gitako-side-bar .rule, .gitako-side-bar hr { @@ -14373,7 +14430,7 @@ color: #d3d3d3CC; background-color: #3a141d; border-color: #4b1c27; - box-shadow: inset 0 -2px 0 #14271c; + box-shadow: inset 0 -2px 0 #2d0c13; } /* source #11: "#f6f8fa", "#d1d5da" */ .gitako-side-bar .gitako-resize-handler { @@ -14394,7 +14451,7 @@ /* source #11: "color: rgba(3, 47, 98, 0.55)" */ .gitako-side-bar .gitako-side-bar-body .octicon, .gitako-side-bar .gitako-side-bar-body .octicon-color { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #11: "#f1f8ff" */ .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .meta-bar { @@ -14417,7 +14474,7 @@ .gitako-side-bar .gitako-side-bar-body .gitako-side-bar-content .file-explorer .node-item { background: #3a141d; background-image: none; - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; border-bottom-color: #4b1c27; } /* source #11: "#fafbfc" */ @@ -14481,8 +14538,8 @@ } /* source #12: "#ddd", "#eee","#ddd" */ .click-for-more .button:hover { - background-color: #14271c; - background-image: linear-gradient(#2e2f24, #14271c); + background-color: #2d0c13; + background-image: linear-gradient(#2e2f24, #2d0c13); } /* source #13: "#ddd" */ .is-embedded .render-shell { @@ -14553,7 +14610,7 @@ } /* source #14: "color: #0366d6" */ a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "transparent", "#dfe2e5" */ .rule, hr { @@ -14564,7 +14621,7 @@ kbd { color: #d3d3d3CC; border-color: #4b1c27; - box-shadow: inset 0 -2px 0 #14271c; + box-shadow: inset 0 -2px 0 #2d0c13; } /* source #14: "#fff", "#d1d5da" */ .Box, kbd { @@ -14590,7 +14647,7 @@ } /* source #14: "color: #0366d6" */ .Box-row.navigation-focus .Box-row--drag-button { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "#fafbfc" */ .Box-row.navigation-focus.sortable-chosen { @@ -14619,7 +14676,7 @@ color: #d3d3d3AA; } .Box-row-link:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } } /* source #14: "#e1e4e8" */ @@ -14628,16 +14685,16 @@ } /* source #14: "#c8e1ff" */ .Box--blue { - border-color: #23932435; + border-color: #FFFFFE35; } /* source #14: "#f1f8ff", "#c8e1ff" */ .Box--blue .Box-header { background-color: #541827; - border-color: #23932435; + border-color: #FFFFFE35; } /* source #14: "#c8e1ff" */ .Box--blue .Box-body, .Box--blue .Box-footer, .Box--blue .Box-row { - border-color: #23932435; + border-color: #FFFFFE35; } /* source #14: "#d73a49" */ .Box--danger, .Box--danger .Box-body:last-of-type, @@ -14651,7 +14708,7 @@ } /* source #14: "#fffbdd" */ .Box-row--yellow { - background-color: #14271c; + background-color: #2d0c13; } /* source #14: "#f1f8ff" */ .Box-row--blue { @@ -14712,9 +14769,9 @@ } /* source #14: "#28a745", "#28a745" */ .btn-primary { - background-color: #239324; + background-color: #FFFFFE; color: #fefefe !important; - background-image: linear-gradient(-180deg, #239324 0%, #239324 90%); + background-image: linear-gradient(-180deg, #FFFFFE 0%, #FFFFFE 90%); } /* source #14: "box-shadow: 0 0 0 .2em rgba(52,208,88,.4)" */ .btn-primary.focus, .btn-primary:focus { @@ -14727,14 +14784,14 @@ /* source #14: "#279f43", "none", "rgba(27,31,35,0.5)" */ .btn-primary.selected, .btn-primary:active, .btn-primary[aria-selected="true"], [open] > .btn-primary { - background-color: #239324; + background-color: #FFFFFE; background-image: none; border-color: rgba(200, 200, 200, 0.3); } /* source #14: "background-color: #94d3a2", "none", "rgba(27,31,35,0.2)", "box-shadow: none" */ .btn-primary.disabled, .btn-primary:disabled, .btn-primary[aria-disabled="true"] { - background: #23932420; + background: #FFFFFE20; background-image: none; border-color: rgba(200, 200, 200, 0.15); box-shadow: none; @@ -14767,7 +14824,7 @@ } /* source #14: "color: #0366d6", "#fff" */ .btn-blue .Counter { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; background-image: none; } @@ -14803,29 +14860,29 @@ } /* source #14: "color: #0366d6", "#fff", "none" */ .btn-outline { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; background-image: none; } /* source #14: "#0366d6", "none", "#0366d6" */ .btn-outline.selected, .btn-outline:active, .btn-outline:hover, .btn-outline[aria-selected="true"], [open] > .btn-outline { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #0366d6", "#fff" */ .btn-outline.selected .Counter, .btn-outline:active .Counter, .btn-outline:hover .Counter, .btn-outline[aria-selected="true"] .Counter, [open] > .btn-outline .Counter { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; background-image: none; } /* source #14: "#0366d6" */ .btn-outline:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: rgba(27,31,35,.3)", "#fff", "rgba(27,31,35,0.15)", "box-shadow: none" */ .btn-outline.disabled, .btn-outline:disabled, @@ -14838,7 +14895,7 @@ } /* source #14: "color: #0366d6", "transparent" */ .btn-link { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: transparent; } /* source #14: "color: rgba(88,96,105,.5)" */ @@ -14848,7 +14905,7 @@ } /* source #14: "color: #0366d6", "#fff", "none" */ .btn-invisible { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: #3a141d; background-image: none; } @@ -14857,7 +14914,7 @@ .btn-invisible.zeroclipboard-is-hover, .btn-invisible:active, .btn-invisible:focus, .btn-invisible:hover, .btn-invisible[aria-selected="true"] { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: none; box-shadow: none; } @@ -14868,7 +14925,7 @@ } /* source #14: "color: #0366d6" */ .btn-octicon:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #959da5" */ .btn-octicon.disabled, .btn-octicon.disabled:hover, @@ -14886,7 +14943,7 @@ /* source #14: "color: #444d56", "#dfe2e5" */ .ellipsis-expander, .hidden-text-expander a { color: #d3d3d3CC; - background: #14271c; + background: #2d0c13; } /* source #14: "#c6cbd1" */ .ellipsis-expander:hover, .hidden-text-expander a:hover { @@ -14901,7 +14958,7 @@ } /* source #14: "color: #0366d6" */ .social-count:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #24292e", "#fff", "#d1d5da" */ #q, .form-control, .form-select { @@ -14913,7 +14970,7 @@ /* 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, .form-select.focus, .form-select:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; box-shadow: 0 0 0 2px rgba(79, 140, 201, 0.3); box-shadow: 0 0 0 2px rgba(/*[[base-color-rgb]]*/, 0.3); } @@ -14950,7 +15007,7 @@ } /* source #14: "#fffbdd" */ .form-checkbox label em.highlight { - background: #14271c; + background: #2d0c13; } /* source #14: "color: #586069" */ .form-checkbox .note, .hfields .form-group .form-group-header label, @@ -14960,7 +15017,7 @@ /* source #14: "color: #735c0f", "#fffbdd", "#d9d0a5" */ .form-warning { color: #EFA554; - background: #14271c; + background: #2d0c13; border-color: #542; } /* source #14: "#fff" */ @@ -15024,7 +15081,7 @@ /* source #14: "color: #735c0f", "#fffbdd", "#d9d0a5" */ .form-group.warn .warning { color: #EFA554; - background-color: #14271c; + background-color: #2d0c13; border-color: #542; } /* source #14: "#fffbdd" */ @@ -15081,7 +15138,7 @@ } /* source #14: "color: #0366d6" */ .drag-and-drop-error-info a { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "#dfe2e5" */ .upload-enabled textarea { @@ -15119,7 +15176,7 @@ } /* source #14: "#0366d6" */ :checked + .radio-label { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "#fff", "#d1d5da" */ .menu { @@ -15183,7 +15240,7 @@ } /* source #14: "color: #0366d6" */ a.tabnav-extra:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #586069", "transparent" */ .filter-list.pjax-active .filter-item { @@ -15192,7 +15249,7 @@ } /* source #14: "#0366d6" */ .filter-list.pjax-active .filter-item.pjax-active { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -15207,7 +15264,7 @@ /* source #14: "#0366d6" */ .filter-item.selected, .filter-item[aria-current], .filter-item[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -15251,7 +15308,7 @@ } /* source #14: "color: #0366d6", "transparent" */ .SideNav-subItem { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background-color: transparent; } /* source #14: "color: #24292e" */ @@ -15276,10 +15333,10 @@ /* source #14: "#0366d6", "#0366d6" */ .subnav-item.selected, .subnav-item[aria-current], .subnav-item[aria-selected="true"] { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #586069" */ .subnav-search-input { @@ -15317,7 +15374,7 @@ .UnderlineNav-item.selected, .UnderlineNav-item[aria-current], .UnderlineNav-item[role="tab"][aria-selected="true"] { color: #d3d3d3AA; - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #14: "color: #6a737d" */ .UnderlineNav-item.selected .UnderlineNav-octicon, @@ -15331,7 +15388,7 @@ } /* source #14: "color: #0366d6", "#fff", "#e1e4e8" */ .pagination a, .pagination em, .pagination span { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; background: #3a141d; background-image: none; border-color: #4b1c27; @@ -15345,10 +15402,10 @@ /* source #14: "#0366d6", "#0366d6" */ .pagination .current, .pagination .current:hover, .pagination [aria-current], .pagination [aria-current]:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #d1d5da", "#fafbfc" */ .pagination .disabled, .pagination .disabled:hover, .pagination .gap, @@ -15375,7 +15432,7 @@ /* source #14: "color: #735c0f", "#fffbdd", "rgba(27,31,35,0.15)" */ .flash-warn { color: #EFA554; - background-color: #14271c; + background-color: #2d0c13; } /* source #14: "color: #86181d", "#ffdce0", "rgba(27,31,35,0.15)" */ .flash-error, .flash-warn { @@ -15393,18 +15450,18 @@ } /* source #14: "#fffbdd" */ .warning { - background-color: #14271c; + background-color: #2d0c13; } /* source #14: "#1074e7" */ .btn-mktg { - border-color: #239324; + border-color: #FFFFFE; } /* source #14: "#0366d6", "#0366d6" */ .btn-mktg:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "box-shadow: 0 0 0 .2em rgba(3,102,214,.3)" */ .btn-mktg:focus { @@ -15417,10 +15474,10 @@ } /* source #14: "color: #0366d6", "#1074e7" */ .btn-outline-mktg, .btn-outline-mktg:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .btn-outline-mktg:hover { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "transparent", "none" */ .btn-transparent { @@ -15440,8 +15497,8 @@ } /* source #14: "#2188ff", "box-shadow: 0 0 0.2em #c8e1ff" */ .TimelineItem:target .TimelineItem-badge { - border-color: /*[[base-color]]*/ #239324; - box-shadow: 0 0 0.2em /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; + box-shadow: 0 0 0.2em /*[[base-color]]*/ #FFFFFE; } /* source #14: "color: #444d56", "#e1e4e8", "#fff" */ .TimelineItem-badge { @@ -15569,11 +15626,11 @@ } /* source #14: "#0366d6" */ .border-blue { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "#c8e1ff" */ .border-blue-light { - border-color: #23932435 !important; + border-color: #FFFFFE35 !important; } /* source #14: "#34d058" */ .border-green { @@ -15621,7 +15678,7 @@ } /* source #14: "#0366d6" */ .bg-blue { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none !important; } @@ -15743,19 +15800,19 @@ } /* source #14: "#c8e1ff" */ .bg-blue-2 { - background-color: #23932435 !important; + background-color: #FFFFFE35 !important; } /* source #14: "#79b8ff" */ .bg-blue-3 { - background-color: /*[[base-color]]*/ #239324 !important; + background-color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "color: #0366d6 !important" */ .color-blue-5 { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "#0366d6" */ .bg-blue-5 { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none !important; } @@ -15797,7 +15854,7 @@ } /* source #14: "#fffbdd" */ .bg-yellow-0, .bg-yellow-1 { - background-color: #14271c !important; + background-color: #2d0c13 !important; } /* source #14: "#fff5b1" */ .bg-yellow-2 { @@ -15869,7 +15926,7 @@ } /* source #14: "color: #0366d6 !important" */ .text-blue { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "color: #cb2431 !important" */ .text-red { @@ -15907,7 +15964,7 @@ } /* source #14: "color: #0366d6 !important" */ .link-gray:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "color: #24292e !important" */ .link-gray-dark { @@ -15915,7 +15972,7 @@ } /* source #14: "color: #0366d6 !important" */ .link-gray-dark:hover, .link-hover-blue:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "color: #586069 !important" */ .muted-link { @@ -15923,7 +15980,7 @@ } /* source #14: "color: #0366d6 !important" */ .muted-link:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } /* source #14: "transparent" */ .details-overlay[open] > summary::before { @@ -15963,7 +16020,7 @@ } /* source #14: "#0366d6" */ .dropdown-item:focus, .dropdown-item:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fefefe; background-image: none; } @@ -16058,11 +16115,11 @@ } /* source #14: "color: #0366d6" */ #site-search-results .search-result-title em { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } /* source #14: "#0366d6" */ #site-search-results .search-result-intro em { - border-bottom-color: #239324; + border-bottom-color: #FFFFFE; } /* source #14: "#fff", "#444d56" */ details-dialog { @@ -16166,8 +16223,8 @@ /* source #15: "#0366d6", "#0366d6" */ .js-expandable-line:hover .blob-num:not(:hover) + .blob-code, .js-expandable-line:hover .blob-num:not(:hover) .directional-expander:first-child { - border-color: /*[[base-color]]*/ #239324; - background: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; + background: /*[[base-color]]*/ #FFFFFE; color: #fff; background-image: none; } @@ -16177,7 +16234,7 @@ } /* source #15: "#c0d3eb" */ .rgh-collaborator { - border-color: #23932435; + border-color: #FFFFFE35; } body, body.bg-gray { @@ -16204,13 +16261,13 @@ table.files .octicon-file-submodule, .header-logo-invertocat:hover, .discussion-sidebar-toggle:hover, .commit-id:hover, body[class="page-responsive"] .files-list .octicon, .timeline-comment-action:hover { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .btn-link .octicon-kebab-horizontal:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } #notebook a:hover, #notebook a:focus { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; opacity: .8; } body.api li a code { @@ -16234,16 +16291,16 @@ option:hover, .listings-layout .nav li a:hover, .state-merged, .result.selected, .result:hover, .CommunityTemplate-highlight, .diff-table button.add-line-comment, .version-picker a:hover, .discussion-item-changes-marker.is-unread .discussion-item-icon { - background: /*[[base-color]]*/ #239324 !important; + background: /*[[base-color]]*/ #FFFFFE !important; } .context-button::after { - border-color: /*[[base-color]]*/ #239324 transparent transparent !important; + border-color: /*[[base-color]]*/ #FFFFFE transparent transparent !important; } .timeline-progressive-disclosure-button:hover, .release-timeline-tags .expander-text:hover .expander-dots, .review-comment[aria-selected=true], .timeline-comment[aria-selected=true] .review-summary .comment-body { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } @keyframes autofill { to { @@ -16264,12 +16321,12 @@ select:-webkit-autofill:focus { .header-nav-link:hover .dropdown-caret, .header-nav-link:focus .dropdown-caret, .header-navlink:hover .dropdown-caret, .header-navlink:focus .dropdown-caret, .HeaderNavlink:hover .dropdown-caret, .HeaderNavlink:focus .dropdown-caret { - border-top-color: /*[[base-color]]*/ #239324 !important; + border-top-color: /*[[base-color]]*/ #FFFFFE !important; } .table-list .table-list-item.unread .table-list-cell-checkbox, .Box-row--unread, .Box-row.unread { - border-left-color: /*[[base-color]]*/ #239324 !important; - box-shadow: 2px 0 0 /*[[base-color]]*/ #239324 inset !important; + border-left-color: /*[[base-color]]*/ #FFFFFE !important; + box-shadow: 2px 0 0 /*[[base-color]]*/ #FFFFFE inset !important; } /* notification icon - "transparent" border */ .notification-indicator .mail-status { @@ -16338,9 +16395,11 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #3a141d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { - outline-color: /*[[base-color]]*/ #239324 !important; +a:focus, button:focus { + outline-color: /*[[base-color]]*/ #FFFFFE !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, .focused .drag-and-drop, #adv_code_search .search-page-label:focus, @@ -16348,16 +16407,16 @@ input.focus[type="text"], #adv_code_search .focus.search-page-label, #ghd-settings input:focus, .intgrs-lstng-item:hover, .ajax-pagination-btn:focus, input[type="checkbox"]:focus, div.search-form input:focus, #search > input[name="q"]:focus { - border-color: /*[[base-color]]*/ #239324 !important; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ #239324 !important; - outline-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ #FFFFFE !important; + outline-color: /*[[base-color]]*/ #FFFFFE !important; } /* add border to site search field */ .radio-group input[type=radio] { position: relative !important; } .dragover textarea, .dragover .drag-and-drop { - box-shadow: 0 0 1px 1px /*[[base-color]]*/ #239324 !important; + box-shadow: 0 0 1px 1px /*[[base-color]]*/ #FFFFFE !important; } /* below style is workaround for Firefox. */ /* see: https://bugzilla.mozilla.org/show_bug.cgi?id=1394491 */ @@ -16512,7 +16571,7 @@ input.tree-finder-input, input.tree-finder-input:focus { box-shadow: 0 1px 3px rgba(0, 0, 0, .15), 0 8px 15px rgba(0, 0, 0, .3) !important; } .box-shadow-large, html[class*="ghh-"] .tooltipster-box { - box-shadow: 0 1px 15px #23932420 !important; + box-shadow: 0 1px 15px #FFFFFE20 !important; } img[src*="images/modules/checks"].box-shadow-large { box-shadow: 0 1px 15px #fff !important; @@ -16560,7 +16619,7 @@ body[data-render-url], .render-viewer, .comment-content, border-top-color: #ccc !important; } .js-menu-target:hover .dropdown-arrow { - border-top-color: /*[[base-color]]*/ #239324 !important; + border-top-color: /*[[base-color]]*/ #FFFFFE !important; } /* Add border-top to PR checks results blank slate */ aside.border-top + section.bg-gray-dark:not([class*="js-"]) { @@ -16618,7 +16677,7 @@ aside.border-top + section.bg-gray-dark:not([class*="js-"]) { } .topic-tag { padding: .2em .9em !important; - box-shadow: inset 0 0 0 1px #23932455 !important; + box-shadow: inset 0 0 0 1px #FFFFFE55 !important; } .topic-tag.topic-tag-outline { box-shadow: inset 0 0 0 1px #6d7c9c !important; @@ -16629,7 +16688,7 @@ aside.border-top + section.bg-gray-dark:not([class*="js-"]) { } @media screen and (min-width: 1024px) { .site-subnav .subnav-primary.selected, .site-subnav .subnav-primary:hover { - border-bottom-color: #239324 !important; + border-bottom-color: #FFFFFE !important; } } @media screen and (max-width: 768px) { @@ -16817,12 +16876,12 @@ svg.mobile-hero { mix-blend-mode: exclusion; } .discussion-timeline-actions { - border-top: 2px solid #14271c !important; + border-top: 2px solid #2d0c13 !important; background: none !important; } .discussion-timeline::before { margin-top: 2px !important; - background: #14271c !important; + background: #2d0c13 !important; height: calc(100% - 259px) !important; } .profile-timeline.discussion-timeline::before { @@ -16958,7 +17017,7 @@ ul.comparison-list, .wiki-custom-sidebar, .invitation-container, box-shadow: 0 0 0 .2em rgba(/*[[base-color-rgb]]*/, .3) !important; } .timeline-comment-group[aria-selected=true] .timeline-comment::before { - border-right-color: /*[[base-color]]*/ #239324 !important; + border-right-color: /*[[base-color]]*/ #FFFFFE !important; left: -17px !important; filter: none !important; } @@ -17067,7 +17126,7 @@ button.bg-white.subnav-link, main [style="background-color: #fcfdfd;"], border-color: #4b1c27; } .blob-num-context, #user-content-toc td, .markdown-body table tr:nth-child(2n) { - background: #14271c !important; + background: #2d0c13 !important; } .blame .blob-num, .blame-blob-num, .collection-card, .team-grid .team, .code-list .divider .blob-num, .code-list .divider .blob-code, @@ -17225,7 +17284,7 @@ td.inst, .metabox-loader, .pull-flag, .browser-content, .credit-card.normal .signature, .credit-card.amex .gladiator, .progress-bar:not(.anim-grow-x), .header-search-scope:hover, .CommunityTemplate-highlight--focus, .related-issue-item.navigation-focus { - background: #14271c !important; + background: #2d0c13 !important; } .discussion-item-locked .discussion-item-icon, .discussion-item-unlocked .discussion-item-icon, @@ -17330,11 +17389,11 @@ body[class="page-responsive"] .repo-list .private { } @media (hover: none) { .SelectMenu-item:active, .SelectMenu-item:focus { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; } .SelectMenu-item { - -webkit-tap-highlight-color: /*[[base-color]]*/ #239324; + -webkit-tap-highlight-color: /*[[base-color]]*/ #FFFFFE; } } .comment-form, #issues .labels, .listings .odd, .feed, #files .description, @@ -17363,15 +17422,15 @@ li.label, .filterbar, .divider-vertical, .user-commits td, } /* org page graphs - https://github.com/StylishThemes */ rect[style*="#gradient-"] { - fill: /*[[base-color]]*/ #239324 !important; + fill: /*[[base-color]]*/ #FFFFFE !important; } /* contribution calendar */ .calendar-graph rect[fill="#c6e48b"], .calendar-graph rect[fill="#7bc96f"], .calendar-graph rect[fill="#239a3b"], .calendar-graph rect[fill="#196127"], .contrib-legend li, .contribution-activity-listing .progress-bar[style*="background-color"] { - background-color: /*[[base-color]]*/ #239324 !important; - fill: /*[[base-color]]*/ #239324 !important; + background-color: /*[[base-color]]*/ #FFFFFE !important; + fill: /*[[base-color]]*/ #FFFFFE !important; } .calendar-graph .days-selected rect.day.active { stroke: #ddd !important; @@ -17450,11 +17509,11 @@ img[src*="//render.githubusercontent.com/render/math"] { } /* Activity Overview on userpage */ .activity-overview-axis, .activity-overview-point { - stroke: /*[[base-color]]*/ #239324 !important; + stroke: /*[[base-color]]*/ #FFFFFE !important; } #user-activity-overview .js-highlight-blob { - stroke: /*[[base-color]]*/ #239324 !important; - fill: /*[[base-color]]*/ #239324 !important; + stroke: /*[[base-color]]*/ #FFFFFE !important; + fill: /*[[base-color]]*/ #FFFFFE !important; opacity: .4 !important; } /* invert (rgb) */ @@ -17656,17 +17715,17 @@ svg.tick { fill: #444 !important; } svg.arrow[stroke="#1277eb"], svg path[stroke="#1074E7"] { - stroke: /*[[base-color]]*/ #239324 !important; + stroke: /*[[base-color]]*/ #FFFFFE !important; } .features-branch-diagram path[stroke="#c6d9ed"], .features-branch-diagram path[stroke="#4182C4"], .features-branch-diagram div:not(.active) .mega-octicon { - stroke: /*[[base-color]]*/ #239324 !important; - color: /*[[base-color]]*/ #239324 !important; + stroke: /*[[base-color]]*/ #FFFFFE !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .features-branch-diagram circle[fill="#4183c4"], .repo-list-stats a.issues:hover svg { - fill: /*[[base-color]]*/ #239324 !important; + fill: /*[[base-color]]*/ #FFFFFE !important; } .features-branch-diagram circle[stroke="#ffffff"] { stroke: #4b1c27 !important; @@ -17712,7 +17771,7 @@ div[style*="background-color: #eaecef"] { .hidden-text-expander a, .profile-timeline-month-heading::after, .review-comment-contents::after, .review-comment.is-comment-editing::after, .release-timeline-tags .expander-dots { - background: #14271c !important; + background: #2d0c13 !important; } ul.sidetabs li a:hover, .editbox h1, #issues .labels .admin, #issues .display .sortbar, #facebox .close, #issues_search .wrapper, @@ -17776,7 +17835,7 @@ body > .application-main > .bg-gray { .btn-mktg { background-color: rgba(79, 140, 201, .1) !important; background-color: rgba(/*[[base-color-rgb]]*/, 1) !important; - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; color: #ddd !important; } .btn-mktg:hover { @@ -17786,13 +17845,13 @@ body > .application-main > .bg-gray { background-color: transparent !important; border-color: rgba(79, 140, 201, .8) !important; border-color: rgba(/*[[base-color-rgb]]*/, .8) !important; - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .btn-outline-mktg:hover { background-color: transparent !important; border-color: rgba(79, 140, 201, .1) !important; border-color: rgba(/*[[base-color-rgb]]*/, 1) !important; - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .MarketplaceAnnouncement .btn-outline-mktg { background-color: transparent !important; @@ -17818,7 +17877,7 @@ aside [style*="background-color: #4764f1"] .text-white { .repo-file-upload-progress .repo-file-upload-meter, .btn.btn-blue:hover, .topic-tag-link:hover, .delete-topic-button:hover, .topic-tag-contrast .delete-topic-link:hover { - background: #23932445 !important; + background: #FFFFFE45 !important; } .new-user-avatar-cta, .full-commit .browse-button, .blob-history, .feature-banner, .recently-touched-branches, .recently-touched-branches li, @@ -17844,7 +17903,7 @@ div[style*="background-color: #044d6e"], .feature-banner, .recently-touched-branches, .timeline-progressive-disclosure-items button, .btn.btn-blue, .RecentBranches, .js-tag-input-tag, ul.search-results li .label, .topic-tag-action { - border: 1px solid #23932455 !important; + border: 1px solid #FFFFFE55 !important; } .repo-file-upload-progress, .project-updated-message, .delete-topic-button, .topic-tag-action .add-topic-button, .topic-tag-action .remove-topic-button, @@ -17854,13 +17913,13 @@ div[style*="background-color: #044d6e"], .repository-content > .Box--condensed:not(#readme):not(.file-holder), .border-blue, body[class="page-responsive"] .border-blue, .timeline-comment.current-user .tabnav-tab.selected { - border-color: #23932455 !important; + border-color: #FFFFFE55 !important; } .blob-history, .recently-touched-branches li { - border-bottom-color: #23932455 !important; + border-bottom-color: #FFFFFE55 !important; } .blob-history, .file-history-tease .participation { - border-top: 1px solid #23932455 !important; + border-top: 1px solid #FFFFFE55 !important; } .social-count::before { border-right-color: #333 !important; @@ -17914,10 +17973,10 @@ a.function-button, .add-pill-form, .gist .gist-file .gist-meta, ul.comparison-list > li.title, button.button, a.button, span.button, button.minibutton, a.minibutton, span.minibutton { background: linear-gradient(#3c161f, #3a141d) !important; - border-color: #14271c !important; + border-color: #2d0c13 !important; } .clone-url-button > .clone-url-link { - border-color: #14271c; + border-color: #2d0c13; } .search-form button, .issues-list-actions, a.gollum-minibutton, a.gollum-minibutton:visited { @@ -17927,7 +17986,7 @@ a.gollum-minibutton:visited { .asc .sort-type, .desc .sort-type, .mini-bar-graph, .issues-list>ul>li.unread, .timeline-commits-header, .usage-bar dd, .render-bar { background: linear-gradient(#3a141d, #3c161f) !important; - border-color: #14271c !important; + border-color: #2d0c13 !important; } .project-issue-body-blur { background: linear-gradient(to top, #3a141d, rgba(0, 0, 0, 0)) !important; @@ -18213,7 +18272,7 @@ button.project-header-link, td.icon, .facebox-close, } .tree-browser-result mark { - color: #f689f6 !important; + color: #e3ecf8 !important; } .timeline-comment-action, #suggestions a, .table-list-header-toggle .btn-link, @@ -18306,8 +18365,8 @@ a.pagehead-heading, a.text-inherit, .boxed-group > h3 a, /* Panels */ #posts #rss, .signup-button, .hero h1, .plan.personal, .caption, .centered-graphic, .login_form h1 { - background-color: /*[[base-color]]*/ #239324 !important; - border-color: /*[[base-color]]*/ #239324 !important; + background-color: /*[[base-color]]*/ #FFFFFE !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } /* Red panel */ #forkqueue .legend .unclean, .unclean td, .chzn-results .no-results, @@ -18317,7 +18376,7 @@ a.pagehead-heading, a.text-inherit, .boxed-group > h3 a, .menu-item-danger.navigation-focus, .menu-item-danger.selected:hover, .menu-item-danger.selected.navigation-focus { background: #911 !important; - border-color: #14271c !important; + border-color: #2d0c13 !important; } .btn-close-issue:hover, .btn-danger:hover, .minibutton.danger:hover, .remove-topic-button:hover, .btn-danger:active, .btn-danger.selected, @@ -18429,7 +18488,7 @@ body[class="page-responsive"] .btn-danger:disabled { .discussion-item-review.is-pending .comment-form-head.tabnav, .timeline-comment.unread-item .timeline-comment-header, .Label.bg-yellow, .code-list-item-private .blob-num { - background-color: #14271c !important; + background-color: #2d0c13 !important; border-color: #542 !important; color: #ddd !important; } @@ -18443,7 +18502,7 @@ body[class="page-responsive"] .btn-danger:disabled { border-right-color: #542 !important; } .timeline-comment-wrapper .timeline-comment.unread-item::after { - border-right-color: #14271c !important; + border-right-color: #2d0c13 !important; } #toc .octicon-diff-modified, .secret .repo-label span, .api .s2 { color: #b74 !important; @@ -18455,7 +18514,7 @@ body[class="page-responsive"] .btn-danger:disabled { .code-list-item-private .divider .blob-num, .AnnotationsPopover .bg-yellow-light.flash-warn, .js-notification-search-autocomplete-results .bg-yellow-light { - background-color: #14271c !important; + background-color: #2d0c13 !important; } /* semi-transparent brown */ .compare-pr-placeholder, .compare-cutoff, .diff-cutoff, @@ -18465,8 +18524,8 @@ body[class="page-responsive"] .btn-danger:disabled { .user-list em, .wiki-list em, .blob-code .bg-yellow-light, .codesearch-results #code_search_results .bg-yellow-light { background: #3d553e !important; - border: 1px solid #23932433 !important; - color: #239324 !important; + border: 1px solid #FFFFFE33 !important; + color: #FFFFFE !important; } .btn.btn-secret { background: linear-gradient(#321, #210) !important; @@ -18601,8 +18660,8 @@ a.stale-files-tab-link { } /* pjax loading */ .pjax-loader-bar .progress { - background: /*[[base-color]]*/ #239324 !important; - box-shadow: 0 0 10px /*[[base-color]]*/ #239324 !important; + background: /*[[base-color]]*/ #FFFFFE !important; + box-shadow: 0 0 10px /*[[base-color]]*/ #FFFFFE !important; } ul.view-modes-menu { background-image: url("data:image/gif;base64,R0lGODlhBwAEAIAAACIiIv///yH5BAEAAAEALAAAAAAHAAQAAAIIhA+BGWoNWSgAOw==") !important; @@ -18623,7 +18682,7 @@ body.enterprise .new-discussion-timeline .previewable-comment-form .comment-form background: #3c161f; } body.enterprise .timeline-comment-wrapper .timeline-comment.current-user::before { - border-right-color: #23932455; + border-right-color: #FFFFFE55; } body.enterprise .timeline-comment-wrapper .timeline-comment.current-user::after { border-right-color: #541827; @@ -18636,7 +18695,7 @@ body.enterprise .timeline-new-comment .timeline-comment::after { } body.enterprise .commit-tease { background-color: #541827; - border-color: #23932455; + border-color: #FFFFFE55; } /* HACK: Fix review comment timeline */ /* https://github.com/nodejs/node/pull/8519#r78637092 */ @@ -19011,7 +19070,7 @@ table.files { /* git diff line numbers (med green) */ .gi .diff-line-num, .gi .diff-line-code, .gi .diff-line-pre { background: #020 !important; - border-color: #23932420 !important; + border-color: #FFFFFE20 !important; } /* git diff line deletions (med red) */ .gd .diff-line-num, .highlight .err, .gd .diff-line-code, .gd .diff-line-pre { @@ -19045,10 +19104,10 @@ textarea { } /* rules for help pages */ .search-result-title .ais-Highlight-highlighted { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .search-result-intro .ais-Highlight-highlighted { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } .ais-SearchBox-resetIcon, .octicon-logo-github { fill: #c0c0c0 !important; @@ -19127,7 +19186,7 @@ html.octotree:not(.octotree-show) .zhc-board--is-fullscreen .zhc-menu-bar { } .octotree-view-header, .octotree-toggle { background: linear-gradient(#3c161f, #3a141d) !important; - border-color: #14271c !important; + border-color: #2d0c13 !important; } .octotree-github-sidebar a.octotree-toggle, a.octotree-toggle:not(.octotree-loading):hover > span::after { @@ -19146,7 +19205,7 @@ a.octotree-toggle:not(.octotree-loading):hover > span::after { .octotree-sidebar.octotree-github-sidebar .octotree-views .octotree-view, .octotree-sidebar.octotree-github-sidebar .octotree-toggle > span, .octotree-sidebar.octotree-github-sidebar .octotree-toggle > .octotree-toggle-icon::before { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .octotree-sidebar.octotree-github-sidebar .octotree-toggle .popup { background-color: #3a141d !important; @@ -19169,10 +19228,10 @@ a.octotree-toggle:not(.octotree-loading):hover > span::after { } a.notifications-dropdown-see-all { background: #2e2f24 !important; - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { - background: /*[[base-color]]*/ #239324 !important; + background: /*[[base-color]]*/ #FFFFFE !important; color: #e2e2e2 !important; } .notifications-dropdown-arrow { @@ -19231,7 +19290,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #ddd !important; } .graphiql-container .CodeMirror-foldmarker { - background: /*[[base-color]]*/ #239324 !important; + background: /*[[base-color]]*/ #FFFFFE !important; } .graphiql-container .execute-button svg { fill: currentColor !important; @@ -19266,7 +19325,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } .CodeMirror-hint-active { color: #f0f0f0; - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } .CodeMirror-hint-active .CodeMirror-hint-description { color: #f0f0f0 !important; @@ -19274,7 +19333,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { /*[[syntax-theme]]*//*[[syntax-codemirror]]*//*[[syntax-jupyter]]*/ /* usercss build - remove start *//*! GitHub: Twilight */ :root { - --ghd-code-background: #14271c; + --ghd-code-background: #2d0c13; --ghd-code-color: #ccc; } .pl-c, .pl-c span { @@ -19300,19 +19359,19 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.other.color */ .pl-cos { - color: #77EA6E !important; + color: #ebc190 !important; } /* constant.other.symbol */ .pl-e { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity */ .pl-ef { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.function */ .pl-en { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.name */ .pl-enc { @@ -19320,11 +19379,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.class */ .pl-enf { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.name.function */ .pl-enm { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.name.method-name */ .pl-ens { @@ -19332,15 +19391,15 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.section */ .pl-ent { - color: #F63E54 !important; + color: #f06b7e !important; } /* entity.name.tag */ .pl-entc { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.name.type.class */ .pl-enti { - color: #f689f6 !important; + color: #e3ecf8 !important; font-weight: bold !important; } /* entity.name.type.instance */ @@ -19349,7 +19408,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.type.module */ .pl-eoa { - color: #F63E54 !important; + color: #f06b7e !important; } /* entity.other.attribute-name */ .pl-eoac { @@ -19361,27 +19420,27 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.entity */ .pl-eoai { - color: #F63E54 !important; + color: #f06b7e !important; } /* entity.other.attribute-name.id */ .pl-eoai .pl-pde { - color: #F63E54 !important; + color: #f06b7e !important; } /* punctuation.definition.entity */ .pl-eoi { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.other.inherited-class */ .pl-k { - color: #F63E54 !important; + color: #f06b7e !important; } /* keyword */ .pl-ko { - color: #F63E54 !important; + color: #f06b7e !important; } /* keyword.operator */ .pl-kolp { - color: #F63E54 !important; + color: #f06b7e !important; } /* keyword.operator.logical.python */ .pl-kos { @@ -19397,12 +19456,12 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* support.function */ .pl-mb { - color: #77EA6E !important; + color: #ebc190 !important; font-weight: bold !important; } /* markup.bold */ .pl-mc { - color: #F63E54 !important; + color: #f06b7e !important; } /* markup.changed */ .pl-mh { @@ -19415,12 +19474,12 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.heading punctuation.definition.heading */ .pl-mi { - color: #F63E54 !important; + color: #f06b7e !important; font-style: italic !important; } /* markup.italic */ .pl-ml { - color: #77EA6E !important; + color: #ebc190 !important; } /* markup.list */ .pl-mm { @@ -19440,15 +19499,15 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* markup.quote */ .pl-mr { - color: #F63E54 !important; + color: #f06b7e !important; } /* meta.require */ .pl-ms { - color: #F63E54 !important; + color: #f06b7e !important; } /* meta.selector */ .pl-pdb { - color: #77EA6E !important; + color: #ebc190 !important; font-weight: bold !important; } /* punctuation.definition.bold */ @@ -19466,12 +19525,12 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.entity */ .pl-pdi { - color: #F63E54 !important; + color: #f06b7e !important; font-style: italic !important; } /* punctuation.definition.italic */ .pl-pds { - color: #77EA6E !important; + color: #ebc190 !important; } /* punctuation.definition.string */ .pl-pdv { @@ -19487,11 +19546,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.section.embedded source */ .pl-s { - color: #C2FFAA !important; + color: #ffe3cd !important; } /* storage */ .pl-s1 { - color: #77EA6E !important; + color: #ebc190 !important; } /* string */ .pl-s2 { @@ -19499,7 +19558,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* source */ .pl-mp .pl-s3 { - color: #F63E54 !important; + color: #f06b7e !important; } /* support */ .pl-s3 { @@ -19519,23 +19578,23 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* support.function */ .pl-smc { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* storage.modifier.c */ .pl-smi { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* storage.modifier.import */ .pl-smp { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* storage.modifier.package */ .pl-sok { - color: #F63E54 !important; + color: #f06b7e !important; } /* support.other.keyword */ .pl-sol { - color: #77EA6E !important; + color: #ebc190 !important; } /* string.other.link */ .pl-som { @@ -19547,19 +19606,19 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* string.regexp */ .pl-sra { - color: #F63E54 !important; + color: #f06b7e !important; } /* string.regexp string.regexp.arbitrary-repetition */ .pl-src { - color: #F63E54 !important; + color: #f06b7e !important; } /* string.regexp.character-class */ .pl-sre { - color: #F63E54 !important; + color: #f06b7e !important; } /* string.regexp source.ruby.embedded */ .pl-st { - color: #F63E54 !important; + color: #f06b7e !important; } /* support.type */ .pl-stj { @@ -19583,7 +19642,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* variable.interpolation */ .pl-vo { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* variable.other */ .pl-vpf { @@ -19657,17 +19716,17 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* variable.parameter.url */ .pl-entl { - color: #f689f6 !important; + color: #e3ecf8 !important; } /* entity.name.tag.label */ .pl-corl, .highlight .pl-corl span.x { - color: #C2FFAA !important; + color: #ffe3cd !important; text-decoration: underline !important; } /* links */ .pl-token.active, .pl-token:hover { - background: #f689f6 !important; - color: #f689f6 !important; + background: #e3ecf8 !important; + color: #e3ecf8 !important; } /*! CodeMirror: Twilight */ /* based on https://github.com/codemirror/CodeMirror/blob/master/theme/twilight.css */ @@ -19692,7 +19751,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: white !important; } .cm-keyword { - color: #C2FFAA !important; + color: #ffe3cd !important; } .cm-atom { color: #fc0 !important; @@ -19710,25 +19769,25 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #607392 !important; } .cm-operator { - color: #F63E54 !important; + color: #f06b7e !important; } .cm-comment { - color: #f689f6 !important; + color: #e3ecf8 !important; font-style: italic !important; font-weight: normal !important; } .cm-string { - color: #77EA6E !important; + color: #ebc190 !important; } .cm-string-2 { color: #bd6b18 !important; } .cm-meta { - background-color: #14271c !important; + background-color: #2d0c13 !important; color: #f7f7f7 !important; } .cm-builtin { - color: #F63E54 !important; + color: #f06b7e !important; } .cm-tag { color: #997643 !important; @@ -19737,7 +19796,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d6bb6d !important; } .cm-header { - color: #DC3A3A !important; + color: #e14987 !important; } .cm-hr { color: #aeaeae !important; @@ -19758,7 +19817,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { #notebook .input_area:not(.highlight), body.api pre, :is(#notebook, body.api) .highlight, :is(#notebook, body.api) .highlight pre, :is(#notebook, body.api) .highlight table { - background: #14271c !important; + background: #2d0c13 !important; color: #ccc !important; } :is(#notebook, body.api) .highlight .hll, .highlight code .hll { @@ -19780,7 +19839,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Name */ :is(#notebook, body.api) .highlight .k, .highlight code .k { - color: #F63E54 !important; + color: #f06b7e !important; } /* Keyword */ :is(#notebook, body.api) .highlight .l, .highlight code .l { @@ -19808,7 +19867,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Other */ :is(#notebook, body.api) .highlight .w, .highlight code .w { - color: #14271c !important; + color: #2d0c13 !important; } /* Text.Whitespace */ :is(#notebook, body.api) .highlight .cm, .highlight code .cm { @@ -19891,11 +19950,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* Keyword.Type */ :is(#notebook, body.api) .highlight .na, .highlight code .na { - color: #C2FFAA !important; + color: #ffe3cd !important; } /* Name.Attribute */ :is(#notebook, body.api) .highlight .nb, .highlight code .nb { - color: #F63E54 !important; + color: #f06b7e !important; } /* Name.Builtin */ :is(#notebook, body.api) .highlight .nc, .highlight code .nc { @@ -19927,7 +19986,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: #F63E54 !important; + color: #f06b7e !important; font-weight: bold !important; } /* Name.Tag */ @@ -19957,29 +20016,29 @@ 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: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Backtick */ :is(#notebook, body.api) .highlight .sc, .highlight code .sc { - color: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Char */ :is(#notebook, body.api) .highlight .sd, .highlight code .sd { - color: #77EA6E !important; + color: #ebc190 !important; font-style: italic !important; } /* Literal.String.Doc */ :is(#notebook, body.api) .highlight .s2, .highlight code .s2 { - color: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Double */ :is(#notebook, body.api) .highlight .se, .highlight code .se { - color: #C2FFAA !important; + color: #ffe3cd !important; font-weight: bold !important; } /* Literal.String.Escape */ :is(#notebook, body.api) .highlight .sh, .highlight code .sh { - color: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Heredoc */ :is(#notebook, body.api) .highlight .si, .highlight code .si { @@ -19988,7 +20047,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: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Other */ :is(#notebook, body.api) .highlight .sr, .highlight code .sr { @@ -19996,7 +20055,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: #77EA6E !important; + color: #ebc190 !important; } /* Literal.String.Single */ :is(#notebook, body.api) .highlight .ss, .highlight code .ss { @@ -20030,7 +20089,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { #notebook .input_area, .blob-code-context, .markdown-format code, .api pre, .api li:not(a) code, .hook-delivery-details pre, .hook-delivery-container pre, .code-list .file-box, .CodeMirror, .highlight.bg-gray { - background-color: var(--ghd-code-background, #14271c) !important; + background-color: var(--ghd-code-background, #2d0c13) !important; color: #d3d3d377 !important; } .flash p code { @@ -20059,9 +20118,9 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-size: 8px 10px !important; } input:focus, select:focus { - border-color: /*[[base-color]]*/ #239324 !important; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ #239324 !important; - outline-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 2px /*[[base-color]]*/ #FFFFFE !important; + outline-color: /*[[base-color]]*/ #FFFFFE !important; } .btn-submit { background: linear-gradient(#407045, #305530) !important; @@ -20093,7 +20152,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #d3d3d3EE; } h3 a { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .directory-toc h3 a { color: #d3d3d3EE !important; @@ -20193,7 +20252,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #444; } .hidden-text-expander a, .ellipsis-expander { - background: #14271c; + background: #2d0c13; } .hidden-text-expander a:hover, .ellipsis-expander:hover { background-color: #484848; @@ -20267,11 +20326,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { .btn-outline:active .Counter, .btn-outline.selected .Counter, [open] > .btn-outline .Counter, .social-count:hover, .drag-and-drop-error-info a, .link-mktg:hover { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .text-blue, .link-hover-blue:hover, .btn-outline-mktg:hover, a:not(.btn-mktg):hover, a:hover .hover-link { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .btn .Counter, .form-checkbox .note, .hfields .form-group dt label, .drag-and-drop, .drag-and-drop-error-info, h2.account, p.explain, .lead, @@ -20302,34 +20361,34 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #541827 !important; } .border-blue-light { - border-color: #23932455 !important; + border-color: #FFFFFE55 !important; } .link-mktg, .permalink-content blockquote, .callout-permalink-text-only-link:hover h3 { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .text-blue-mktg, .btn-outline-mktg, a:hover, a:hover .hover-link { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .btn-outline:hover, .btn-outline:active, .btn-outline.selected, [open] > .btn-outline, .btn-mktg:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #fff; } .bg-blue { - background-color: /*[[base-color]]*/ #239324 !important; + background-color: /*[[base-color]]*/ #FFFFFE !important; color: #fff !important; } .btn-outline:hover, .btn-outline:active, .btn-outline.selected, [open] > .btn-outline, .btn-outline:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } .border-blue { - border-color: /*[[base-color]]*/ #239324 !important; + border-color: /*[[base-color]]*/ #FFFFFE !important; } .form-control.focus, .form-control:focus, .form-select.focus, .form-select:focus { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; } .form-group dd h4.is-error, .form-group.required dt label::after, .form-group.errored label, .status-indicator-failed .octicon-x, @@ -20395,10 +20454,10 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #cb4 !important; } .form-checkbox label em.highlight, .form-warning { - background: #14271c; + background: #2d0c13; } .form-group.warn .warning { - background-color: #14271c; + background-color: #2d0c13; } .form-group.warn .warning::after { border-bottom-color: #321; @@ -20460,17 +20519,17 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } .link-mktg, .permalink-content blockquote, .callout-permalink-text-only-link:hover h3 { - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .text-blue-mktg, .btn-outline-mktg, a:hover, a:hover .hover-link { - color: /*[[base-color]]*/ #239324 !important; + color: /*[[base-color]]*/ #FFFFFE !important; } .btn-outline-mktg { box-shadow: 0 1px 0 0 rgba(79, 140, 201, .5); box-shadow: 0 1px 0 0 rgba(/*[[base-color-rgb]]*/, .5); } .btn-outline-mktg:hover { - box-shadow: 0 1px 0 0 /*[[base-color]]*/ #239324; + box-shadow: 0 1px 0 0 /*[[base-color]]*/ #FFFFFE; } .position-relative.bg-white { background-color: #37131b !important; @@ -20571,10 +20630,10 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #4f1b27; } .intercom-comment-container-user .intercom-comment:not(.intercom-comment-with-body) { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; } .intercom-attribute-collector-card-body { - background-color: #14271c; + background-color: #2d0c13; color: #eee; box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .1), @@ -20661,22 +20720,22 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { background-color: #555; } .quick-reply-button, button[class*="intercom-"] { - border-color: /*[[base-color]]*/ #239324; + border-color: /*[[base-color]]*/ #FFFFFE; background-color: #37131b; - color: /*[[base-color]]*/ #239324; + color: /*[[base-color]]*/ #FFFFFE; } .quick-reply-button:hover, button[class*="intercom-"]:hover { - background-color: /*[[base-color]]*/ #239324; + background-color: /*[[base-color]]*/ #FFFFFE; color: #eee; } button[class*="intercom-"] svg path { - fill: /*[[base-color]]*/ #239324; + fill: /*[[base-color]]*/ #FFFFFE; } button[class*="intercom-"]:hover svg path { fill: #eee; } .intercom-launcher [class*="css-"] { - background: /*[[base-color]]*/ #239324; + background: /*[[base-color]]*/ #FFFFFE; } } @-moz-document regexp("^https?://github\.com/features/(security|actions)") { diff --git a/themes/cinnamon.user.css b/themes/cinnamon.user.css index 450e17d..24fb36c 100644 --- a/themes/cinnamon.user.css +++ b/themes/cinnamon.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Cinnamon @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #343277 !important; --color-avatar-bg: #343277 !important; + --color-btn-primary-bg: #54e255 !important; + --color-btn-primary-hover-bg: #54e255 !important; + --color-btn-primary-fg: #393784 !important; + --color-btn-primary-icon: #393784 !important; --color-fg-default: #f3edff !important; - --color-fg-muted: #f3edffAA !important; + --color-btn-text: #f6f1ff !important; + --color-attention-subtle: #4e4b7399 !important; + --color-attention-muted: #4e4b7399 !important; + --color-accent-subtle: #54e255AA !important; --color-auto-gray-3: #343277 !important; --color-auto-gray-1: #343277 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #3f3c91 !important; --color-bg-discussions-row-emoji-box: #4a4a8c !important; --color-current-user-tip-border: #4a4a8c !important; + --color-btn-bg: #4a4a8c !important; + --color-fg-muted: #dfe19f !important; --color-underlinenav-counter-text: #f3edff !important; --color-text-primary: #FFD448 !important; --color-text-link: #54e255 !important; @@ -106,6 +115,10 @@ color: #ffffff !important; } +span.Button-label:hover { + color: #393784; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393784; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #dfe19f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #4a4a8c; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #37357f !important; + } + + .kVpYHc { + border: #413e96 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #4a4a8c !important; + border-color: #54e255 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #4a4a8c !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2f2d69 !important; + } + + .beVJOq, + .cYvszO { + background-color: #333184 !important; + border: #413e96 !important; + } + + .kGYPAT { + color: #54e255 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #343277; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #54e255 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/coconut.user.css b/themes/coconut.user.css index 471416c..e3d9ec0 100644 --- a/themes/coconut.user.css +++ b/themes/coconut.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Coconut @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #312b3a !important; --color-avatar-bg: #312b3a !important; + --color-btn-primary-bg: #d2b503 !important; + --color-btn-primary-hover-bg: #d2b503 !important; + --color-btn-primary-fg: #3a3143 !important; + --color-btn-primary-icon: #3a3143 !important; --color-fg-default: #d3d3d3 !important; - --color-fg-muted: #d3d3d3AA !important; + --color-btn-text: #b4afa2 !important; + --color-attention-subtle: #49433899 !important; + --color-attention-muted: #49433899 !important; + --color-accent-subtle: #d2b503AA !important; --color-auto-gray-3: #312b3a !important; --color-auto-gray-1: #312b3a !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #393243 !important; --color-bg-discussions-row-emoji-box: #3e3948 !important; --color-current-user-tip-border: #3e3948 !important; + --color-btn-bg: #3e3948 !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #d3d3d3 !important; --color-text-primary: #48eae4 !important; --color-text-link: #d2b503 !important; @@ -106,6 +115,10 @@ color: #605a6c !important; } +span.Button-label:hover { + color: #3a3143; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #3a3143; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #3e3948; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #312c3a !important; + } + + .kVpYHc { + border: #453b4e !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #3e3948 !important; + border-color: #d2b503 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #3e3948 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #473b58 !important; + } + + .beVJOq, + .cYvszO { + background-color: #2d2735 !important; + border: #453b4e !important; + } + + .kGYPAT { + color: #d2b503 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #312b3a; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d2b503 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/darkness_dark.user.css b/themes/darkness_dark.user.css index 3863c8e..ace9f87 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #0a0904 !important; --color-avatar-bg: #0a0904 !important; + --color-btn-primary-bg: #e99745 !important; + --color-btn-primary-hover-bg: #e99745 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #c3c3c3 !important; - --color-fg-muted: #c3c3c3AA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #26240999 !important; + --color-attention-muted: #26240999 !important; + --color-accent-subtle: #e99745AA !important; --color-auto-gray-3: #0a0904 !important; --color-auto-gray-1: #0a0904 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #14110d !important; --color-bg-discussions-row-emoji-box: #1e1c19 !important; --color-current-user-tip-border: #1e1c19 !important; + --color-btn-bg: #1e1c19 !important; + --color-fg-muted: #7c7262 !important; --color-underlinenav-counter-text: #c3c3c3 !important; --color-text-primary: #3492b1 !important; --color-text-link: #e99745 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7c7262!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #1e1c19; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #090802 !important; + } + + .kVpYHc { + border: #1c1500 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #1e1c19 !important; + border-color: #e99745 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #1e1c19 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2b190e !important; + } + + .beVJOq, + .cYvszO { + background-color: #100d03 !important; + border: #1c1500 !important; + } + + .kGYPAT { + color: #e99745 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #0a0904; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e99745 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/darkness_light.user.css b/themes/darkness_light.user.css index 35666dd..59977b0 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFFEF9 !important; --color-avatar-bg: #FFFEF9 !important; + --color-btn-primary-bg: #F5C83C !important; + --color-btn-primary-hover-bg: #F5C83C !important; + --color-btn-primary-fg: #A8930A !important; + --color-btn-primary-icon: #A8930A !important; --color-fg-default: #000000 !important; - --color-fg-muted: #000000AA !important; + --color-btn-text: #546E7A !important; + --color-attention-subtle: #f1eeba99 !important; + --color-attention-muted: #f1eeba99 !important; + --color-accent-subtle: #F5C83CAA !important; --color-auto-gray-3: #FFFEF9 !important; --color-auto-gray-1: #FFFEF9 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #FFF6E4 !important; --color-bg-discussions-row-emoji-box: #fffef7 !important; --color-current-user-tip-border: #fffef7 !important; + --color-btn-bg: #fffef7 !important; + --color-fg-muted: #aaaaaa !important; --color-underlinenav-counter-text: #000000 !important; --color-text-primary: #3492b1 !important; --color-text-link: #F5C83C !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #A8930A; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #A8930A; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #aaaaaa!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #fffef7; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #FFFEF9 !important; + } + + .kVpYHc { + border: #f1f4e0 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #fffef7 !important; + border-color: #F5C83C !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #fffef7 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #fff8e0 !important; + } + + .beVJOq, + .cYvszO { + background-color: #fffff7 !important; + border: #f1f4e0 !important; + } + + .kGYPAT { + color: #F5C83C !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFFEF9; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #F5C83C !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/echidna.user.css b/themes/echidna.user.css index 6eb1dfb..c0c56a4 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #121014 !important; --color-avatar-bg: #121014 !important; + --color-btn-primary-bg: #ECECEC !important; + --color-btn-primary-hover-bg: #ECECEC !important; + --color-btn-primary-fg: #222222 !important; + --color-btn-primary-icon: #222222 !important; --color-fg-default: #a8a8a8 !important; - --color-fg-muted: #a8a8a8AA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #322f1c99 !important; + --color-attention-muted: #322f1c99 !important; + --color-accent-subtle: #ECECECAA !important; --color-auto-gray-3: #121014 !important; --color-auto-gray-1: #121014 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1a171c !important; --color-bg-discussions-row-emoji-box: #212425 !important; --color-current-user-tip-border: #212425 !important; + --color-btn-bg: #212425 !important; + --color-fg-muted: #75aaab !important; --color-underlinenav-counter-text: #a8a8a8 !important; --color-text-primary: #BD93F9 !important; --color-text-link: #ECECEC !important; @@ -106,6 +115,10 @@ color: #6f7779 !important; } +span.Button-label:hover { + color: #222222; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #222222; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #75aaab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #212425; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #171519 !important; + } + + .kVpYHc { + border: #1e2021 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #212425 !important; + border-color: #ECECEC !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #212425 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #191e1c !important; + } + + .beVJOq, + .cYvszO { + background-color: #110f13 !important; + border: #1e2021 !important; + } + + .kGYPAT { + color: #ECECEC !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #121014; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #ECECEC !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/emilia_dark.user.css b/themes/emilia_dark.user.css index 96b3a72..883e139 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #492d5a !important; --color-avatar-bg: #492d5a !important; + --color-btn-primary-bg: #a53ba0 !important; + --color-btn-primary-hover-bg: #a53ba0 !important; + --color-btn-primary-fg: #d29eff !important; + --color-btn-primary-icon: #d29eff !important; --color-fg-default: #DADADA !important; - --color-fg-muted: #DADADAAA !important; + --color-btn-text: #c799e3 !important; + --color-attention-subtle: #60455599 !important; + --color-attention-muted: #60455599 !important; + --color-accent-subtle: #a53ba0AA !important; --color-auto-gray-3: #492d5a !important; --color-auto-gray-1: #492d5a !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #543466 !important; --color-bg-discussions-row-emoji-box: #553967 !important; --color-current-user-tip-border: #553967 !important; + --color-btn-bg: #553967 !important; + --color-fg-muted: #a775ab !important; --color-underlinenav-counter-text: #DADADA !important; --color-text-primary: #C1A2F8 !important; --color-text-link: #a53ba0 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #d29eff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #d29eff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #a775ab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #553967; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #4c2e5c !important; + } + + .kVpYHc { + border: #553a63 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #553967 !important; + border-color: #a53ba0 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #553967 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #5d3668 !important; + } + + .beVJOq, + .cYvszO { + background-color: #4e2d62 !important; + border: #553a63 !important; + } + + .kGYPAT { + color: #a53ba0 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #492d5a; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #a53ba0 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/emilia_light.user.css b/themes/emilia_light.user.css index 9f683c7..a2ff34c 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #fbf0ff !important; --color-avatar-bg: #fbf0ff !important; + --color-btn-primary-bg: #82357d !important; + --color-btn-primary-hover-bg: #82357d !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #eee4be99 !important; + --color-attention-muted: #eee4be99 !important; + --color-accent-subtle: #82357dAA !important; --color-auto-gray-3: #fbf0ff !important; --color-auto-gray-1: #fbf0ff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #f1dcf7 !important; --color-bg-discussions-row-emoji-box: #e7d8ee !important; --color-current-user-tip-border: #e7d8ee !important; + --color-btn-bg: #e7d8ee !important; + --color-fg-muted: #8864ac !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #7C75EF !important; --color-text-link: #82357d !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #8864ac!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #e7d8ee; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fbf0ff !important; + } + + .kVpYHc { + border: #e9d8f6 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #e7d8ee !important; + border-color: #82357d !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #e7d8ee !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #f6e0ff !important; + } + + .beVJOq, + .cYvszO { + background-color: #faecff !important; + border: #e9d8f6 !important; + } + + .kGYPAT { + color: #82357d !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #fbf0ff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #82357d !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/essex.user.css b/themes/essex.user.css index 1e1b05b..5d73ef6 100644 --- a/themes/essex.user.css +++ b/themes/essex.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Essex @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #001d39 !important; --color-avatar-bg: #001d39 !important; + --color-btn-primary-bg: #D53232 !important; + --color-btn-primary-hover-bg: #D53232 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #d7d7d7 !important; - --color-fg-muted: #d7d7d7AA !important; + --color-btn-text: #d0d0d0 !important; + --color-attention-subtle: #1f393c99 !important; + --color-attention-muted: #1f393c99 !important; + --color-accent-subtle: #D53232AA !important; --color-auto-gray-3: #001d39 !important; --color-auto-gray-1: #001d39 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #261a30 !important; --color-bg-discussions-row-emoji-box: #163756 !important; --color-current-user-tip-border: #163756 !important; + --color-btn-bg: #163756 !important; + --color-fg-muted: #ad9e6e !important; --color-underlinenav-counter-text: #d7d7d7 !important; --color-text-primary: #eec45e !important; --color-text-link: #D53232 !important; @@ -106,6 +115,10 @@ color: #5d7685 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ad9e6e!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #163756; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #00203e !important; + } + + .kVpYHc { + border: #002c55 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #163756 !important; + border-color: #D53232 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #163756 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2d1d37 !important; + } + + .beVJOq, + .cYvszO { + background-color: #002f5d !important; + border: #002c55 !important; + } + + .kGYPAT { + color: #D53232 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #001d39; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #D53232 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/gasai_yuno.user.css b/themes/gasai_yuno.user.css index c4bb34d..fc41bbb 100644 --- a/themes/gasai_yuno.user.css +++ b/themes/gasai_yuno.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Gasai Yuno @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #150713 !important; --color-avatar-bg: #150713 !important; + --color-btn-primary-bg: #ffa0b2 !important; + --color-btn-primary-hover-bg: #ffa0b2 !important; + --color-btn-primary-fg: #1a081a !important; + --color-btn-primary-icon: #1a081a !important; --color-fg-default: #c8c8c8 !important; - --color-fg-muted: #c8c8c8AA !important; + --color-btn-text: #bba0b7 !important; + --color-attention-subtle: #35231a99 !important; + --color-attention-muted: #35231a99 !important; + --color-accent-subtle: #ffa0b2AA !important; --color-auto-gray-3: #150713 !important; --color-auto-gray-1: #150713 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #230920 !important; --color-bg-discussions-row-emoji-box: #37223a !important; --color-current-user-tip-border: #37223a !important; + --color-btn-bg: #37223a !important; + --color-fg-muted: #ab5555 !important; --color-underlinenav-counter-text: #c8c8c8 !important; --color-text-primary: #39e6a6 !important; --color-text-link: #ffa0b2 !important; @@ -106,6 +115,10 @@ color: #796675 !important; } +span.Button-label:hover { + color: #1a081a; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #1a081a; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ab5555!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #37223a; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1a0717 !important; + } + + .kVpYHc { + border: #300c30 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #37223a !important; + border-color: #ffa0b2 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #37223a !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3c0c33 !important; + } + + .beVJOq, + .cYvszO { + background-color: #130511 !important; + border: #300c30 !important; + } + + .kGYPAT { + color: #ffa0b2 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #150713; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #ffa0b2 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/genos.user.css b/themes/genos.user.css index 4ace72c..08a3edf 100644 --- a/themes/genos.user.css +++ b/themes/genos.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Genos @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #313234 !important; --color-avatar-bg: #313234 !important; + --color-btn-primary-bg: #ddc7a1 !important; + --color-btn-primary-hover-bg: #ddc7a1 !important; + --color-btn-primary-fg: #2f3031 !important; + --color-btn-primary-icon: #2f3031 !important; --color-fg-default: #dbdbdb !important; - --color-fg-muted: #dbdbdbAA !important; + --color-btn-text: #ada19c !important; + --color-attention-subtle: #3e3e2899 !important; + --color-attention-muted: #3e3e2899 !important; + --color-accent-subtle: #ddc7a1AA !important; --color-auto-gray-3: #313234 !important; --color-auto-gray-1: #313234 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #3f4143 !important; --color-bg-discussions-row-emoji-box: #434247 !important; --color-current-user-tip-border: #434247 !important; + --color-btn-bg: #434247 !important; + --color-fg-muted: #ad9e6e !important; --color-underlinenav-counter-text: #dbdbdb !important; --color-text-primary: #FFE35C !important; --color-text-link: #ddc7a1 !important; @@ -106,6 +115,10 @@ color: #80755d !important; } +span.Button-label:hover { + color: #2f3031; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #2f3031; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ad9e6e!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #434247; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #252627 !important; + } + + .kVpYHc { + border: #3b3c3e !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #434247 !important; + border-color: #ddc7a1 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #434247 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3e4036 !important; + } + + .beVJOq, + .cYvszO { + background-color: #232529 !important; + border: #3b3c3e !important; + } + + .kGYPAT { + color: #ddc7a1 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #313234; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #ddc7a1 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/gray.user.css b/themes/gray.user.css index 67678f5..bbb7f8b 100644 --- a/themes/gray.user.css +++ b/themes/gray.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Gray @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #35393b !important; --color-avatar-bg: #35393b !important; + --color-btn-primary-bg: #4ed4b0 !important; + --color-btn-primary-hover-bg: #4ed4b0 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #b0b0b0 !important; - --color-fg-muted: #b0b0b0AA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #4d503b99 !important; + --color-attention-muted: #4d503b99 !important; + --color-accent-subtle: #4ed4b0AA !important; --color-auto-gray-3: #35393b !important; --color-auto-gray-1: #35393b !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #353d41 !important; --color-bg-discussions-row-emoji-box: #414648 !important; --color-current-user-tip-border: #414648 !important; + --color-btn-bg: #414648 !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #b0b0b0 !important; --color-text-primary: #61ead9 !important; --color-text-link: #4ed4b0 !important; @@ -106,6 +115,10 @@ color: #556c6a !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #414648; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #363b3d !important; + } + + .kVpYHc { + border: #424648 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #414648 !important; + border-color: #4ed4b0 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #414648 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #324344 !important; + } + + .beVJOq, + .cYvszO { + background-color: #363e3e !important; + border: #424648 !important; + } + + .kGYPAT { + color: #4ed4b0 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #35393b; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #4ed4b0 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hanekawa_tsubasa.user.css b/themes/hanekawa_tsubasa.user.css index bc895fb..3b13392 100644 --- a/themes/hanekawa_tsubasa.user.css +++ b/themes/hanekawa_tsubasa.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hanekawa Tsubasa @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #100d11 !important; --color-avatar-bg: #100d11 !important; + --color-btn-primary-bg: #634F8D !important; + --color-btn-primary-hover-bg: #634F8D !important; + --color-btn-primary-fg: #ebd6fc !important; + --color-btn-primary-icon: #ebd6fc !important; --color-fg-default: #c3c3c3 !important; - --color-fg-muted: #c3c3c3AA !important; + --color-btn-text: #c7c7c7 !important; + --color-attention-subtle: #2b291499 !important; + --color-attention-muted: #2b291499 !important; + --color-accent-subtle: #634F8DAA !important; --color-auto-gray-3: #100d11 !important; --color-auto-gray-1: #100d11 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1e1d1f !important; --color-bg-discussions-row-emoji-box: #2e2939 !important; --color-current-user-tip-border: #2e2939 !important; + --color-btn-bg: #2e2939 !important; + --color-fg-muted: #988ccb !important; --color-underlinenav-counter-text: #c3c3c3 !important; --color-text-primary: #7ceec8 !important; --color-text-link: #634F8D !important; @@ -106,6 +115,10 @@ color: #777495 !important; } +span.Button-label:hover { + color: #ebd6fc; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ebd6fc; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #988ccb!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2e2939; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0f0d10 !important; + } + + .kVpYHc { + border: #211c23 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2e2939 !important; + border-color: #634F8D !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2e2939 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #262129 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1b1820 !important; + border: #211c23 !important; + } + + .kGYPAT { + color: #634F8D !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #100d11; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #634F8D !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hatsune_miku.user.css b/themes/hatsune_miku.user.css index 96949a7..dc3fe76 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2f3635 !important; --color-avatar-bg: #2f3635 !important; + --color-btn-primary-bg: #53b0b4 !important; + --color-btn-primary-hover-bg: #53b0b4 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #6b9799 !important; + --color-attention-subtle: #44493299 !important; + --color-attention-muted: #44493299 !important; + --color-accent-subtle: #53b0b4AA !important; --color-auto-gray-3: #2f3635 !important; --color-auto-gray-1: #2f3635 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #313938 !important; --color-bg-discussions-row-emoji-box: #323737 !important; --color-current-user-tip-border: #323737 !important; + --color-btn-bg: #323737 !important; + --color-fg-muted: #73999b !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #95C8FA !important; --color-text-link: #53b0b4 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #73999b!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #323737; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2c3333 !important; + } + + .kVpYHc { + border: #2d3839 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #323737 !important; + border-color: #53b0b4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #323737 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #363d3c !important; + } + + .beVJOq, + .cYvszO { + background-color: #313939 !important; + border: #2d3839 !important; + } + + .kGYPAT { + color: #53b0b4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2f3635; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #53b0b4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hayase_nagatoro.user.css b/themes/hayase_nagatoro.user.css index f234619..27746a9 100644 --- a/themes/hayase_nagatoro.user.css +++ b/themes/hayase_nagatoro.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hayase Nagatoro @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #151515 !important; --color-avatar-bg: #151515 !important; + --color-btn-primary-bg: #d2824e !important; + --color-btn-primary-hover-bg: #d2824e !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #c9c9c9 !important; + --color-attention-subtle: #35341d99 !important; + --color-attention-muted: #35341d99 !important; + --color-accent-subtle: #d2824eAA !important; --color-auto-gray-3: #151515 !important; --color-auto-gray-1: #151515 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1f1f1f !important; --color-bg-discussions-row-emoji-box: #2e2c2b !important; --color-current-user-tip-border: #2e2c2b !important; + --color-btn-bg: #2e2c2b !important; + --color-fg-muted: #7e5b37 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #5cd7d7 !important; --color-text-link: #d2824e !important; @@ -106,6 +115,10 @@ color: #5d5550 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7e5b37!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2e2c2b; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1a1a1a !important; + } + + .kVpYHc { + border: #272626 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2e2c2b !important; + border-color: #d2824e !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2e2c2b !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #252525 !important; + } + + .beVJOq, + .cYvszO { + background-color: #171717 !important; + border: #272626 !important; + } + + .kGYPAT { + color: #d2824e !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #151515; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d2824e !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hinata_shoyo.user.css b/themes/hinata_shoyo.user.css index d53a817..f7347d5 100644 --- a/themes/hinata_shoyo.user.css +++ b/themes/hinata_shoyo.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hinata Shoyo @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #201c37 !important; --color-avatar-bg: #201c37 !important; + --color-btn-primary-bg: #f58d02 !important; + --color-btn-primary-hover-bg: #f58d02 !important; + --color-btn-primary-fg: #26223d !important; + --color-btn-primary-icon: #26223d !important; --color-fg-default: #b0b0b0 !important; - --color-fg-muted: #b0b0b0AA !important; + --color-btn-text: #a0a0a7 !important; + --color-attention-subtle: #3d393a99 !important; + --color-attention-muted: #3d393a99 !important; + --color-accent-subtle: #f58d02AA !important; --color-auto-gray-3: #201c37 !important; --color-auto-gray-1: #201c37 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2c2847 !important; --color-bg-discussions-row-emoji-box: #3b4060 !important; --color-current-user-tip-border: #3b4060 !important; + --color-btn-bg: #3b4060 !important; + --color-fg-muted: #ba804b !important; --color-underlinenav-counter-text: #b0b0b0 !important; --color-text-primary: #84D0FF !important; --color-text-link: #f58d02 !important; @@ -106,6 +115,10 @@ color: #55596c !important; } +span.Button-label:hover { + color: #26223d; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #26223d; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ba804b!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #3b4060; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #24203c !important; + } + + .kVpYHc { + border: #363056 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #3b4060 !important; + border-color: #f58d02 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #3b4060 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #463038 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1b1830 !important; + border: #363056 !important; + } + + .kGYPAT { + color: #f58d02 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #201c37; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #f58d02 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hiro.user.css b/themes/hiro.user.css index d75d29a..fb542b9 100644 --- a/themes/hiro.user.css +++ b/themes/hiro.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hiro @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #16171A !important; --color-avatar-bg: #16171A !important; + --color-btn-primary-bg: #3877d1 !important; + --color-btn-primary-hover-bg: #3877d1 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #b0b0b0 !important; - --color-fg-muted: #b0b0b0AA !important; + --color-btn-text: #92a1aa !important; + --color-attention-subtle: #31311d99 !important; + --color-attention-muted: #31311d99 !important; + --color-accent-subtle: #3877d1AA !important; --color-auto-gray-3: #16171A !important; --color-auto-gray-1: #16171A !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #272a2f !important; --color-bg-discussions-row-emoji-box: #393c45 !important; --color-current-user-tip-border: #393c45 !important; + --color-btn-bg: #393c45 !important; + --color-fg-muted: #8ad0bf !important; --color-underlinenav-counter-text: #b0b0b0 !important; --color-text-primary: #89CCEC !important; --color-text-link: #3877d1 !important; @@ -106,6 +115,10 @@ color: #4F5D76 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #8ad0bf!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #393c45; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #16171a !important; + } + + .kVpYHc { + border: #303136 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #393c45 !important; + border-color: #3877d1 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #393c45 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #313236 !important; + } + + .beVJOq, + .cYvszO { + background-color: #121317 !important; + border: #303136 !important; + } + + .kGYPAT { + color: #3877d1 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #16171A; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #3877d1 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/hiro_x_zero_two.user.css b/themes/hiro_x_zero_two.user.css index 2a23af6..0ec254d 100644 --- a/themes/hiro_x_zero_two.user.css +++ b/themes/hiro_x_zero_two.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Hiro x Zero Two @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #150b24 !important; --color-avatar-bg: #150b24 !important; + --color-btn-primary-bg: #c93939 !important; + --color-btn-primary-hover-bg: #c93939 !important; + --color-btn-primary-fg: #fefefe !important; + --color-btn-primary-icon: #fefefe !important; --color-fg-default: #b8b8b8 !important; - --color-fg-muted: #b8b8b8AA !important; + --color-btn-text: #aba3c4 !important; + --color-attention-subtle: #2b231d99 !important; + --color-attention-muted: #2b231d99 !important; + --color-accent-subtle: #c93939AA !important; --color-auto-gray-3: #150b24 !important; --color-auto-gray-1: #150b24 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #23214b !important; --color-bg-discussions-row-emoji-box: #372c40 !important; --color-current-user-tip-border: #372c40 !important; + --color-btn-bg: #372c40 !important; + --color-fg-muted: #5d89c2 !important; --color-underlinenav-counter-text: #b8b8b8 !important; --color-text-primary: #FF96FD !important; --color-text-link: #c93939 !important; @@ -106,6 +115,10 @@ color: #5F4E65 !important; } +span.Button-label:hover { + color: #fefefe; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fefefe; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #5d89c2!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #372c40; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0f071a !important; + } + + .kVpYHc { + border: #362f3e !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #372c40 !important; + border-color: #c93939 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #372c40 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3b0e20 !important; + } + + .beVJOq, + .cYvszO { + background-color: #0d041c !important; + border: #362f3e !important; + } + + .kGYPAT { + color: #c93939 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #150b24; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #c93939 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/ishtar_dark.user.css b/themes/ishtar_dark.user.css index 575568d..efa1b40 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #110F10 !important; --color-avatar-bg: #110F10 !important; + --color-btn-primary-bg: #f5c443 !important; + --color-btn-primary-hover-bg: #f5c443 !important; + --color-btn-primary-fg: #0f0d0e !important; + --color-btn-primary-icon: #0f0d0e !important; --color-fg-default: #c2c2c2 !important; - --color-fg-muted: #c2c2c2AA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #2a271199 !important; + --color-attention-muted: #2a271199 !important; + --color-accent-subtle: #f5c443AA !important; --color-auto-gray-3: #110F10 !important; --color-auto-gray-1: #110F10 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1A1913 !important; --color-bg-discussions-row-emoji-box: #221d1b !important; --color-current-user-tip-border: #221d1b !important; + --color-btn-bg: #221d1b !important; + --color-fg-muted: #866e45 !important; --color-underlinenav-counter-text: #c2c2c2 !important; --color-text-primary: #357fbf !important; --color-text-link: #f5c443 !important; @@ -106,6 +115,10 @@ color: #6c6d5b !important; } +span.Button-label:hover { + color: #0f0d0e; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #0f0d0e; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #866e45!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #221d1b; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0d0b0c !important; + } + + .kVpYHc { + border: #1a1a00 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #221d1b !important; + border-color: #f5c443 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #221d1b !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #191807 !important; + } + + .beVJOq, + .cYvszO { + background-color: #0a0a06 !important; + border: #1a1a00 !important; + } + + .kGYPAT { + color: #f5c443 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #110F10; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #f5c443 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/ishtar_light.user.css b/themes/ishtar_light.user.css index 871e9f3..8bc774f 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #fffefb !important; --color-avatar-bg: #fffefb !important; + --color-btn-primary-bg: #f5a821 !important; + --color-btn-primary-hover-bg: #f5a821 !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #f1eebb99 !important; + --color-attention-muted: #f1eebb99 !important; + --color-accent-subtle: #f5a821AA !important; --color-auto-gray-3: #fffefb !important; --color-auto-gray-1: #fffefb !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #fffaed !important; --color-bg-discussions-row-emoji-box: #fffef7 !important; --color-current-user-tip-border: #fffef7 !important; + --color-btn-bg: #fffef7 !important; + --color-fg-muted: #5078a5 !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #0d5fa6 !important; --color-text-link: #f5a821 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #5078a5!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #fffef7; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fffefb !important; + } + + .kVpYHc { + border: #eeeeee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #fffef7 !important; + border-color: #f5a821 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #fffef7 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #fff9db !important; + } + + .beVJOq, + .cYvszO { + background-color: #fcfcfa !important; + border: #eeeeee !important; + } + + .kGYPAT { + color: #f5a821 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #fffefb; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #f5a821 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/jabami_yumeko.user.css b/themes/jabami_yumeko.user.css index 599a10c..656666f 100644 --- a/themes/jabami_yumeko.user.css +++ b/themes/jabami_yumeko.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Jabami Yumeko @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #050000 !important; --color-avatar-bg: #050000 !important; + --color-btn-primary-bg: #8a1820 !important; + --color-btn-primary-hover-bg: #8a1820 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #dbdbdb !important; - --color-fg-muted: #dbdbdbAA !important; + --color-btn-text: #a67676 !important; + --color-attention-subtle: #281d0799 !important; + --color-attention-muted: #281d0799 !important; + --color-accent-subtle: #8a1820AA !important; --color-auto-gray-3: #050000 !important; --color-auto-gray-1: #050000 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1e0607 !important; --color-bg-discussions-row-emoji-box: #2b0808 !important; --color-current-user-tip-border: #2b0808 !important; + --color-btn-bg: #2b0808 !important; + --color-fg-muted: #7e2a2a !important; --color-underlinenav-counter-text: #dbdbdb !important; --color-text-primary: #42E66C !important; --color-text-link: #8a1820 !important; @@ -106,6 +115,10 @@ color: #97706f !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7e2a2a!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2b0808; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0b0000 !important; + } + + .kVpYHc { + border: #1e0000 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2b0808 !important; + border-color: #8a1820 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2b0808 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2e090b !important; + } + + .beVJOq, + .cYvszO { + background-color: #160304 !important; + border: #1e0000 !important; + } + + .kGYPAT { + color: #8a1820 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #050000; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #8a1820 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/jahy.user.css b/themes/jahy.user.css index fcf9d63..2bd979e 100644 --- a/themes/jahy.user.css +++ b/themes/jahy.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Jahy @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1b102e !important; --color-avatar-bg: #1b102e !important; + --color-btn-primary-bg: #874488 !important; + --color-btn-primary-hover-bg: #874488 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #cbcbcb !important; - --color-fg-muted: #cbcbcbAA !important; + --color-btn-text: #ada19c !important; + --color-attention-subtle: #382f3099 !important; + --color-attention-muted: #382f3099 !important; + --color-accent-subtle: #874488AA !important; --color-auto-gray-3: #1b102e !important; --color-auto-gray-1: #1b102e !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2f1336 !important; --color-bg-discussions-row-emoji-box: #352544 !important; --color-current-user-tip-border: #352544 !important; + --color-btn-bg: #352544 !important; + --color-fg-muted: #ad9e6e !important; --color-underlinenav-counter-text: #cbcbcb !important; --color-text-primary: #eec45e !important; --color-text-link: #874488 !important; @@ -106,6 +115,10 @@ color: #656079 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ad9e6e!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #352544; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1e1430 !important; + } + + .kVpYHc { + border: #322252 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #352544 !important; + border-color: #874488 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #352544 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3a1b44 !important; + } + + .beVJOq, + .cYvszO { + background-color: #220e29 !important; + border: #322252 !important; + } + + .kGYPAT { + color: #874488 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1b102e; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #874488 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/kanna.user.css b/themes/kanna.user.css index 3838630..1656bb6 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1a1426 !important; --color-avatar-bg: #1a1426 !important; + --color-btn-primary-bg: #46459e !important; + --color-btn-primary-hover-bg: #46459e !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #d0d0d0 !important; - --color-fg-muted: #d0d0d0AA !important; + --color-btn-text: #a0a0a7 !important; + --color-attention-subtle: #352f2799 !important; + --color-attention-muted: #352f2799 !important; + --color-accent-subtle: #46459eAA !important; --color-auto-gray-3: #1a1426 !important; --color-auto-gray-1: #1a1426 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #231a31 !important; --color-bg-discussions-row-emoji-box: #262732 !important; --color-current-user-tip-border: #262732 !important; + --color-btn-bg: #262732 !important; + --color-fg-muted: #9d79c2 !important; --color-underlinenav-counter-text: #d0d0d0 !important; --color-text-primary: #FF357C !important; --color-text-link: #46459e !important; @@ -106,6 +115,10 @@ color: #6a6679 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #9d79c2!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #262732; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1a1526 !important; + } + + .kVpYHc { + border: #221f2e !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #262732 !important; + border-color: #46459e !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #262732 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #241c33 !important; + } + + .beVJOq, + .cYvszO { + background-color: #150f20 !important; + border: #221f2e !important; + } + + .kGYPAT { + color: #46459e !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1a1426; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #46459e !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/katsuragi_misato.user.css b/themes/katsuragi_misato.user.css index 1729d29..a4fbbdb 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #382536 !important; --color-avatar-bg: #382536 !important; + --color-btn-primary-bg: #c2383e !important; + --color-btn-primary-hover-bg: #c2383e !important; + --color-btn-primary-fg: #ffffff !important; + --color-btn-primary-icon: #ffffff !important; --color-fg-default: #b5a3b0 !important; - --color-fg-muted: #b5a3b0AA !important; + --color-btn-text: #bbbbbb !important; + --color-attention-subtle: #533d3599 !important; + --color-attention-muted: #533d3599 !important; + --color-accent-subtle: #c2383eAA !important; --color-auto-gray-3: #382536 !important; --color-auto-gray-1: #382536 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #402d41 !important; --color-bg-discussions-row-emoji-box: #341F2D !important; --color-current-user-tip-border: #341F2D !important; + --color-btn-bg: #341F2D !important; + --color-fg-muted: #8c72a9 !important; --color-underlinenav-counter-text: #b5a3b0 !important; --color-text-primary: #FF357C !important; --color-text-link: #c2383e !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #ffffff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffffff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #8c72a9!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #341F2D; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #3d2536 !important; + } + + .kVpYHc { + border: #432E3D !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #341F2D !important; + border-color: #c2383e !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #341F2D !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #403046 !important; + } + + .beVJOq, + .cYvszO { + background-color: #382639 !important; + border: #432E3D !important; + } + + .kGYPAT { + color: #c2383e !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #382536; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #c2383e !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/kirino.user.css b/themes/kirino.user.css index c356805..6ea394c 100644 --- a/themes/kirino.user.css +++ b/themes/kirino.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Kirino @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #121e1c !important; --color-avatar-bg: #121e1c !important; + --color-btn-primary-bg: #6cb3b5 !important; + --color-btn-primary-hover-bg: #6cb3b5 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #cbcbcb !important; - --color-fg-muted: #cbcbcbAA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #2e371f99 !important; + --color-attention-muted: #2e371f99 !important; + --color-accent-subtle: #6cb3b5AA !important; --color-auto-gray-3: #121e1c !important; --color-auto-gray-1: #121e1c !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #221f28 !important; --color-bg-discussions-row-emoji-box: #253e3a !important; --color-current-user-tip-border: #253e3a !important; + --color-btn-bg: #253e3a !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #cbcbcb !important; --color-text-primary: #eec45e !important; --color-text-link: #6cb3b5 !important; @@ -106,6 +115,10 @@ color: #657978 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #253e3a; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #121e1c !important; + } + + .kVpYHc { + border: #1e322f !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #253e3a !important; + border-color: #6cb3b5 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #253e3a !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #213834 !important; + } + + .beVJOq, + .cYvszO { + background-color: #182826 !important; + border: #1e322f !important; + } + + .kGYPAT { + color: #6cb3b5 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #121e1c; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #6cb3b5 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/konata.user.css b/themes/konata.user.css index 3ef1828..82e561f 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #355082 !important; --color-avatar-bg: #355082 !important; + --color-btn-primary-bg: #4bcf4c !important; + --color-btn-primary-hover-bg: #4bcf4c !important; + --color-btn-primary-fg: #e7e9ff !important; + --color-btn-primary-icon: #e7e9ff !important; --color-fg-default: #f3edff !important; - --color-fg-muted: #f3edffAA !important; + --color-btn-text: #f6f1ff !important; + --color-attention-subtle: #495c6d99 !important; + --color-attention-muted: #495c6d99 !important; + --color-accent-subtle: #4bcf4cAA !important; --color-auto-gray-3: #355082 !important; --color-auto-gray-1: #355082 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #3d5d96 !important; --color-bg-discussions-row-emoji-box: #4e608d !important; --color-current-user-tip-border: #4e608d !important; + --color-btn-bg: #4e608d !important; + --color-fg-muted: #addfa9 !important; --color-underlinenav-counter-text: #f3edff !important; --color-text-primary: #fffd9b !important; --color-text-link: #4bcf4c !important; @@ -106,6 +115,10 @@ color: #ffffff !important; } +span.Button-label:hover { + color: #e7e9ff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #e7e9ff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #addfa9!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #4e608d; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #314978 !important; + } + + .kVpYHc { + border: #3e5d99 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #4e608d !important; + border-color: #4bcf4c !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #4e608d !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #526495 !important; + } + + .beVJOq, + .cYvszO { + background-color: #344d82 !important; + border: #3e5d99 !important; + } + + .kGYPAT { + color: #4bcf4c !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #355082; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #4bcf4c !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/mai_dark.user.css b/themes/mai_dark.user.css index 3cb031c..5f11522 100644 --- a/themes/mai_dark.user.css +++ b/themes/mai_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Mai Dark @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #242448 !important; --color-avatar-bg: #242448 !important; + --color-btn-primary-bg: #fee3cf !important; + --color-btn-primary-hover-bg: #fee3cf !important; + --color-btn-primary-fg: #25254e !important; + --color-btn-primary-icon: #25254e !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #838daa !important; + --color-attention-subtle: #3e3d4a99 !important; + --color-attention-muted: #3e3d4a99 !important; + --color-accent-subtle: #fee3cfAA !important; --color-auto-gray-3: #242448 !important; --color-auto-gray-1: #242448 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2d2d52 !important; --color-bg-discussions-row-emoji-box: #2f3357 !important; --color-current-user-tip-border: #2f3357 !important; + --color-btn-bg: #2f3357 !important; + --color-fg-muted: #7cab9c !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #F9B2FF !important; --color-text-link: #fee3cf !important; @@ -106,6 +115,10 @@ color: #61647b !important; } +span.Button-label:hover { + color: #25254e; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #25254e; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7cab9c!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2f3357; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #25254e !important; + } + + .kVpYHc { + border: #2b2c57 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2f3357 !important; + border-color: #fee3cf !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2f3357 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2d2d52 !important; + } + + .beVJOq, + .cYvszO { + background-color: #272750 !important; + border: #2b2c57 !important; + } + + .kGYPAT { + color: #fee3cf !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #242448; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #fee3cf !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/mai_light.user.css b/themes/mai_light.user.css index 857a712..ce6a30e 100644 --- a/themes/mai_light.user.css +++ b/themes/mai_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Mai Light @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FAF2F1 !important; --color-avatar-bg: #FAF2F1 !important; + --color-btn-primary-bg: #4f5287 !important; + --color-btn-primary-hover-bg: #4f5287 !important; + --color-btn-primary-fg: #fbf3f2 !important; + --color-btn-primary-icon: #fbf3f2 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #4c4a4f !important; + --color-attention-subtle: #f1e9b899 !important; + --color-attention-muted: #f1e9b899 !important; + --color-accent-subtle: #4f5287AA !important; --color-auto-gray-3: #FAF2F1 !important; --color-auto-gray-1: #FAF2F1 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #f1ecf2 !important; --color-bg-discussions-row-emoji-box: #d7dcf1 !important; --color-current-user-tip-border: #d7dcf1 !important; + --color-btn-bg: #d7dcf1 !important; + --color-fg-muted: #6564ac !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #C869A3 !important; --color-text-link: #4f5287 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #fbf3f2; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbf3f2; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #6564ac!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #d7dcf1; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fff7f6 !important; + } + + .kVpYHc { + border: #e6d8d7 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #d7dcf1 !important; + border-color: #4f5287 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #d7dcf1 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ede5e4 !important; + } + + .beVJOq, + .cYvszO { + background-color: #f8efee !important; + border: #e6d8d7 !important; + } + + .kGYPAT { + color: #4f5287 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FAF2F1; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #4f5287 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/maika.user.css b/themes/maika.user.css index 31f738b..6c8c053 100644 --- a/themes/maika.user.css +++ b/themes/maika.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Maika @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #24062f !important; --color-avatar-bg: #24062f !important; + --color-btn-primary-bg: #bc5d71 !important; + --color-btn-primary-hover-bg: #bc5d71 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #c9c9c9 !important; - --color-fg-muted: #c9c9c9AA !important; + --color-btn-text: #876e9c !important; + --color-attention-subtle: #3a222b99 !important; + --color-attention-muted: #3a222b99 !important; + --color-accent-subtle: #bc5d71AA !important; --color-auto-gray-3: #24062f !important; --color-auto-gray-1: #24062f !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2e0639 !important; --color-bg-discussions-row-emoji-box: #2e1738 !important; --color-current-user-tip-border: #2e1738 !important; + --color-btn-bg: #2e1738 !important; + --color-fg-muted: #79b7c1 !important; --color-underlinenav-counter-text: #c9c9c9 !important; --color-text-primary: #f6e7ba !important; --color-text-link: #bc5d71 !important; @@ -106,6 +115,10 @@ color: #70677b !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #79b7c1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2e1738; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #20052a !important; + } + + .kVpYHc { + border: #341140 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2e1738 !important; + border-color: #bc5d71 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2e1738 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #300542 !important; + } + + .beVJOq, + .cYvszO { + background-color: #260633 !important; + border: #341140 !important; + } + + .kGYPAT { + color: #bc5d71 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #24062f; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #bc5d71 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/makise_kurisu.user.css b/themes/makise_kurisu.user.css index c5c295d..444e8a8 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #170a0b !important; --color-avatar-bg: #170a0b !important; + --color-btn-primary-bg: #8F60B5 !important; + --color-btn-primary-hover-bg: #8F60B5 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #c3c3c3 !important; - --color-fg-muted: #c3c3c3AA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #35291399 !important; + --color-attention-muted: #35291399 !important; + --color-accent-subtle: #8F60B5AA !important; --color-auto-gray-3: #170a0b !important; --color-auto-gray-1: #170a0b !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #261112 !important; --color-bg-discussions-row-emoji-box: #241919 !important; --color-current-user-tip-border: #241919 !important; + --color-btn-bg: #241919 !important; + --color-fg-muted: #843030 !important; --color-underlinenav-counter-text: #c3c3c3 !important; --color-text-primary: #FF8C74 !important; --color-text-link: #8F60B5 !important; @@ -106,6 +115,10 @@ color: #624849 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #843030!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #241919; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1a0e0e !important; + } + + .kVpYHc { + border: #2b1919 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #241919 !important; + border-color: #8F60B5 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #241919 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2a0c0c !important; + } + + .beVJOq, + .cYvszO { + background-color: #190d0d !important; + border: #2b1919 !important; + } + + .kGYPAT { + color: #8F60B5 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #170a0b; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #8F60B5 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/maple_dark.user.css b/themes/maple_dark.user.css index db4a6cb..cd6d6fb 100644 --- a/themes/maple_dark.user.css +++ b/themes/maple_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Maple Dark @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2d1d1d !important; --color-avatar-bg: #2d1d1d !important; + --color-btn-primary-bg: #46ab79 !important; + --color-btn-primary-hover-bg: #46ab79 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #cccccc !important; - --color-fg-muted: #ccccccAA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #47351e99 !important; + --color-attention-muted: #47351e99 !important; + --color-accent-subtle: #46ab79AA !important; --color-auto-gray-3: #2d1d1d !important; --color-auto-gray-1: #2d1d1d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #352121 !important; --color-bg-discussions-row-emoji-box: #422c2c !important; --color-current-user-tip-border: #422c2c !important; + --color-btn-bg: #422c2c !important; + --color-fg-muted: #bfb38c !important; --color-underlinenav-counter-text: #cccccc !important; --color-text-primary: #4fe1a9 !important; --color-text-link: #46ab79 !important; @@ -106,6 +115,10 @@ color: #6c5b55 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #bfb38c!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #422c2c; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2f1b1b !important; + } + + .kVpYHc { + border: #412828 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #422c2c !important; + border-color: #46ab79 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #422c2c !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2e2f2a !important; + } + + .beVJOq, + .cYvszO { + background-color: #2a1818 !important; + border: #412828 !important; + } + + .kGYPAT { + color: #46ab79 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2d1d1d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #46ab79 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/maple_light.user.css b/themes/maple_light.user.css index cbef329..a243d05 100644 --- a/themes/maple_light.user.css +++ b/themes/maple_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Maple Light @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffd091 !important; --color-avatar-bg: #ffd091 !important; + --color-btn-primary-bg: #923A4E !important; + --color-btn-primary-hover-bg: #923A4E !important; + --color-btn-primary-fg: #ffd297 !important; + --color-btn-primary-icon: #ffd297 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #8c5432 !important; + --color-attention-subtle: #f0cc7199 !important; + --color-attention-muted: #f0cc7199 !important; + --color-accent-subtle: #923A4EAA !important; --color-auto-gray-3: #ffd091 !important; --color-auto-gray-1: #ffd091 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #FFC392 !important; --color-bg-discussions-row-emoji-box: #eab184 !important; --color-current-user-tip-border: #eab184 !important; + --color-btn-bg: #eab184 !important; + --color-fg-muted: #763530 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #007972 !important; --color-text-link: #923A4E !important; @@ -106,6 +115,10 @@ color: #693434 !important; } +span.Button-label:hover { + color: #ffd297; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffd297; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #763530!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #eab184; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fdcd8f !important; + } + + .kVpYHc { + border: #f1bb73 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #eab184 !important; + border-color: #923A4E !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #eab184 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #f3bc80 !important; + } + + .beVJOq, + .cYvszO { + background-color: #f9ca92 !important; + border: #f1bb73 !important; + } + + .kGYPAT { + color: #923A4E !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffd091; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #923A4E !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/megumin.user.css b/themes/megumin.user.css index 9dc5e26..568ef38 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2c2126 !important; --color-avatar-bg: #2c2126 !important; + --color-btn-primary-bg: #a73035 !important; + --color-btn-primary-hover-bg: #a73035 !important; + --color-btn-primary-fg: #E2CB14 !important; + --color-btn-primary-icon: #E2CB14 !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #766B6B !important; + --color-attention-subtle: #43382699 !important; + --color-attention-muted: #43382699 !important; + --color-accent-subtle: #a73035AA !important; --color-auto-gray-3: #2c2126 !important; --color-auto-gray-1: #2c2126 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #31262b !important; --color-bg-discussions-row-emoji-box: #2f2329 !important; --color-current-user-tip-border: #2f2329 !important; + --color-btn-bg: #2f2329 !important; + --color-fg-muted: #75595d !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #BA6462 !important; --color-text-link: #a73035 !important; @@ -106,6 +115,10 @@ color: #7b7373 !important; } +span.Button-label:hover { + color: #E2CB14; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #E2CB14; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #75595d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2f2329; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2a1f24 !important; + } + + .kVpYHc { + border: #32262c !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2f2329 !important; + border-color: #a73035 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2f2329 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #522227 !important; + } + + .beVJOq, + .cYvszO { + background-color: #281d22 !important; + border: #32262c !important; + } + + .kGYPAT { + color: #a73035 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2c2126; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #a73035 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/miia.user.css b/themes/miia.user.css index fc6d281..108eee4 100644 --- a/themes/miia.user.css +++ b/themes/miia.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Miia @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #310e19 !important; --color-avatar-bg: #310e19 !important; + --color-btn-primary-bg: #d6a53e !important; + --color-btn-primary-hover-bg: #d6a53e !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #efefef !important; - --color-fg-muted: #efefefAA !important; + --color-btn-text: #b2918a !important; + --color-attention-subtle: #502b2299 !important; + --color-attention-muted: #502b2299 !important; + --color-accent-subtle: #d6a53eAA !important; --color-auto-gray-3: #310e19 !important; --color-auto-gray-1: #310e19 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #3a1020 !important; --color-bg-discussions-row-emoji-box: #541827 !important; --color-current-user-tip-border: #541827 !important; + --color-btn-bg: #541827 !important; + --color-fg-muted: #b19e78 !important; --color-underlinenav-counter-text: #efefef !important; --color-text-primary: #c05388 !important; --color-text-link: #d6a53e !important; @@ -106,6 +115,10 @@ color: #a87975 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b19e78!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #541827; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #3a1020 !important; + } + + .kVpYHc { + border: #411221 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #541827 !important; + border-color: #d6a53e !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #541827 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #46182a !important; + } + + .beVJOq, + .cYvszO { + background-color: #330e1b !important; + border: #411221 !important; + } + + .kGYPAT { + color: #d6a53e !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #310e19; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d6a53e !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/mioda_ibuki_dark.user.css b/themes/mioda_ibuki_dark.user.css index 36ff622..cdd23e5 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #191b1d !important; --color-avatar-bg: #191b1d !important; + --color-btn-primary-bg: #5395b4 !important; + --color-btn-primary-hover-bg: #5395b4 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #32331e99 !important; + --color-attention-muted: #32331e99 !important; + --color-accent-subtle: #5395b4AA !important; --color-auto-gray-3: #191b1d !important; --color-auto-gray-1: #191b1d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #222526 !important; --color-bg-discussions-row-emoji-box: #262c32 !important; --color-current-user-tip-border: #262c32 !important; + --color-btn-bg: #262c32 !important; + --color-fg-muted: #ab8d9f !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #5ea7ff !important; --color-text-link: #5395b4 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ab8d9f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #262c32; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #17191b !important; + } + + .kVpYHc { + border: #1e2021 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #262c32 !important; + border-color: #5395b4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #262c32 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #23282a !important; + } + + .beVJOq, + .cYvszO { + background-color: #1a1e20 !important; + border: #1e2021 !important; + } + + .kGYPAT { + color: #5395b4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #191b1d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #5395b4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/mioda_ibuki_light.user.css b/themes/mioda_ibuki_light.user.css index 67cc526..ea691d1 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffeefd !important; --color-avatar-bg: #ffeefd !important; + --color-btn-primary-bg: #DA46A7 !important; + --color-btn-primary-hover-bg: #DA46A7 !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #272426 !important; - --color-fg-muted: #272426AA !important; + --color-btn-text: #272426 !important; + --color-attention-subtle: #f1e3bc99 !important; + --color-attention-muted: #f1e3bc99 !important; + --color-accent-subtle: #DA46A7AA !important; --color-auto-gray-3: #ffeefd !important; --color-auto-gray-1: #ffeefd !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #f7dcf3 !important; --color-bg-discussions-row-emoji-box: #F7E0F3 !important; --color-current-user-tip-border: #F7E0F3 !important; + --color-btn-bg: #F7E0F3 !important; + --color-fg-muted: #5ca4d4 !important; --color-underlinenav-counter-text: #272426 !important; --color-text-primary: #4174b3 !important; --color-text-link: #DA46A7 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #5ca4d4!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #F7E0F3; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #ffeefd !important; + } + + .kVpYHc { + border: #ede1e9 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #F7E0F3 !important; + border-color: #DA46A7 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #F7E0F3 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #fde2f6 !important; + } + + .beVJOq, + .cYvszO { + background-color: #FFEAF9 !important; + border: #ede1e9 !important; + } + + .kGYPAT { + color: #DA46A7 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffeefd; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #DA46A7 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/misaka_mikoto.user.css b/themes/misaka_mikoto.user.css index 9c88a8e..73a3012 100644 --- a/themes/misaka_mikoto.user.css +++ b/themes/misaka_mikoto.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Misaka Mikoto @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #0b173a !important; --color-avatar-bg: #0b173a !important; + --color-btn-primary-bg: #3eb7e5 !important; + --color-btn-primary-hover-bg: #3eb7e5 !important; + --color-btn-primary-fg: #0d193b !important; + --color-btn-primary-icon: #0d193b !important; --color-fg-default: #dbdbdb !important; - --color-fg-muted: #dbdbdbAA !important; + --color-btn-text: #ada19c !important; + --color-attention-subtle: #28303299 !important; + --color-attention-muted: #28303299 !important; + --color-accent-subtle: #3eb7e5AA !important; --color-auto-gray-3: #0b173a !important; --color-auto-gray-1: #0b173a !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #112358 !important; --color-bg-discussions-row-emoji-box: #28325a !important; --color-current-user-tip-border: #28325a !important; + --color-btn-bg: #28325a !important; + --color-fg-muted: #70bfbc !important; --color-underlinenav-counter-text: #dbdbdb !important; --color-text-primary: #FFE35C !important; --color-text-link: #3eb7e5 !important; @@ -106,6 +115,10 @@ color: #5d6680 !important; } +span.Button-label:hover { + color: #0d193b; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #0d193b; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #70bfbc!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #28325a; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0b1633 !important; + } + + .kVpYHc { + border: #101f4a !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #28325a !important; + border-color: #3eb7e5 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #28325a !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #203468 !important; + } + + .beVJOq, + .cYvszO { + background-color: #030e24 !important; + border: #101f4a !important; + } + + .kGYPAT { + color: #3eb7e5 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #0b173a; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #3eb7e5 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/monika_dark.user.css b/themes/monika_dark.user.css index 994ed68..dbae9a2 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1d2115 !important; --color-avatar-bg: #1d2115 !important; + --color-btn-primary-bg: #388E3C !important; + --color-btn-primary-hover-bg: #388E3C !important; + --color-btn-primary-fg: #ffffff !important; + --color-btn-primary-icon: #ffffff !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #6f9a65 !important; + --color-attention-subtle: #373a1999 !important; + --color-attention-muted: #373a1999 !important; + --color-accent-subtle: #388E3CAA !important; --color-auto-gray-3: #1d2115 !important; --color-auto-gray-1: #1d2115 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #24291a !important; --color-bg-discussions-row-emoji-box: #1e3219 !important; --color-current-user-tip-border: #1e3219 !important; + --color-btn-bg: #1e3219 !important; + --color-fg-muted: #3b753d !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #ABFFAF !important; --color-text-link: #388E3C !important; @@ -106,6 +115,10 @@ color: #697966 !important; } +span.Button-label:hover { + color: #ffffff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffffff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #3b753d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #1e3219; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1D2115 !important; + } + + .kVpYHc { + border: #202416 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #1e3219 !important; + border-color: #388E3C !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #1e3219 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #253120 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1a1e12 !important; + border: #202416 !important; + } + + .kGYPAT { + color: #388E3C !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1d2115; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #388E3C !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/monika_light.user.css b/themes/monika_light.user.css index cdc6736..bb9dc89 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #f2fff0 !important; --color-avatar-bg: #f2fff0 !important; + --color-btn-primary-bg: #388E3C !important; + --color-btn-primary-hover-bg: #388E3C !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #e8efb399 !important; + --color-attention-muted: #e8efb399 !important; + --color-accent-subtle: #388E3CAA !important; --color-auto-gray-3: #f2fff0 !important; --color-auto-gray-1: #f2fff0 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #dcf7e0 !important; --color-bg-discussions-row-emoji-box: #d8eed9 !important; --color-current-user-tip-border: #d8eed9 !important; + --color-btn-bg: #d8eed9 !important; + --color-fg-muted: #3b753d !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #6D71DC !important; --color-text-link: #388E3C !important; @@ -87,7 +96,7 @@ --color-input-disabled-bg: #def9e2 !important; --color-input-disabled-border: #e2eee3 !important; --color-text-secondary: #3b753d !important; - --color-text-tertiary: #aaaaaa !important; + --color-text-tertiary: #8CAA8E !important; --color-primer-fg-disabled: #a2cba3 !important; --lightness-threshold: 0.453 !important; } @@ -103,7 +112,11 @@ } .CodeMirror-linenumber { - color: #aaaaaa !important; + color: #8CAA8E !important; +} + +span.Button-label:hover { + color: #393d45; } .suggester li:hover .octicon, @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #3b753d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #d8eed9; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f2fff0 !important; + } + + .kVpYHc { + border: #e2eee3 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #d8eed9 !important; + border-color: #388E3C !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #d8eed9 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e0ffe1 !important; + } + + .beVJOq, + .cYvszO { + background-color: #edffec !important; + border: #e2eee3 !important; + } + + .kGYPAT { + color: #388E3C !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #f2fff0; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #388E3C !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, @@ -17078,7 +17137,7 @@ button.bg-white.subnav-link, main [style="background-color: #fcfdfd;"], .MarketplaceBackground-buffer, .team-left-column.bg-white, .overall-summary, .markdown-body table tr { background: #f2fff0 !important; - color: #aaaaaa !important; + color: #8CAA8E !important; } .action-card::after, .action-card::before { background-color: #f3fff4 !important; diff --git a/themes/nadeshiko.user.css b/themes/nadeshiko.user.css index eb8b7a7..88dede8 100644 --- a/themes/nadeshiko.user.css +++ b/themes/nadeshiko.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nadeshiko @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2c1f26 !important; --color-avatar-bg: #2c1f26 !important; + --color-btn-primary-bg: #78c6d0 !important; + --color-btn-primary-hover-bg: #78c6d0 !important; + --color-btn-primary-fg: #34252e !important; + --color-btn-primary-icon: #34252e !important; --color-fg-default: #b0b0b0 !important; - --color-fg-muted: #b0b0b0AA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #473a2999 !important; + --color-attention-muted: #473a2999 !important; + --color-accent-subtle: #78c6d0AA !important; --color-auto-gray-3: #2c1f26 !important; --color-auto-gray-1: #2c1f26 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #392831 !important; --color-bg-discussions-row-emoji-box: #483a47 !important; --color-current-user-tip-border: #483a47 !important; + --color-btn-bg: #483a47 !important; + --color-fg-muted: #7ea5c1 !important; --color-underlinenav-counter-text: #b0b0b0 !important; --color-text-primary: #61c1ea !important; --color-text-link: #78c6d0 !important; @@ -106,6 +115,10 @@ color: #6a5a6c !important; } +span.Button-label:hover { + color: #34252e; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #34252e; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7ea5c1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #483a47; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2f2128 !important; + } + + .kVpYHc { + border: #43303c !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #483a47 !important; + border-color: #78c6d0 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #483a47 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #432e3b !important; + } + + .beVJOq, + .cYvszO { + background-color: #2a1c23 !important; + border: #43303c !important; + } + + .kGYPAT { + color: #78c6d0 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2c1f26; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #78c6d0 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/nakano_ichika.user.css b/themes/nakano_ichika.user.css index a603934..6c2f789 100644 --- a/themes/nakano_ichika.user.css +++ b/themes/nakano_ichika.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nakano Ichika @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #E3CCFD !important; --color-avatar-bg: #E3CCFD !important; + --color-btn-primary-bg: #7F5EF5 !important; + --color-btn-primary-hover-bg: #7F5EF5 !important; + --color-btn-primary-fg: #ebd3ff !important; + --color-btn-primary-icon: #ebd3ff !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #2e457f !important; + --color-attention-subtle: #e0c9dd99 !important; + --color-attention-muted: #e0c9dd99 !important; + --color-accent-subtle: #7F5EF5AA !important; --color-auto-gray-3: #E3CCFD !important; --color-auto-gray-1: #E3CCFD !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #DEC3F9 !important; --color-bg-discussions-row-emoji-box: #ebdaff !important; --color-current-user-tip-border: #ebdaff !important; + --color-btn-bg: #ebdaff !important; + --color-fg-muted: #9160cd !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #3E6DE5 !important; --color-text-link: #7F5EF5 !important; @@ -106,6 +115,10 @@ color: #8541b3 !important; } +span.Button-label:hover { + color: #ebd3ff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ebd3ff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #9160cd!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #ebdaff; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #e2c9fa !important; + } + + .kVpYHc { + border: #c3afd4 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #ebdaff !important; + border-color: #7F5EF5 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #ebdaff !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e3c6fa !important; + } + + .beVJOq, + .cYvszO { + background-color: #dbbdf6 !important; + border: #c3afd4 !important; + } + + .kGYPAT { + color: #7F5EF5 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #E3CCFD; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #7F5EF5 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/nakano_itsuki.user.css b/themes/nakano_itsuki.user.css index 924cdd0..2c39750 100644 --- a/themes/nakano_itsuki.user.css +++ b/themes/nakano_itsuki.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nakano Itsuki @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFBEBE !important; --color-avatar-bg: #FFBEBE !important; + --color-btn-primary-bg: #4f52c4 !important; + --color-btn-primary-hover-bg: #4f52c4 !important; + --color-btn-primary-fg: #ffc9c9 !important; + --color-btn-primary-icon: #ffc9c9 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #742525 !important; + --color-attention-subtle: #f6c2ac99 !important; + --color-attention-muted: #f6c2ac99 !important; + --color-accent-subtle: #4f52c4AA !important; --color-auto-gray-3: #FFBEBE !important; --color-auto-gray-1: #FFBEBE !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #ffb1b1 !important; --color-bg-discussions-row-emoji-box: #ffb7b4 !important; --color-current-user-tip-border: #ffb7b4 !important; + --color-btn-bg: #ffb7b4 !important; + --color-fg-muted: #b1483d !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #602C93 !important; --color-text-link: #4f52c4 !important; @@ -106,6 +115,10 @@ color: #D07E72 !important; } +span.Button-label:hover { + color: #ffc9c9; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffc9c9; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b1483d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #ffb7b4; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fcc1c1 !important; + } + + .kVpYHc { + border: #d99b9b !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #ffb7b4 !important; + border-color: #4f52c4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #ffb7b4 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ffa9a8 !important; + } + + .beVJOq, + .cYvszO { + background-color: #fc9999 !important; + border: #d99b9b !important; + } + + .kGYPAT { + color: #4f52c4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFBEBE; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #4f52c4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/nakano_miku.user.css b/themes/nakano_miku.user.css index ca1c47c..188adc9 100644 --- a/themes/nakano_miku.user.css +++ b/themes/nakano_miku.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nakano Miku @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #244158 !important; --color-avatar-bg: #244158 !important; + --color-btn-primary-bg: #A5F3FA !important; + --color-btn-primary-hover-bg: #A5F3FA !important; + --color-btn-primary-fg: #25475e !important; + --color-btn-primary-icon: #25475e !important; --color-fg-default: #f3edff !important; - --color-fg-muted: #f3edffAA !important; + --color-btn-text: #f6f1ff !important; + --color-attention-subtle: #3d585599 !important; + --color-attention-muted: #3d585599 !important; + --color-accent-subtle: #A5F3FAAA !important; --color-auto-gray-3: #244158 !important; --color-auto-gray-1: #244158 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #25475f !important; --color-bg-discussions-row-emoji-box: #27575d !important; --color-current-user-tip-border: #27575d !important; + --color-btn-bg: #27575d !important; + --color-fg-muted: #addfa9 !important; --color-underlinenav-counter-text: #f3edff !important; --color-text-primary: #4BABFF !important; --color-text-link: #A5F3FA !important; @@ -106,6 +115,10 @@ color: #b9dfb6 !important; } +span.Button-label:hover { + color: #25475e; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #25475e; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #addfa9!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #27575d; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #24445b !important; + } + + .kVpYHc { + border: #26546b !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #27575d !important; + border-color: #A5F3FA !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #27575d !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #255866 !important; + } + + .beVJOq, + .cYvszO { + background-color: #233f55 !important; + border: #26546b !important; + } + + .kGYPAT { + color: #A5F3FA !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #244158; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #A5F3FA !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/nakano_nino.user.css b/themes/nakano_nino.user.css index e076d62..7ee8bcd 100644 --- a/themes/nakano_nino.user.css +++ b/themes/nakano_nino.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nakano Nino @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1c191d !important; --color-avatar-bg: #1c191d !important; + --color-btn-primary-bg: #d45575 !important; + --color-btn-primary-hover-bg: #d45575 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #3c352499 !important; + --color-attention-muted: #3c352499 !important; + --color-accent-subtle: #d45575AA !important; --color-auto-gray-3: #1c191d !important; --color-auto-gray-1: #1c191d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #272328 !important; --color-bg-discussions-row-emoji-box: #2d2330 !important; --color-current-user-tip-border: #2d2330 !important; + --color-btn-bg: #2d2330 !important; + --color-fg-muted: #ab8d9f !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #68c4ee !important; --color-text-link: #d45575 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ab8d9f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2d2330; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1f1a1f !important; + } + + .kVpYHc { + border: #232024 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2d2330 !important; + border-color: #d45575 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2d2330 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2b1e26 !important; + } + + .beVJOq, + .cYvszO { + background-color: #221c23 !important; + border: #232024 !important; + } + + .kGYPAT { + color: #d45575 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1c191d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d45575 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/nakano_yotsuba.user.css b/themes/nakano_yotsuba.user.css index 828e948..7db68ad 100644 --- a/themes/nakano_yotsuba.user.css +++ b/themes/nakano_yotsuba.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Nakano Yotsuba @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #200909 !important; --color-avatar-bg: #200909 !important; + --color-btn-primary-bg: #e86a44 !important; + --color-btn-primary-hover-bg: #e86a44 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #2d281999 !important; + --color-attention-muted: #2d281999 !important; + --color-accent-subtle: #e86a44AA !important; --color-auto-gray-3: #200909 !important; --color-auto-gray-1: #200909 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2d0d0d !important; --color-bg-discussions-row-emoji-box: #2d2330 !important; --color-current-user-tip-border: #2d2330 !important; + --color-btn-bg: #2d2330 !important; + --color-fg-muted: #c08865 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #39e6a6 !important; --color-text-link: #e86a44 !important; @@ -106,6 +115,10 @@ color: #F8E3D7 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #c08865!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2d2330; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #110c15 !important; + } + + .kVpYHc { + border: #231929 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2d2330 !important; + border-color: #e86a44 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2d2330 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #261930 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1a0d20 !important; + border: #231929 !important; + } + + .kGYPAT { + color: #e86a44 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #200909; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e86a44 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/natsuki_dark.user.css b/themes/natsuki_dark.user.css index 1258258..e58c455 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #35102c !important; --color-avatar-bg: #35102c !important; + --color-btn-primary-bg: #E94686 !important; + --color-btn-primary-hover-bg: #E94686 !important; + --color-btn-primary-fg: #e6afca !important; + --color-btn-primary-icon: #e6afca !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #BBBBBB !important; + --color-attention-subtle: #47262899 !important; + --color-attention-muted: #47262899 !important; + --color-accent-subtle: #E94686AA !important; --color-auto-gray-3: #35102c !important; --color-auto-gray-1: #35102c !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #441539 !important; --color-bg-discussions-row-emoji-box: #561b3e !important; --color-current-user-tip-border: #561b3e !important; + --color-btn-bg: #561b3e !important; + --color-fg-muted: #b74170 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #9DC0FF !important; --color-text-link: #E94686 !important; @@ -106,6 +115,10 @@ color: #796675 !important; } +span.Button-label:hover { + color: #e6afca; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #e6afca; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b74170!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #561b3e; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2f0a27 !important; + } + + .kVpYHc { + border: #381927 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #561b3e !important; + border-color: #E94686 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #561b3e !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3c0c33 !important; + } + + .beVJOq, + .cYvszO { + background-color: #330A2B !important; + border: #381927 !important; + } + + .kGYPAT { + color: #E94686 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #35102c; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #E94686 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/natsuki_light.user.css b/themes/natsuki_light.user.css index a0d0238..466757b 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFE5F1 !important; --color-avatar-bg: #FFE5F1 !important; + --color-btn-primary-bg: #E94686 !important; + --color-btn-primary-hover-bg: #E94686 !important; + --color-btn-primary-fg: #f049da !important; + --color-btn-primary-icon: #f049da !important; --color-fg-default: #000000 !important; - --color-fg-muted: #000000AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #f1d9b399 !important; + --color-attention-muted: #f1d9b399 !important; + --color-accent-subtle: #E94686AA !important; --color-auto-gray-3: #FFE5F1 !important; --color-auto-gray-1: #FFE5F1 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #ffdce6 !important; --color-bg-discussions-row-emoji-box: #fdd0e4 !important; --color-current-user-tip-border: #fdd0e4 !important; + --color-btn-bg: #fdd0e4 !important; + --color-fg-muted: #dd87a1 !important; --color-underlinenav-counter-text: #000000 !important; --color-text-primary: #7C75EF !important; --color-text-link: #E94686 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #f049da; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #f049da; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #dd87a1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #fdd0e4; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #FFE0F0 !important; + } + + .kVpYHc { + border: #F1D7E6 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #fdd0e4 !important; + border-color: #E94686 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #fdd0e4 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ffd4ec !important; + } + + .beVJOq, + .cYvszO { + background-color: #f5c1d4 !important; + border: #F1D7E6 !important; + } + + .kGYPAT { + color: #E94686 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFE5F1; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #E94686 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/ram.user.css b/themes/ram.user.css index cc37a07..658c88e 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #342c34 !important; --color-avatar-bg: #342c34 !important; + --color-btn-primary-bg: #e594bf !important; + --color-btn-primary-hover-bg: #e594bf !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #b895c9 !important; + --color-attention-subtle: #49433299 !important; + --color-attention-muted: #49433299 !important; + --color-accent-subtle: #e594bfAA !important; --color-auto-gray-3: #342c34 !important; --color-auto-gray-1: #342c34 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #353139 !important; --color-bg-discussions-row-emoji-box: #373237 !important; --color-current-user-tip-border: #373237 !important; + --color-btn-bg: #373237 !important; + --color-fg-muted: #ab7b9d !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #9d8df6 !important; --color-text-link: #e594bf !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #ab7b9d!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #373237; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2b252b !important; + } + + .kVpYHc { + border: #362d39 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #373237 !important; + border-color: #e594bf !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #373237 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3c353b !important; + } + + .beVJOq, + .cYvszO { + background-color: #373139 !important; + border: #362d39 !important; + } + + .kGYPAT { + color: #e594bf !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #342c34; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e594bf !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/raphtalia.user.css b/themes/raphtalia.user.css index 5ac7b07..32807dd 100644 --- a/themes/raphtalia.user.css +++ b/themes/raphtalia.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Raphtalia @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1e1710 !important; --color-avatar-bg: #1e1710 !important; + --color-btn-primary-bg: #8a3c3d !important; + --color-btn-primary-hover-bg: #8a3c3d !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #cccccc !important; - --color-fg-muted: #ccccccAA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #372f1499 !important; + --color-attention-muted: #372f1499 !important; + --color-accent-subtle: #8a3c3dAA !important; --color-auto-gray-3: #1e1710 !important; --color-auto-gray-1: #1e1710 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2b2016 !important; --color-bg-discussions-row-emoji-box: #3d3328 !important; --color-current-user-tip-border: #3d3328 !important; + --color-btn-bg: #3d3328 !important; + --color-fg-muted: #bfb38c !important; --color-underlinenav-counter-text: #cccccc !important; --color-text-primary: #fd9144 !important; --color-text-link: #8a3c3d !important; @@ -106,6 +115,10 @@ color: #6c5f55 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #bfb38c!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #3d3328; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1c140f !important; + } + + .kVpYHc { + border: #30231a !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #3d3328 !important; + border-color: #8a3c3d !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #3d3328 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3b2315 !important; + } + + .beVJOq, + .cYvszO { + background-color: #1e160f !important; + border: #30231a !important; + } + + .kGYPAT { + color: #8a3c3d !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1e1710; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #8a3c3d !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rei.user.css b/themes/rei.user.css index 1e13856..bcdda57 100644 --- a/themes/rei.user.css +++ b/themes/rei.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rei @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #191b1f !important; --color-avatar-bg: #191b1f !important; + --color-btn-primary-bg: #b53241 !important; + --color-btn-primary-hover-bg: #b53241 !important; + --color-btn-primary-fg: #ffffff !important; + --color-btn-primary-icon: #ffffff !important; --color-fg-default: #d2d2d2 !important; - --color-fg-muted: #d2d2d2AA !important; + --color-btn-text: #bbbbbb !important; + --color-attention-subtle: #2f2f1899 !important; + --color-attention-muted: #2f2f1899 !important; + --color-accent-subtle: #b53241AA !important; --color-auto-gray-3: #191b1f !important; --color-auto-gray-1: #191b1f !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1f2125 !important; --color-bg-discussions-row-emoji-box: #212122 !important; --color-current-user-tip-border: #212122 !important; + --color-btn-bg: #212122 !important; + --color-fg-muted: #7da1c2 !important; --color-underlinenav-counter-text: #d2d2d2 !important; --color-text-primary: #45e68a !important; --color-text-link: #b53241 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #ffffff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffffff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7da1c2!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #212122; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #131514 !important; + } + + .kVpYHc { + border: #1e211f !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #212122 !important; + border-color: #b53241 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #212122 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #242626 !important; + } + + .beVJOq, + .cYvszO { + background-color: #191b1a !important; + border: #1e211f !important; + } + + .kGYPAT { + color: #b53241 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #191b1f; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #b53241 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rem.user.css b/themes/rem.user.css index b385107..2b163d9 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2c2d34 !important; --color-avatar-bg: #2c2d34 !important; + --color-btn-primary-bg: #578CDA !important; + --color-btn-primary-hover-bg: #578CDA !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #6b8b99 !important; + --color-attention-subtle: #44443299 !important; + --color-attention-muted: #44443299 !important; + --color-accent-subtle: #578CDAAA !important; --color-auto-gray-3: #2c2d34 !important; --color-auto-gray-1: #2c2d34 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #313439 !important; --color-bg-discussions-row-emoji-box: #323337 !important; --color-current-user-tip-border: #323337 !important; + --color-btn-bg: #323337 !important; + --color-fg-muted: #7b8bab !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #9d8df6 !important; --color-text-link: #578CDA !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #7b8bab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #323337; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #25262b !important; + } + + .kVpYHc { + border: #2d3439 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #323337 !important; + border-color: #578CDA !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #323337 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #36373d !important; + } + + .beVJOq, + .cYvszO { + background-color: #313239 !important; + border: #2d3439 !important; + } + + .kGYPAT { + color: #578CDA !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2c2d34; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #578CDA !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rias_crimson.user.css b/themes/rias_crimson.user.css index fe0de09..8a670eb 100644 --- a/themes/rias_crimson.user.css +++ b/themes/rias_crimson.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rias Crimson @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #3E1010 !important; --color-avatar-bg: #3E1010 !important; + --color-btn-primary-bg: #e03943 !important; + --color-btn-primary-hover-bg: #e03943 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #fafafa !important; - --color-fg-muted: #fafafaAA !important; + --color-btn-text: #996b6b !important; + --color-attention-subtle: #532e1799 !important; + --color-attention-muted: #532e1799 !important; + --color-accent-subtle: #e03943AA !important; --color-auto-gray-3: #3E1010 !important; --color-auto-gray-1: #3E1010 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #491818 !important; --color-bg-discussions-row-emoji-box: #611c1c !important; --color-current-user-tip-border: #611c1c !important; + --color-btn-bg: #611c1c !important; + --color-fg-muted: #cdacac !important; --color-underlinenav-counter-text: #fafafa !important; --color-text-primary: #eea367 !important; --color-text-link: #e03943 !important; @@ -106,6 +115,10 @@ color: #cdb0b0 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #cdacac!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #611c1c; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #3d1313 !important; + } + + .kVpYHc { + border: #551818 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #611c1c !important; + border-color: #e03943 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #611c1c !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #4c1818 !important; + } + + .beVJOq, + .cYvszO { + background-color: #401010 !important; + border: #551818 !important; + } + + .kGYPAT { + color: #e03943 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #3E1010; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e03943 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rias_onyx.user.css b/themes/rias_onyx.user.css index 8c578b9..be7d65d 100644 --- a/themes/rias_onyx.user.css +++ b/themes/rias_onyx.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rias Onyx @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #100000 !important; --color-avatar-bg: #100000 !important; + --color-btn-primary-bg: #7C171F !important; + --color-btn-primary-hover-bg: #7C171F !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #d8d8d8 !important; - --color-fg-muted: #d8d8d8AA !important; + --color-btn-text: #996b6b !important; + --color-attention-subtle: #2c1d0799 !important; + --color-attention-muted: #2c1d0799 !important; + --color-accent-subtle: #7C171FAA !important; --color-auto-gray-3: #100000 !important; --color-auto-gray-1: #100000 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1e0607 !important; --color-bg-discussions-row-emoji-box: #2b0808 !important; --color-current-user-tip-border: #2b0808 !important; + --color-btn-bg: #2b0808 !important; + --color-fg-muted: #6e2727 !important; --color-underlinenav-counter-text: #d8d8d8 !important; --color-text-primary: #b2dbe3 !important; --color-text-link: #7C171F !important; @@ -106,6 +115,10 @@ color: #97706f !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #6e2727!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2b0808; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #100000 !important; + } + + .kVpYHc { + border: #220000 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2b0808 !important; + border-color: #7C171F !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2b0808 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2e090b !important; + } + + .beVJOq, + .cYvszO { + background-color: #1c0607 !important; + border: #220000 !important; + } + + .kGYPAT { + color: #7C171F !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #100000; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #7C171F !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rimuru_tempest.user.css b/themes/rimuru_tempest.user.css index c5ea29d..da248c0 100644 --- a/themes/rimuru_tempest.user.css +++ b/themes/rimuru_tempest.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Rimuru Tempest @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1c171d !important; --color-avatar-bg: #1c171d !important; + --color-btn-primary-bg: #d7cf8b !important; + --color-btn-primary-hover-bg: #d7cf8b !important; + --color-btn-primary-fg: #262127 !important; + --color-btn-primary-icon: #262127 !important; --color-fg-default: #d3d3d3 !important; - --color-fg-muted: #d3d3d3AA !important; + --color-btn-text: #b4afa2 !important; + --color-attention-subtle: #3b352499 !important; + --color-attention-muted: #3b352499 !important; + --color-accent-subtle: #d7cf8bAA !important; --color-auto-gray-3: #1c171d !important; --color-auto-gray-1: #1c171d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #302931 !important; --color-bg-discussions-row-emoji-box: #433f46 !important; --color-current-user-tip-border: #433f46 !important; + --color-btn-bg: #433f46 !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #d3d3d3 !important; --color-text-primary: #FF96FD !important; --color-text-link: #d7cf8b !important; @@ -106,6 +115,10 @@ color: #675a6c !important; } +span.Button-label:hover { + color: #262127; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #262127; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #433f46; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #211c22 !important; + } + + .kVpYHc { + border: #3f3741 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #433f46 !important; + border-color: #d7cf8b !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #433f46 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3c373f !important; + } + + .beVJOq, + .cYvszO { + background-color: #151016 !important; + border: #3f3741 !important; + } + + .kGYPAT { + color: #d7cf8b !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1c171d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d7cf8b !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/rory_mercury.user.css b/themes/rory_mercury.user.css index 1c50396..d9eba57 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #141417 !important; --color-avatar-bg: #141417 !important; + --color-btn-primary-bg: #b53241 !important; + --color-btn-primary-hover-bg: #b53241 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #c3c3c3 !important; - --color-fg-muted: #c3c3c3AA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #33321e99 !important; + --color-attention-muted: #33321e99 !important; + --color-accent-subtle: #b53241AA !important; --color-auto-gray-3: #141417 !important; --color-auto-gray-1: #141417 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #1a1a1d !important; --color-bg-discussions-row-emoji-box: #1f1a1a !important; --color-current-user-tip-border: #1f1a1a !important; + --color-btn-bg: #1f1a1a !important; + --color-fg-muted: #843030 !important; --color-underlinenav-counter-text: #c3c3c3 !important; --color-text-primary: #7F8E90 !important; --color-text-link: #b53241 !important; @@ -106,6 +115,10 @@ color: #796666 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #843030!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #1f1a1a; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #18181b !important; + } + + .kVpYHc { + border: #261616 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #1f1a1a !important; + border-color: #b53241 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #1f1a1a !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #2a0c0c !important; + } + + .beVJOq, + .cYvszO { + background-color: #111114 !important; + border: #261616 !important; + } + + .kGYPAT { + color: #b53241 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #141417; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #b53241 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/ryuko_dark.user.css b/themes/ryuko_dark.user.css index fd8418b..39c34eb 100644 --- a/themes/ryuko_dark.user.css +++ b/themes/ryuko_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ryuko Dark @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2b3238 !important; --color-avatar-bg: #2b3238 !important; + --color-btn-primary-bg: #a73035 !important; + --color-btn-primary-hover-bg: #a73035 !important; + --color-btn-primary-fg: #E2CB14 !important; + --color-btn-primary-icon: #E2CB14 !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #6b8b99 !important; + --color-attention-subtle: #43483799 !important; + --color-attention-muted: #43483799 !important; + --color-accent-subtle: #a73035AA !important; --color-auto-gray-3: #2b3238 !important; --color-auto-gray-1: #2b3238 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2a3037 !important; --color-bg-discussions-row-emoji-box: #2b3237 !important; --color-current-user-tip-border: #2b3237 !important; + --color-btn-bg: #2b3237 !important; + --color-fg-muted: #6e707a !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #99B6D5 !important; --color-text-link: #a73035 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #E2CB14; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #E2CB14; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #6e707a!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2b3237; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2b3238 !important; + } + + .kVpYHc { + border: #30383d !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2b3237 !important; + border-color: #a73035 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2b3237 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #573238 !important; + } + + .beVJOq, + .cYvszO { + background-color: #282f35 !important; + border: #30383d !important; + } + + .kGYPAT { + color: #a73035 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2b3238; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #a73035 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/ryuko_light.user.css b/themes/ryuko_light.user.css index e81c2b6..500fe1c 100644 --- a/themes/ryuko_light.user.css +++ b/themes/ryuko_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Ryuko Light @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffffff !important; --color-avatar-bg: #ffffff !important; + --color-btn-primary-bg: #169ef2 !important; + --color-btn-primary-hover-bg: #169ef2 !important; + --color-btn-primary-fg: #103365 !important; + --color-btn-primary-icon: #103365 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #103365 !important; + --color-attention-subtle: #eae9b899 !important; + --color-attention-muted: #eae9b899 !important; + --color-accent-subtle: #169ef2AA !important; --color-auto-gray-3: #ffffff !important; --color-auto-gray-1: #ffffff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #e6effc !important; --color-bg-discussions-row-emoji-box: #aaddfd !important; --color-current-user-tip-border: #aaddfd !important; + --color-btn-bg: #aaddfd !important; + --color-fg-muted: #1f79a1 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #007972 !important; --color-text-link: #169ef2 !important; @@ -106,6 +115,10 @@ color: #344f69 !important; } +span.Button-label:hover { + color: #103365; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #103365; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #1f79a1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #aaddfd; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f5f6f7 !important; + } + + .kVpYHc { + border: #e5e5ee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #aaddfd !important; + border-color: #169ef2 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #aaddfd !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e1f1fe !important; + } + + .beVJOq, + .cYvszO { + background-color: #eef6ff !important; + border: #e5e5ee !important; + } + + .kGYPAT { + color: #169ef2 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffffff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #169ef2 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/sagiri.user.css b/themes/sagiri.user.css index 2c0d0f4..2bfb93e 100644 --- a/themes/sagiri.user.css +++ b/themes/sagiri.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Sagiri @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #0a3b36 !important; --color-avatar-bg: #0a3b36 !important; + --color-btn-primary-bg: #5eabb8 !important; + --color-btn-primary-hover-bg: #5eabb8 !important; + --color-btn-primary-fg: #e7e9ff !important; + --color-btn-primary-icon: #e7e9ff !important; --color-fg-default: #f3edff !important; - --color-fg-muted: #f3edffAA !important; + --color-btn-text: #f6f1ff !important; + --color-attention-subtle: #27533899 !important; + --color-attention-muted: #27533899 !important; + --color-accent-subtle: #5eabb8AA !important; --color-auto-gray-3: #0a3b36 !important; --color-auto-gray-1: #0a3b36 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #0b463f !important; --color-bg-discussions-row-emoji-box: #135e57 !important; --color-current-user-tip-border: #135e57 !important; + --color-btn-bg: #135e57 !important; + --color-fg-muted: #eae99a !important; --color-underlinenav-counter-text: #f3edff !important; --color-text-primary: #F1A4FA !important; --color-text-link: #5eabb8 !important; @@ -106,6 +115,10 @@ color: #ffffff !important; } +span.Button-label:hover { + color: #e7e9ff; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #e7e9ff; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #eae99a!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #135e57; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0a3f39 !important; + } + + .kVpYHc { + border: #0d514a !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #135e57 !important; + border-color: #5eabb8 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #135e57 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #242431 !important; + } + + .beVJOq, + .cYvszO { + background-color: #08332e !important; + border: #0d514a !important; + } + + .kGYPAT { + color: #5eabb8 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #0a3b36; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #5eabb8 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, @@ -18213,7 +18272,7 @@ button.project-header-link, td.icon, .facebox-close, } .tree-browser-result mark { - color: #FF8282 !important; + color: #9FBBFF !important; } .timeline-comment-action, #suggestions a, .table-list-header-toggle .btn-link, @@ -19304,15 +19363,15 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* constant.other.symbol */ .pl-e { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity */ .pl-ef { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.function */ .pl-en { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.name */ .pl-enc { @@ -19320,11 +19379,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.class */ .pl-enf { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.name.function */ .pl-enm { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.name.method-name */ .pl-ens { @@ -19336,11 +19395,11 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* entity.name.tag */ .pl-entc { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.name.type.class */ .pl-enti { - color: #FF8282 !important; + color: #9FBBFF !important; font-weight: bold !important; } /* entity.name.type.instance */ @@ -19369,7 +19428,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* punctuation.definition.entity */ .pl-eoi { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.other.inherited-class */ .pl-k { @@ -19519,15 +19578,15 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* support.function */ .pl-smc { - color: #FF8282 !important; + color: #9FBBFF !important; } /* storage.modifier.c */ .pl-smi { - color: #FF8282 !important; + color: #9FBBFF !important; } /* storage.modifier.import */ .pl-smp { - color: #FF8282 !important; + color: #9FBBFF !important; } /* storage.modifier.package */ .pl-sok { @@ -19583,7 +19642,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* variable.interpolation */ .pl-vo { - color: #FF8282 !important; + color: #9FBBFF !important; } /* variable.other */ .pl-vpf { @@ -19657,7 +19716,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* variable.parameter.url */ .pl-entl { - color: #FF8282 !important; + color: #9FBBFF !important; } /* entity.name.tag.label */ .pl-corl, .highlight .pl-corl span.x { @@ -19666,8 +19725,8 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { } /* links */ .pl-token.active, .pl-token:hover { - background: #FF8282 !important; - color: #FF8282 !important; + background: #9FBBFF !important; + color: #9FBBFF !important; } /*! CodeMirror: Twilight */ /* based on https://github.com/codemirror/CodeMirror/blob/master/theme/twilight.css */ @@ -19713,7 +19772,7 @@ a.notifications-dropdown-see-all:hover, .top-nav .dropdown-menu a:hover { color: #FFD448 !important; } .cm-comment { - color: #FF8282 !important; + color: #9FBBFF !important; font-style: italic !important; font-weight: normal !important; } diff --git a/themes/satsuki_dark.user.css b/themes/satsuki_dark.user.css index adb1526..0ab1b8b 100644 --- a/themes/satsuki_dark.user.css +++ b/themes/satsuki_dark.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Satsuki Dark @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #242729 !important; --color-avatar-bg: #242729 !important; + --color-btn-primary-bg: #f03022 !important; + --color-btn-primary-hover-bg: #f03022 !important; + --color-btn-primary-fg: #fefefe !important; + --color-btn-primary-icon: #fefefe !important; --color-fg-default: #d3d3d3 !important; - --color-fg-muted: #d3d3d3AA !important; + --color-btn-text: #94918c !important; + --color-attention-subtle: #3b3c2899 !important; + --color-attention-muted: #3b3c2899 !important; + --color-accent-subtle: #f03022AA !important; --color-auto-gray-3: #242729 !important; --color-auto-gray-1: #242729 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2b2e31 !important; --color-bg-discussions-row-emoji-box: #303537 !important; --color-current-user-tip-border: #303537 !important; + --color-btn-bg: #303537 !important; + --color-fg-muted: #af543f !important; --color-underlinenav-counter-text: #d3d3d3 !important; --color-text-primary: #46F263 !important; --color-text-link: #f03022 !important; @@ -106,6 +115,10 @@ color: #596570 !important; } +span.Button-label:hover { + color: #fefefe; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fefefe; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #af543f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #303537; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #212427 !important; + } + + .kVpYHc { + border: #32373a !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #303537 !important; + border-color: #f03022 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #303537 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #5f2c2c !important; + } + + .beVJOq, + .cYvszO { + background-color: #1d2123 !important; + border: #32373a !important; + } + + .kGYPAT { + color: #f03022 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #242729; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #f03022 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/satsuki_light.user.css b/themes/satsuki_light.user.css index 3790f7b..93d1d36 100644 --- a/themes/satsuki_light.user.css +++ b/themes/satsuki_light.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Satsuki Light @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffffff !important; --color-avatar-bg: #ffffff !important; + --color-btn-primary-bg: #275AB3 !important; + --color-btn-primary-hover-bg: #275AB3 !important; + --color-btn-primary-fg: #fafbfc !important; + --color-btn-primary-icon: #fafbfc !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #103365 !important; + --color-attention-subtle: #eae9b899 !important; + --color-attention-muted: #eae9b899 !important; + --color-accent-subtle: #275AB3AA !important; --color-auto-gray-3: #ffffff !important; --color-auto-gray-1: #ffffff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #e6effc !important; --color-bg-discussions-row-emoji-box: #add3fd !important; --color-current-user-tip-border: #add3fd !important; + --color-btn-bg: #add3fd !important; + --color-fg-muted: #1f45a1 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #79074c !important; --color-text-link: #275AB3 !important; @@ -106,6 +115,10 @@ color: #344f69 !important; } +span.Button-label:hover { + color: #fafbfc; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fafbfc; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #1f45a1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #add3fd; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f5f6f7 !important; + } + + .kVpYHc { + border: #e5e5ee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #add3fd !important; + border-color: #275AB3 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #add3fd !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e1f1fe !important; + } + + .beVJOq, + .cYvszO { + background-color: #eef6ff !important; + border: #e5e5ee !important; + } + + .kGYPAT { + color: #275AB3 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffffff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #275AB3 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/sayori_dark.user.css b/themes/sayori_dark.user.css index cc50801..22d6a74 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #111b2d !important; --color-avatar-bg: #111b2d !important; + --color-btn-primary-bg: #00BCD4 !important; + --color-btn-primary-hover-bg: #00BCD4 !important; + --color-btn-primary-fg: #9CF5FF !important; + --color-btn-primary-icon: #9CF5FF !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #26A8E8 !important; + --color-attention-subtle: #2b352f99 !important; + --color-attention-muted: #2b352f99 !important; + --color-accent-subtle: #00BCD4AA !important; --color-auto-gray-3: #111b2d !important; --color-auto-gray-1: #111b2d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #17243c !important; --color-bg-discussions-row-emoji-box: #18303f !important; --color-current-user-tip-border: #18303f !important; + --color-btn-bg: #18303f !important; + --color-fg-muted: #3a9fb1 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #FFF37C !important; --color-text-link: #00BCD4 !important; @@ -106,6 +115,10 @@ color: #666879 !important; } +span.Button-label:hover { + color: #9CF5FF; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #9CF5FF; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #3a9fb1!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #18303f; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0e1b2f !important; + } + + .kVpYHc { + border: #1a1c2d !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #18303f !important; + border-color: #00BCD4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #18303f !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #232e3f !important; + } + + .beVJOq, + .cYvszO { + background-color: #131d2d !important; + border: #1a1c2d !important; + } + + .kGYPAT { + color: #00BCD4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #111b2d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #00BCD4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/sayori_light.user.css b/themes/sayori_light.user.css index a39e758..804a418 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #f0faff !important; --color-avatar-bg: #f0faff !important; + --color-btn-primary-bg: #00bcd4 !important; + --color-btn-primary-hover-bg: #00bcd4 !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #e7ebbe99 !important; + --color-attention-muted: #e7ebbe99 !important; + --color-accent-subtle: #00bcd4AA !important; --color-auto-gray-3: #f0faff !important; --color-auto-gray-1: #f0faff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #dceef7 !important; --color-bg-discussions-row-emoji-box: #d8e6ee !important; --color-current-user-tip-border: #d8e6ee !important; + --color-btn-bg: #d8e6ee !important; + --color-fg-muted: #64a6ac !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #9f69dc !important; --color-text-link: #00bcd4 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #64a6ac!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #d8e6ee; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f0faff !important; + } + + .kVpYHc { + border: #e2eaee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #d8e6ee !important; + border-color: #00bcd4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #d8e6ee !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e0f2ff !important; + } + + .beVJOq, + .cYvszO { + background-color: #ecfbff !important; + border: #e2eaee !important; + } + + .kGYPAT { + color: #00bcd4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #f0faff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #00bcd4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/senko.user.css b/themes/senko.user.css index e53535e..33af424 100644 --- a/themes/senko.user.css +++ b/themes/senko.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Senko @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFE7CD !important; --color-avatar-bg: #FFE7CD !important; + --color-btn-primary-bg: #cb3752 !important; + --color-btn-primary-hover-bg: #cb3752 !important; + --color-btn-primary-fg: #ffe8d1 !important; + --color-btn-primary-icon: #ffe8d1 !important; --color-fg-default: #073642 !important; - --color-fg-muted: #073642AA !important; + --color-btn-text: #7f592e !important; + --color-attention-subtle: #f6dfb099 !important; + --color-attention-muted: #f6dfb099 !important; + --color-accent-subtle: #cb3752AA !important; --color-auto-gray-3: #FFE7CD !important; --color-auto-gray-1: #FFE7CD !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #f9e2c4 !important; --color-bg-discussions-row-emoji-box: #f3d9bc !important; --color-current-user-tip-border: #f3d9bc !important; + --color-btn-bg: #f3d9bc !important; + --color-fg-muted: #b87157 !important; --color-underlinenav-counter-text: #073642 !important; --color-text-primary: #4B72D7 !important; --color-text-link: #cb3752 !important; @@ -106,6 +115,10 @@ color: #CD9774 !important; } +span.Button-label:hover { + color: #ffe8d1; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffe8d1; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b87157!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #f3d9bc; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fce2c6 !important; + } + + .kVpYHc { + border: #dbc8b4 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #f3d9bc !important; + border-color: #cb3752 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #f3d9bc !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #f8dec2 !important; + } + + .beVJOq, + .cYvszO { + background-color: #f5dfbe !important; + border: #dbc8b4 !important; + } + + .kGYPAT { + color: #cb3752 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFE7CD; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #cb3752 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/shigure.user.css b/themes/shigure.user.css index 60f30fe..fda3862 100644 --- a/themes/shigure.user.css +++ b/themes/shigure.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Shigure @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #e9e9ff !important; --color-avatar-bg: #e9e9ff !important; + --color-btn-primary-bg: #5e1f7f !important; + --color-btn-primary-hover-bg: #5e1f7f !important; + --color-btn-primary-fg: #d3dcfd !important; + --color-btn-primary-icon: #d3dcfd !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #38328c !important; + --color-attention-subtle: #d8d5be99 !important; + --color-attention-muted: #d8d5be99 !important; + --color-accent-subtle: #5e1f7fAA !important; --color-auto-gray-3: #e9e9ff !important; --color-auto-gray-1: #e9e9ff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #d4d2ff !important; --color-bg-discussions-row-emoji-box: #b1affc !important; --color-current-user-tip-border: #b1affc !important; + --color-btn-bg: #b1affc !important; + --color-fg-muted: #584484 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #5E037E !important; --color-text-link: #5e1f7f !important; @@ -106,6 +115,10 @@ color: #38336b !important; } +span.Button-label:hover { + color: #d3dcfd; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #d3dcfd; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #584484!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #b1affc; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #dad9ff !important; + } + + .kVpYHc { + border: #d6d5fe !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #b1affc !important; + border-color: #5e1f7f !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #b1affc !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #d5d7fe !important; + } + + .beVJOq, + .cYvszO { + background-color: #cccaff !important; + border: #d6d5fe !important; + } + + .kGYPAT { + color: #5e1f7f !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #e9e9ff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #5e1f7f !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/shima_rin.user.css b/themes/shima_rin.user.css index 94e923e..a98a463 100644 --- a/themes/shima_rin.user.css +++ b/themes/shima_rin.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Shima Rin @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2b303b !important; --color-avatar-bg: #2b303b !important; + --color-btn-primary-bg: #6688ad !important; + --color-btn-primary-hover-bg: #6688ad !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #b0b0b0 !important; - --color-fg-muted: #b0b0b0AA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #464a3c99 !important; + --color-attention-muted: #464a3c99 !important; + --color-accent-subtle: #6688adAA !important; --color-auto-gray-3: #2b303b !important; --color-auto-gray-1: #2b303b !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #313a49 !important; --color-bg-discussions-row-emoji-box: #3a4148 !important; --color-current-user-tip-border: #3a4148 !important; + --color-btn-bg: #3a4148 !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #b0b0b0 !important; --color-text-primary: #61ead9 !important; --color-text-link: #6688ad !important; @@ -106,6 +115,10 @@ color: #5a626c !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #3a4148; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #2e343e !important; + } + + .kVpYHc { + border: #393e48 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #3a4148 !important; + border-color: #6688ad !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #3a4148 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3d4754 !important; + } + + .beVJOq, + .cYvszO { + background-color: #2c3039 !important; + border: #393e48 !important; + } + + .kGYPAT { + color: #6688ad !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2b303b; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #6688ad !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/sonoda_umi.user.css b/themes/sonoda_umi.user.css index aa29a5d..bfafdf3 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #15173c !important; --color-avatar-bg: #15173c !important; + --color-btn-primary-bg: #EFA554 !important; + --color-btn-primary-hover-bg: #EFA554 !important; + --color-btn-primary-fg: #222222 !important; + --color-btn-primary-icon: #222222 !important; --color-fg-default: #d0d0d0 !important; - --color-fg-muted: #d0d0d0AA !important; + --color-btn-text: #a0a0a7 !important; + --color-attention-subtle: #34354199 !important; + --color-attention-muted: #34354199 !important; + --color-accent-subtle: #EFA554AA !important; --color-auto-gray-3: #15173c !important; --color-auto-gray-1: #15173c !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #181A46 !important; --color-bg-discussions-row-emoji-box: #202440 !important; --color-current-user-tip-border: #202440 !important; + --color-btn-bg: #202440 !important; + --color-fg-muted: #6878c2 !important; --color-underlinenav-counter-text: #d0d0d0 !important; --color-text-primary: #BD84DD !important; --color-text-link: #EFA554 !important; @@ -106,6 +115,10 @@ color: #5e5e79 !important; } +span.Button-label:hover { + color: #222222; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #222222; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #6878c2!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #202440; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #191b44 !important; + } + + .kVpYHc { + border: #1c1f50 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #202440 !important; + border-color: #EFA554 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #202440 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #1e214b !important; + } + + .beVJOq, + .cYvszO { + background-color: #151739 !important; + border: #1c1f50 !important; + } + + .kGYPAT { + color: #EFA554 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #15173c; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #EFA554 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/takanashi_rikka.user.css b/themes/takanashi_rikka.user.css index 872dc73..e48de4a 100644 --- a/themes/takanashi_rikka.user.css +++ b/themes/takanashi_rikka.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Takanashi Rikka @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1e1928 !important; --color-avatar-bg: #1e1928 !important; + --color-btn-primary-bg: #dd2a62 !important; + --color-btn-primary-hover-bg: #dd2a62 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #37332799 !important; + --color-attention-muted: #37332799 !important; + --color-accent-subtle: #dd2a62AA !important; --color-auto-gray-3: #1e1928 !important; --color-auto-gray-1: #1e1928 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #2b233a !important; --color-bg-discussions-row-emoji-box: #492f41 !important; --color-current-user-tip-border: #492f41 !important; + --color-btn-bg: #492f41 !important; + --color-fg-muted: #bd7e99 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #8C92FC !important; --color-text-link: #dd2a62 !important; @@ -106,6 +115,10 @@ color: #8e6e7b !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #bd7e99!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #492f41; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1d1926 !important; + } + + .kVpYHc { + border: #2f283c !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #492f41 !important; + border-color: #dd2a62 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #492f41 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #46192c !important; + } + + .beVJOq, + .cYvszO { + background-color: #16121e !important; + border: #2f283c !important; + } + + .kGYPAT { + color: #dd2a62 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1e1928; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #dd2a62 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/tohru.user.css b/themes/tohru.user.css index 2675b31..d87c7c8 100644 --- a/themes/tohru.user.css +++ b/themes/tohru.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Tohru @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffe090 !important; --color-avatar-bg: #ffe090 !important; + --color-btn-primary-bg: #d23c4b !important; + --color-btn-primary-hover-bg: #d23c4b !important; + --color-btn-primary-fg: #652009 !important; + --color-btn-primary-icon: #652009 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #96612f !important; + --color-attention-subtle: #ebd56c99 !important; + --color-attention-muted: #ebd56c99 !important; + --color-accent-subtle: #d23c4bAA !important; --color-auto-gray-3: #ffe090 !important; --color-auto-gray-1: #ffe090 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #ffe797 !important; --color-bg-discussions-row-emoji-box: #ffce85 !important; --color-current-user-tip-border: #ffce85 !important; + --color-btn-bg: #ffce85 !important; + --color-fg-muted: #763530 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #176B82 !important; --color-text-link: #d23c4b !important; @@ -106,6 +115,10 @@ color: #693434 !important; } +span.Button-label:hover { + color: #652009; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #652009; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #763530!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #ffce85; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f6d988 !important; + } + + .kVpYHc { + border: #e8bf69 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #ffce85 !important; + border-color: #d23c4b !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #ffce85 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #f3bc80 !important; + } + + .beVJOq, + .cYvszO { + background-color: #fde388 !important; + border: #e8bf69 !important; + } + + .kGYPAT { + color: #d23c4b !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffe090; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d23c4b !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/tohsaka_rin.user.css b/themes/tohsaka_rin.user.css index 717ac44..6685e43 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #161415 !important; --color-avatar-bg: #161415 !important; + --color-btn-primary-bg: #4c9697 !important; + --color-btn-primary-hover-bg: #4c9697 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #a7a7a7 !important; + --color-attention-subtle: #36331d99 !important; + --color-attention-muted: #36331d99 !important; + --color-accent-subtle: #4c9697AA !important; --color-auto-gray-3: #161415 !important; --color-auto-gray-1: #161415 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #22191b !important; --color-bg-discussions-row-emoji-box: #232121 !important; --color-current-user-tip-border: #232121 !important; + --color-btn-bg: #232121 !important; + --color-fg-muted: #86a4ab !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #e0474b !important; --color-text-link: #4c9697 !important; @@ -106,6 +115,10 @@ color: #847878 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #86a4ab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #232121; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #1b191a !important; + } + + .kVpYHc { + border: #211e1e !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #232121 !important; + border-color: #4c9697 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #232121 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #251719 !important; + } + + .beVJOq, + .cYvszO { + background-color: #151314 !important; + border: #211e1e !important; + } + + .kGYPAT { + color: #4c9697 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #161415; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #4c9697 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/tomori_nao.user.css b/themes/tomori_nao.user.css index 81ce2d4..97bfddf 100644 --- a/themes/tomori_nao.user.css +++ b/themes/tomori_nao.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Tomori Nao @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #efe7de !important; --color-avatar-bg: #efe7de !important; + --color-btn-primary-bg: #276fd8 !important; + --color-btn-primary-hover-bg: #276fd8 !important; + --color-btn-primary-fg: #f5ede5 !important; + --color-btn-primary-icon: #f5ede5 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #2e457f !important; + --color-attention-subtle: #ede3c599 !important; + --color-attention-muted: #ede3c599 !important; + --color-accent-subtle: #276fd8AA !important; --color-auto-gray-3: #efe7de !important; --color-auto-gray-1: #efe7de !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #e2e1e2 !important; --color-bg-discussions-row-emoji-box: #efe6df !important; --color-current-user-tip-border: #efe6df !important; + --color-btn-bg: #efe6df !important; + --color-fg-muted: #608bcd !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #098776 !important; --color-text-link: #276fd8 !important; @@ -106,6 +115,10 @@ color: #417db3 !important; } +span.Button-label:hover { + color: #f5ede5; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #f5ede5; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #608bcd!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #efe6df; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f1e7de !important; + } + + .kVpYHc { + border: #cac3bd !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #efe6df !important; + border-color: #276fd8 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #efe6df !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e8ddd6 !important; + } + + .beVJOq, + .cYvszO { + background-color: #e9e0db !important; + border: #cac3bd !important; + } + + .kGYPAT { + color: #276fd8 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #efe7de; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #276fd8 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/vanilla.user.css b/themes/vanilla.user.css index 03d1265..0127c59 100644 --- a/themes/vanilla.user.css +++ b/themes/vanilla.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Vanilla @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #2b2c3d !important; --color-avatar-bg: #2b2c3d !important; + --color-btn-primary-bg: #9debff !important; + --color-btn-primary-hover-bg: #9debff !important; + --color-btn-primary-fg: #2d2f43 !important; + --color-btn-primary-icon: #2d2f43 !important; --color-fg-default: #cdcdcd !important; - --color-fg-muted: #cdcdcdAA !important; + --color-btn-text: #b4afa2 !important; + --color-attention-subtle: #42413899 !important; + --color-attention-muted: #42413899 !important; + --color-accent-subtle: #9debffAA !important; --color-auto-gray-3: #2b2c3d !important; --color-auto-gray-1: #2b2c3d !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #333446 !important; --color-bg-discussions-row-emoji-box: #393c48 !important; --color-current-user-tip-border: #393c48 !important; + --color-btn-bg: #393c48 !important; + --color-fg-muted: #b0a17f !important; --color-underlinenav-counter-text: #cdcdcd !important; --color-text-primary: #6a96e9 !important; --color-text-link: #9debff !important; @@ -106,6 +115,10 @@ color: #5a5e6c !important; } +span.Button-label:hover { + color: #2d2f43; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #2d2f43; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b0a17f!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #393c48; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #292a3a !important; + } + + .kVpYHc { + border: #383a50 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #393c48 !important; + border-color: #9debff !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #393c48 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #3b3c58 !important; + } + + .beVJOq, + .cYvszO { + background-color: #272935 !important; + border: #383a50 !important; + } + + .kGYPAT { + color: #9debff !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #2b2c3d; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #9debff !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/yukihira_soma.user.css b/themes/yukihira_soma.user.css index 433d6f2..7f0b20d 100644 --- a/themes/yukihira_soma.user.css +++ b/themes/yukihira_soma.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Yukihira Soma @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #09192b !important; --color-avatar-bg: #09192b !important; + --color-btn-primary-bg: #d13358 !important; + --color-btn-primary-hover-bg: #d13358 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #dbdbdb !important; - --color-fg-muted: #dbdbdbAA !important; + --color-btn-text: #ada19c !important; + --color-attention-subtle: #29352e99 !important; + --color-attention-muted: #29352e99 !important; + --color-accent-subtle: #d13358AA !important; --color-auto-gray-3: #09192b !important; --color-auto-gray-1: #09192b !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #172c43 !important; --color-bg-discussions-row-emoji-box: #293b54 !important; --color-current-user-tip-border: #293b54 !important; + --color-btn-bg: #293b54 !important; + --color-fg-muted: #6e89ad !important; --color-underlinenav-counter-text: #dbdbdb !important; --color-text-primary: #8ACAFF !important; --color-text-link: #d13358 !important; @@ -106,6 +115,10 @@ color: #5d6c80 !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #6e89ad!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #293b54; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #0c1c2e !important; + } + + .kVpYHc { + border: #233a55 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #293b54 !important; + border-color: #d13358 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #293b54 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #37232d !important; + } + + .beVJOq, + .cYvszO { + background-color: #06111d !important; + border: #233a55 !important; + } + + .kGYPAT { + color: #d13358 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #09192b; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #d13358 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/yukinoshita_yukino.user.css b/themes/yukinoshita_yukino.user.css index e191d6e..05dbeb0 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #1f2126 !important; --color-avatar-bg: #1f2126 !important; + --color-btn-primary-bg: #2d6382 !important; + --color-btn-primary-hover-bg: #2d6382 !important; + --color-btn-primary-fg: #fbfbfb !important; + --color-btn-primary-icon: #fbfbfb !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #ada89c !important; + --color-attention-subtle: #41412f99 !important; + --color-attention-muted: #41412f99 !important; + --color-accent-subtle: #2d6382AA !important; --color-auto-gray-3: #1f2126 !important; --color-auto-gray-1: #1f2126 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #23252a !important; --color-bg-discussions-row-emoji-box: #2f3136 !important; --color-current-user-tip-border: #2f3136 !important; + --color-btn-bg: #2f3136 !important; + --color-fg-muted: #456186 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #ead979 !important; --color-text-link: #2d6382 !important; @@ -106,6 +115,10 @@ color: #545e6d !important; } +span.Button-label:hover { + color: #fbfbfb; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #fbfbfb; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #456186!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #2f3136; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #282a2f !important; + } + + .kVpYHc { + border: #2b2d32 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #2f3136 !important; + border-color: #2d6382 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #2f3136 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #262c39 !important; + } + + .beVJOq, + .cYvszO { + background-color: #222429 !important; + border: #2b2d32 !important; + } + + .kGYPAT { + color: #2d6382 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #1f2126; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #2d6382 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/yuri_dark.user.css b/themes/yuri_dark.user.css index e973c03..bdcac27 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #422D5A !important; --color-avatar-bg: #422D5A !important; + --color-btn-primary-bg: #AB47BC !important; + --color-btn-primary-hover-bg: #AB47BC !important; + --color-btn-primary-fg: #CCBEFF !important; + --color-btn-primary-icon: #CCBEFF !important; --color-fg-default: #DADADA !important; - --color-fg-muted: #DADADAAA !important; + --color-btn-text: #9c99e3 !important; + --color-attention-subtle: #59455599 !important; + --color-attention-muted: #59455599 !important; + --color-accent-subtle: #AB47BCAA !important; --color-auto-gray-3: #422D5A !important; --color-auto-gray-1: #422D5A !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #473466 !important; --color-bg-discussions-row-emoji-box: #483967 !important; --color-current-user-tip-border: #483967 !important; + --color-btn-bg: #483967 !important; + --color-fg-muted: #9d52ab !important; --color-underlinenav-counter-text: #DADADA !important; --color-text-primary: #F1FF86 !important; --color-text-link: #AB47BC !important; @@ -106,6 +115,10 @@ color: #6f6679 !important; } +span.Button-label:hover { + color: #CCBEFF; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #CCBEFF; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #9d52ab!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #483967; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #442e5c !important; + } + + .kVpYHc { + border: #4d3a63 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #483967 !important; + border-color: #AB47BC !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #483967 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #533668 !important; + } + + .beVJOq, + .cYvszO { + background-color: #412D62 !important; + border: #4d3a63 !important; + } + + .kGYPAT { + color: #AB47BC !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #422D5A; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #AB47BC !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/yuri_light.user.css b/themes/yuri_light.user.css index 22d450e..d902293 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 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #f3f0ff !important; --color-avatar-bg: #f3f0ff !important; + --color-btn-primary-bg: #ab74cb !important; + --color-btn-primary-hover-bg: #ab74cb !important; + --color-btn-primary-fg: #393d45 !important; + --color-btn-primary-icon: #393d45 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #eae4be99 !important; + --color-attention-muted: #eae4be99 !important; + --color-accent-subtle: #ab74cbAA !important; --color-auto-gray-3: #f3f0ff !important; --color-auto-gray-1: #f3f0ff !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #e4dcf7 !important; --color-bg-discussions-row-emoji-box: #e1d8ee !important; --color-current-user-tip-border: #e1d8ee !important; + --color-btn-bg: #e1d8ee !important; + --color-fg-muted: #8864ac !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #D579D0 !important; --color-text-link: #ab74cb !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #393d45; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #393d45; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #8864ac!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #e1d8ee; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f5f0ff !important; + } + + .kVpYHc { + border: #e2e3ee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #e1d8ee !important; + border-color: #ab74cb !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #e1d8ee !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #e9e0ff !important; + } + + .beVJOq, + .cYvszO { + background-color: #f5ecff !important; + border: #e2e3ee !important; + } + + .kGYPAT { + color: #ab74cb !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #f3f0ff; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #ab74cb !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/yuzuriha_inori.user.css b/themes/yuzuriha_inori.user.css index 5878f97..f8a08dc 100644 --- a/themes/yuzuriha_inori.user.css +++ b/themes/yuzuriha_inori.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Yuzuriha Inori @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #FFA772 !important; --color-avatar-bg: #FFA772 !important; + --color-btn-primary-bg: #ba1515 !important; + --color-btn-primary-hover-bg: #ba1515 !important; + --color-btn-primary-fg: #f6a873 !important; + --color-btn-primary-icon: #f6a873 !important; --color-fg-default: #101010 !important; - --color-fg-muted: #101010AA !important; + --color-btn-text: #8c3232 !important; + --color-attention-subtle: #f3ab6599 !important; + --color-attention-muted: #f3ab6599 !important; + --color-accent-subtle: #ba1515AA !important; --color-auto-gray-3: #FFA772 !important; --color-auto-gray-1: #FFA772 !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #fd9c8c !important; --color-bg-discussions-row-emoji-box: #fdbf92 !important; --color-current-user-tip-border: #fdbf92 !important; + --color-btn-bg: #fdbf92 !important; + --color-fg-muted: #894935 !important; --color-underlinenav-counter-text: #101010 !important; --color-text-primary: #0B6374 !important; --color-text-link: #ba1515 !important; @@ -106,6 +115,10 @@ color: #743333 !important; } +span.Button-label:hover { + color: #f6a873; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #f6a873; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #894935!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #fdbf92; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #f8a56e !important; + } + + .kVpYHc { + border: #cd7e48 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #fdbf92 !important; + border-color: #ba1515 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #fdbf92 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ef998c !important; + } + + .beVJOq, + .cYvszO { + background-color: #f69b5c !important; + border: #cd7e48 !important; + } + + .kGYPAT { + color: #ba1515 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #FFA772; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #ba1515 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/zero_two_dark_obsidian.user.css b/themes/zero_two_dark_obsidian.user.css index 5734f6f..fec0a40 100644 --- a/themes/zero_two_dark_obsidian.user.css +++ b/themes/zero_two_dark_obsidian.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Zero Two Dark Obsidian @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #17070e !important; --color-avatar-bg: #17070e !important; + --color-btn-primary-bg: #1ecd86 !important; + --color-btn-primary-hover-bg: #1ecd86 !important; + --color-btn-primary-fg: #1a0c12 !important; + --color-btn-primary-icon: #1a0c12 !important; --color-fg-default: #bbbbbb !important; - --color-fg-muted: #bbbbbbAA !important; + --color-btn-text: #6b997c !important; + --color-attention-subtle: #31261399 !important; + --color-attention-muted: #31261399 !important; + --color-accent-subtle: #1ecd86AA !important; --color-auto-gray-3: #17070e !important; --color-auto-gray-1: #17070e !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #261d21 !important; --color-bg-discussions-row-emoji-box: #29312b !important; --color-current-user-tip-border: #29312b !important; + --color-btn-bg: #29312b !important; + --color-fg-muted: #5c9077 !important; --color-underlinenav-counter-text: #bbbbbb !important; --color-text-primary: #B9F8BC !important; --color-text-link: #1ecd86 !important; @@ -106,6 +115,10 @@ color: #53615B !important; } +span.Button-label:hover { + color: #1a0c12; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #1a0c12; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #5c9077!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #29312b; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #150a0e !important; + } + + .kVpYHc { + border: #2c2226 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #29312b !important; + border-color: #1ecd86 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #29312b !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #152c1e !important; + } + + .beVJOq, + .cYvszO { + background-color: #0e0509 !important; + border: #2c2226 !important; + } + + .kGYPAT { + color: #1ecd86 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #17070e; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #1ecd86 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/zero_two_dark_rose.user.css b/themes/zero_two_dark_rose.user.css index ee7829b..7a83a94 100644 --- a/themes/zero_two_dark_rose.user.css +++ b/themes/zero_two_dark_rose.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Zero Two Dark Rose @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #310f0f !important; --color-avatar-bg: #310f0f !important; + --color-btn-primary-bg: #e4dad4 !important; + --color-btn-primary-hover-bg: #e4dad4 !important; + --color-btn-primary-fg: #330f10 !important; + --color-btn-primary-icon: #330f10 !important; --color-fg-default: #efefef !important; - --color-fg-muted: #efefefAA !important; + --color-btn-text: #b2918a !important; + --color-attention-subtle: #48291399 !important; + --color-attention-muted: #48291399 !important; + --color-accent-subtle: #e4dad4AA !important; --color-auto-gray-3: #310f0f !important; --color-auto-gray-1: #310f0f !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #3c1414 !important; --color-bg-discussions-row-emoji-box: #541819 !important; --color-current-user-tip-border: #541819 !important; + --color-btn-bg: #541819 !important; + --color-fg-muted: #b19e78 !important; --color-underlinenav-counter-text: #efefef !important; --color-text-primary: #C04750 !important; --color-text-link: #e4dad4 !important; @@ -106,6 +115,10 @@ color: #a87975 !important; } +span.Button-label:hover { + color: #330f10; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #330f10; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #b19e78!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #541819; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #300d0e !important; + } + + .kVpYHc { + border: #481818 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #541819 !important; + border-color: #e4dad4 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #541819 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #461819 !important; + } + + .beVJOq, + .cYvszO { + background-color: #330e0e !important; + border: #481818 !important; + } + + .kGYPAT { + color: #e4dad4 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #310f0f; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #e4dad4 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/zero_two_light_lily.user.css b/themes/zero_two_light_lily.user.css index 6556957..09849ec 100644 --- a/themes/zero_two_light_lily.user.css +++ b/themes/zero_two_light_lily.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Zero Two Light Lily @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #fcfcfc !important; --color-avatar-bg: #fcfcfc !important; + --color-btn-primary-bg: #A62210 !important; + --color-btn-primary-hover-bg: #A62210 !important; + --color-btn-primary-fg: #EFA554 !important; + --color-btn-primary-icon: #EFA554 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #eeebba99 !important; + --color-attention-muted: #eeebba99 !important; + --color-accent-subtle: #A62210AA !important; --color-auto-gray-3: #fcfcfc !important; --color-auto-gray-1: #fcfcfc !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #eef9fe !important; --color-bg-discussions-row-emoji-box: #f0f0f0 !important; --color-current-user-tip-border: #f0f0f0 !important; + --color-btn-bg: #f0f0f0 !important; + --color-fg-muted: #5282a2 !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #A62210 !important; --color-text-link: #A62210 !important; @@ -106,6 +115,10 @@ color: #aaaaaa !important; } +span.Button-label:hover { + color: #EFA554; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #EFA554; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #5282a2!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #f0f0f0; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #fafafa !important; + } + + .kVpYHc { + border: #eeeeee !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #f0f0f0 !important; + border-color: #A62210 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #f0f0f0 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #f1f9ff !important; + } + + .beVJOq, + .cYvszO { + background-color: #fcfcfc !important; + border: #eeeeee !important; + } + + .kGYPAT { + color: #A62210 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #fcfcfc; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #A62210 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label, diff --git a/themes/zero_two_light_sakura.user.css b/themes/zero_two_light_sakura.user.css index 33dad68..4b27500 100644 --- a/themes/zero_two_light_sakura.user.css +++ b/themes/zero_two_light_sakura.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name Doki-Theme: Zero Two Light Sakura @namespace github.com/doki-theme -@version 88.1.1 +@version 88.1.2 @description Cute anime themes for GitHub @author Unthrottled @license MIT @@ -42,8 +42,15 @@ :root { --color-previewable-comment-form-bg: #ffe6ee !important; --color-avatar-bg: #ffe6ee !important; + --color-btn-primary-bg: #A62210 !important; + --color-btn-primary-hover-bg: #A62210 !important; + --color-btn-primary-fg: #ffeaf2 !important; + --color-btn-primary-icon: #ffeaf2 !important; --color-fg-default: #252427 !important; - --color-fg-muted: #252427AA !important; + --color-btn-text: #252427 !important; + --color-attention-subtle: #f9e1d399 !important; + --color-attention-muted: #f9e1d399 !important; + --color-accent-subtle: #A62210AA !important; --color-auto-gray-3: #ffe6ee !important; --color-auto-gray-1: #ffe6ee !important; --color-avatar-border: #00000000 !important; @@ -61,6 +68,8 @@ --color-checks-step-header-open-bg: #ffdbe5 !important; --color-bg-discussions-row-emoji-box: #ffd1e2 !important; --color-current-user-tip-border: #ffd1e2 !important; + --color-btn-bg: #ffd1e2 !important; + --color-fg-muted: #42a373 !important; --color-underlinenav-counter-text: #252427 !important; --color-text-primary: #A62210 !important; --color-text-link: #A62210 !important; @@ -106,6 +115,10 @@ color: #BB9BB1 !important; } +span.Button-label:hover { + color: #ffeaf2; +} + .suggester li:hover .octicon, .suggester li[aria-selected="true"] .octicon { fill: #ffeaf2; @@ -129,6 +142,10 @@ opacity: 1 !important; } + .header-search-button.placeholder { + color: #42a373!important; + } + input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, @@ -201,6 +218,46 @@ background-color: #ffd1e2; } + + /* new ui junk */ + + .koyZg th, + .PjhnZ th, + .ekYzge + { + background-color: #ffe5ef !important; + } + + .kVpYHc { + border: #f6c2d5 !important; + } + + .kMwSDe .segmentedControl-content { + background-color: #ffd1e2 !important; + border-color: #A62210 !important; + } + + .gZAWpy, + .bjLiTB, + .cNspDo, .dCpkrR, .edeeWf, .gHfWgt, .hImDzR, .cFcYmG { + background-color: #ffd1e2 !important; + } + + .bxqzVV[aria-expanded="true"], + .hImDzR[aria-expanded="true"] { + background-color: #ffdce7 !important; + } + + .beVJOq, + .cYvszO { + background-color: #ffdeeb !important; + border: #f6c2d5 !important; + } + + .kGYPAT { + color: #A62210 !important; + } + /* end doki addons */ /* source #0: "transparent" */ @@ -16338,8 +16395,10 @@ select:-webkit-autofill:focus { .auto-search-group input[type="text"][aria-label] { background: #ffe6ee; } + + /* focus hightlight */ -a:focus, button:focus, [tabindex] { +a:focus, button:focus { outline-color: /*[[base-color]]*/ #A62210 !important; } input.focus[type="text"], #adv_code_search .focus.search-page-label,