-
Notifications
You must be signed in to change notification settings - Fork 3
/
sublime-color-scheme
46 lines (45 loc) · 1.52 KB
/
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
//add this to your theme.sublime-color-scheme
{
"rules": [
{
// "scope": "string",
// "foreground": "#00FF00",
},
{
"scope": "comment",
"foreground": "#ff0000",
},
{
"scope": "support.function.builtin.nu",
"foreground": "#BB00FF",
},
{
"scope": "support.function.custom.nu",
"foreground": "#FF00FF",
},
{
"scope": "support.function.plugin.nu",
"foreground": "#004CFF",
},
{
"scope": "support.function.keywords.nu",
"foreground": "#A020F0",
},
{
"scope": "support.function.aliases.nu",
"foreground": "#D580FF",
},
{
"scope": "support.function.personal.nu",
"foreground": "#004CFF",
},
{
"scope": "support.function.operators.nu",
"foreground": "#FFFF00",
},
{
"scope": "support.function.boolean.nu",
"foreground": "#00FFFF",
}
],
}