pub fn parse_hex_color(s: &str) -> Option<RGBColor>
Parse a "#rrggbb" hex string into an RGBColor. Returns None when the string is not in the expected format so callers can log and skip rather than hard-failing.
"#rrggbb"
RGBColor
None