Update animation to use css vars

This commit is contained in:
Nate Kelley 2025-07-22 09:26:04 -06:00
parent 1f4ceea012
commit ffc255c5d6
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 3 additions and 3 deletions

View File

@ -52,12 +52,12 @@
@keyframes buster-colorTransition {
from {
color: red;
color: var(--buster-color-from, var(--color-primary));
}
to {
color: black;
color: var(--buster-color-to, var(--color-foreground));
}
}
}
@keyframes buster-rotateIn {
from {