Skip to content

Commit

Permalink
Merge pull request atom#18341 from atom/b3-style-typescript-operators
Browse files Browse the repository at this point in the history
Style operators in typescript and flow in one-dark/light-syntax
  • Loading branch information
simurai authored Nov 1, 2018
2 parents 110c28f + a4dadb5 commit a4d297c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/one-dark-syntax/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
11 changes: 11 additions & 0 deletions packages/one-dark-syntax/styles/syntax/typescript.less
Original file line number Diff line number Diff line change
@@ -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;
}
}
1 change: 1 addition & 0 deletions packages/one-light-syntax/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
11 changes: 11 additions & 0 deletions packages/one-light-syntax/styles/syntax/typescript.less
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit a4d297c

Please sign in to comment.