Skip to main content

ratatui_code_editor/
theme.rs

1pub fn vesper() -> Vec<(&'static str, &'static str)> {
2    vec![
3        ("identifier", "#A5FCB6"),
4        ("field_identifier", "#A5FCB6"),
5        ("property_identifier", "#A5FCB6"),
6        ("property", "#A5FCB6"),
7        ("string", "#b1fce5"),
8        ("keyword", "#a0a0a0"),
9        ("constant", "#f6c99f"),
10        ("number", "#f6c99f"),
11        ("integer", "#f6c99f"),
12        ("float", "#f6c99f"),
13        ("variable", "#ffffff"),
14        ("variable.builtin", "#ffffff"),
15        ("function", "#f6c99f"),
16        ("function.call", "#f6c99f"),
17        ("method", "#f6c99f"),
18        ("function.macro", "#f6c99f"),
19        ("comment", "#585858"),
20        ("namespace", "#f6c99f"),
21        ("type", "#f6c99f"),
22        ("type.builtin", "#f6c99f"),
23        ("tag.attribute", "#c6a5fc"),
24        ("tag", "#c6a5fc"),
25        ("error", "#A5FCB6"),
26    ]
27}