////
/// @package theming
/// @group palettes
/// @access public
////

/// A list of color values to be used as brushes in charts.
/// @type List
/// @prop {Color} brush-1 [rgb(157 231 114)] - The first brush color used in charts.
/// @prop {Color} brush-2 [rgb(139 91 177)] - The second brush color used in charts.
/// @prop {Color} brush-3 [rgb(109 177 255)] - The third brush color used in charts.
/// @prop {Color} brush-4 [rgb(154 242 228)] - The fourth brush color used in charts.
/// @prop {Color} brush-5 [rgb(238 88 121)] - The fifth brush color used in charts.
/// @prop {Color} brush-6 [rgb(115 86 86)] - The sixth brush color used in charts.
/// @prop {Color} brush-7 [rgb(247 210 98)] - The seventh brush color used in charts.
/// @prop {Color} brush-8 [rgb(168 168 183)] - The eighth brush color used in charts.
/// @prop {Color} brush-9 [rgb(224 81 169)] - The ninth brush color used in charts.
/// @prop {Color} brush-10 [rgb(248 161 95)] - The tenth brush color used in charts.
$brushes-regular: (
    rgb(157 231 114),
    rgb(139 91 177),
    rgb(109 177 255),
    rgb(154 242 228),
    rgb(238 88 121),
    rgb(115 86 86),
    rgb(247 210 98),
    rgb(168 168 183),
    rgb(224 81 169),
    rgb(248 161 95)
);

/// A list of color values to be used as color-blind brushes in charts.
/// @type List
/// @prop {Color} brush-1 [rgb(86 180 233)] - The first brush color used in charts for color-blind users.
/// @prop {Color} brush-2 [rgb(0 158 115)] - The second brush color used in charts for color-blind users.
/// @prop {Color} brush-3 [rgb(240 228 68)] - The third brush color used in charts for color-blind users.
/// @prop {Color} brush-4 [rgb(213 94 0)] - The fourth brush color used in charts for color-blind users.
/// @prop {Color} brush-5 [rgb(214 0 254)] - The fifth brush color used in charts for color-blind users.
/// @prop {Color} brush-6 [rgb(0 73 159)] - The sixth brush color used in charts for color-blind users.
/// @prop {Color} brush-7 [rgb(230 159 0)] - The seventh brush color used in charts for color-blind users.
/// @prop {Color} brush-8 [rgb(0 0 0)] - The eighth brush color used in charts for color-blind users.
/// @prop {Color} brush-9 [rgb(132 240 223)] - The ninth brush color used in charts for color-blind users.
/// @prop {Color} brush-10 [rgb(115 86 86)] - The tenth brush color used in charts for color-blind users.
$brushes-color-blind: (
    rgb(86 180 233),
    rgb(0 158 115),
    rgb(240 228 68),
    rgb(213 94 0),
    rgb(214 0 254),
    rgb(0 73 159),
    rgb(230 159 0),
    rgb(0 0 0),
    rgb(132 240 223),
    rgb(115 86 86)
);
