mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-07 05:05:18 +02:00
14 lines
300 B
SCSS
14 lines
300 B
SCSS
// | -------------------------------------------------------------
|
|
// | Root
|
|
// | -------------------------------------------------------------
|
|
|
|
@use "color" as *;
|
|
|
|
:root {
|
|
@each $color, $shades in $colors {
|
|
@each $shade, $value in $shades {
|
|
--#{$color}-#{$shade}: #{$value};
|
|
}
|
|
}
|
|
}
|