Skip to content

Instantly share code, notes, and snippets.

@Kobe
Last active June 23, 2018 11:40
Show Gist options
  • Save Kobe/f96e3371ba38bd5363d0d3cc70b236b2 to your computer and use it in GitHub Desktop.
Save Kobe/f96e3371ba38bd5363d0d3cc70b236b2 to your computer and use it in GitHub Desktop.
color map + generated Colors
$site-colors: (
primary-color: #f60,
secondary-color: #ff0000,
tertiary-color: #008000,
);
@each $color, $value in $site-colors {
.styleguide .#{$color} {
background-color: $value;
color: white;
display: inline-block;
height: 150px;
position: relative;
width: 150px;
&:after {
content: '#{$color}: #{$value}';
display: inline-block;
position: absolute;
}
}
}
.color_primary {
color: map-get($site-colors, 'primary-color');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment