public_notes/quartz/styles/syntax.scss
2024-01-22 20:44:01 +09:00

19 lines
400 B
SCSS

code[data-theme*=" "] {
color: var(--shiki-light);
background-color: var(--shiki-light-bg);
line-height: 1rem;
font-size: 1rem;
}
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);
}