Skip to content

Commit 3a55fcf

Browse files
authored
Version 5.0.0
1 parent 8e0102a commit 3a55fcf

File tree

3 files changed

+56
-8
lines changed

3 files changed

+56
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [5.0.0] - 2023-08-30
4+
5+
Added:
6+
7+
New Dark Themes (3 themes):
8+
9+
- MagicUser Paladin
10+
- MagicUser Power
11+
- MagicUser Talisman
12+
13+
New Light Themes (2 themes):
14+
15+
- MagicUser Paladin Light
16+
- MagicUser Specialist
17+
18+
Improvements:
19+
- MagicUser Wand series - new badges color (4 dark themes).
20+
321
## [4.0.0] - 2023-08-17
422

523
Improvements:

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22

33
![MagicUser themes](https://raw.githubusercontent.com/drbap/magicuser-themes-for-vscode/main/images/magicuser_themes_for_vscode.png)
44

5-
**MagicUser** is a collection of **28 themes** for Visual Studio Code aiming to create a pleasant environment for your coding activities with greater concentration and consistent syntax highlighting.
5+
**MagicUser** is a collection of **33 themes** for Visual Studio Code aiming to create a pleasant environment for your coding activities with greater concentration and consistent syntax highlighting.
66

7-
- It contains **18 dark themes** and **10 light themes** for day/night use.
7+
- It contains **21 dark themes** and **12 light themes** for day/night use.
88

99
- **Semantic highlighting** (light and dark modes).
1010

1111

1212
## **Themes included**
1313

14-
### **Dark Themes** (18 Themes)
14+
### **Dark Themes** (21 Themes)
1515

1616
- MagicUser
17+
- MagicUser Paladin
18+
- MagicUser Power
1719
- MagicUser Night
1820
- MagicUser Night Neblina
1921
- MagicUser Path
@@ -24,6 +26,7 @@
2426
- MagicUser Staff
2527
- MagicUser Teal
2628
- MagicUser Teal Night
29+
- MagicUser Talisman
2730

2831
**MagicUser Veteran Themes**
2932

@@ -38,7 +41,7 @@
3841
- MagicUser Wand Orange
3942
- MagicUser Wand Purple
4043

41-
### **Light Themes** (10 Themes)
44+
### **Light Themes** (12 Themes)
4245

4346
- MagicUser Light
4447
- MagicUser Light Blue
@@ -49,6 +52,8 @@
4952
- MagicUser Neblina
5053
- MagicUser Sea
5154
- MagicUser Sun
55+
- MagicUser Specialist
56+
- MagicUser Paladin Light
5257
- MagicUser Wand Light
5358

5459
I hope you find one or more themes that help bring new ideas, motivation and inspiration to your daily work/study.

package.json

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "magicuser-color-themes",
33
"displayName": "MagicUser",
4-
"description": "Contains 28 themes for your VS Code editor. Semantic highlighting (light/dark themes).",
5-
"version": "4.0.0",
4+
"description": "MagicUser themes. Contains 33 themes for your VS Code editor. Semantic highlighting (light/dark themes).",
5+
"version": "5.0.0",
66
"publisher": "BernardoPires",
77
"engines": {
88
"vscode": "^1.50.0"
@@ -17,13 +17,13 @@
1717
],
1818
"keywords": [
1919
"MagicUser",
20+
"MagicUser Paladin",
2021
"Light theme",
2122
"Dark theme",
2223
"Night theme",
2324
"Light blue theme",
2425
"Light gray theme",
25-
"Professional theme",
26-
"Professional light theme"
26+
"Professional theme"
2727
],
2828
"contributes": {
2929
"themes": [
@@ -32,6 +32,16 @@
3232
"uiTheme": "vs-dark",
3333
"path": "./themes/MagicUser-color-theme.json"
3434
},
35+
{
36+
"label": "MagicUser Paladin",
37+
"uiTheme": "vs-dark",
38+
"path": "./themes/MagicUser-Paladin-color-theme.json"
39+
},
40+
{
41+
"label": "MagicUser Power",
42+
"uiTheme": "vs-dark",
43+
"path": "./themes/MagicUser-Power-color-theme.json"
44+
},
3545
{
3646
"label": "MagicUser Night",
3747
"uiTheme": "vs-dark",
@@ -72,6 +82,11 @@
7282
"uiTheme": "vs-dark",
7383
"path": "./themes/MagicUser-Staff-color-theme.json"
7484
},
85+
{
86+
"label": "MagicUser Talisman",
87+
"uiTheme": "vs-dark",
88+
"path": "./themes/MagicUser-Talisman-color-theme.json"
89+
},
7590
{
7691
"label": "MagicUser Teal",
7792
"uiTheme": "vs-dark",
@@ -152,6 +167,16 @@
152167
"uiTheme": "vs",
153168
"path": "./themes/MagicUser-Wand-Light-color-theme.json"
154169
},
170+
{
171+
"label": "MagicUser Specialist",
172+
"uiTheme": "vs",
173+
"path": "./themes/MagicUser-Specialist-color-theme.json"
174+
},
175+
{
176+
"label": "MagicUser Paladin Light",
177+
"uiTheme": "vs",
178+
"path": "./themes/MagicUser-Paladin-Light-color-theme.json"
179+
},
155180
{
156181
"label": "MagicUser Neblina",
157182
"uiTheme": "vs",

0 commit comments

Comments
 (0)