at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
@@ -0,0 +1,30 @@
// Themes
$themes: ();
$themes: map_merge(
(
"default": (
),
"light-blue": (
),
),
$themes
);
@mixin theme-variant($app-container-bg, $app-sidebar-bg, $app-header-bg, $app-header-logo-bg) {
}
@each $theme, $colors in $themes {
$color1: nth($colors, 1);
$color2: nth($colors, 2);
$color3: nth($colors, 3);
$color4: nth($colors, 4);
.theme-#{$theme} {
@include theme-variant($color1, $color2, $color3, $color4);
}
}