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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user