Files
digital-garden/quartz/styles/syntax.scss
Daniël Groothuis 6e96ae4c98 chore: Initial commit
2025-10-29 14:26:01 +01:00

18 lines
358 B
SCSS

code[data-theme*=" "] {
color: var(--shiki-light);
background-color: var(--shiki-light-bg);
}
code[data-theme*=" "] span {
color: var(--shiki-light);
}
[saved-theme="dark"] code[data-theme*=" "] {
color: var(--shiki-dark);
background-color: var(--shiki-dark-bg);
}
[saved-theme="dark"] code[data-theme*=" "] span {
color: var(--shiki-dark);
}