-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Add warnings to color function like this:
@function color($color-name, $tone: base) {
@if not map-has-key($colors, $color-name) {
@warn "Color name `#{$color-name}` not found.";
}
@if not map-has-key(map-get($colors, $color-name), $tone) {
@warn "Tone `#{$tone}` not found.";
}
@return map-get(map-get($colors, $color-name), $tone);
}