1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/// The primary colors according to the RYB color model.
pub enum PrimaryColor {
    Red,
    Yellow,
    Blue,
}

/// The secondary colors according to the RYB color model.
pub enum SecondaryColor {
    Orange,
    Green,
    Purple,
}