Skip to content

Commit

Permalink
Themed brace matching (#146)
Browse files Browse the repository at this point in the history
* Themed Brace Matching

* Updated changelog & bump version

* Added image
  • Loading branch information
Unthrottled committed May 11, 2022
1 parent 8979c75 commit eb15642
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

# 78.2-1.1.0 [Themed Bracket Pair Colorization]

- Since VS Code 1.67, [bracket pair colorization](https://code.visualstudio.com/updates/v1_67#_bracket-pair-colorization-enabled-by-default) is on by default. Well the default colors where cramping my style, so I fixed that. If you don't what I did, you can customize it yourself [search for "editorBracketHighlight.foreground" on this page](https://code.visualstudio.com/api/references/theme-color#editor-colors) and also see [customizing a color theme](https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme).

![Themed Brace Matching](https://user-images.githubusercontent.com/15972415/167956580-ba51862a-8d31-4d1a-9cbe-fb3676f33152.png)

# 78.2-1.0.2 [Major Theme Syntax Coloring Updates]

- **Major Updates** to syntax highlighting colors to these themes:
Expand Down
9 changes: 8 additions & 1 deletion buildSrc/assets/templates/base.laf.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,13 @@
"charts.yellow": "&terminal.ansiYellow&",
"charts.orange": "&editorAccentColor&",
"charts.green": "&terminal.ansiGreen&",
"charts.purple": "&keyColor&"
"charts.purple": "&keyColor&",
"editorBracketHighlight.foreground1": "&foregroundColorEditor&",
"editorBracketHighlight.foreground2": "&keyColor&",
"editorBracketHighlight.foreground3": "&classNameColor&",
"editorBracketHighlight.foreground4": "&editorAccentColor&",
"editorBracketHighlight.foreground5": "&keyColor&",
"editorBracketHighlight.foreground6": "&constantColor&",
"editorBracketHighlight.unexpectedBracket.foreground": "&errorColor&"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "The Doki Theme",
"description": "Cute anime character themes!",
"publisher": "unthrottled",
"version": "78.1.3",
"version": "78.1.4",
"license": "MIT",
"icon": "Doki-Theme.png",
"galleryBanner": {
Expand Down
2 changes: 1 addition & 1 deletion src/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { VSCodeGlobals } from "./VSCodeGlobals";
import { attemptToGreetUser } from "./WelcomeService";

const SAVED_VERSION = "doki.theme.version";
const DOKI_THEME_VERSION = "v78.2-1.0.2";
const DOKI_THEME_VERSION = "v78.2-1.1.0";

export function attemptToNotifyUpdates(context: vscode.ExtensionContext) {
const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);
Expand Down

0 comments on commit eb15642

Please sign in to comment.