@import '../light/badge';

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

/// Generates a base dark tabs schema.
/// @type {Map}
/// @prop {Color} item-background [#222] - The background color used for the tabs header.
/// @prop {Color} button-background [#222] - The color used for the button background.
$_base-dark-tabs: (
    item-background: #222,
    button-background: #222
);

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

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

