Skip to content

Commit

Permalink
Change JSX tag color to match original theme
Browse files Browse the repository at this point in the history
Fix wrong operator colors
Fix string quote color inside template string
  • Loading branch information
rokoroku committed Dec 9, 2016
1 parent a4768ba commit 447c56c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 13 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## v1.0.5
- Change JSX/TSX tag color to match the original theme
- Fix wrong operator colors inside function block
- Fix string quote color in template string syntax ``(`${'string'}`)``

## v1.0.4
- Fix wrong highlight color for types inside arrow function block

## v1.0.3
- Fix wrong highlight color for block scoped variables.
- Add YAML syntax highligting.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-theme-darcula",
"displayName": "Darcula Theme",
"description": "A theme extension for VS Code based on Darcula theme from Jetbrains IDEs",
"version": "1.0.4",
"version": "1.0.5",
"publisher": "rokoroku",
"repository": {
"type": "git",
Expand Down
37 changes: 25 additions & 12 deletions themes/Darcula.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,13 @@
<key>name</key>
<string>Operators</string>
<key>scope</key>
<string>keyword.operator,
keyword.operator.logical,
keyword.operator.relational,
keyword.operator.assignment,
keyword.operator.comparison,
meta.keyword.operator,
<string>meta.keyword.operator,
meta.keyword.operator.logical,
meta.keyword.operator.relational,
meta.keyword.operator.assignment,
meta.keyword.operator.comparison</string>
meta.keyword.operator.comparison,
meta.keyword.operator.ternary,
meta.keyword.operator.arithmetic</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand All @@ -65,7 +62,10 @@ meta.keyword.operator.comparison</string>
<string>string,
string.character.escape,
string.template.quoted,
string.type.declaration.annotation</string>
string.template.quoted.punctuation, string.template.quoted.punctuation.single,
string.template.quoted.punctuation.double,
string.type.declaration.annotation,
string.template.quoted.punctuation.tag,</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -188,7 +188,8 @@ storage.arrow</string>
<key>scope</key>
<string>class.instance.constructor,
meta.entity.class.method.expr.new,
meta.entity.name.expr.new.function</string>
meta.entity.name.expr.new.function,
meta.entity.name.expr.new.var</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -271,11 +272,12 @@ block.support.function.variable.property</string>
<key>name</key>
<string>Tag name</string>
<key>scope</key>
<string>punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end, entity.name.tag</string>
<string>punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end,
entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CC8242</string>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
Expand All @@ -286,7 +288,7 @@ block.support.function.variable.property</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#9E7BB0</string>
<string>#CCCCCC</string>
</dict>
</dict>
<dict>
Expand Down Expand Up @@ -526,6 +528,17 @@ block.support.function.variable</string>
<string>#CCCCCC</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>JSX Tag Section</string>
<key>scope</key>
<string>punctuation.tag.embedded.expression.section</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CCCCCC</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>693ee9de-bc28-4caf-9ae7-3258b05f1a4f</string>
Expand Down

0 comments on commit 447c56c

Please sign in to comment.