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

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

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

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

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

/// The font size of the DropZone note.
/// @group dropzone
$kendo-dropzone-note-font-size: var( --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: var( --kendo-dropzone-note-font-weight, inherit ) !default;
/// The spacing below the DropZone note.
/// @group dropzone
$kendo-dropzone-note-spacing: var( --kendo-dropzone-note-spacing, #{k-spacing(0)} ) !default;
/// The text color of the DropZone note.
/// @group dropzone
$kendo-dropzone-note-text: var( --kendo-dropzone-note-text, #{k-color(subtle)} ) !default;

@forward "@progress/kendo-theme-core/scss/components/dropzone/variables" with (
    $kendo-dropzone-padding-x: $kendo-dropzone-padding-x,
    $kendo-dropzone-padding-y: $kendo-dropzone-padding-y,
    $kendo-dropzone-border-width: $kendo-dropzone-border-width,
    $kendo-dropzone-min-height: $kendo-dropzone-min-height,
    $kendo-dropzone-font-family: $kendo-dropzone-font-family,
    $kendo-dropzone-font-size: $kendo-dropzone-font-size,
    $kendo-dropzone-line-height: $kendo-dropzone-line-height,
    $kendo-dropzone-bg: $kendo-dropzone-bg,
    $kendo-dropzone-text: $kendo-dropzone-text,
    $kendo-dropzone-border: $kendo-dropzone-border,
    $kendo-dropzone-icon-spacing: $kendo-dropzone-icon-spacing,
    $kendo-dropzone-icon-text: $kendo-dropzone-icon-text,
    $kendo-dropzone-icon-hover-text: $kendo-dropzone-icon-hover-text,
    $kendo-dropzone-hint-font-size: $kendo-dropzone-hint-font-size,
    $kendo-dropzone-hint-spacing: $kendo-dropzone-hint-spacing,
    $kendo-dropzone-hint-text: $kendo-dropzone-hint-text,
    $kendo-dropzone-note-font-size: $kendo-dropzone-note-font-size,
    $kendo-dropzone-note-spacing: $kendo-dropzone-note-spacing,
    $kendo-dropzone-note-text: $kendo-dropzone-note-text
);
