@import '../shape/ripple';

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

/// Generates a light ripple schema.
/// @type {Map}
///
/// @property {map} color [igx-color: ('grays', 800)] - The color of the ripple.
///
/// @see $default-palette
$_light-ripple: extend(
    $_default-shape-ripple,
    (
        color: (
            igx-color: ('grays', 800)
        )
    )
);

/// Generates a fluent ripple schema.
/// @type {Map}
/// @requires {function} extend
/// @requires $_light-ripple
$_fluent-ripple: extend($_light-ripple);
