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

/// Generates the base dark chip schema.
/// @type {Map}
/// @prop {Map} ghost-background [igx-color: ('grays', 400), hexrgba: #000] - The chip ghost background color.
$_base-dark-chip: (
    ghost-background: (
        igx-color: ('grays', 400),
        hexrgba: #000
    )
);

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

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