spaceship-monolith
Version:
Astro UI for Obsidian Vaults
22 lines (18 loc) • 472 B
CSS
.astro-code code {
background: transparent ;
}
@utility expressive-code {
pre > code {
@apply font-code!;
}
}
@media (prefers-color-scheme: dark) {
.astro-code,
.astro-code span {
color: var(--shiki-dark) ;
font-style: var(--shiki-dark-font-style) ;
font-weight: var(--shiki-dark-font-weight) ;
text-decoration: var(--shiki-dark-text-decoration) ;
}
}
@source inline("expressive-code");