@import '../shape/combo';

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

/// Generates a light combo schema.
/// @type {Map}
/// @prop {Map} empty-list-background [igx-color: 'surface'] - The combo list background color.
/// @prop {Map} search-separator-border-color [igx-color: 'surface', hexrgba: (), text-contrast: (), rgba: .12] - The combo search box separator color.
/// @prop {Map} empty-list-placeholder-color [igx-color: 'surface', hexrgba: (), text-contrast: (), rgba: .26] - The combo placeholder text color.
$_light-combo: (
    empty-list-background: (
        igx-color: 'surface'
    ),

    search-separator-border-color: (
        igx-color: 'surface',
        hexrgba: (),
        text-contrast: (),
        rgba: .12
    ),

    empty-list-placeholder-color: (
        igx-color: 'surface',
        hexrgba: (),
        text-contrast: (),
        rgba: .26
    )
);

/// Generates a fluent combo schema.
/// @type {Map}
/// @requires {function} extend
/// @requires {map} $_light-combo
/// @see $default-palette
$_fluent-combo: extend($_light-combo);

