Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/web/terminal/src/theme.ts
1070 views
1
import { ITheme, Terminal } from "xterm";
2
3
export default function setTheme(terminal: Terminal, themeName: keyof typeof colorThemes): void {
4
let t = colorThemes[themeName];
5
if (t == null) {
6
t = colorThemes["default"];
7
if (t == null) {
8
// can't happen
9
return;
10
}
11
}
12
const colors = t.colors;
13
if (colors == null) {
14
// satisfies typescript
15
return;
16
}
17
const theme: ITheme = {
18
background: colors[17],
19
foreground: colors[16],
20
cursor: colors[16],
21
cursorAccent: colors[17],
22
selection: "rgba(128, 128, 160, 0.25)",
23
black: colors[0],
24
red: colors[1],
25
green: colors[2],
26
yellow: colors[3],
27
blue: colors[4],
28
magenta: colors[5],
29
cyan: colors[6],
30
white: colors[7],
31
brightBlack: colors[8],
32
brightRed: colors[9],
33
brightGreen: colors[10],
34
brightYellow: colors[11],
35
brightBlue: colors[12],
36
brightMagenta: colors[13],
37
brightCyan: colors[14],
38
brightWhite: colors[15],
39
};
40
terminal.setOption("theme", theme);
41
}
42
43
export const colorThemes = {
44
"solarized-dark": {
45
comment: "Solarized dark",
46
colors: [
47
"#eee8d5",
48
"#dc322f",
49
"#859900",
50
"#b58900",
51
"#268bd2",
52
"#d33682",
53
"#2aa198",
54
"#073642",
55
"#fdf6e3",
56
"#cb4b16",
57
"#93a1a1",
58
"#839496",
59
"#657b83",
60
"#6c71c4",
61
"#586e75",
62
"#002b36",
63
"#eee8d5",
64
"#002b36",
65
],
66
},
67
"solarized-light": {
68
comment: "Solarized light",
69
colors: [
70
"#073642",
71
"#dc322f",
72
"#859900",
73
"#b58900",
74
"#268bd2",
75
"#d33682",
76
"#2aa198",
77
"#eee8d5",
78
"#002b36",
79
"#cb4b16",
80
"#586e75",
81
"#657b83",
82
"#839496",
83
"#6c71c4",
84
"#93a1a1",
85
"#fdf6e3",
86
"#073642",
87
"#fdf6e3",
88
],
89
},
90
"low-contrast": {
91
comment: "Low contrast dark",
92
colors: [
93
"#222222",
94
"#9e5641",
95
"#6c7e55",
96
"#caaf2b",
97
"#7fb8d8",
98
"#956d9d",
99
"#4c8ea1",
100
"#808080",
101
"#454545",
102
"#cc896d",
103
"#c4df90",
104
"#ffe080",
105
"#b8ddea",
106
"#c18fcb",
107
"#6bc1d0",
108
"#cdcdcd",
109
"#cdcdcd",
110
"#343434",
111
],
112
},
113
"raven-dark": {
114
comment: "Raven dark",
115
colors: [
116
"#3f3e3b",
117
"#b36b65",
118
"#4f8c61",
119
"#8d7e45",
120
"#6181b8",
121
"#a46d9d",
122
"#0e8e9a",
123
"#b6b7bb",
124
"#7f7f83",
125
"#efa29b",
126
"#86c596",
127
"#c7b679",
128
"#9ab9f3",
129
"#dfa4d7",
130
"#5ec7d4",
131
"#feffff",
132
"#a6a7aa",
133
"#32312e",
134
],
135
},
136
default: {
137
comment: "Default black on white",
138
colors: [
139
"#2e3436",
140
"#cc0000",
141
"#4e9a06",
142
"#c4a000",
143
"#3465a4",
144
"#75507b",
145
"#06989a",
146
"#d3d7cf",
147
"#555753",
148
"#ef2929",
149
"#8ae234",
150
"#fce94f",
151
"#729fcf",
152
"#ad7fa8",
153
"#34e2e2",
154
"#eeeeec",
155
"#000000",
156
"#ffffff",
157
],
158
},
159
mono: {
160
comment: "Monochrome dark",
161
colors: [
162
"#000000",
163
"#434343",
164
"#6b6b6b",
165
"#969696",
166
"#4a4a4a",
167
"#707070",
168
"#a9a9a9",
169
"#ffffff",
170
"#222222",
171
"#434343",
172
"#a5a5a5",
173
"#e5e5e5",
174
"#4d4d4d",
175
"#747474",
176
"#c4c4c4",
177
"#dedede",
178
"#b0b0b0",
179
"#282828",
180
],
181
},
182
tango: {
183
comment: "Tango light",
184
colors: [
185
"#2e3436",
186
"#cc0000",
187
"#4e9a06",
188
"#c4a000",
189
"#3465a4",
190
"#75507b",
191
"#06989a",
192
"#d3d7cf",
193
"#555753",
194
"#ef2929",
195
"#8ae234",
196
"#fce94f",
197
"#729fcf",
198
"#ad7fa8",
199
"#34e2e2",
200
"#eeeeec",
201
"#000000",
202
"#ffffff",
203
],
204
},
205
infred: {
206
comment: "Infinite red dark",
207
colors: [
208
"#6c6c6c",
209
"#e9897c",
210
"#b6e77d",
211
"#ecebbe",
212
"#a9cdeb",
213
"#ea96eb",
214
"#c9caec",
215
"#f2f2f2",
216
"#747474",
217
"#f99286",
218
"#c3f786",
219
"#fcfbcc",
220
"#b6defb",
221
"#fba1fb",
222
"#d7d9fc",
223
"#e2e2e2",
224
"#f2f2f2",
225
"#101010",
226
],
227
},
228
"raven-light": {
229
comment: "Raven light",
230
colors: [
231
"#e7dfd5",
232
"#f46864",
233
"#00ae58",
234
"#ac9510",
235
"#389bff",
236
"#dc6dd2",
237
"#00b0cc",
238
"#5b636b",
239
"#8f98a1",
240
"#b42b33",
241
"#007525",
242
"#726000",
243
"#0066cb",
244
"#a03398",
245
"#007793",
246
"#00020e",
247
"#69717a",
248
"#faf0e6",
249
],
250
},
251
};
252
253