diff options
| author | Mark Otto <[email protected]> | 2023-04-09 11:48:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2023-04-10 09:47:11 -0700 |
| commit | 8986c5e0a56c41f56cdded2549bc5ecbfa0d4c44 (patch) | |
| tree | 852aa4e87a78bb41399ad3aca0e8ec05a84a3067 | |
| parent | 9004a58c00d42ee60664adc213c820c6a1fb54ef (diff) | |
| download | bootstrap-8986c5e0a56c41f56cdded2549bc5ecbfa0d4c44.tar.xz bootstrap-8986c5e0a56c41f56cdded2549bc5ecbfa0d4c44.zip | |
Fix colors in diff syntax colors
| -rw-r--r-- | site/assets/scss/_syntax.scss | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/site/assets/scss/_syntax.scss b/site/assets/scss/_syntax.scss index 0cc26d76b..38ac11fb8 100644 --- a/site/assets/scss/_syntax.scss +++ b/site/assets/scss/_syntax.scss @@ -35,6 +35,13 @@ --base0D: #{$blue-300}; // #61afef --base0E: #{$indigo-200}; // #c678dd --base0F: #{$red-300}; // #be5046 + + .language-diff .gd { + color: $red-400; + } + .language-diff .gi { + color: $green-400; + } } .hl { background-color: var(--base02); } @@ -53,7 +60,7 @@ .ge { font-style: italic; } .gh { font-weight: 600; - color: #fff; + color: var(--base0A); } .gi { color: var(--bs-success); } .gp { |
