Skip to content

Commit

Permalink
Improve CSS/SCSS colorization
Browse files Browse the repository at this point in the history
  • Loading branch information
rokoroku committed Dec 12, 2016
1 parent 5111d53 commit da1dae1
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.0.7
- Improve CSS/SCSS colorization

## v1.0.6
- Improve JSX/TSX colorization
- Improve regex class colorization
Expand Down
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.5",
"version": "1.0.7",
"publisher": "rokoroku",
"repository": {
"type": "git",
Expand Down
113 changes: 99 additions & 14 deletions themes/Darcula.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ keyword.operator.static,
keyword.operator.this,
keyword.expression.typeof,
keyword.expression.instanceof,
keyword.type.expression.typeof,</string>
keyword.type.expression.typeof</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -305,18 +305,7 @@ string.xml,</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#6A8759</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS ID</string>
<key>scope</key>
<string>meta.selector.css, entity.other.attribute-name.id</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#9E7BB0</string>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
Expand Down Expand Up @@ -422,7 +411,8 @@ type-fn-type-parameters</string>
<key>name</key>
<string>Object Key Seperator</string>
<key>scope</key>
<string>objectliteral.key.separator</string>
<string>objectliteral.key.separator,
scss.token.punctuation.separator</string>
<key>settings</key>
<dict>
<key>foreground</key>
Expand Down Expand Up @@ -608,6 +598,101 @@ object-literal.object.member.key.array.brace.square</string>
<string>#CCCCCC</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Property-value</string>
<key>scope</key>
<string>property-list.property-value,
property-list.constant,
scss.keyword.other.unit,
css.keyword.other.unit</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#A5C261</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Property variable</string>
<key>scope</key>
<string>property-list.variable,
scss.set.variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#7A9EC2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Property entity</string>
<key>scope</key>
<string>css.entity.attribute-name,
scss.entity.attribute-name</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Property-value number</string>
<key>scope</key>
<string>property-list.property-value.rgb-value</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#7A9EC2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Property-value function</string>
<key>scope</key>
<string>property-list.property-value.function</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Tag</string>
<key>scope</key>
<string>css.entity.name.tag,
scss.entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CC8242</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS ID, Selector</string>
<key>scope</key>
<string>meta.selector.css, entity.attribute-name.id</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFC66D</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Keyword</string>
<key>scope</key>
<string>keyword.scss,
keyword.css</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#CC8242</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>693ee9de-bc28-4caf-9ae7-3258b05f1a4f</string>
Expand Down

0 comments on commit da1dae1

Please sign in to comment.