Files
Ontime/backendpanel/asset/scss/_functions.scss
T
2026-03-11 15:29:37 +07:00

18 lines
350 B
SCSS
Executable File

// Functions
@function social-color($key: "twitter") {
@return map-get($social-colors, $key);
}
// Social Color
@each $color, $value in $social-colors {
.text-#{$color} {
@include text-color(social-color($color));
}
}
@each $color, $value in $social-colors {
.bg-#{$color} {
background: social-color($color);
}
}