// Form | Fieldset | Input | Placeholder

@use "../../../dev" as *;
@use "../../../variables" as *;

@use "../../soul_type" as *;

// ----------------------------------------------------------------------------

///
/// Mixin to style the placeholder text in input fields
/// @group Form
///
@mixin input_placeholder {
    color: var(--color_text_tertiary);
    // @include font--size("03");

    // color: var(--color_fill_primary);
    // opacity: 0.5;
}

///
/// Mixin to style the placeholder text when an input is focused
/// @group Form
///
@mixin input_placeholder_focus {
    color: transparent;
    // @include font--size("03");

    // opacity: 0;
}
