Fix unreadable colors in ElementToggle

This commit is contained in:
Justin Edmund 2023-06-21 03:00:04 -07:00
parent f7f17cba1c
commit 37782acd69

View file

@ -47,32 +47,32 @@
&.fire { &.fire {
background: var(--fire-bg); background: var(--fire-bg);
color: var(--fire-text); color: var(--fire-hover-text);
} }
&.water { &.water {
background: var(--water-bg); background: var(--water-bg);
color: var(--water-text); color: var(--water-hover-text);
} }
&.earth { &.earth {
background: var(--earth-bg); background: var(--earth-bg);
color: var(--earth-text); color: var(--earth-hover-text);
} }
&.wind { &.wind {
background: var(--wind-bg); background: var(--wind-bg);
color: var(--wind-text); color: var(--wind-hover-text);
} }
&.dark { &.dark {
background: var(--dark-bg); background: var(--dark-bg);
color: var(--dark-text); color: var(--dark-hover-text);
} }
&.light { &.light {
background: var(--light-bg); background: var(--light-bg);
color: var(--light-text); color: var(--light-hover-text);
} }
} }
} }