Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to the "quartz" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]
## [0.1.0]

- Aligned `editor.background` with the official VS Code Dark 2026 theme (`#121314`)
- Applied translucent "glass" backgrounds to menus, command palette, suggest/hover widgets, notifications, inline chat and command center
- Added `themes/quartz-glass.css` contributing real `backdrop-filter: blur(...)` to popups via the new `css` theme contribution proposed API (VS Code 1.113+ Insiders, or stable launched with `--enable-proposed-api Hugues.quartz`) — mirrors the pattern used by the built-in `theme-2026` extension
- Aligned with the VS Code 2026 theme refresh (layered workbench / tools / actions palette)
- Enabled semantic highlighting with dedicated `semanticTokenColors`
- Added bracket pair colorization (`editorBracketHighlight.foreground1..6`)
- Added terminal ANSI palette, git decorations, diff & merge editor colors
- Added sticky scroll, command center, inlay hints, minimap and scrollbar colors
- Added chat / inline chat colors for Copilot Chat UI
- Added notifications, buttons, badges, inputs, dropdowns and symbol icon colors
- Replaced wildcard `*url*` TextMate scopes with explicit link scopes
- Cleaned up trailing commas in the theme JSON
- Bumped minimum engine to VS Code `^1.113.0` (April 2026)

## [0.0.7]

- Initial release
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,24 @@
"type": "git",
"url": "https://github.com/hugues31/Quartz.git"
},
"version": "0.0.7",
"version": "0.1.0",
"engines": {
"vscode": "^1.51.0"
"vscode": "^1.113.0"
},
"categories": [
"Themes"
],
"enabledApiProposals": [
"css"
],
"contributes": {
"themes": [{
"label": "Quartz",
"uiTheme": "vs-dark",
"path": "./themes/Quartz-color-theme.json"
}],
"css": [{
"path": "./themes/quartz-glass.css"
}]
}
}
}
Loading