Fix colors in PartyDetails

This commit is contained in:
Justin Edmund 2022-12-25 23:20:13 -08:00
parent 61ded6bcba
commit 78f37abaa5

View file

@ -33,27 +33,27 @@ a {
text-decoration: none; text-decoration: none;
&.wind { &.wind {
color: $wind-text-10; color: var(--wind-bg);
} }
&.fire { &.fire {
color: $fire-text-10; color: var(--fire-bg);
} }
&.water { &.water {
color: $water-text-10; color: var(--water-bg);
} }
&.earth { &.earth {
color: $earth-text-10; color: var(--earth-bg);
} }
&.dark { &.dark {
color: $dark-text-10; color: var(--dark-bg);
} }
&.light { &.light {
color: $light-text-10; color: var(--light-bg);
} }
} }