+@use "mixins";
+
/**
* Background colors
*/
}
.primary-background-light {
background-color: var(--color-primary-light);
- @include whenDark {
+ @include mixins.whenDark {
background: #000;
.text-link {
color: #AAA !important;
}
.text-muted {
- @include lightDark(color, #575757, #888888, true);
+ @include mixins.lightDark(color, #575757, #888888, true);
fill: currentColor !important;
}
.text-dark {
- @include lightDark(color, #222, #ccc, true);
+ @include mixins.lightDark(color, #222, #ccc, true);
fill: currentColor !important;
}