macro_rules! const_color {
    (RED) => { ... };
    (GREEN) => { ... };
    (BLUE) => { ... };
    (WHITE) => { ... };
    ($c:literal) => { ... };
}