style: fix syntax highlighting in light mode

This commit is contained in:
httpjamesm
2022-12-28 18:52:38 -05:00
parent 631a700c9f
commit 14b11b7f14
4 changed files with 20 additions and 7 deletions

View File

@ -14,7 +14,7 @@
--main-bg: rgb(219, 219, 219);
--text-color: #000;
--muted-text-color: #636363;
--code-bg: #b5b5b5;
--code-bg: #36383d;
--input-bg: rgb(188, 188, 188);
--input-bg-hover: rgb(168, 168, 168);
--meta-bg: rgb(170, 168, 168);

View File

@ -33,7 +33,7 @@ code {
background-color: var(--code-bg);
padding: .15rem;
border-radius: 5px;
color: var(--text-color);
color: white;
}
pre {