Last active
June 23, 2018 11:40
-
-
Save Kobe/f96e3371ba38bd5363d0d3cc70b236b2 to your computer and use it in GitHub Desktop.
color map + generated Colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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