Skip to content

Commit 0ed5b46

Browse files
authored
Add support for Atom 1.13
2 parents 6128da8 + 2f61054 commit 0ed5b46

2 files changed

Lines changed: 52 additions & 52 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"repository": "https://github.com/MagicStack/Chromodynamics",
77
"license": "MIT",
88
"engines": {
9-
"atom": "*"
9+
"atom": ">=1.13.0"
1010
}
1111
}

styles/base.less

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,209 +1,209 @@
11
@import "syntax-variables";
22

3-
atom-text-editor, :host {
3+
atom-text-editor {
44
background-color: @syntax-background-color;
55
color: @syntax-text-color;
66
}
77

8-
atom-text-editor .gutter, :host .gutter {
8+
atom-text-editor .gutter {
99
background-color: @syntax-gutter-background-color;
1010
color: @syntax-gutter-text-color;
1111
}
1212

13-
atom-text-editor .gutter .line-number.cursor-line, :host .gutter .line-number.cursor-line {
13+
atom-text-editor .gutter .line-number.cursor-line {
1414
background-color: @syntax-gutter-background-color-selected;
1515
color: @syntax-gutter-text-color-selected;
1616
}
1717

18-
atom-text-editor .gutter .line-number.cursor-line-no-selection, :host .gutter .line-number.cursor-line-no-selection {
18+
atom-text-editor .gutter .line-number.cursor-line-no-selection {
1919
color: @syntax-gutter-text-color-selected;
2020
}
2121

22-
atom-text-editor .wrap-guide, :host .wrap-guide {
22+
atom-text-editor .wrap-guide {
2323
color: @syntax-wrap-guide-color;background-color:@syntax-wrap-guide-color !important;
2424
}
2525

26-
atom-text-editor .indent-guide, :host .indent-guide {
26+
atom-text-editor .indent-guide {
2727
color: @syntax-indent-guide-color;
2828
}
2929

30-
atom-text-editor .invisible-character, :host .invisible-character {
30+
atom-text-editor .invisible-character {
3131
color: @syntax-invisible-character-color;
3232
}
3333

34-
atom-text-editor .search-results .marker .region, :host .search-results .marker .region {
34+
atom-text-editor .search-results .marker .region {
3535
background-color: transparent;
3636
border: @syntax-result-marker-color;
3737
}
3838

39-
atom-text-editor .search-results .marker.current-result .region, :host .search-results .marker.current-result .region {
39+
atom-text-editor .search-results .marker.current-result .region {
4040
border: @syntax-result-marker-color-selected;
4141
}
4242

43-
atom-text-editor.is-focused .cursor, :host(.is-focused) .cursor {
43+
atom-text-editor.is-focused .cursor {
4444
border-color: @syntax-cursor-color;
4545
}
4646

47-
atom-text-editor.is-focused .selection .region, :host(.is-focused) .selection .region {
47+
atom-text-editor.is-focused .selection .region {
4848
background-color: @syntax-selection-color;
4949
}
5050

51-
atom-text-editor.is-focused .line-number.cursor-line-no-selection, atom-text-editor.is-focused .line.cursor-line, :host(.is-focused) .line-number.cursor-line-no-selection, :host(.is-focused) .line.cursor-line {
51+
atom-text-editor.is-focused .line-number.cursor-line-no-selection, atom-text-editor.is-focused .line.cursor-line {
5252
background-color: #252525;
5353
}
5454

55-
.text, .source {
55+
.syntax--text, .syntax--source {
5656
color: #c6c6c6;
5757
}
5858

59-
.git_changes_change {
59+
.syntax--git_changes_change {
6060
color: #A29F46;
6161
}
6262

63-
.git_changes_add {
63+
.syntax--git_changes_add {
6464
color: #1f9a12;
6565
}
6666

67-
.git_changes_del- {
67+
.syntax--git_changes_del- {
6868
color: #A72822;
6969
}
7070

71-
.comment {
71+
.syntax--comment {
7272
color: #545458;
7373
}
7474

75-
.string {
75+
.syntax--string {
7676
color: #d3c970;
7777
}
7878

79-
.string.quoted.docstring {
79+
.syntax--string.syntax--quoted.syntax--docstring {
8080
color: #7c9f57;
8181
}
8282

83-
.string.quoted.docstring .string {
83+
.syntax--string.syntax--quoted.syntax--docstring .syntax--string {
8484
color: #7c9f57;
8585
}
8686

87-
.constant.numeric {
87+
.syntax--constant.syntax--numeric {
8888
color: #9a79d7;
8989
}
9090

91-
.constant.language {
91+
.syntax--constant.syntax--language {
9292
color: #9a79d7;
9393
}
9494

95-
.constant.character, .constant.other {
95+
.syntax--constant.syntax--character, .syntax--constant.syntax--other {
9696
color: #9a79d7;
9797
}
9898

99-
.variable {
99+
.syntax--variable {
100100
}
101101

102-
.keyword {
102+
.syntax--keyword {
103103
color: #e8364f;
104104
}
105105

106-
.comment.line.note, .string.quoted.docstring.note {
106+
.syntax--comment.syntax--line.syntax--note, .syntax--string.syntax--quoted.syntax--docstring.syntax--note {
107107
color: #b14a58;
108108
}
109109

110-
.storage {
110+
.syntax--storage {
111111
color: #e8364f;
112112
}
113113

114-
.storage.type {
114+
.syntax--storage.syntax--type {
115115
color: #66D9EF;
116116
}
117117

118-
.entity.name.class {
118+
.syntax--entity.syntax--name.syntax--class {
119119
color: #A6E22E;
120120
}
121121

122-
.entity.other.inherited-class {
122+
.syntax--entity.syntax--other.syntax--inherited-class {
123123
color: #A6E22E;
124124
}
125125

126-
.entity.name.function {
126+
.syntax--entity.syntax--name.syntax--function {
127127
color: #A6E22E;
128128
}
129129

130-
.variable.parameter {
130+
.syntax--variable.syntax--parameter {
131131
color: #e99c42;
132132
}
133133

134-
.entity.name.tag.namespace {
134+
.syntax--entity.syntax--name.syntax--tag.syntax--namespace {
135135
color: #76263a;
136136
}
137137

138-
.entity.name.tag, .keyword.doctype.xml {
138+
.syntax--entity.syntax--name.syntax--tag, .syntax--keyword.syntax--doctype.syntax--xml {
139139
color: #d33c78;
140140
}
141141

142-
.entity.other.attribute-name {
142+
.syntax--entity.syntax--other.syntax--attribute-name {
143143
color: #D77C23;
144144
}
145145

146-
.support.function {
146+
.syntax--support.syntax--function {
147147
color: #66D9EF;
148148
}
149149

150-
.support.constant {
150+
.syntax--support.syntax--constant {
151151
color: #66D9EF;
152152
}
153153

154-
.support.type {
154+
.syntax--support.syntax--type {
155155
color: #66D9EF;
156156
}
157157

158-
.support.class, .support.other, .support.variable {
158+
.syntax--support.syntax--class, .syntax--support.syntax--other, .syntax--support.syntax--variable {
159159
color: #66D9EF;
160160
}
161161

162-
.support.other.variable {
162+
.syntax--support.syntax--other.syntax--variable {
163163
}
164164

165-
.invalid {
165+
.syntax--invalid {
166166
color: #F8F8F0;
167167
background-color: #7c3636;
168168
}
169169

170-
.invalid.deprecated {
170+
.syntax--invalid.syntax--deprecated {
171171
color: #F8F8F0;
172172
background-color: #99732b;
173173
}
174174

175-
.meta.structure.dictionary.json .string.quoted.double.json {
175+
.syntax--meta.syntax--structure.syntax--dictionary.syntax--json .syntax--string.syntax--quoted.syntax--double.syntax--json {
176176
color: #CFCFC2;
177177
}
178178

179-
.meta.diff, .meta.diff.header {
179+
.syntax--meta.syntax--diff, .syntax--meta.syntax--diff.syntax--header {
180180
color: #75715E;
181181
}
182182

183-
.markup.deleted {
183+
.syntax--markup.syntax--deleted {
184184
color: #e8364f;
185185
}
186186

187-
.markup.inserted {
187+
.syntax--markup.syntax--inserted {
188188
color: #A6E22E;
189189
}
190190

191-
.markup.changed {
191+
.syntax--markup.syntax--changed {
192192
color: #E6DB74;
193193
}
194194

195-
.variable.language.special, .variable.parameter.function.language.special {
195+
.syntax--variable.syntax--language.syntax--special, .syntax--variable.syntax--parameter.syntax--function.syntax--language.syntax--special {
196196
color: #b0af95;
197197
}
198198

199-
.comment.typehint {
199+
.syntax--comment.syntax--typehint {
200200
color: #888A84;
201201
}
202202

203-
.comment.typehint.ignore {
203+
.syntax--comment.syntax--typehint.syntax--ignore {
204204
color: #7E6461;
205205
}
206206

207-
.comment.typehint.type {
207+
.syntax--comment.syntax--typehint.syntax--type {
208208
color: #44727B;
209209
}

0 commit comments

Comments
 (0)