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

/// The border radius of the Panel.
/// @group panel
$kendo-panel-border-radius: k-border-radius(md) !default;
/// The width of the border around the Panel.
/// @group panel
$kendo-panel-border-width: 1px !default;
/// The style of the border around the Panel.
/// @group panel
$kendo-panel-border-style: solid !default;

/// The inline padding of the Panel header.
/// @group panel
$kendo-panel-header-padding-inline: k-spacing(2) !default;
/// The block padding of the Panel header.
/// @group panel
$kendo-panel-header-padding-block: k-spacing(1) !default;

/// The inline padding of the Panel content.
/// @group panel
$kendo-panel-content-padding-inline: k-spacing(2) !default;
/// The block padding of the Panel content.
/// @group panel
$kendo-panel-content-padding-block: k-spacing(1) !default;

/// The text color of the Panel.
/// @group panel
$kendo-panel-text: k-color(on-app-surface) !default;
/// The background color of the Panel.
/// @group panel
$kendo-panel-bg: k-color(surface-alt) !default;
/// The color of the border around the Panel.
/// @group panel
$kendo-panel-border: color-mix(in srgb, k-color(border) 16%, transparent) !default;
