Skip to content

Commit

Permalink
Improvements on the website theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
organom committed Aug 5, 2022
1 parent 252f512 commit 877f8f7
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions site/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
}
@media (prefers-color-scheme: dark) {
:root {
--background: #131516;
--background: #272a2b;
--text: #d8d4cf;
--title: #bc63e1;
--code: #d74343;
--code: #c83f3f;
--link: #9F9F9F;
--icon: #9F9F9F;
--code-background: #212425;
--code-background: #323638;
--code-border: #E8E6E3;
--code-text: #E8E6E3;
--shadow: lightgrey;
Expand Down Expand Up @@ -177,3 +177,13 @@ nav .unobtrusive {
pre, code {
white-space: pre-wrap;
}

.hljs-built_in {
color: var(--text) !important;
}
.hljs-attr {
color: var(--link) !important;
}
.hljs-string {
color: var(--code) !important;
}

0 comments on commit 877f8f7

Please sign in to comment.