Skip to content

Commit 4462d17

Browse files
committed
Convert ISE Nostalgia to sublime-color-scheme
1 parent 60b2779 commit 4462d17

File tree

2 files changed

+151
-280
lines changed

2 files changed

+151
-280
lines changed

ISE Nostalgia.sublime-color-scheme

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
{
2+
"name": "ISE Nostalgia",
3+
"author": "Guillermo L\u00f3pez-Anglada",
4+
"variables":
5+
{
6+
"blue": "#87beff",
7+
"blue2": "#add6ff",
8+
"blue3": "#5ab1cd",
9+
"blue4": "#585cf6",
10+
"blue5": "#0000ff",
11+
"blue6": "#6d79de",
12+
"blue7":"#21439C",
13+
"green": "#006400",
14+
"green2": "#06960e",
15+
"grey": "#a9a9a9",
16+
"grey2": "#7f7f7f",
17+
"grey3": "#292929",
18+
"grey4": "#70727E",
19+
"purple": "#8a2be2",
20+
"purple2": "#801e92",
21+
"purple3": "#aa69b6",
22+
"red": "#6b0000",
23+
"red2": "#ff4500",
24+
"red3": "#b85b44",
25+
"white": "#ffffff",
26+
"white2": "#fef8da",
27+
"white3": "#e3f1ff",
28+
"yellow": "#ffff00",
29+
},
30+
"globals":
31+
{
32+
"foreground": "var(purple)",
33+
"background": "var(white)",
34+
"caret": "var(grey2)",
35+
// "invisibles": "var(grey2)",
36+
"line_highlight": "var(white2)",
37+
"selection": "var(blue2)",
38+
"selection_border": "var(blue)",
39+
"inactive_selection": "var(white3)",
40+
"gutter_foreground": "var(blue3)",
41+
},
42+
"rules":
43+
[
44+
{
45+
"name": "Comment",
46+
"scope": "comment",
47+
"foreground": "var(green)",
48+
"font_style": "normal",
49+
},
50+
{
51+
"name": "Keyword",
52+
"scope": "keyword, storage",
53+
"foreground": "var(grey3)",
54+
},
55+
{
56+
"name": "Number",
57+
"scope": "constant.numeric",
58+
"foreground": "var(purple2)",
59+
},
60+
{
61+
"name": "Built-in constant",
62+
"scope": "constant.language",
63+
"foreground": "var(blue4)",
64+
},
65+
{
66+
"name": "Variable",
67+
"scope": "variable.language, variable.other",
68+
"foreground": "var(red2)",
69+
},
70+
{
71+
"name": "String",
72+
"scope": "string",
73+
"foreground": "var(red)",
74+
},
75+
{
76+
"name": "String interpolation",
77+
"scope": "constant.character.escape, string source",
78+
"foreground": "var(purple3)",
79+
},
80+
// {
81+
// "name": "Function name",
82+
// "scope": "entity.name.function, support.function.any-method",
83+
// "foreground": "var(blue5)",
84+
// },
85+
// {
86+
// "name": "Type name",
87+
// "scope": "entity.name.type",
88+
// "font_style": "underline",
89+
// },
90+
// {
91+
// "name": "Inherited class name",
92+
// "scope": "entity.other.inherited-class",
93+
// "font_style": "italic",
94+
// },
95+
// {
96+
// "name": "Function parameter",
97+
// "scope": "variable.parameter",
98+
// "font_style": "italic",
99+
// },
100+
// {
101+
// "name": "Function argument and result types",
102+
// "scope": "storage.type.method",
103+
// "font_style": "",
104+
// "foreground": "var(grey4)",
105+
// },
106+
// {
107+
// "name": "Section",
108+
// "scope": "meta.section entity.name.section, declaration.section entity.name.section",
109+
// "font_style": "italic",
110+
// },
111+
{
112+
"name": "Library function",
113+
"scope": "support.function",
114+
"foreground": "var(blue5)",
115+
},
116+
// {
117+
// "name": "Library object",
118+
// "scope": "support.class, support.type",
119+
// "font_style": "bold",
120+
// "foreground": "var(blue6)",
121+
// },
122+
// {
123+
// "name": "Library constant",
124+
// "scope": "support.constant",
125+
// "font_style": "bold",
126+
// "foreground": "var(green2)",
127+
// },
128+
// {
129+
// "name": "Library variable",
130+
// "scope": "support.variable",
131+
// "font_style": "bold",
132+
// "foreground": "var(blue7)",
133+
// },
134+
{
135+
"name": "PowerShell: Assignment Operator",
136+
"scope": "keyword.operator.assignment.powershell",
137+
"foreground": "var(grey)",
138+
},
139+
{
140+
"name": "Invalid",
141+
"scope": "invalid",
142+
"foreground": "var(yellow)",
143+
"background": "var(red3)",
144+
},
145+
{
146+
"name": "Invalid trailing whitespace",
147+
"scope": "invalid.deprecated.trailing-whitespace",
148+
"background": "var(red3)",
149+
}
150+
]
151+
}

0 commit comments

Comments
 (0)