-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalmost-mono-white.sublime-color-scheme
114 lines (114 loc) · 2.39 KB
/
almost-mono-white.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
{
"name": "Almost Mono White",
"variables" : {
"background": "#ffffff",
"foreground": "#000000",
"weak": "#888888",
"weaker": "#dddddd",
"weakest": "#efefef",
"highlight": "#fda50f",
"warning": "#ff0000",
"success": "#00ff00",
"string": "#3c5e2b",
},
"globals": {
"background": "var(background)",
"foreground": "var(foreground)",
"caret": "var(weak)",
"block_caret": "var(weak)",
"line_highlight": "var(weakest)",
"misspelling": "var(warning)",
"selection": "var(weaker)",
"selection_border_width": "0",
"selection_corner_radius": "2",
},
"rules":
[
{
"name": "Entity Name",
"scope": "entity.name",
"font_style": "bold"
},
{
"name": "Inherited Class",
"scope": "entity.other.inherited-class",
"font_style": "italic"
},
{
"name": "Text Markup Heading Name",
"scope": "entity.name.section",
"font_style": "bold"
},
{
"name": "Markup Tag Name",
"scope": "entity.name.tag",
"font_style": "bold"
},
{
"name": "Markup Tag Attribute",
"scope": "entity.other.attribute-name",
"font_style": "italic"
},
{
"name": "Variable",
"scope": "variable, variable.language, punctuation.definition.variable",
},
{
"name": "Variable Parameter",
"scope": "variable.parameter",
"font_style": "italic",
},
{
"name": "Invoked Function",
"scope": "variable.function",
"font_style": "none"
},
{
"name": "Constant",
"scope": "constant",
"font_style": "italic"
},
{
"name": "Type",
"scope": "storage.type",
"font_style": "italic"
},
{
"name": "Type Modifier",
"scope": "storage.modifier",
"font_style": "bold"
},
// I do not cover support scope
// But add it in case I will need to cover this in the future
{
"name": "Support",
"scope": "support"
},
{
"name": "Keyword",
"scope": "keyword, keyword.control, keyword.declaration",
"font_style": "bold"
},
{
"name": "Keyword operator",
"scope": "keyword.operator",
"font_style": "none"
},
{
"name": "String",
"scope": "string",
"foreground": "var(string)"
},
{
"name": "Comment",
"scope": "comment",
"foreground": "var(weak)",
"font_style": "italic"
},
{
"name": "Invalid",
"scope": "invalid, invalid.deprecated",
"foreground": "var(warning)"
}
]
}