Files
atom/packages/one-dark-syntax/styles/syntax/javascript.less
2018-09-05 13:10:12 -07:00

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;
}
}
}