use ;
/// Indicates the colour of a card.
///
/// The suits Club and Spade are black, whereas Heart and Diamond are red.
///
/// # Examples
///
/// ```
/// use freecell::{Card, Colour, Suit, ACE, KING};
///
/// let black_card = Card {suit: Suit::Spade, rank: ACE};
/// assert_eq!(Colour::Black, black_card.suit.colour());
///
/// let red_card = Card {suit: Suit::Heart, rank: KING};
/// assert_eq!(Colour::Red, red_card.suit.colour());
/// ```
/// Alias for the American spelling of Colour.
pub type Color = Colour;