1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-15 05:25:33 -04:00

fix dark/light transitions on syntax highlighting

This commit is contained in:
2021-09-22 17:36:22 -04:00
parent 7353f0b95e
commit 081864d091
2 changed files with 9 additions and 3 deletions

View File

@@ -126,6 +126,9 @@ body.light {
color: #313131;
background-color: #fbfbfb;
border-color: #d5d5d5;
// TODO: apply this consistently via themed() mixin like everywhere else
transition: color 0.15s linear, background-color 0.15s linear, border-color 0.15s linear;
}
.chroma {
@@ -202,6 +205,9 @@ body.dark {
color: #e4e4e4;
background-color: #252525;
border-color: #535353;
// TODO: apply this consistently via themed() mixin like everywhere else
transition: color 0.15s linear, background-color 0.15s linear, border-color 0.15s linear;
}
.chroma {