@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: k-color(surface) !default;
/// Text color of the dropzone.
/// @group dropzone
$kendo-dropzone-text: k-color(on-app-surface) !default;
/// The border color of the DropZone.
/// @group dropzone
$kendo-dropzone-border: color-mix(in srgb, k-color(border) 16%, transparent) !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: k-color(subtle) !default;
/// Text color of the icon when the dropzone is hovered.
/// @group dropzone
$kendo-dropzone-icon-hover-text: k-color(primary) !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: k-color(subtle) !default;
