@use '../../../../utils/map' as *;
@use '../../../../typography/functions' as *;
@use '../light/file-input' as *;

////
/// @package theming
/// @group schemas
/// @access public
////

/// Generates a base dark file-input schema.
/// @access private
/// @type Map
$dark-base-file-input: (
    _meta: (
        name: 'file-input',
        variant: 'dark',
    ),
);

/// Generates a dark fluent combo schema.
/// @type Map
/// @prop {Map} file-names-foreground--disabled [color: ('gray', 300)] - The file names color when the file input is disabled.
/// @prop {Map} file-selector-button-foreground--disabled [color: ('gray', 200)] - The selector button foreground color when the file input is disabled.
/// @requires $fluent-file-input
$dark-fluent-file-input: extend(
    $fluent-file-input,
    $dark-base-file-input,
    (
        file-names-foreground--disabled: (
            color: (
                'gray',
                300,
            ),
        ),
        file-selector-button-foreground--disabled: (
            color: (
                'gray',
                200,
            ),
        ),
    )
);

/// Generates a dark bootstrap combo schema.
/// @type Map
/// @requires $bootstrap-file-input
$dark-bootstrap-file-input: extend($bootstrap-file-input, $dark-base-file-input);

/// Generates a dark indigo combo schema.
/// @type Map
/// @prop {Map} file-names-foreground [contrast-color: ('gray', 50, .8)] - The input text color in the idle state.
/// @prop {Map} file-names-foreground--filled [contrast-color: ('gray', 50, .8)] - The input text color in the filled state.
/// @prop {Map} file-names-foreground--focused [contrast-color: ('gray', 50)] - The input text color in the focused state.
/// @prop {Map} file-names-foreground--disabled [contrast-color: ('gray', 50, .2)] - The file names color when the file input is disabled.
/// @prop {Map} file-selector-button-foreground [color: ('primary', 500)] - The file input selector button foreground color.
/// @prop {Map} file-selector-button-foreground--disabled [color: ('gray', 200)] - The selector button foreground color when the file input is disabled.
/// @requires $indigo-file-input
$dark-indigo-file-input: extend(
    $indigo-file-input,
    $dark-base-file-input,
    (
        file-names-foreground: (
            contrast-color: (
                'gray',
                50,
                0.8,
            ),
        ),
        file-names-foreground--filled: (
            contrast-color: (
                'gray',
                50,
                0.8,
            ),
        ),
        file-names-foreground--focused: (
            contrast-color: (
                'gray',
                50,
            ),
        ),
        file-names-foreground--disabled: (
            contrast-color: (
                'gray',
                50,
                0.2,
            ),
        ),
        file-selector-button-foreground: (
            contrast-color: (
                'primary',
                500,
            ),
        ),
        file-selector-button-foreground--disabled: (
            contrast-color: (
                'primary',
                500,
                0.2,
            ),
        ),
    )
);

/// Generates a dark material combo schema.
/// @type Map
/// @requires $material-file-input
$dark-material-file-input: extend($material-file-input, $dark-base-file-input);
