-
Notifications
You must be signed in to change notification settings - Fork 78
/
ISE Nostalgia.sublime-color-scheme
151 lines (151 loc) · 4.39 KB
/
ISE Nostalgia.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
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
{
"name": "ISE Nostalgia",
"author": "Guillermo L\u00f3pez-Anglada",
"variables":
{
"blue": "#87beff",
"blue2": "#add6ff",
"blue3": "#5ab1cd",
"blue4": "#585cf6",
"blue5": "#0000ff",
"blue6": "#6d79de",
"blue7":"#21439C",
"green": "#006400",
"green2": "#06960e",
"grey": "#a9a9a9",
"grey2": "#7f7f7f",
"grey3": "#292929",
"grey4": "#70727E",
"purple": "#8a2be2",
"purple2": "#801e92",
"purple3": "#aa69b6",
"red": "#6b0000",
"red2": "#ff4500",
"red3": "#b85b44",
"white": "#ffffff",
"white2": "#fef8da",
"white3": "#e3f1ff",
"yellow": "#ffff00",
},
"globals":
{
"foreground": "var(purple)",
"background": "var(white)",
"caret": "var(grey2)",
// "invisibles": "var(grey2)",
"line_highlight": "var(white2)",
"selection": "var(blue2)",
"selection_border": "var(blue)",
"inactive_selection": "var(white3)",
"gutter_foreground": "var(blue3)",
},
"rules":
[
{
"name": "Comment",
"scope": "comment",
"foreground": "var(green)",
"font_style": "normal",
},
{
"name": "Keyword",
"scope": "keyword, storage",
"foreground": "var(grey3)",
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "var(purple2)",
},
{
"name": "Built-in constant",
"scope": "constant.language",
"foreground": "var(blue4)",
},
{
"name": "Variable",
"scope": "variable.language, variable.other",
"foreground": "var(red2)",
},
{
"name": "String",
"scope": "string",
"foreground": "var(red)",
},
{
"name": "String interpolation",
"scope": "constant.character.escape, string source",
"foreground": "var(purple3)",
},
// {
// "name": "Function name",
// "scope": "entity.name.function, support.function.any-method",
// "foreground": "var(blue5)",
// },
// {
// "name": "Type name",
// "scope": "entity.name.type",
// "font_style": "underline",
// },
// {
// "name": "Inherited class name",
// "scope": "entity.other.inherited-class",
// "font_style": "italic",
// },
// {
// "name": "Function parameter",
// "scope": "variable.parameter",
// "font_style": "italic",
// },
// {
// "name": "Function argument and result types",
// "scope": "storage.type.method",
// "font_style": "",
// "foreground": "var(grey4)",
// },
// {
// "name": "Section",
// "scope": "meta.section entity.name.section, declaration.section entity.name.section",
// "font_style": "italic",
// },
{
"name": "Library function",
"scope": "support.function",
"foreground": "var(blue5)",
},
// {
// "name": "Library object",
// "scope": "support.class, support.type",
// "font_style": "bold",
// "foreground": "var(blue6)",
// },
// {
// "name": "Library constant",
// "scope": "support.constant",
// "font_style": "bold",
// "foreground": "var(green2)",
// },
// {
// "name": "Library variable",
// "scope": "support.variable",
// "font_style": "bold",
// "foreground": "var(blue7)",
// },
{
"name": "PowerShell: Assignment Operator",
"scope": "keyword.operator.assignment.powershell",
"foreground": "var(grey)",
},
{
"name": "Invalid",
"scope": "invalid",
"foreground": "var(yellow)",
"background": "var(red3)",
},
{
"name": "Invalid trailing whitespace",
"scope": "invalid.deprecated.trailing-whitespace",
"background": "var(red3)",
}
]
}