Skip to content

Commit c13b57c

Browse files
Update VS-DarkCode and remove old theme files.
1 parent ddf7752 commit c13b57c

6 files changed

Lines changed: 89 additions & 32 deletions

File tree

README.md

Lines changed: 84 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
21
<div align="center">
32

4-
# Super Dark Theme
5-
3+
# VS DarkCode
64

75
A minimal and high-contrast dark theme for Visual Studio Code, focused on clarity, consistency, and a distraction-free coding experience.
6+
87
</div>
98

109
---
1110

1211
## Overview
1312

14-
Super Dark Theme is designed with a strict dark palette and carefully balanced contrast. It provides a clean interface across all major areas of the editor, including the sidebar, terminal, and settings UI.
13+
VS DarkCode is designed with a strict dark palette and carefully balanced contrast. It provides a clean interface across all major areas of the editor, including the sidebar, terminal, and settings UI.
1514

1615
---
1716

@@ -23,36 +22,89 @@ Super Dark Theme is designed with a strict dark palette and carefully balanced c
2322

2423
## Features
2524

26-
- Deep dark interface with minimal visual noise
27-
- High contrast for improved readability
28-
- Consistent styling across UI components
29-
- Clean terminal and panel integration
30-
- Subtle focus and selection states
31-
- Balanced use of accent colors
25+
* Deep dark interface with minimal visual noise
26+
* High contrast for improved readability
27+
* Consistent styling across UI components
28+
* Clean terminal and panel integration
29+
* Subtle focus and selection states
30+
* Balanced use of accent colors
31+
32+
---
33+
34+
## Download
35+
36+
<div align="center">
37+
38+
<a href="#">
39+
<img src="https://img.shields.io/badge/Download%20Theme-000000?style=for-the-badge&logo=visualstudiocode&logoColor=white" />
40+
</a>
41+
42+
</div>
43+
44+
---
45+
46+
## Trust & Safety
47+
48+
You can safely use this `.vsix` file — it only contains theme configuration for Visual Studio Code and does not include any harmful scripts or code.
49+
50+
However, if you still prefer not to trust a prebuilt file, you can easily generate your own VSIX package by following the steps below.
51+
52+
---
53+
54+
## Build Your Own VSIX (Optional)
55+
56+
If you don’t trust downloading the VSIX file, you can create it yourself:
57+
58+
### Requirements
59+
60+
* Install **Node.js**
61+
* Install VS Code Extension tool:
62+
63+
```
64+
npm install -g vsce
65+
```
66+
67+
### Steps
68+
69+
1. Open the project folder in terminal
70+
2. Run:
71+
72+
```
73+
vsce package
74+
```
75+
76+
3. A `.vsix` file will be generated in your project folder
77+
78+
### Notes
79+
80+
* You can delete old `.vsix` files anytime
81+
* If you want a custom file name, edit the `"name"` field in `package.json` before packaging
82+
* The generated VSIX file name will follow your package name and version
3283

3384
---
3485

3586
## Installation
3687

3788
### From VSIX
3889

39-
1. Open Extensions in Visual Studio Code
40-
2. Open the menu (top right)
41-
3. Select **Install from VSIX**
42-
4. Choose the `.vsix` file
90+
1. Open **Visual Studio Code**
91+
2. Go to **Extensions** (Ctrl + Shift + X)
92+
3. Click the **three dots (⋯)** in the top-right corner
93+
4. Select **Install from VSIX...**
94+
5. Choose your `.vsix` file
4395

4496
---
4597

4698
## Usage
4799

48-
Open the Command Palette:
49-
Ctrl + Shift + P
100+
1. Open Command Palette:
101+
**Ctrl + Shift + P**
50102

51-
Then select:
52-
Preferences: Color Theme
103+
2. Search and select:
104+
**Preferences: Color Theme**
53105

54-
Choose:
55-
Super Dark Theme
106+
3. Choose:
107+
**VS DarkCode**
56108

57109
---
58110

@@ -66,9 +118,9 @@ This theme is designed to be easily adjustable. You can override colors in your
66118

67119
This project follows semantic versioning:
68120

69-
- Patch releases for small fixes
70-
- Minor releases for improvements
71-
- Major releases for significant design changes
121+
* Patch releases for small fixes
122+
* Minor releases for improvements
123+
* Major releases for significant design changes
72124

73125
---
74126

@@ -82,8 +134,13 @@ This project is licensed under the MIT License. See the LICENSE file for details
82134

83135
<div align="center">
84136

85-
**Kirito**
86-
Creator of **Super Dark Theme**, a high-contrast, minimal VS Code theme designed to improve focus, readability, and productivity for developers.
87-
[![GitHub](https://img.shields.io/badge/GitHub-000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/kirito666coder)
137+
<a href="https://github.com/kirito666coder">
138+
<img src="https://img.shields.io/badge/kirito-000000?style=for-the-badge&logo=visualstudiocode&logoColor=white" />
139+
</a>
88140

89-
</div>
141+
142+
Creator of **VS DarkCode**, a high-contrast, minimal VS Code theme designed to improve focus, readability, and productivity for developers.
143+
144+
[![GitHub](https://img.shields.io/badge/GitHub-000?style=for-the-badge\&logo=github\&logoColor=white)](https://github.com/kirito666coder)
145+
146+
</div>

images/editor.png

31 KB
Loading

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "super-dark-theme",
3-
"displayName": "super-dark-theme",
2+
"name": "VS-DarkCode",
3+
"displayName": "VS-DarkCode",
44
"description": "dark-theme",
55
"version": "0.0.2",
66
"publisher": "Kirito666coder",
@@ -15,13 +15,13 @@
1515
{
1616
"label": "Super Dark Theme",
1717
"uiTheme": "vs-dark",
18-
"path": "./themes/Super Dark Theme-color-theme.json"
18+
"path": "./themes/VS-DarkCode.json"
1919
}
2020
]
2121
},
2222
"icon": "images/Dark-VS-Code.png",
2323
"repository": {
2424
"type": "git",
25-
"url": "https://github.com/kirito666coder/super-dark-theme"
25+
"url": "https://github.com/kirito666coder/VS-DarkCode"
2626
}
2727
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"statusBar.border": "#b6b6b6",
101101
"statusBar.debuggingBackground": "#0078d4",
102102
"statusBar.debuggingForeground": "#ffffff",
103-
"statusBar.focusBorder": "#0078d4",
103+
"statusBar.focusBorder": "#ffffff",
104104
"statusBar.foreground": "#cccccc",
105105
"statusBar.noFolderBackground": "#1f1f1f",
106106
"statusBarItem.focusBorder": "#0078d4",

0 commit comments

Comments
 (0)