1 2 3 4 5 6
pub fn theme(kind: &str) -> &'static str { match kind { "keyword" => "#9999ff", _ => "#ff00ff", } }