/* Primitives / Color - Swimlane Default */
:root {
  // Blue
  --blue-100: rgb(224, 239, 255);
  --blue-200: rgb(173, 212, 255);
  --blue-300: rgb(122, 185, 255);
  --blue-400: rgb(71, 158, 255);
  --blue-500: rgb(20, 131, 255);
  --blue-600: rgb(0, 106, 224);
  --blue-700: rgb(0, 82, 173);
  --blue-800: rgb(0, 58, 122);
  --blue-900: rgb(0, 34, 71);

  // Light Blue
  --lightblue-100: rgb(234, 249, 255);
  --lightblue-200: rgb(184, 234, 254);
  --lightblue-300: rgb(134, 219, 253);
  --lightblue-400: rgb(84, 205, 252);
  --lightblue-500: rgb(34, 190, 251);
  --lightblue-600: rgb(4, 166, 230);
  --lightblue-700: rgb(3, 130, 180);
  --lightblue-800: rgb(2, 94, 130);
  --lightblue-900: rgb(1, 58, 80);

  //Green
  --green-100: rgb(206, 249, 240);
  --green-200: rgb(161, 243, 226);
  --green-300: rgb(116, 237, 212);
  --green-400: rgb(71, 231, 198);
  --green-500: rgb(29, 222, 182);
  --green-600: rgb(23, 177, 145);
  --green-700: rgb(17, 132, 108);
  --green-800: rgb(11, 87, 71);
  --green-900: rgb(5, 42, 34);

  //Orange
  --orange-100: rgb(255, 244, 224);
  --orange-200: rgb(255, 225, 173);
  --orange-300: rgb(255, 206, 122);
  --orange-400: rgb(255, 187, 71);
  --orange-500: rgb(255, 168, 20);
  --orange-600: rgb(224, 141, 0);
  --orange-700: rgb(173, 109, 0);
  --orange-800: rgb(122, 77, 0);
  --orange-900: rgb(71, 45, 0);

  // Base
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);

  // Red
  --red-100: rgb(255, 230, 224);
  --red-200: rgb(255, 190, 173);
  --red-300: rgb(255, 150, 122);
  --red-400: rgb(255, 109, 71);
  --red-500: rgb(255, 69, 20);
  --red-600: rgb(224, 47, 0);
  --red-700: rgb(173, 36, 0);
  --red-800: rgb(122, 25, 0);
  --red-900: rgb(71, 15, 0);

  // Purple
  --purple-100: rgb(255, 255, 255);
  --purple-200: rgb(239, 234, 252);
  --purple-300: rgb(205, 190, 245);
  --purple-400: rgb(172, 145, 239);
  --purple-500: rgb(138, 101, 232);
  --purple-600: rgb(104, 57, 225);
  --purple-700: rgb(78, 30, 201);
  --purple-800: rgb(61, 23, 157);
  --purple-900: rgb(44, 17, 112);

  // Grey
  // This is the old blue-grey color
  --grey-050: rgb(235, 237, 242);
  --grey-100: rgb(205, 210, 221);
  --grey-150: rgb(190, 197, 211);
  --grey-200: rgb(175, 183, 200);
  --grey-250: rgb(160, 170, 190);
  --grey-300: rgb(144, 156, 180);
  --grey-350: rgb(129, 143, 169);
  --grey-400: rgb(114, 129, 159);
  --grey-450: rgb(100, 116, 147);
  --grey-500: rgb(90, 104, 132);
  --grey-550: rgb(80, 92, 117);
  --grey-600: rgb(69, 80, 102);
  --grey-650: rgb(59, 68, 87);
  --grey-700: rgb(49, 56, 71);
  --grey-725: rgb(43, 50, 64);
  --grey-750: rgb(38, 44, 56);
  --grey-775: rgb(33, 38, 49);
  --grey-800: rgb(28, 32, 41);
  --grey-825: rgb(23, 26, 33);
  --grey-850: rgb(18, 20, 26);
  --grey-875: rgb(12, 14, 18);
  --grey-900: rgb(7, 8, 11);

  // Error
  --color-error: var(—red-500);
}
