Guest User

Untitled

a guest
Oct 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $colors: (
  2. "blue": "#2b55f3",
  3. "green": "#39dd4a",
  4. "yellow": "#f0f30f",
  5. "red": "#ff2e35",
  6. "orange": "#f8ad55",
  7. );
  8.  
  9. @each $name, $color in $colors {
  10. .#{$name} {
  11. color: $color;
  12. }
  13. }
Add Comment
Please, Sign In to add comment