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

/// The horizontal padding of the DropZone.
/// @group dropzone
$kendo-dropzone-padding-x: k-spacing(2) !default;
/// The vertical padding of the DropZone.
/// @group dropzone
$kendo-dropzone-padding-y: k-spacing(2) !default;
/// The border width of the DropZone.
/// @group dropzone
$kendo-dropzone-border-width: 1px !default;
/// The minimum height of the DropZone.
/// @group dropzone
$kendo-dropzone-min-height: 220px !default;

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

/// The background color of the DropZone.
/// @group dropzone
$kendo-dropzone-bg: if($kendo-enable-color-system, k-color( surface ), k-get-theme-color-var( neutral-10 )) !default;
/// Text color of the dropzone.
/// @group dropzone
$kendo-dropzone-text: var( --kendo-component-text, inherit ) !default;
/// The border color of the DropZone.
/// @group dropzone
$kendo-dropzone-border: var( --kendo-component-border, initial ) !default;

/// The spacing below the DropZone icon.
/// @group dropzone
$kendo-dropzone-icon-spacing: k-spacing(6) !default;
/// The text color of the DropZone icon.
/// @group dropzone
$kendo-dropzone-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-get-theme-color-var( neutral-90 )) !default;
/// Text color of the icon when the dropzone is hovered.
/// @group dropzone
$kendo-dropzone-icon-hover-text: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;

/// The font size of the DropZone hint.
/// @group dropzone
$kendo-dropzone-hint-font-size: inherit !default;
/// The font weight of the DropZone hint.
/// @group dropzone
$kendo-dropzone-hint-font-weight: var( --kendo-font-weight-bold, bold ) !default;
/// The spacing below the DropZone hint.
/// @group dropzone
$kendo-dropzone-hint-spacing: k-spacing(2) !default;
/// The text color of the DropZone hint.
/// @group dropzone
$kendo-dropzone-hint-text: $kendo-dropzone-text !default;

/// The font size of the DropZone note.
/// @group dropzone
$kendo-dropzone-note-font-size: var( --kendo-font-size-sm, inherit ) !default;
/// The font weight of the DropZone note.
/// @group dropzone
$kendo-dropzone-note-font-weight: inherit !default;
/// The spacing below the DropZone note.
/// @group dropzone
$kendo-dropzone-note-spacing: k-spacing(0) !default;
/// The text color of the DropZone note.
/// @group dropzone
$kendo-dropzone-note-text: var( --kendo-subtle-text, inherit ) !default;
