$font-weights: (
    "regular": 400,
    "medium": 500,
    "bold": 700
);

//now if we want to apply it we have to use 'map-get' function
body {
    font-weight: map-get($font-weights, "medium");
}
.some-class{
    font-weight: map-get($font-weights, "bold")
}
by გიორგი უზნაძე
4 years ago
Sass
Array
1
Pro tip: use ```triple backticks around text``` to write in code fences