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

/// Generates a dark expansion panel schema.
/// @type {Map}
/// @prop {Color} header-background [#222] - The panel header background color.
/// @prop {Color} body-background [#222] - The panel body background color.
$_base-dark-expansion-panel: (
    header-background: #222,
    body-background: #222,
);

/// Generates a dark expansion panel schema based on a mix of $_light-expansion-panel and $_base-dark-expansion-panel.
/// @type {Map}
/// @requires extend
/// @requires $_light-expansion-panel
/// @requires $_base-dark-expansion-panel
/// @see $default-palette
$_dark-expansion-panel: extend($_light-expansion-panel, $_base-dark-expansion-panel);

/// Generates a dark fluent expansion panel schema based on a mix of $_fluent-expansion-panel and $_base-dark-expansion-panel.
/// @type {Map}
/// @requires extend
/// @requires $_fluent-expansion-panel
/// @requires $_base-dark-expansion-panel
$_dark-fluent-expansion-panel: extend($_fluent-expansion-panel, $_base-dark-expansion-panel);
