-
-
Notifications
You must be signed in to change notification settings - Fork 321
/
editorTheme.tsx
105 lines (104 loc) · 2.34 KB
/
editorTheme.tsx
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
const EDITOR_THEME: any = { //eslint-disable-line
plain: {
color: '#9CDCFE',
backgroundColor: '#1E1E1E',
},
styles: [
{
types: ['prolog'],
style: {
color: 'rgb(0, 0, 128)',
},
},
{
types: ['comment'],
style: {
color: 'rgb(106, 153, 85)',
},
},
{
types: ['builtin', 'changed', 'keyword'],
style: {
color: 'rgb(86, 156, 214)',
},
},
{
types: ['number', 'inserted'],
style: {
color: 'rgb(181, 206, 168)',
},
},
{
types: ['constant'],
style: {
color: 'rgb(100, 102, 149)',
},
},
{
types: ['attr-name', 'variable'],
style: {
color: '#ffe484',
},
},
{
types: ['deleted', 'string', 'attr-value'],
style: {
color: '#b5f4a5',
},
},
{
types: ['selector'],
style: {
color: 'rgb(215, 186, 125)',
},
},
{
// Fix tag color
types: ['tag'],
style: {
color: 'rgb(78, 201, 176)',
},
},
{
// Fix tag color for HTML
types: ['tag'],
languages: ['markup'],
style: {
color: '#ff8383',
},
},
{
types: ['punctuation', 'operator'],
style: {
color: 'rgb(212, 212, 212)',
},
},
{
// Fix punctuation color for HTML
types: ['punctuation'],
languages: ['markup'],
style: {
color: '#fff',
},
},
{
types: ['function'],
style: {
color: 'rgb(220, 220, 170)',
},
},
{
types: ['class-name'],
style: {
color: 'rgb(78, 201, 176)',
},
},
{
types: ['char'],
style: {
color: '#fff',
},
},
],
};
export default EDITOR_THEME;