16 lines
148 B
SCSS
16 lines
148 B
SCSS
---
|
|
---
|
|
|
|
@use "colors" as c;
|
|
|
|
:root {
|
|
@include c.colors;
|
|
@include c.dark-colors;
|
|
}
|
|
|
|
@media print {
|
|
:root {
|
|
@include c.light-colors;
|
|
}
|
|
}
|