Skip to content

Commit

Permalink
Merge pull request #9 from wildpeaks/features/updates
Browse files Browse the repository at this point in the history
Version 2.2.0
  • Loading branch information
cecilemuller authored Jun 15, 2020
2 parents 1411d11 + 72000ed commit 30b8095
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 20 deletions.
5 changes: 4 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"rust-lang.rust",
"mrmlnc.vscode-scss",
"slevesque.shader",
"jakeboone02.cypher-query-language"
"jakeboone02.cypher-query-language",
"joaompinto.vscode-graphviz",
"hbenl.vscode-test-explorer",
"hbenl.vscode-mocha-test-adapter"
]
}
13 changes: 1 addition & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Unit Tests",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceFolder}",
"args": ["--colors", "-r", "ts-node/register/transpile-only", "test/unit/*.test.ts"],
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**", "node_modules/**"],
"preLaunchTask": "build"
},
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
// "--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"skipFiles": ["<node_internals>/**", "node_modules/**"],
Expand Down
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"mochaExplorer.require": "ts-node/register/transpile-only",
"mochaExplorer.files": "test/**/*.test.ts",
"eslint.validate": [
"typescript"
],
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

![Github Release](https://img.shields.io/github/v/release/wildpeaks/vscode-theme.svg?label=Release&logo=github&logoColor=eceff4&colorA=4c566a&colorB=11abfb)

Dark theme for VSCode **focused on readability by reducing contrast of less important elements** (e.g. commas, semicolons, brackets).
Dark theme for VSCode **focused on readability by reducing visibility of less important elements** (e.g. commas, semicolons, brackets).

| Format | Example screenshot |
| ------------- | ------------- |
| .bat | ![Batch](screenshots/Batch.jpg) |
| .css | ![CSS](screenshots/CSS.jpg) |
| .cypher | ![CSS](screenshots/Cypher_Query_Language.jpg) |
| Dockerfile | ![Dockerfile](screenshots/Dockerfile.jpg) |
| .editorConfig | ![EditorConfig](screenshots/EditorConfig.jpg) |
| .dot | ![GraphViz](screenshots/GraphViz.jpg) |
| .editorconfig | ![EditorConfig](screenshots/EditorConfig.jpg) |
| .env | ![Environment_Variables](screenshots/Environment_Variables.jpg) |
| .glsl | ![GLSL](screenshots/GLSL.jpg) |
| .hbs | ![Handlebars](screenshots/Handlebars.jpg) |
Expand Down Expand Up @@ -53,3 +54,4 @@ Some file formats require additional extensions, such as:
- `mrmlnc.vscode-scss`
- `slevesque.shader`
- `jakeboone02.cypher-query-language`
- `joaompinto.vscode-graphviz`
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "wildpeaks-theme",
"displayName": "Wildpeaks Theme",
"version": "2.1.0",
"description": "Dark theme that mutes punctuation to improve readability",
"version": "2.2.0",
"description": "Dark theme that reduces visual clutter",
"author": "Cecile Muller",
"publisher": "wildpeaks",
"license": "MIT",
Expand Down
Binary file modified screenshots/EditorConfig.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/GraphViz.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/YML.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 29 additions & 2 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,16 @@ const dark: VSCodeTheme = {
"source.cypher keyword",
"support.function.relationship-pattern.cypher",
"support.function.relationship-pattern-start.cypher",
"support.function.relationship-pattern-end.cypher"
"support.function.relationship-pattern-end.cypher",

// Editorconfig patterns
"meta.section.header.editorconfig",

// YML: -
"punctuation.definition.block.sequence.item.yaml",

// Graphviz: ->
"source.dot keyword.operator.dot"
],
settings: {
foreground: Colors.CRIMSON
Expand Down Expand Up @@ -460,7 +469,13 @@ const dark: VSCodeTheme = {
"support.constant.handlebars",

// Cypher: variable name
"variable.other.identifier.cypher"
"variable.other.identifier.cypher",

// Graphviz: property name
"source.dot support.constant.attribute.node.dot",

// EditorConfig: property name
"source.editorconfig keyword.other.definition"
],
settings: {
foreground: Colors.GREEN
Expand Down Expand Up @@ -533,6 +548,18 @@ const dark: VSCodeTheme = {
foreground: Colors.BLUE
}
},
{
name: "White",
scope: [
// JS, TS, TSX: string templates
"meta.template.expression.js",
"meta.template.expression.ts",
"meta.template.expression.tsx"
],
settings: {
foreground: Colors.WHITE
}
},

{
name: "Markdown: Default Text",
Expand Down
2 changes: 1 addition & 1 deletion themes/dark.json

Large diffs are not rendered by default.

0 comments on commit 30b8095

Please sign in to comment.