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

/// The vertical spacing of the ExpansionPanel.
/// @group expander
$kendo-expander-margin-y: k-spacing(2) !default;
/// The width of the border around the ExpansionPanel.
/// @group expander
$kendo-expander-border-width: 1px !default;
/// The font family of the ExpansionPanel.
/// @group expander
$kendo-expander-font-family: var( --kendo-font-family, inherit ) !default;
/// The font size of the ExpansionPanel.
/// @group expander
$kendo-expander-font-size: var( --kendo-font-size, inherit ) !default;
/// The hine height of the ExpansionPanel.
/// @group expander
$kendo-expander-line-height: var( --kendo-line-height, normal ) !default;

/// The text color of the ExpansionPanel.
/// @group expander
$kendo-expander-text: k-color(on-app-surface) !default;
/// The background color of the ExpansionPanel.
/// @group expander
$kendo-expander-bg: k-color(surface) !default;
/// The border color of the ExpansionPanel.
/// @group expander
$kendo-expander-border: color-mix(in srgb, k-color(border) 16%, transparent) !default;
/// The box shadow of the ExpansionPanel.
/// @group expander
$kendo-expander-shadow: inset 0 0 0 2px color-mix(in srgb, k-color(border) 16%, transparent) !default;

/// The background color of the expanded ExpansionPanel.
/// @group expander
$kendo-expander-expanded-bg: k-color(surface-alt) !default;

/// The text color of the disabled ExpansionPanel.
/// @group expander
$kendo-expander-disabled-text: color-mix(in srgb, k-color(on-app-surface) 46%, transparent) !default;
/// The background color of the disabled ExpansionPanel.
/// @group expander
$kendo-expander-disabled-bg: k-color(base-subtle) !default;

/// The offset of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-offset: 1px !default;
/// The outline width of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-outline-width: 1px !default;
/// The outline style of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-outline-style: solid !default;
/// The outline color of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-outline: k-color(base-emphasis) !default;

/// The background color of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-bg: k-color(surface-alt) !default;
/// The box shadow of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-shadow: inset 0px 0px 0px 2px k-color(base-emphasis) !default;

/// The horizontal padding of the ExpansionPanel header.
/// @group expander
$kendo-expander-header-padding-x: k-spacing(4) !default;
/// The vertical padding of the ExpansionPanel header.
/// @group expander
$kendo-expander-header-padding-y: k-spacing(3) !default;

/// The text color of the ExpansionPanel header.
/// @group expander
$kendo-expander-header-text: k-color(primary) !default;
/// The background color of the ExpansionPanel header.
/// @group expander
$kendo-expander-header-bg: inherit !default;

/// The background color of the hovered ExpansionPanel header.
/// @group expander
$kendo-expander-header-hover-bg: k-color(base-hover) !default;

/// The text color of the ExpansionPanel title.
/// @group expander
$kendo-expander-title-text: k-color(primary) !default;

/// The text color of the ExpansionPanel sub-title.
/// @group expander
$kendo-expander-header-sub-title-text: k-color(subtle) !default;

/// The horizontal margin of the ExpansionPanel indicator.
/// @group expander
$kendo-expander-indicator-margin-x: k-spacing(2.5) !default;
/// The text color of the ExpansionPanel indicator.
/// @group expander
$kendo-expander-indicator-text: var( --kendo-expander-text, #{$kendo-expander-text} ) !default;

/// The horizontal padding of the ExpansionPanel content.
/// @group expander
$kendo-expander-content-padding-x: k-spacing(4) !default;
/// The vertical padding of the ExpansionPanel content.
/// @group expander
$kendo-expander-content-padding-y: k-spacing(4) !default;
