Apply accent color to h1 elements

This commit is contained in:
Kevin Kandlbinder 2021-07-26 13:13:25 +00:00
parent 9e957a2cbd
commit 79b6120522

View file

@ -77,4 +77,12 @@ article {
h1 {
font-size: 2em;
color: $accentColor;
text-shadow: 0 0 20px rgba($accentColor, .2);
@media(prefers-color-scheme: light) {
text-shadow: 0 0 20px rgba($accentColor, .3);
}
}