adjust SegmentedControl to use theme color

This commit is contained in:
jeffvli
2025-12-14 16:11:45 -08:00
parent 09dfc1ff1d
commit 868c64dda5
@@ -1,3 +1,15 @@
.root {
background: var(--theme-colors-surface);
}
.label {
&[data-active='true'] {
@mixin dark {
background-color: lighten(var(--theme-colors-surface), 10%);
}
@mixin light {
background-color: darken(var(--theme-colors-surface), 10%);
}
}
}