-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sixteen.sublime-color-scheme
107 lines (94 loc) · 2.56 KB
/
Sixteen.sublime-color-scheme
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
// Documentation at https://www.sublimetext.com/docs/color_schemes.html
{
"variables":
{
},
"globals":
{
"background": "#FDF6E3",
},
"rules":
[
{
"scope": "meta.semantic-token.lsp",
"background": "#01010101",
},
{
"scope": "meta.semantic.variable, meta.semantic.variable.declaration",
"foreground": "var(red)",
},
{
"scope": "meta.semantic.parameter",
"foreground": "var(grey5)",
},
{
"scope": " meta.semantic.selfParameter",
"foreground": "#A566A0",
},
{
"scope": "meta.semantic.struct, meta.semantic.class, meta.semantic.enum",
"foreground": "#008080",
},
{
"scope": "meta.semantic.type",
"foreground": "#371F80",
},
{
"scope": "meta.semantic.macro, semantic.variable.readonly.lsp",
"foreground": "#660E7A",
"font_style": "bold italic"
},
{
"scope": "meta.semantic.enumMember",
"foreground": "#660E7A",
"font_style": "bold italic"
},
{
"scope": "meta.semantic.property",
"foreground": "#660E7A",
},
{
"scope": "meta.semantic.function",
"foreground": "#1F542E",
"font_style": "bold"
},
{
"scope": "meta.semantic.comment",
"foreground": "var(grey)",
},
{
"scope": "meta.semantic.module",
"foreground": "var(yellow)",
},
{
"scope": "meta.semantic.magicFunction.lsp,meta.semantic.variable.satic.lsp",
"foreground": "var(red)",
},
// Todo
{
"name": "todo",
"scope": "todo",
"foreground": "var(red)",
"font_style": "bold underline"
},
{
"name": "note",
"scope": "note",
"foreground": "var(green)",
"font_style": "bold underline"
},
//
{
"name": "Keywords",
"scope": "keyword, keyword.operator.word, storage, storage.type",
"foreground": "#000090",
"font_style": "bold"
},
{
"name": "Functions",
"scope": "entity.name.function",
"foreground": "#1F542E",
"font_style": "bold"
},
]
}