Skip to content

Instantly share code, notes, and snippets.

@LukyVj
Created June 2, 2015 16:40
Show Gist options
  • Save LukyVj/49051941cde54aeaed58 to your computer and use it in GitHub Desktop.
Save LukyVj/49051941cde54aeaed58 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
// 7. colors for meta loops
$c-darkorange: #F55500;
$c-lightblue: #5CB0E6;
$c-green: #51C47D;
$c-orange: #FF9D32;
$c-red: #E2474A;
$c-lavande: #A293BA;
$c-bluesleek: #415fd9;
$c-bluesleeklight: #7b9cf8;
$colors: (
'darkorange': $c-darkorange,
'lightblue': $c-lightblue,
'green': $c-green,
'orange': $c-orange,
'red': $c-red,
'lavande': $c-lavande,
'bluesleek': $c-bluesleek,
'bluesleeklight': $c-bluesleeklight
);
// Colors : font
@each $color, $colorValue in $colors{
.tg-c-#{$color}{
color: $colorValue;
}
}
.tg-c-darkorange {
color: #F55500;
}
.tg-c-lightblue {
color: #5CB0E6;
}
.tg-c-green {
color: #51C47D;
}
.tg-c-orange {
color: #FF9D32;
}
.tg-c-red {
color: #E2474A;
}
.tg-c-lavande {
color: #A293BA;
}
.tg-c-bluesleek {
color: #415fd9;
}
.tg-c-bluesleeklight {
color: #7b9cf8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment