@use 'sass:map'; $color_themes: ( "teal": ( "primary": #00897B, "primary-variant": #26a69a, "secondary": #fff, "text-primary": #37474f, "text-secondary": #B8B8B8, "icon-warning": #FFC000 ) ); $default_color_theme: "teal"; @function getTheme($theme) { $color: map.get($color_themes, $theme); $default_color: map.get($color_themes, $default_color_theme); @if $color == null { @return $default_color; } @else { @return $color; } } @function getColor($theme, $color) { $color_map: getTheme($theme); @return map.get($color_map, $color); }