mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
b79e3db264
Initial support for #25680 This PR only adds some simple styles from GitHub, it is big enough and it focuses on adding the necessary framework-level supports. More styles could be fine-tuned later.
12 lines
324 B
CSS
12 lines
324 B
CSS
@import "./theme-gitea-dark.css";
|
|
|
|
/* red/green colorblind-friendly colors */
|
|
/* from GitHub: --diffBlob-addition-*, --diffBlob-deletion-*, etc */
|
|
:root {
|
|
--color-diff-added-word-bg: #388bfd66;
|
|
--color-diff-added-row-bg: #388bfd26;
|
|
|
|
--color-diff-removed-word-bg: #db6d2866;
|
|
--color-diff-removed-row-bg: #db6d2826;
|
|
}
|