/// Primary colors
///
/// @group 01-colors
///
/// @type Map
/// @colors primary-colors
$primary-colors: (
  900: #082449,
  800: #0c356b,
  700: #104993,
  600: #1560c1,
  500: #2f80e8,
  400: #75abef,
  300: #b6d1f7,
  200: #dfebfb,
  100: #f6f9fe
) !default;

/// Accent colors
///
/// @group 01-colors
///
/// @type Map
/// @colors accent-colors
$accent-colors: (
  900: #492c08,
  800: #6a410c,
  700: #935a10,
  600: #c17716,
  500: #e8982f,
  400: #f0ba75,
  300: #f7d9b6,
  200: #fbefdf,
  100: #fefdfa
) !default;

/// Neutral colors
///
/// @group 01-colors
///
/// @type Map
/// @colors neutral-colors
$neutral-colors: (
  900: #27292b,
  800: #383a3e,
  700: #4e5156,
  600: #666a70,
  500: #868b92,
  400: #b4b7bb,
  300: #dadbdd,
  200: #f2f2f3,
  100: #fafafa
) !default;

/// Success colors
///
/// @group 01-colors
///
/// @type Map
/// @colors success-colors
$success-colors: (
  900: #063709,
  800: #0b5c10,
  700: #0f8a15,
  600: #15c11e,
  500: #30e83a,
  400: #75f07c,
  300: #b6f7b9,
  200: #e2fce5,
  100: #f6fef6
) !default;

/// Warning colors
///
/// @group 01-colors
///
/// @type Map
/// @colors warning-colors
$warning-colors: (
  900: #404007,
  800: #60600c,
  700: #939311,
  600: #c1c016,
  500: #e8e830,
  400: #f2f28c,
  300: #f7f7ba,
  200: #fbfbdf,
  100: #fefef6
) !default;

/// Danger colors
///
/// @group 01-colors
///
/// @type Map
/// @colors danger-colors
$danger-colors: (
  900: #490808,
  800: #6a0c0c,
  700: #931010,
  600: #c11514,
  500: #e82f30,
  400: #ef6c6c,
  300: #f4999a,
  200: #fbdada,
  100: #fefafa
) !default;

$color-primary: map-get($primary-colors, 500) !default;
$color-accent: map-get($accent-colors, 500) !default;
$color-success: map-get($success-colors, 600) !default;
$color-warning: map-get($warning-colors, 500) !default;
$color-danger: map-get($danger-colors, 500) !default;
$color-gray-mid: map-get($neutral-colors, 500) !default;
$color-gray-light: map-get($neutral-colors, 100) !default;
$color-gray-dark: map-get($neutral-colors, 900) !default;
$color-white: #fff !default;
$color-black: #000 !default;

/// Editor palette
///
/// The colors available within the WordPress editor.
///
/// @group 01-colors
///
/// @type Map
/// @colors editor-palette
$editor-palette: (
  primary: $color-primary,
  accent: $color-accent,
  success: $color-success,
  warning: $color-warning,
  danger: $color-danger,
  gray-mid: $color-gray-mid,
  gray-light: $color-gray-light,
  gray-dark: $color-gray-dark
) !default;

$text-default-dark: $color-gray-dark !default;
$text-default-light: $color-white !default;
