mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 17:55:29 +01:00
15 lines
330 B
SCSS
Executable File
15 lines
330 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);
|
|
}
|
|
} |