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

/// The font family of the Rating.
/// @group rating
$kendo-rating-font-family: var( --kendo-font-family, inherit ) !default;
/// The font size of the Rating.
/// @group rating
$kendo-rating-font-size: var( --kendo-font-size-sm, inherit ) !default;
/// The line height of the Rating.
/// @group rating
$kendo-rating-line-height: var( --kendo-line-height, normal ) !default;

/// The content spacing of the Rating.
/// @group rating
$kendo-rating-spacing: k-spacing(1) !default;

/// The horizontal padding of the Rating item.
/// @group rating
$kendo-rating-item-padding-x: k-spacing(0.5) !default;
/// The vertical padding of the Rating item.
/// @group rating
$kendo-rating-item-padding-y: k-spacing(2) !default;
/// The text color of the Rating item.
/// @group rating
$kendo-rating-item-text: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-130 )) !default;
/// The text color of the hovered Rating item.
/// @group rating
$kendo-rating-item-hover-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
/// The text color of the focused Rating item.
/// @group rating
$kendo-rating-item-focus-text: $kendo-rating-item-text !default;
/// The outline width of the focused Rating item.
/// @group rating
$kendo-rating-item-focus-outline-width: 1px !default;
/// The outline style of the focused Rating item.
/// @group rating
$kendo-rating-item-focus-outline-style: solid !default;
/// The outline color of the focused Rating item.
/// @group rating
$kendo-rating-item-focus-outline: currentColor !default;
/// The text color of the selected Rating item.
/// @group rating
$kendo-rating-item-selected-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-get-theme-color-var( neutral-160 )) !default;
/// The text color of the selected and hovered Rating item.
/// @group rating
$kendo-rating-item-selected-hover-text: if($kendo-enable-color-system, k-color( primary-active ), k-get-theme-color-var( primary-120 )) !default;
