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

/// The default theme color of the Notification.
/// @group notification
/// @role default
$kendo-notification-default-theme-color: null !default;

/// The row-gap between the elements in the Notification group.
/// @group notification
$kendo-notification-group-gap: var( --kendo-notification-group-gap, #{k-spacing(2)} ) !default;

/// The horizontal padding of the Notification.
/// @group notification
$kendo-notification-padding-x: var( --kendo-notification-padding-x, #{k-spacing(3)} ) !default;
/// The vertical padding of the Notification.
/// @group notification
$kendo-notification-padding-y: var( --kendo-notification-padding-y, calc(#{k-spacing(2)} + 1px) ) !default;
/// The width of the border around the Notification.
/// @group notification
$kendo-notification-border-width: var( --kendo-notification-border-width, 1px ) !default;
/// The border radius of the Notification.
/// @group notification
$kendo-notification-border-radius: var( --kendo-notification-border-radius, #{k-border-radius(md)} ) !default;
/// The font family of the Notification.
/// @group notification
$kendo-notification-font-family: var( --kendo-notification-font-family, var( --kendo-font-family, inherit ) ) !default;
/// The font size of the Notification.
/// @group notification
$kendo-notification-font-size: var( --kendo-notification-font-size, var( --kendo-font-size-sm, inherit ) ) !default;
/// The height of the Notification.
/// @group notification
$kendo-notification-line-height: var( --kendo-notification-line-height, var( --kendo-line-height-lg, normal ) ) !default;
/// The horizontal padding of the Notification actions.
/// @group notification
$kendo-notification-actions-padding-x: var( --kendo-notification-actions-padding-x, null ) !default;
/// The vertical padding of the Notification actions.
/// @group notification
$kendo-notification-actions-padding-y: var( --kendo-notification-actions-padding-y, #{$kendo-notification-actions-padding-x} ) !default;

/// The background color of the Notification.
/// @group notification
$kendo-notification-bg: var( --kendo-notification-bg, #{k-color(base-subtle)} ) !default;
/// The text color of the Notification.
/// @group notification
$kendo-notification-text: var( --kendo-notification-text, #{k-color(on-app-surface)} ) !default;
/// The border color of the Notification.
/// @group notification
$kendo-notification-border: var( --kendo-notification-border, color-mix(in srgb, k-color(border) 26%, transparent) ) !default;

/// The spacing of the Notification icon.
/// @group notification
$kendo-notification-icon-spacing: var( --kendo-notification-icon-spacing, #{k-spacing(2)} ) !default;

/// The theme colors map for the Notification.
/// @group notification
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse") !default;

/// The generated theme colors map for the Notification.
/// @group notification
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;

@forward "@progress/kendo-theme-core/scss/components/notification/_variables.scss" with (
    $kendo-notification-default-theme-color: $kendo-notification-default-theme-color,
    $kendo-notification-group-gap: $kendo-notification-group-gap,
    $kendo-notification-padding-x: $kendo-notification-padding-x,
    $kendo-notification-padding-y: $kendo-notification-padding-y,
    $kendo-notification-border-width: $kendo-notification-border-width,
    $kendo-notification-border-radius: $kendo-notification-border-radius,
    $kendo-notification-font-family: $kendo-notification-font-family,
    $kendo-notification-font-size: $kendo-notification-font-size,
    $kendo-notification-line-height: $kendo-notification-line-height,
    $kendo-notification-actions-padding-x: $kendo-notification-actions-padding-x,
    $kendo-notification-actions-padding-y: $kendo-notification-actions-padding-y,
    $kendo-notification-bg: $kendo-notification-bg,
    $kendo-notification-text: $kendo-notification-text,
    $kendo-notification-border: $kendo-notification-border,
    $kendo-notification-icon-spacing: $kendo-notification-icon-spacing,
    $kendo-notification-theme: $kendo-notification-theme
);
