Last active
January 26, 2017 18:31
-
-
Save Knogobert/7f73acfcf64812547823ad2ce833af17 to your computer and use it in GitHub Desktop.
SCSS - Color variables with hierarchy
This file contains 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
$blue: ( | |
lightest: #e6f5ff, | |
lighter: #8bcdff | |
) !default; |
This file contains 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
h1 { | |
color: blue(darkest); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source: https://github.com/spatie/scss/blob/master/src/settings/color.scss