mirror of
https://github.com/saegl5/Gitea-Red.git
synced 2025-05-24 00:12:23 -04:00
432 lines
19 KiB
CSS
432 lines
19 KiB
CSS
/* @import does not work */
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--color-primary: #cd041c !important; /* greater contributions heatmap, primary email address label, Regenerate Scratch Token, and more (below) */
|
|
--color-primary-dark-2: #ab0316 !important; /* greater contributions heatmap and more (below) */
|
|
--color-primary-dark-3: #960314 !important; /* dropdown actions button */
|
|
--color-primary-dark-4: #870312 !important; /* red buttons and greater contributions heatmap */
|
|
--color-primary-dark-6: #5f020d !important; /* red buttons hover */
|
|
--color-primary-light-1: #d1152b !important; /* selection color */
|
|
--color-primary-light-2: #ce2236 !important; /* greater contributions heatmap */
|
|
--color-primary-light-4: #d54455 !important; /* greater contributions heatmap */
|
|
--color-background: #fcfcfc !important; /* make some elements pop out more (below) */
|
|
--color-secondary-alpha-70: #dedede4d !important; /* fewer contributions heatmap */
|
|
--fonts-monospace: ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace, var(--fonts-emoji) !important; /* replaced "SFMono-Regular" */
|
|
}
|
|
|
|
.full.height { /* legacy code to fix issue with Dark Reader not displaying the entire page with the same color */
|
|
background-color: var(--color-background) !important; /* make some elements pop out more (e.g., Sign In box, Two-Factor Authentication boxes, Repositories list, Settings boxes, Search boxes) */
|
|
}
|
|
|
|
.home a {
|
|
color: var(--color-primary) !important; /* link and link hover color on home page, other links use --color-primary */
|
|
}
|
|
|
|
.home .svg {
|
|
color: var(--color-primary) !important; /* icons' color on home page */
|
|
}
|
|
|
|
span.green .svg {
|
|
color: var(--color-primary) !important; /* ssh/gpg key icon color */
|
|
}
|
|
|
|
.ui.green.button {
|
|
background-color: var(--color-primary) !important; /* "green" button color (e.g., Sign In, Verify), primary buttons use --color-primary */
|
|
}
|
|
|
|
.ui.red.button {
|
|
background-color: var(--color-primary-dark-4) !important; /* red button color (e.g., Confirm Deletion, Remove) */
|
|
/* color: var(--color-body) !important; */ /* reconsidered: text color overrides text color for some buttons (e.g., Transfer Ownership) */
|
|
}
|
|
|
|
.ui.green.button:hover, .ui.green.button:active {
|
|
background-color: var(--color-primary-dark-2) !important; /* "green" button hover color, only this one has active element, primary buttons use --color-primary-dark-2 */
|
|
}
|
|
|
|
.ui.red.button:hover {
|
|
background-color: var(--color-primary-dark-6) !important; /* red button hover color */
|
|
}
|
|
|
|
.ui.basic.red.button {
|
|
background-color: unset !important; /* reset colors in danger zone */
|
|
}
|
|
|
|
/* reconsidered: .ui.active.button:hover, .ui.active.button:active */
|
|
|
|
.ui.tabular.stackable.menu.navbar .active.item {
|
|
background-color: var(--color-background) !important; /* make repo tabular menu item background match --color-background (Code, Issues, Pull Requests, etc.) */
|
|
}
|
|
|
|
/* not needed: .ui.secondary.pointing.tabular.top.attached.borderless.menu.stackable.new-menu.navbar.shadow-body .active.item */
|
|
|
|
.ui.secondary.pointing.tabular.top.attached.borderless.menu.stackable.new-menu.navbar .active.item {
|
|
background: unset !important; /* do not color secondary tabular menu item, related to --color-background (Repositories, Users, Organizations; Profile, Account, Appearance, etc.) */
|
|
}
|
|
|
|
.ui.top.attached.pull.tabular.stackable.menu .active.item {
|
|
background-color: var(--color-background) !important; /* make pull requests (upper-sub) tabular menu item background match --color-background (Conversation, Commits, Files Changed) */
|
|
}
|
|
|
|
.ui.top.tabular.menu .active.write.item {
|
|
background-color: var(--color-background) !important; /* make issues, pull requests and new releases (lower-sub) tabular menu item background match --color-background (Write, Preview) */
|
|
}
|
|
|
|
/* not needed: .ui.top.attached.tabular.menu .active.item */
|
|
/* reconsidered, re-ordered: #repo-files-table tr:hover */
|
|
/* not needed: .repository .diff-detail-box */
|
|
|
|
details {
|
|
background-color: var(--color-secondary-light-3); /* make collapsible elements easier to distinguish from main body */
|
|
border-radius: 4px; /* same as code blocks */
|
|
padding: .2em .4em; /* same as code blocks */
|
|
}
|
|
|
|
.js-clone-url {
|
|
/* border: 1px solid var(--color-light-border) !important; */ /* reconsidered: use same border color as surrounding buttons */
|
|
border-right: none !important; /* border already there */
|
|
}
|
|
|
|
/* not needed: .color-preview */
|
|
/* not needed: .markup table tr:nth-child(2n) */
|
|
|
|
.added-code {
|
|
background: unset !important; /* remove highlight behind some codes */
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
/* root and emoji source: https://github.com/go-gitea/gitea/blob/main/web_src/css/themes/theme-arc-green.css */
|
|
/* some root colors and one alpha are customized */
|
|
/* custom colors are slightly brighter */
|
|
/* custom alpha is slightly more transparent */
|
|
|
|
/* @import "../chroma/base.css"; */
|
|
/* @import "../chroma/dark.css"; */
|
|
/* @import "../codemirror/dark.css"; */
|
|
|
|
:root {
|
|
--is-dark-theme: true;
|
|
--color-primary: #e6051f !important; /* was #87ab63, greater contributions heatmap, primary email address label, Regenerate Scratch Token, and more (below) */
|
|
--color-primary-contrast: #ffffff;
|
|
--color-primary-dark-1: #93b373;
|
|
--color-primary-dark-2: #c40319 !important; /* was #9fbc82, greater contributions heatmap and more (below) */
|
|
--color-primary-dark-3: #b00317 !important; /* was #abc492, dropdown actions button */
|
|
--color-primary-dark-4: #a10315 !important; /* was #b7cda1, red buttons and greater contributions heatmap */
|
|
--color-primary-dark-5: #cfddc1;
|
|
--color-primary-dark-6: #780310 !important; /* was #e7eee0, red buttons hover */
|
|
--color-primary-dark-7: #f8faf6;
|
|
--color-primary-light-1: #eb142d !important; /* was #7a9e55, selection color */
|
|
--color-primary-light-2: #e82138 !important; /* was #6c8c4c, greater contributions heatmap */
|
|
--color-primary-light-3: #5f7b42;
|
|
--color-primary-light-4: #f04559 !important; /* was #516939, greater contributions heatmap */
|
|
--color-primary-light-5: #364626;
|
|
--color-primary-light-6: #1b2313;
|
|
--color-primary-light-7: #080b06;
|
|
--color-primary-alpha-10: #87ab6319;
|
|
--color-primary-alpha-20: #87ab6333;
|
|
--color-primary-alpha-30: #87ab634b;
|
|
--color-primary-alpha-40: #87ab6366;
|
|
--color-primary-alpha-50: #87ab6380;
|
|
--color-primary-alpha-60: #87ab6399;
|
|
--color-primary-alpha-70: #87ab63b3;
|
|
--color-primary-alpha-80: #87ab63cc;
|
|
--color-primary-alpha-90: #87ab63e1;
|
|
--color-primary-hover: var(--color-primary-light-1);
|
|
--color-primary-active: var(--color-primary-light-2);
|
|
--color-secondary: #525767;
|
|
--color-secondary-dark-1: #5c6374;
|
|
--color-secondary-dark-2: #666e81;
|
|
--color-secondary-dark-3: #7c8497;
|
|
--color-secondary-dark-4: #8990a1;
|
|
--color-secondary-dark-5: #959cab;
|
|
--color-secondary-dark-6: #a2a8b5;
|
|
--color-secondary-dark-7: #afb4c0;
|
|
--color-secondary-dark-8: #bcc0ca;
|
|
--color-secondary-dark-9: #c9cbd4;
|
|
--color-secondary-dark-10: #d6d7de;
|
|
--color-secondary-dark-11: #e2e3e8;
|
|
--color-secondary-dark-12: #eeeff2;
|
|
--color-secondary-dark-13: #fbfbfc;
|
|
--color-secondary-light-1: #454a57;
|
|
--color-secondary-light-2: #383c47;
|
|
--color-secondary-light-3: #2c2f37;
|
|
--color-secondary-light-4: #1f2226;
|
|
--color-secondary-alpha-10: #52576719;
|
|
--color-secondary-alpha-20: #52576733;
|
|
--color-secondary-alpha-30: #5257674b;
|
|
--color-secondary-alpha-40: #52576766;
|
|
--color-secondary-alpha-50: #52576780;
|
|
--color-secondary-alpha-60: #52576799;
|
|
--color-secondary-alpha-70: #f7dede1b !important; /* was #525767b3, fewer contributions heatmap */
|
|
--color-secondary-alpha-80: #525767cc;
|
|
--color-secondary-alpha-90: #525767e1;
|
|
--color-secondary-hover: var(--color-secondary-light-1);
|
|
--color-secondary-active: var(--color-secondary-light-2);
|
|
/* console colors - used for actions console and console files */
|
|
--color-console-fg: #eeeff2;
|
|
--color-console-fg-subtle: #959cab;
|
|
--color-console-bg: #262936;
|
|
--color-console-border: #383c47;
|
|
--color-console-hover-bg: #ffffff16;
|
|
--color-console-active-bg: #454a57;
|
|
--color-console-menu-bg: #383c47;
|
|
--color-console-menu-border: #5c6374;
|
|
/* named colors */
|
|
--color-red: #cc4848;
|
|
--color-orange: #cc580c;
|
|
--color-yellow: #cc9903;
|
|
--color-olive: #91a313;
|
|
--color-green: #87ab63;
|
|
--color-teal: #00918a;
|
|
--color-blue: #3a8ac6;
|
|
--color-violet: #906ae1;
|
|
--color-purple: #b259d0;
|
|
--color-pink: #d22e8b;
|
|
--color-brown: #a47252;
|
|
--color-black: #2e323e;
|
|
/* light variants - produced via Sass scale-color(color, $lightness: +10%) */
|
|
--color-red-light: #d15a5a;
|
|
--color-orange-light: #f6a066;
|
|
--color-yellow-light: #eaaf03;
|
|
--color-olive-light: #abc016;
|
|
--color-green-light: #93b373;
|
|
--color-teal-light: #00b6ad;
|
|
--color-blue-light: #4e96cc;
|
|
--color-violet-light: #9b79e4;
|
|
--color-purple-light: #ba6ad5;
|
|
--color-pink-light: #d74397;
|
|
--color-brown-light: #b08061;
|
|
--color-black-light: #3f4555;
|
|
/* dark 1 variants - produced via Sass scale-color(color, $lightness: -10%) */
|
|
--color-red-dark-1: #c23636;
|
|
--color-orange-dark-1: #f38236;
|
|
--color-yellow-dark-1: #b88a03;
|
|
--color-olive-dark-1: #839311;
|
|
--color-green-dark-1: #7a9e55;
|
|
--color-teal-dark-1: #00837c;
|
|
--color-blue-dark-1: #347cb3;
|
|
--color-violet-dark-1: #7b4edb;
|
|
--color-purple-dark-1: #a742c9;
|
|
--color-pink-dark-1: #be297d;
|
|
--color-brown-dark-1: #94674a;
|
|
--color-black-dark-1: #292d38;
|
|
/* dark 2 variants - produced via Sass scale-color(color, $lightness: -20%) */
|
|
--color-red-dark-2: #ad3030;
|
|
--color-orange-dark-2: #f16e17;
|
|
--color-yellow-dark-2: #a37a02;
|
|
--color-olive-dark-2: #74820f;
|
|
--color-green-dark-2: #6c8c4c;
|
|
--color-teal-dark-2: #00746e;
|
|
--color-blue-dark-2: #2e6e9f;
|
|
--color-violet-dark-2: #6733d6;
|
|
--color-purple-dark-2: #9834b9;
|
|
--color-pink-dark-2: #a9246f;
|
|
--color-brown-dark-2: #835b42;
|
|
--color-black-dark-2: #252832;
|
|
/* other colors */
|
|
--color-grey: #505665;
|
|
--color-grey-light: #a1a6b7;
|
|
--color-gold: #b1983b;
|
|
--color-white: #ffffff;
|
|
--color-diff-removed-word-bg: #6f3333;
|
|
--color-diff-added-word-bg: #3c653c;
|
|
--color-diff-removed-row-bg: #3c2626;
|
|
--color-diff-moved-row-bg: #818044;
|
|
--color-diff-added-row-bg: #283e2d;
|
|
--color-diff-removed-row-border: #634343;
|
|
--color-diff-moved-row-border: #bcca6f;
|
|
--color-diff-added-row-border: #314a37;
|
|
--color-diff-inactive: #353846;
|
|
--color-error-border: #a04141;
|
|
--color-error-bg: #522;
|
|
--color-error-bg-active: #744;
|
|
--color-error-bg-hover: #633;
|
|
--color-error-text: #f9cbcb;
|
|
--color-success-border: #458a57;
|
|
--color-success-bg: #284034;
|
|
--color-success-text: #6cc664;
|
|
--color-warning-border: #bb9d00;
|
|
--color-warning-bg: #3a3a30;
|
|
--color-warning-text: #fbbd08;
|
|
--color-info-border: #306090;
|
|
--color-info-bg: #26354c;
|
|
--color-info-text: #38a8e8;
|
|
--color-red-badge: #db2828;
|
|
--color-red-badge-bg: #db28281a;
|
|
--color-red-badge-hover-bg: #db28284d;
|
|
--color-green-badge: #21ba45;
|
|
--color-green-badge-bg: #21ba451a;
|
|
--color-green-badge-hover-bg: #21ba454d;
|
|
--color-yellow-badge: #fbbd08;
|
|
--color-yellow-badge-bg: #fbbd081a;
|
|
--color-yellow-badge-hover-bg: #fbbd084d;
|
|
--color-orange-badge: #f2711c;
|
|
--color-orange-badge-bg: #f2711c1a;
|
|
--color-orange-badge-hover-bg: #f2711c4d;
|
|
--color-git: #f05133;
|
|
/* target-based colors */
|
|
--color-body: #373b47;
|
|
--color-box-header: #404652;
|
|
--color-box-body: #2a2e3a;
|
|
--color-box-body-highlight: #353945;
|
|
--color-text-dark: #dbe0ea;
|
|
--color-text: #cbd0da;
|
|
--color-text-light: #bbbfca;
|
|
--color-text-light-1: #aaafb9;
|
|
--color-text-light-2: #9a9ea9;
|
|
--color-text-light-3: #8a8e99;
|
|
--color-footer: #2e323e;
|
|
--color-timeline: #4c525e;
|
|
--color-input-text: #dfe3ec;
|
|
--color-input-background: #232933;
|
|
--color-input-toggle-background: #454a57;
|
|
--color-input-border: #454a57;
|
|
--color-input-border-hover: #505667;
|
|
--color-navbar: #2a2e3a;
|
|
--color-navbar-transparent: #2a2e3a00;
|
|
--color-light: #00000028;
|
|
--color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));
|
|
--color-light-border: #ffffff28;
|
|
--color-hover: #ffffff19;
|
|
--color-active: #ffffff24;
|
|
--color-menu: #2e323e;
|
|
--color-card: #2e323e;
|
|
--color-markup-table-row: #ffffff06;
|
|
--color-markup-code-block: #ffffff16;
|
|
--color-button: #353846;
|
|
--color-code-bg: #2a2e3a;
|
|
--color-code-sidebar-bg: #2e323e;
|
|
--color-shadow: #00000060;
|
|
--color-secondary-bg: #2a2e3a;
|
|
--color-text-focus: #fff;
|
|
--color-expand-button: #3c404d;
|
|
--color-placeholder-text: #8a8e99;
|
|
--color-editor-line-highlight: var(--color-primary-light-5);
|
|
--color-project-board-bg: var(--color-secondary-light-2);
|
|
--color-caret: var(--color-text); /* should ideally be --color-text-dark, see #15651 */
|
|
--color-reaction-bg: #ffffff12;
|
|
--color-reaction-hover-bg: var(--color-primary-light-4);
|
|
--color-reaction-active-bg: var(--color-primary-light-5);
|
|
--color-tooltip-text: #ffffff;
|
|
--color-tooltip-bg: #000000f0;
|
|
--color-header-bar: #2e323e;
|
|
--color-label-text: #dfe3ec;
|
|
--color-label-bg: #7c84974b;
|
|
--color-label-hover-bg: #7c8497a0;
|
|
--color-label-active-bg: #7c8497ff;
|
|
--color-accent: var(--color-primary-light-1);
|
|
--color-small-accent: var(--color-primary-light-5);
|
|
--color-active-line: #534d1b;
|
|
accent-color: var(--color-accent);
|
|
color-scheme: dark;
|
|
|
|
--fonts-monospace: ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace, var(--fonts-emoji) !important; /* replaced "SFMono-Regular" */
|
|
}
|
|
|
|
/* invert emojis that are hard to read otherwise */
|
|
.emoji[aria-label="check mark"],
|
|
.emoji[aria-label="currency exchange"],
|
|
.emoji[aria-label="TOP arrow"],
|
|
.emoji[aria-label="END arrow"],
|
|
.emoji[aria-label="ON! arrow"],
|
|
.emoji[aria-label="SOON arrow"],
|
|
.emoji[aria-label="heavy dollar sign"],
|
|
.emoji[aria-label="copyright"],
|
|
.emoji[aria-label="registered"],
|
|
.emoji[aria-label="trade mark"],
|
|
.emoji[aria-label="multiply"],
|
|
.emoji[aria-label="plus"],
|
|
.emoji[aria-label="minus"],
|
|
.emoji[aria-label="divide"],
|
|
.emoji[aria-label="curly loop"],
|
|
.emoji[aria-label="double curly loop"],
|
|
.emoji[aria-label="wavy dash"],
|
|
.emoji[aria-label="paw prints"],
|
|
.emoji[aria-label="musical note"],
|
|
.emoji[aria-label="musical notes"] {
|
|
filter: invert(100%) hue-rotate(180deg);
|
|
}
|
|
|
|
/* not needed: .full.height */
|
|
|
|
.home a {
|
|
color: var(--color-primary) !important; /* link and link hover color on home page, other links use --color-primary */
|
|
}
|
|
|
|
.home .svg {
|
|
color: var(--color-primary) !important; /* icons' color on home page */
|
|
}
|
|
|
|
span.green .svg {
|
|
color: var(--color-primary) !important; /* ssh/gpg key icon color */
|
|
}
|
|
|
|
.ui.green.button {
|
|
background-color: var(--color-primary) !important; /* "green" button color (e.g., Sign In, Verify), primary buttons use --color-primary */
|
|
}
|
|
|
|
.ui.red.button {
|
|
background-color: var(--color-primary-dark-4) !important; /* red button color (e.g., Confirm Deletion, Remove) */
|
|
/* color: var(--color-body) !important; */ /* reconsidered: text color overrides text color for some buttons (e.g., Transfer Ownership) */
|
|
}
|
|
|
|
.ui.green.button:hover, .ui.green.button:active {
|
|
background-color: var(--color-primary-dark-2) !important; /* "green" button hover color, only this one has active element, primary buttons use --color-primary-dark-2 */
|
|
}
|
|
|
|
.ui.red.button:hover {
|
|
background-color: var(--color-primary-dark-6) !important; /* red button hover color */
|
|
}
|
|
|
|
.ui.basic.red.button {
|
|
background-color: unset !important; /* reset colors in danger zone */
|
|
}
|
|
|
|
/* reconsidered: .ui.active.button:hover, .ui.active.button:active */
|
|
/* not needed: .ui.tabular.stackable.menu.navbar .active.item */
|
|
|
|
.ui.secondary.pointing.tabular.top.attached.borderless.menu.stackable.new-menu.navbar.shadow-body .active.item {
|
|
background: unset !important; /* do not color secondary tabular menu item (Repository, Collaborators, Branches, etc.) */
|
|
}
|
|
|
|
/* not needed: .ui.secondary.pointing.tabular.top.attached.borderless.menu.stackable.new-menu.navbar .active.item */
|
|
|
|
.ui.top.attached.pull.tabular.stackable.menu .active.item {
|
|
background-color: rgb(55, 59, 70) !important; /* make pull requests (upper-sub) tabular menu item background match --color-background (Conversation, Commits, Files Changed), using rgb() to remove bottom border */
|
|
}
|
|
|
|
/* not needed: .ui.top.tabular.menu .active.write.item */
|
|
|
|
.ui.top.attached.tabular.menu .active.item {
|
|
background-color: var(--color-box-body) !important; /* make subscriptions tabular menu item background match --color-box-body (Subscriptions, Watching) */
|
|
}
|
|
|
|
/* reconsidered, re-ordered: #repo-files-table tr:hover */
|
|
/* not needed: .repository .diff-detail-box */
|
|
|
|
details {
|
|
background-color: var(--color-secondary-light-4); /* make collapsible elements easier to distinguish from main body */
|
|
border-radius: 4px; /* same as code blocks */
|
|
padding: .2em .4em; /* same as code blocks */
|
|
}
|
|
|
|
.js-clone-url {
|
|
/* border: 1px solid var(--color-light-border) !important; */ /* reconsidered: use same border color as surrounding buttons */
|
|
border-right: none !important; /* border already there */
|
|
}
|
|
|
|
/* not needed: .color-preview */
|
|
/* not needed: .markup table tr:nth-child(2n) */
|
|
|
|
.added-code {
|
|
background: unset !important; /* remove highlight behind some codes */
|
|
}
|
|
|
|
.ui.table>thead>tr>th {
|
|
border-inline: 1px solid var(--color-box-header) !important; /* hide center border more between table header columns */
|
|
}
|
|
|
|
/* not needed: .ui.table>thead>tr:first-child>th:first-child */
|
|
/* not needed: .ui.table>thead>tr:first-child>th:last-child */
|
|
} |