Skip to content

Commit

Permalink
v1.0.8
Browse files Browse the repository at this point in the history
- Add icon for vscode extension
- Add triple-slash directive colorization
- Add regex capture group colorization
- Fix wrong operator colorization on file scoped code
- Change XML/HTML string color to match other string
- Change line highlight color & background color to match the original theme (fixes #2)
  • Loading branch information
rokoroku committed Dec 16, 2016
1 parent da1dae1 commit bf8affa
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 46 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v1.0.8
- Add icon for vscode extension
- Add triple-slash directive colorization
- Add regex capture group colorization
- Fix wrong operator colorization on file scoped code
- Change XML/HTML string color to match other string
- Change line highlight color & background color to match the original theme (fixes #2)

## v1.0.7
- Improve CSS/SCSS colorization

Expand Down
21 changes: 21 additions & 0 deletions icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 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.7",
"version": "1.0.8",
"publisher": "rokoroku",
"repository": {
"type": "git",
Expand All @@ -14,6 +14,7 @@
"categories": [
"Themes"
],
"icon": "icon.svg",
"contributes": {
"themes": [
{
Expand Down
79 changes: 34 additions & 45 deletions themes/Darcula.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
<key>settings</key>
<dict>
<key>background</key>
<string>#242424</string>
<string>#2B2B2B</string>
<key>foreground</key>
<string>#CCCCCC</string>
<key>caret</key>
<string>#7A9EC2</string>
<key>invisibles</key>
<string>#474747</string>
<key>lineHighlight</key>
<string>#242424</string>
<string>#323232</string>
<key>selection</key>
<string>#1B424E</string>
</dict>
Expand All @@ -40,15 +40,16 @@
</dict>
<dict>
<key>name</key>
<string>Operators</string>
<string>Operator Keywords</string>
<key>scope</key>
<string>meta.keyword.operator,
meta.keyword.operator.logical,
meta.keyword.operator.relational,
meta.keyword.operator.assignment,
meta.keyword.operator.comparison,
meta.keyword.operator.ternary,
meta.keyword.operator.arithmetic</string>
<string>keyword.operator,
keyword.operator.logical,
keyword.operator.relational,
keyword.operator.assignment,
keyword.operator.comparison,
keyword.operator.ternary,
keyword.operator.arithmetic,
keyword.operator.spread</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -146,17 +147,6 @@ keyword.type.expression.typeof</string>
<string>#CC8242</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Storage</string>
<key>scope</key>
<string>storage</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CC8242</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Types</string>
Expand All @@ -175,7 +165,8 @@ meta.entity.name.new.expr.type.parameters</string>
<key>name</key>
<string>Storage type</string>
<key>scope</key>
<string>storage.type,
<string>storage,
storage.type,
storage.modifier,
storage.arrow</string>
<key>settings</key>
Expand Down Expand Up @@ -294,20 +285,6 @@ entity.name.tag</string>
<string>#CCCCCC</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>HTML&#x2f;XML String</string>
<key>scope</key>
<string>string.quoted.single.html, string.quoted.double.html,
string.html,
string.quoted.single.xml, string.quoted.double.xml,
string.xml,</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Object Keys</string>
Expand Down Expand Up @@ -510,7 +487,7 @@ yaml.string.entity.name</string>
</dict>
<dict>
<key>name</key>
<string>Ignored (Exceptions)</string>
<string>Ignored (Exceptions Rules)</string>
<key>scope</key>
<string>block.support.module,
block.support.type.module,
Expand All @@ -523,7 +500,7 @@ block.support.function.variable</string>
</dict>
<dict>
<key>name</key>
<string>Regex Storage Character</string>
<string>Regex Begin&#x2f;End</string>
<key>scope</key>
<string>expr.regex.begin.punctuation,
expr.regex.end.punctuation</string>
Expand All @@ -543,16 +520,14 @@ expr.regex.set.punctuation</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CC8242</string>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
<dict>
<key>name</key>
<string>Regex Operators</string>
<string>Regex Or Operator</string>
<key>scope</key>
<string>expr.regex.and.operator,
expr.regex.or.operator,
expr.regex.not.operator,</string>
<string>expr.regex.or.operator</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand All @@ -566,7 +541,8 @@ expr.regex.not.operator,</string>
<string>string.template.tag,
string.template.punctuation.tag,
string.quoted.punctuation.tag,
string.quoted.embedded.tag</string>
string.quoted.embedded.tag,
string.quoted.double.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -693,6 +669,19 @@ keyword.css</string>
<string>#CC8242</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Triple-slash Directive Tag</string>
<key>scope</key>
<string>triple-slash.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CCCCCC</string>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>693ee9de-bc28-4caf-9ae7-3258b05f1a4f</string>
Expand Down

0 comments on commit bf8affa

Please sign in to comment.