Files
Snigdha-OS.github.io/src/assets/scss/base/_root.scss
Eshan Roy (Eshanized) ec3cafabd8 🛠️ build(astro): nuxtjs to astro
2024-06-16 23:19:02 +05:30

14 lines
300 B
SCSS

// | -------------------------------------------------------------
// | Root
// | -------------------------------------------------------------
@use "color" as *;
:root {
@each $color, $shades in $colors {
@each $shade, $value in $shades {
--#{$color}-#{$shade}: #{$value};
}
}
}