Skip to content

Commit 0029da1

Browse files
committed
Expand UI coverage and project hygiene
1 parent a4891d7 commit 0029da1

11 files changed

Lines changed: 5166 additions & 622 deletions

.github/workflows/publish.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
package:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
- run: npm ci
17+
- name: Package extension
18+
run: npm run package
19+
- uses: actions/upload-artifact@v4
20+
with:
21+
name: vsix
22+
path: "*.vsix"
23+
24+
publish:
25+
needs: package
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-node@v4
30+
with:
31+
node-version: 20
32+
- run: npm ci
33+
- name: Publish to Visual Studio Marketplace
34+
run: npm run publish
35+
env:
36+
VSCE_PAT: ${{ secrets.VSCE_PAT }}

.vscodeignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1+
.git/
2+
.github/
3+
.vscode/
14
node_modules/
5+
package-lock.json
6+
vsc-extension-quickstart.md
7+
.gitignore
8+
.vscodeignore
9+
*.vsix
10+
icon.svg
11+
screenshot.svg

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.4.0
2+
3+
- Expand workbench UI coverage (title bar, tabs, lists, inputs, widgets, scrollbars, editor diagnostics, Git decorations, 16 ANSI terminal colors)
4+
- Manifest hygiene: migrate to `@vscode/vsce` dev dependency, drop committed `__metadata`, bump `engines.vscode`, add `keywords`, `license`, `homepage`, `bugs` and package scripts
5+
- Add MIT `LICENSE`, expand README, add CI publish workflow
6+
17
## v1.3.3
28

39
- More bold restoration for #CC7832 tokens

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Niccolò Mineo
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Default Dark+ IntelliJ Theme (Visual Studio Code)
22

3-
A theme extension coupling the IntelliJ syntax color scheme with improved VSCode's Default Dark+ UI colors.
3+
[![Version](https://img.shields.io/visual-studio-marketplace/v/niccolomineo.default-dark-plus-intellij)](https://marketplace.visualstudio.com/items?itemName=niccolomineo.default-dark-plus-intellij)
4+
[![Installs](https://img.shields.io/visual-studio-marketplace/i/niccolomineo.default-dark-plus-intellij)](https://marketplace.visualstudio.com/items?itemName=niccolomineo.default-dark-plus-intellij)
5+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6+
7+
A theme extension coupling the **Darcula** syntax color scheme (JetBrains' classic dark scheme, as shipped in IntelliJ IDEA) with an improved take on VSCode's Default Dark+ UI colors.
48

59
![](screenshot.png)
10+
11+
## Features
12+
13+
- **Darcula syntax colors** — the recognizable palette: orange bold keywords (`#CC7832`), teal types (`#4EC9B0`), amber functions (`#FFC66D`), purple variables (`#9476a5`), green strings and blue numbers.
14+
- **Expanded workbench UI** — full coverage of title bar, tabs, lists, inputs, widgets, scrollbars, editor diagnostics, Git decorations and the 16 integrated-terminal ANSI colors, all harmonized with the Darcula palette rather than inheriting bare Dark+.
15+
16+
## Install
17+
18+
**From the Marketplace**
19+
20+
1. Open the Extensions view (`Ctrl+Shift+X` / `Cmd+Shift+X`).
21+
2. Search for *Default Dark+ IntelliJ Theme* and click **Install**.
22+
3. Run **Preferences: Color Theme** (`Ctrl+K Ctrl+T`) and pick *Default Dark+ IntelliJ Theme*.
23+
24+
**From a `.vsix`**
25+
26+
```sh
27+
npm install
28+
npm run package # produces default-dark-plus-intellij-<version>.vsix
29+
code --install-extension default-dark-plus-intellij-<version>.vsix
30+
```
31+
32+
## Credits
33+
34+
The syntax colors are based on the **Darcula** color scheme by JetBrains. This extension is an independent project and is not affiliated with or endorsed by JetBrains.
35+
36+
## License
37+
38+
Released under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)