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

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

/// The text color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-text: k-color(on-app-surface) !default;
/// The background color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-bg: k-color(surface-alt) !default;
/// The border color of the AIPrompt header.
/// @group prompt
$kendo-prompt-header-border: color-mix(in srgb, k-color(border) 16%, transparent) !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-color(on-base) !default;
/// The background color of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-bg: k-color(surface) !default;
/// The text border of the AIPrompt content.
/// @group prompt
$kendo-prompt-content-border: color-mix(in srgb, k-color(border) 16%, transparent) !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: k-color(on-app-surface) !default;
/// The background color of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-bg: k-color(surface-alt) !default;
/// The border color of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-border: color-mix(in srgb, k-color(border) 16%, transparent) !default;
/// The elevation of the AIPrompt suggestion container.
/// @group prompt
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
