@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: var( --kendo-component-text, initial ) !default;
/// The background color of the ExpansionPanel.
/// @group expander
$kendo-expander-bg: if($kendo-enable-color-system, k-color( surface ), k-get-theme-color-var( neutral-10 )) !default;
/// The border color of the ExpansionPanel.
/// @group expander
$kendo-expander-border: var( --kendo-component-border, initial ) !default;
/// The box shadow of the ExpansionPanel.
/// @group expander
$kendo-expander-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 16%, transparent), k-get-theme-color-var( neutral-30 )) !default;

/// The background color of the expanded ExpansionPanel.
/// @group expander
$kendo-expander-expanded-bg: var( --kendo-component-bg, initial ) !default;

/// The text color of the disabled ExpansionPanel.
/// @group expander
$kendo-expander-disabled-text: var( --kendo-disabled-text, initial ) !default;
/// The background color of the disabled ExpansionPanel.
/// @group expander
$kendo-expander-disabled-bg: var( --kendo-disabled-bg, initial ) !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: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130)) !default;

/// The background color of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-bg: var( --kendo-component-bg, initial ) !default;
/// The box shadow of the focused ExpansionPanel.
/// @group expander
$kendo-expander-focus-shadow: inset 0px 0px 0px 2px if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130)) !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: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !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: if($kendo-enable-color-system, k-color( base-hover ), k-get-theme-color-var( neutral-20 )) !default;

/// The text color of the ExpansionPanel title.
/// @group expander
$kendo-expander-title-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;

/// The text color of the ExpansionPanel sub-title.
/// @group expander
$kendo-expander-header-sub-title-text: var( --kendo-subtle-text, initial ) !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;
