@import '../light/drop-down';
////
/// @group schemas
/// @access private
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
////

/// Generates a dark drop-down schema.
/// @type {Map}
/// @requires extend
/// @requires $_light-drop-down
/// @requires extend
/// @see $default-palette
$_dark-drop-down: extend($_light-drop-down);

/// Generates a dark fluent drop-down schema.
/// @type {Map}
/// @prop {color} selected-item-text-color [#fff)] - The drop-down selected item text color.
/// @prop {color} selected-hover-item-text-color [#fff] - The drop-down selected item hover text color.
/// @prop {color} selected-focus-item-text-color [#fff] - The drop-down selected item focus text color.
/// @requires extend
/// @requires $_fluent-drop-down
/// @requires extend
$_dark-fluent-drop-down: extend(
    $_fluent-drop-down,
    (
        selected-item-text-color: #fff,

        selected-hover-item-text-color:  #fff,

        selected-focus-item-text-color: #fff,
    )
);
