// stylelint-disable value-list-max-empty-lines -- allow empty lines in lists
// in this file to allow grouping

////
/// @group settings/colours
////

/// Colour palette
///
/// @type Map
///
/// @prop $colour - Representation for the given $colour, where $colour is the
///   friendly name for the colour (e.g. "red": #ff0000);
///
/// @access public

$ccs-colours: (
  "red": #9b1a47,
  "dark-red": #85163d,
  "white": #ffffff,

  "mid-grey": #b1b4b6,
  "black": #2f2f2f
);
