aboutsummaryrefslogtreecommitdiff
path: root/code/src/syntax_highlight/theme.rs
blob: 40434adb4e81508e3ea6db04052698d2382174f9 (plain)
1
2
3
4
5
6
pub fn theme(kind: &str) -> &'static str {
    match kind {
        "keyword" => "#9999ff",
        _ => "#ff00ff",
    }
}