@use "sass:map";
@use "../core/_index.scss" as *;


@function notification-theme( $colors ) {
    $_theme: ();

    @each $name in $colors {
        $_theme: map.merge(( $name: (
            color: k-color(#{$name}-on-subtle),
            background-color: k-color(#{$name}-subtle),
            border: k-color(#{$name}-emphasis),
        )), $_theme );
    }

    @return $_theme;
}
