Skip to content

Commit 4f8641f

Browse files
committed
Release v0.1.2 - Critical theme visibility fixes
- Fix markdown highlighting visibility issue - Fix warning icon color for better visibility - Fix scrollbar shadow for dark theme consistency - Enhance find/match highlighting with better contrast - Add comprehensive markdown syntax highlighting
1 parent 8e86785 commit 4f8641f

File tree

3 files changed

+47
-8
lines changed

3 files changed

+47
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.1.2] - 2025-09-27
8+
### Fixed
9+
- **Critical**: Fixed markdown highlighting visibility - selection highlights are now clearly visible
10+
- **Critical**: Fixed warning icon color from dark purple to bright yellow for better visibility
11+
- Fixed scrollbar shadow from white to black for dark theme consistency
12+
- Enhanced find/match highlighting with better opacity and contrast
13+
- Added comprehensive markdown syntax highlighting (bold, italic, code, quotes)
14+
715
## [0.1.1] - 2025-02-12
816
### Changes
917
- StatusBar Icon background fix

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"color": "#1b1734",
2929
"theme": "dark"
3030
},
31-
"version": "0.1.1",
31+
"version": "0.1.2",
3232
"engines": {
3333
"vscode": "^1.61.0"
3434
},
@@ -47,7 +47,7 @@
4747
"scripts": {
4848
"package": "vsce package --no-yarn",
4949
"publish": "vsce publish --no-yarn",
50-
"install-local": "code --install-extension graphlinq-vscode-theme-0.1.1.vsix",
50+
"install-local": "code --install-extension graphlinq-vscode-theme-0.1.2.vsix",
5151
"version:patch": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 patch",
5252
"version:minor": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 minor",
5353
"version:major": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 major",

themes/dark.json

Lines changed: 37 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"inputValidation.warningBackground": "#1c1836",
4747
"inputValidation.warningForeground": "#2f2955",
4848
"inputValidation.warningBorder": "#2f2955",
49-
"scrollbar.shadow": "#ffffff",
49+
"scrollbar.shadow": "#000000",
5050
"scrollbarSlider.activeBackground": "#ff007a",
5151
"scrollbarSlider.background": "#2f2955",
5252
"scrollbarSlider.hoverBackground": "#685b93",
@@ -139,17 +139,17 @@
139139
"editor.selectionBackground": "#5029e533",
140140
"editor.selectionForeground": "#ece7fd",
141141
"editor.inactiveSelectionBackground": "#5029e533",
142-
"editor.selectionHighlightBackground": "#1c1836",
142+
"editor.selectionHighlightBackground": "#685b9366",
143143
"editor.wordHighlightBackground": "#685b9333",
144144
"editor.wordHighlightStrongBackground": "#ff007a33",
145-
"editor.findMatchBackground": "#fdfe543f",
146-
"editor.findMatchHighlightBackground": "#fdfe5433",
145+
"editor.findMatchBackground": "#fdfe5480",
146+
"editor.findMatchHighlightBackground": "#fdfe5466",
147147
"editor.findRangeHighlightBackground": "#1c1836",
148148
"editor.hoverHighlightBackground": "#2f29557f",
149149
"editor.lineHighlightBackground": "#131026",
150150
"editor.lineHighlightBorder": "#131026",
151151
"editorLink.activeForeground": "#ece7fd",
152-
"editor.rangeHighlightBackground": "#fdfe5433",
152+
"editor.rangeHighlightBackground": "#685b9366",
153153
"editor.symbolHighlightBackground": "#685b9333",
154154
"editorWhitespace.foreground": "#1c1836",
155155
"editorIndentGuide.background": "#1c1836",
@@ -183,7 +183,7 @@
183183
"editorHint.foreground": "#ff007a",
184184
"editorHint.border": "#b4a5e7",
185185
"problemsErrorIcon.foreground": "#ff286f",
186-
"problemsWarningIcon.foreground": "#2f2955",
186+
"problemsWarningIcon.foreground": "#fdfe54",
187187
"problemsInfoIcon.foreground": "#5029e5",
188188
"editorUnnecessaryCode.opacity": "#0000007f",
189189
"editorGutter.background": "#131026",
@@ -579,6 +579,37 @@
579579
"settings": {
580580
"foreground": "#ff007a"
581581
}
582+
},
583+
{
584+
"name": "Markup Bold",
585+
"scope": "markup.bold",
586+
"settings": {
587+
"foreground": "#ece7fd",
588+
"fontStyle": "bold"
589+
}
590+
},
591+
{
592+
"name": "Markup Italic",
593+
"scope": "markup.italic",
594+
"settings": {
595+
"foreground": "#b4a5e7",
596+
"fontStyle": "italic"
597+
}
598+
},
599+
{
600+
"name": "Markup Code",
601+
"scope": "markup.inline.raw",
602+
"settings": {
603+
"foreground": "#05f24f"
604+
}
605+
},
606+
{
607+
"name": "Markdown Quote",
608+
"scope": "markup.quote",
609+
"settings": {
610+
"foreground": "#685b93",
611+
"fontStyle": "italic"
612+
}
582613
}
583614
]
584615
}

0 commit comments

Comments
 (0)