Skip to content

Instantly share code, notes, and snippets.

@cristinafsanz
Last active October 25, 2022 08:50
Show Gist options
  • Select an option

  • Save cristinafsanz/d2afed012a87ddcb1edce3e541fe5108 to your computer and use it in GitHub Desktop.

Select an option

Save cristinafsanz/d2afed012a87ddcb1edce3e541fe5108 to your computer and use it in GitHub Desktop.
$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