@import '../light/overlay';

////
/// @group schemas
/// @access private
/// @author <a href="https://github.com/desig9stein" target="_blank">Marin Popov</a>
////

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

/// Generates a dark fluent overlay schema.
/// @type {Map}
/// @property {color} background-color [rgba(0, 0, 0, .4)] - The background color used for modal overlays.
/// @requires {function} extend
/// @requires $_fluent-overlay
$_dark-fluent-overlay: extend(
    $_fluent-overlay,
    (
        background-color: rgba(0, 0, 0, .4)
    )
);
