mirror of
https://github.com/atom/atom.git
synced 2026-01-26 15:28:27 -05:00
18 lines
419 B
Plaintext
18 lines
419 B
Plaintext
.syntax--source.syntax--js {
|
|
.syntax--keyword.syntax--operator {
|
|
color: @hue-1;
|
|
|
|
// keywords are definded in https://github.com/atom/language-javascript/blob/master/grammars/javascript.cson
|
|
// search "instanceof" for location
|
|
&.syntax--delete,
|
|
&.syntax--in,
|
|
&.syntax--of,
|
|
&.syntax--instanceof,
|
|
&.syntax--new,
|
|
&.syntax--typeof,
|
|
&.syntax--void {
|
|
color: @hue-3;
|
|
}
|
|
}
|
|
}
|