//! Canonical color names used throughout Raymon.
//!
//! Ray payloads can include a `"color"` field, but we only treat a small set as "official"
//! (matching the Ray UI): `green`, `yellow`, `red`, `purple`, `blue`, `grey`.
//!
//! Incoming values are normalized to lowercase and mapped into this official set.
//! Unknown values return `None`.
/// Official color names (all lowercase).
pub const OFFICIAL_COLORS: = ;
/// Convert an incoming color string into an official Raymon color name.
///
/// Returns `None` for unknown colors.