1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
use gpui::{HighlightStyle, Hsla};

use crate::{
    blue, cyan, gold, indigo, iris, jade, lime, mint, neutral, orange, plum, purple, red, sky,
    tomato, yellow,
};

#[derive(Clone, Default)]
pub struct SyntaxTheme {
    pub highlights: Vec<(String, HighlightStyle)>,
    // todo!("Remove this in favor of StatusColor.hint")
    // If this should be overridable we should move it to ThemeColors
    pub inlay_style: HighlightStyle,
    // todo!("Remove this in favor of StatusColor.prediction")
    // If this should be overridable we should move it to ThemeColors
    pub suggestion_style: HighlightStyle,
}

impl SyntaxTheme {
    pub fn light() -> Self {
        Self {
            highlights: vec![
                ("attribute".into(), cyan().light().step_11().into()),
                ("boolean".into(), tomato().light().step_11().into()),
                ("comment".into(), neutral().light().step_11().into()),
                ("comment.doc".into(), iris().light().step_12().into()),
                ("constant".into(), red().light().step_9().into()),
                ("constructor".into(), red().light().step_9().into()),
                ("embedded".into(), red().light().step_9().into()),
                ("emphasis".into(), red().light().step_9().into()),
                ("emphasis.strong".into(), red().light().step_9().into()),
                ("enum".into(), red().light().step_9().into()),
                ("function".into(), red().light().step_9().into()),
                ("hint".into(), red().light().step_9().into()),
                ("keyword".into(), orange().light().step_11().into()),
                ("label".into(), red().light().step_9().into()),
                ("link_text".into(), red().light().step_9().into()),
                ("link_uri".into(), red().light().step_9().into()),
                ("number".into(), red().light().step_9().into()),
                ("operator".into(), red().light().step_9().into()),
                ("predictive".into(), red().light().step_9().into()),
                ("preproc".into(), red().light().step_9().into()),
                ("primary".into(), red().light().step_9().into()),
                ("property".into(), red().light().step_9().into()),
                ("punctuation".into(), neutral().light().step_11().into()),
                (
                    "punctuation.bracket".into(),
                    neutral().light().step_11().into(),
                ),
                (
                    "punctuation.delimiter".into(),
                    neutral().light().step_11().into(),
                ),
                (
                    "punctuation.list_marker".into(),
                    blue().light().step_11().into(),
                ),
                ("punctuation.special".into(), red().light().step_9().into()),
                ("string".into(), jade().light().step_11().into()),
                ("string.escape".into(), red().light().step_9().into()),
                ("string.regex".into(), tomato().light().step_11().into()),
                ("string.special".into(), red().light().step_9().into()),
                (
                    "string.special.symbol".into(),
                    red().light().step_9().into(),
                ),
                ("tag".into(), red().light().step_9().into()),
                ("text.literal".into(), red().light().step_9().into()),
                ("title".into(), red().light().step_9().into()),
                ("type".into(), red().light().step_9().into()),
                ("variable".into(), red().light().step_9().into()),
                ("variable.special".into(), red().light().step_9().into()),
                ("variant".into(), red().light().step_9().into()),
            ],
            inlay_style: tomato().light().step_1().into(), // todo!("nate: use a proper style")
            suggestion_style: orange().light().step_1().into(), // todo!("nate: use proper style")
        }
    }

    pub fn dark() -> Self {
        Self {
            highlights: vec![
                ("attribute".into(), tomato().dark().step_11().into()),
                ("boolean".into(), tomato().dark().step_11().into()),
                ("comment".into(), neutral().dark().step_11().into()),
                ("comment.doc".into(), iris().dark().step_12().into()),
                ("constant".into(), orange().dark().step_11().into()),
                ("constructor".into(), gold().dark().step_11().into()),
                ("embedded".into(), red().dark().step_11().into()),
                ("emphasis".into(), red().dark().step_11().into()),
                ("emphasis.strong".into(), red().dark().step_11().into()),
                ("enum".into(), yellow().dark().step_11().into()),
                ("function".into(), blue().dark().step_11().into()),
                ("hint".into(), indigo().dark().step_11().into()),
                ("keyword".into(), plum().dark().step_11().into()),
                ("label".into(), red().dark().step_11().into()),
                ("link_text".into(), red().dark().step_11().into()),
                ("link_uri".into(), red().dark().step_11().into()),
                ("number".into(), red().dark().step_11().into()),
                ("operator".into(), red().dark().step_11().into()),
                ("predictive".into(), red().dark().step_11().into()),
                ("preproc".into(), red().dark().step_11().into()),
                ("primary".into(), red().dark().step_11().into()),
                ("property".into(), red().dark().step_11().into()),
                ("punctuation".into(), neutral().dark().step_11().into()),
                (
                    "punctuation.bracket".into(),
                    neutral().dark().step_11().into(),
                ),
                (
                    "punctuation.delimiter".into(),
                    neutral().dark().step_11().into(),
                ),
                (
                    "punctuation.list_marker".into(),
                    blue().dark().step_11().into(),
                ),
                ("punctuation.special".into(), red().dark().step_11().into()),
                ("string".into(), lime().dark().step_11().into()),
                ("string.escape".into(), orange().dark().step_11().into()),
                ("string.regex".into(), tomato().dark().step_11().into()),
                ("string.special".into(), red().dark().step_11().into()),
                (
                    "string.special.symbol".into(),
                    red().dark().step_11().into(),
                ),
                ("tag".into(), red().dark().step_11().into()),
                ("text.literal".into(), purple().dark().step_11().into()),
                ("title".into(), sky().dark().step_11().into()),
                ("type".into(), mint().dark().step_11().into()),
                ("variable".into(), red().dark().step_11().into()),
                ("variable.special".into(), red().dark().step_11().into()),
                ("variant".into(), red().dark().step_11().into()),
            ],
            inlay_style: neutral().dark().step_11().into(), // todo!("nate: use a proper style")
            suggestion_style: orange().dark().step_11().into(), // todo!("nate: use a proper style")
        }
    }

    // TOOD: Get this working with `#[cfg(test)]`. Why isn't it?
    pub fn new_test(colors: impl IntoIterator<Item = (&'static str, Hsla)>) -> Self {
        SyntaxTheme {
            highlights: colors
                .into_iter()
                .map(|(key, color)| {
                    (
                        key.to_owned(),
                        HighlightStyle {
                            color: Some(color),
                            ..Default::default()
                        },
                    )
                })
                .collect(),
            inlay_style: HighlightStyle::default(),
            suggestion_style: HighlightStyle::default(),
        }
    }

    pub fn get(&self, name: &str) -> HighlightStyle {
        self.highlights
            .iter()
            .find_map(|entry| if entry.0 == name { Some(entry.1) } else { None })
            .unwrap_or_default()
    }

    pub fn color(&self, name: &str) -> Hsla {
        self.get(name).color.unwrap_or_default()
    }
}