Last active
October 25, 2022 08:50
-
-
Save cristinafsanz/d2afed012a87ddcb1edce3e541fe5108 to your computer and use it in GitHub Desktop.
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
| $colors:( | |
| "color-primary": #303960, | |
| "color-secondary": #e03960 | |
| ); | |
| @function color($color-name) { | |
| return map-get($colors, $color-name); | |
| } | |
| .section { | |
| // before: background-color: map-get($colors, color-primary) | |
| background-color: color(color-primary); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment