feat: now playing display

This commit is contained in:
Cory Dransfeldt 2023-08-24 17:20:30 -07:00
parent 8e93412d7a
commit f6b007356b
No known key found for this signature in database
6 changed files with 105 additions and 0 deletions

View file

@ -174,6 +174,11 @@ code[class*=language-], pre[class*=language-] {
color: theme(colors.pink.500)
}
.text--blur {
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
@media (prefers-color-scheme: dark) {
body {
--pagefind-ui-primary: theme(colors.purple.400);
@ -209,4 +214,8 @@ code[class*=language-], pre[class*=language-] {
color: theme(colors.gray.900);
background: theme(colors.purple.400);
}
.text--blur {
text-shadow: 0 0 5px rgba(255,255,255,0.5);
}
}