Skip to content

Commit 7130462

Browse files
committed
Release v0.1.3 - Fix inline code visibility in markdown preview
- Fix textPreformat.foreground from dark purple to bright green - Improve textCodeBlock.background for better contrast - Add comprehensive markdown inline code highlighting - Add fenced code block styling with multiple scope coverage
1 parent 25c66d3 commit 7130462

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.3] - 2025-09-27
8+
### Fixed
9+
- **Critical**: Fixed inline code (backtick) visibility in markdown preview - changed from dark purple to bright green
10+
- Improved code block background contrast for better readability
11+
- Added comprehensive markdown inline code highlighting with multiple scope coverage
12+
- Enhanced fenced code block styling
13+
714
## [0.1.2] - 2025-09-27
815
### Fixed
916
- **Critical**: Fixed markdown highlighting visibility - selection highlights are now clearly visible

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.2",
31+
"version": "0.1.3",
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.2.vsix",
50+
"install-local": "code --install-extension graphlinq-vscode-theme-0.1.3.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: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"sash.hoverBorder": "#5029e5",
1313
"textBlockQuote.background": "#1c1836",
1414
"textBlockQuote.border": "#1c1836",
15-
"textCodeBlock.background": "#131026",
15+
"textCodeBlock.background": "#1c1836",
1616
"textLink.activeForeground": "#ff286f",
1717
"textLink.foreground": "#5029e5",
18-
"textPreformat.foreground": "#2f2955",
18+
"textPreformat.foreground": "#05f24f",
1919
"textSeparator.foreground": "#b4a5e7",
2020
"button.background": "#685b93",
2121
"button.foreground": "#ece7fd",
@@ -610,6 +610,29 @@
610610
"foreground": "#685b93",
611611
"fontStyle": "italic"
612612
}
613+
},
614+
{
615+
"name": "Markdown Inline Code",
616+
"scope": [
617+
"markup.inline.raw.string.markdown",
618+
"markup.inline.raw.markdown",
619+
"markup.raw.inline.markdown"
620+
],
621+
"settings": {
622+
"foreground": "#05f24f",
623+
"background": "#1c183680"
624+
}
625+
},
626+
{
627+
"name": "Markdown Code Block",
628+
"scope": [
629+
"markup.fenced_code.block.markdown",
630+
"markup.raw.block.markdown"
631+
],
632+
"settings": {
633+
"foreground": "#ece7fd",
634+
"background": "#1c1836"
635+
}
613636
}
614637
]
615638
}

0 commit comments

Comments
 (0)