-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alan DarkFluo.sublime-color-scheme
179 lines (165 loc) · 5.38 KB
/
Alan DarkFluo.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// =============================================================================
// Alan DarkFluo v0.3 (2018-05-02)
// =============================================================================
// Copyright (c) Tristano Ajmone, 2018. MIT License.
// -- https://github.com/tajmone/sublime-alan-if
// -----------------------------------------------------------------------------
{
"name": "Alan DarkFluo",
"author": "Tristano Ajmone",
"variables":
{
"black": "#090b0c", // Almost black
"shade2": "#1b2024", // Even darker
"shade1": "#2d353c", // Darker
"base_hue": "#3f4a54", // Base color
"tint1": "#4b5864", // Less dark
"tint2": "#566573", // Even less less dark
"tint3": "#b1d0ec", // Midtone (complement 2 of 'base_hue')
"tint4": "#d3e4f4", // between 'tint3' and 'white'
"white": "#f5f9fd", // Almost white
"grey": "#b4b9be", // (matching Grey of 'tint3')
"grey2": "#8d949b", // darker grey (blend 2/4 of 'grey' with 'base_hue')
"blue": "#5396d1", // Blue
"green": "#60cf55", // Green
"orange": "#ffa125", // Orange
"purple": "#9e5aca", // Purple
"red": "#ff2525", // Red
"yellow": "#ffff25", // Yellow
},
"globals":
{
"foreground": "var(tint4)",
"background": "var(shade1)",
"caret": "var(white)",
"invisibles": "color(var(white) alpha(0.35))",
"line_highlight": "var(tint1)",
// Accents
"misspelling": "color(var(red) alpha(0.5))",
"minimap_border": "var(tint3)",
"accent": "color(var(red) alpha(0.5))",
"fold_marker": "var(yellow)",
// Gutter
"gutter": "var(shade1)",
"gutter_foreground": "var(grey2)",
// Selection
"selection": "var(tint4)",
"selection_foreground": "var(black)",
"selection_border": "var(tint3)",
"selection_border_width": "1",
"selection_corner_style": "round", // round | cut | square
"selection_corner_radius": "3.5", // (only for round or cut)
"inactive_selection": "var(grey2)",
"inactive_selection_foreground": "var(black)",
// Find
"highlight": "var(yellow)",
"find_highlight": "var(yellow)",
"find_highlight_foreground": "var(black)",
// Guides
"guide": "var(tint2)",
"active_guide": "color(var(tint3) alpha(0.6))",
"stack_guide": "color(var(tint3) alpha(0.35))",
// Brackets
"brackets_options": "underline",
"brackets_foreground": "color(var(white) alpha(0.65))",
"bracket_contents_options": "underline",
"bracket_contents_foreground": "color(var(white) alpha(0.65))",
// Tags
"tags_options": "stippled_underline",
// "tags_foreground": "var(grey)",
// Shadows
"shadow": "var(black)",
"shadow_width": "32", // max: 32
},
"rules":
[
{
// =====================================================================
// COMMENTS
// =====================================================================
"name": "Comment",
"scope": "comment",
"foreground": "var(grey2)",
"font_style": "italic"
},
// =====================================================================
// STRINGS
// =====================================================================
{
"name": "DQ String",
"scope": "string.quoted.double",
"foreground": "var(black)",
"background": "var(blue)",
// "font_style": "bold",
},
{
"name": "DQ String Delimiters",
"scope": "punctuation.definition.string",
"foreground": "var(orange)",
"background": "color(var(grey) a(0.0))",
"font_style": "",
},
{
"name": "Escape Sequences",
"scope": "constant.character.escape",
"foreground": "var(tint3)",
// "font_style": "bold",
},
// =====================================================================
// IDENTIFIERS
// =====================================================================
{
"name": "String",
"scope": "string.quoted.single",
"foreground": "var(green)",
},
{
"name": "String Delimiters",
"scope": "punctuation.definition.string string.quoted.single",
"foreground": "var(orange)",
"background": "color(var(grey) a(0.0))",
"font_style": "",
},
// =====================================================================
// KEYWORDS
// =====================================================================
{
"name": "Keywords",
"scope": "keyword",
"foreground": "var(red)",
"font_style": "bold"
},
{
"name": "Keywords Control",
"scope": "keyword.control.conditional",
"foreground": "var(blue)",
},
{
"name": "Import",
"scope": "keyword.control.import.include",
"foreground": "var(purple)",
},
// =====================================================================
{
"name": "Numbers",
"scope": "constant.numeric",
"foreground": "var(white)",
},
{
"name": "Operators",
"scope": "keyword.operator",
"foreground": "var(orange)",
},
// =====================================================================
{
"name": "Invalid",
"scope": "invalid",
"foreground": "var(white)",
"background": "var(red)",
},
{
"scope": "message.error",
"foreground": "color(var(red) alpha(0.5))",
},
]
}