File "_functions-20241115065335.scss"

Full Path: /home/krishnamexports/public_html/panel/scss/components/_functions-20241115065335.scss
File size: 332 bytes
MIME-type: text/x-asm; charset=us-ascii
Charset: utf-8

// 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);
  }
}