Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2022-10-12 21:47:30 +0300
committerMark Otto <markdotto@gmail.com>2022-11-11 21:29:06 +0300
commite508be78f3f54e210da2d0ad040e041600eff0d3 (patch)
tree8c6126b801abb951113721af58710a3d4cf76727
parent4c55d449e45757b5cdba1ddfc877fe204d0657c5 (diff)
fix some syntax colors for dark mode
-rw-r--r--site/assets/scss/_syntax.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/assets/scss/_syntax.scss b/site/assets/scss/_syntax.scss
index e77dee6ebd..7c327ec15b 100644
--- a/site/assets/scss/_syntax.scss
+++ b/site/assets/scss/_syntax.scss
@@ -121,14 +121,14 @@
.language-bash,
.language-sh {
.line::before {
- color: #777;
+ color: var(--base03);
content: "$ ";
user-select: none;
}
}
.language-powershell::before {
- color: #009;
+ color: var(--base0C);
content: "PM> ";
user-select: none;
}