Last active
January 24, 2021 15:03
-
-
Save 5t3ph/ee98f25da7416104f08b03bcd357028a to your computer and use it in GitHub Desktop.
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
$color-primary: purple; | |
$color-secondary: blue; | |
$color-support: green; | |
$theme-colors: ( | |
primary: $color-primary, | |
secondary: $color-secondary, | |
support: $color-support | |
); | |
@function theme-color($key) { | |
@return map-get($theme-colors, $key); | |
} | |
@debug theme-color(primary); | |
// output: Line 15 CSS: purple | |
h1 { | |
color: theme-color(primary); | |
} |
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>Hello World</h1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment