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

/// The text color of the AIPrompt.
/// @group prompt
$kendo-prompt-text: var( --kendo-component-text, initial ) !default;
/// The background color of the AIPrompt.
/// @group prompt
$kendo-prompt-bg: var( --kendo-component-bg, initial ) !default;
/// The border color of the AIPrompt.
/// @group prompt
$kendo-prompt-border: var( --kendo-component-border, initial ) !default;

/// The text color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-text: var( --kendo-component-text, initial ) !default;
/// The background color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-bg: var( --kendo-component-bg, initial ) !default;
/// The border color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-border: var( --kendo-component-border, initial ) !default;

/// The vertical padding of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-padding-y: k-spacing(4) !default;
/// The horizontal padding of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-padding-x: k-spacing(4) !default;
/// The spacing between the items of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-spacing: k-spacing(4) !default;
/// The text color of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-text: k-get-theme-color-var( neutral-190 ) !default;
/// The background color of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-bg: k-get-theme-color-var( neutral-10 ) !default;
/// The text border of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-border: var( --kendo-component-border, initial ) !default;

/// The spacing between the items of the AIPrompt content expander.
/// @group prompt
$kendo-prompt-expander-spacing: k-spacing(2) !default;

/// The vertical padding of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-padding-y: k-spacing(2) !default;
/// The horizontal padding of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-padding-x: k-spacing(2) !default;
/// The border radius of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-border-radius: k-border-radius(md) !default;
/// The text color of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-text: var( --kendo-component-text, initial ) !default;
/// The background color of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-bg: var( --kendo-component-bg, initial ) !default;
/// The border color of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-border: var( --kendo-component-border, initial ) !default;
/// The elevation of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
