mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Style operators in typescript and flow
This makes operators in typescript and flow have the same coloring as in javascript
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
@import "styles/syntax/ini.less";
|
||||
@import "styles/syntax/java.less";
|
||||
@import "styles/syntax/javascript.less";
|
||||
@import "styles/syntax/typescript.less";
|
||||
@import "styles/syntax/json.less";
|
||||
@import "styles/syntax/ng.less";
|
||||
@import "styles/syntax/ruby.less";
|
||||
|
||||
11
packages/one-dark-syntax/styles/syntax/typescript.less
Normal file
11
packages/one-dark-syntax/styles/syntax/typescript.less
Normal file
@@ -0,0 +1,11 @@
|
||||
.syntax--source.syntax--ts {
|
||||
.syntax--keyword.syntax--operator {
|
||||
color: @hue-1;
|
||||
}
|
||||
}
|
||||
|
||||
.syntax--source.syntax--flow {
|
||||
.syntax--keyword.syntax--operator {
|
||||
color: @hue-1;
|
||||
}
|
||||
}
|
||||
@@ -16,6 +16,7 @@
|
||||
@import "styles/syntax/ini.less";
|
||||
@import "styles/syntax/java.less";
|
||||
@import "styles/syntax/javascript.less";
|
||||
@import "styles/syntax/typescript.less";
|
||||
@import "styles/syntax/json.less";
|
||||
@import "styles/syntax/ng.less";
|
||||
@import "styles/syntax/ruby.less";
|
||||
|
||||
11
packages/one-light-syntax/styles/syntax/typescript.less
Normal file
11
packages/one-light-syntax/styles/syntax/typescript.less
Normal file
@@ -0,0 +1,11 @@
|
||||
.syntax--source.syntax--ts {
|
||||
.syntax--keyword.syntax--operator {
|
||||
color: @hue-1;
|
||||
}
|
||||
}
|
||||
|
||||
.syntax--source.syntax--flow {
|
||||
.syntax--keyword.syntax--operator {
|
||||
color: @hue-1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user