Skip to content

Commit 6f4e2a9

Browse files
authored
Merge pull request #2 from moonbloom-theme/develop
Develop
2 parents 20ee093 + 07bd055 commit 6f4e2a9

File tree

11 files changed

+2964
-122
lines changed

11 files changed

+2964
-122
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Change Log
22

3-
All notable changes to the "moonbloom-theme" extension will be documented in this file.
3+
## [1.1.0]
44

5-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5+
### Minor
6+
- Added new color settings and modified existing ones for better readability
7+
- Added the installation instructions to the `INSTALL.md` file
68

7-
## [Unreleased]
9+
## [1.0.2]
810

9-
- Initial release
11+
### Patch
12+
- Added scripts to `package.json`

INSTALL.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
### [Visual Studio Code](https://code.visualstudio.com/)
2+
3+
#### Install using Quick Open
4+
5+
1. Press `Ctrl+P` or `Go -> Go to File...`
6+
2. Past `ext install Moonbloom.moonbloom-theme`
7+
3. Press `Enter` if necessary. Enjoy!
8+
9+
#### Install using Marketplaces
10+
11+
1. Download the extension from [marketplace.visualstudio.com](https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme) or [open-vsx.org](https://open-vsx.org/extension/Moonbloom/moonbloom-theme).
12+
2. Click on the `Extensions` icon in the sidebar or use the keyboard shortcut `Ctrl+Shift+X`.
13+
3. Click on the three dots `...` in the top right corner of the Extensions panel.
14+
4. Select the `Install from VSIX...` option.
15+
5. In the dialog window, locate and select the file with the `.vsix` extension.
16+
17+
#### Install using Git
18+
19+
- For `VSCode`, clone the repository into the `~/.vscode` directory.
20+
21+
```sh
22+
git clone https://github.com/moonbloom-theme/visual-studio-code.git ~/.vscode/extensions/moonbloom-theme
23+
```
24+
25+
- For OSS alternatives, such as `Vscodium`, `Code`, etc., clone into the `~/.vscode-oss` directory.
26+
27+
```sh
28+
git clone https://github.com/moonbloom-theme/visual-studio-code.git ~/.vscode-oss/extensions/moonbloom-theme
29+
```
30+
31+
- For `Windsurf`, clone into the `~/.windsurf` directory.
32+
33+
```sh
34+
git clone https://github.com/moonbloom-theme/visual-studio-code.git ~/.windsurf/extensions/moonbloom-theme
35+
```
36+
37+
#### Activating theme
38+
39+
Run Visual Studio Code. The Moonbloom Theme will be available from `File -> Preferences -> Color Theme` dropdown menu.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> [Visual Studio Code](http://code.visualstudio.com) commonly referred to as VS Code, is an integrated development environment developed by Microsoft for Windows, Linux, macOS and web browsers.
1010
11-
<!--<img width="720px" src="./screen.png">-->
11+
<img width="720px" src="./screen.png">
1212

1313
## Install
1414
See [INSTALL.md](./INSTALL.md)

color-schema.js

Lines changed: 43 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,50 @@
11
const colorSchema = {
22
background: {
3-
xs: '#3D3D50',
4-
s: '#323242',
5-
m: '#292936',
6-
l: '#1D1E27',
7-
xl: '#191A21',
3+
100: '#3D3D50',
4+
200: '#323242',
5+
300: '#292936',
6+
400: '#1D1E27',
7+
500: '#191A21',
8+
default: '#1D1E27',
89
},
910
foreground: '#D1D2E8',
10-
border: '#3F3F52',
11+
border: ['#3F3F52', '#6464a0'],
1112
comment: '#8282A9',
1213
disabled: '#7B7B9F',
13-
dark: ['#1A1B21', '#8282A9'],
14-
red: ['#E66D75', '#F17C88'],
15-
green: ['#93C591', '#A1D79F'],
16-
yellow: ['#D9B469', '#E8C87E'],
17-
blue: ['#5A9BCF', '#6EB4E0'],
18-
purple: ['#BB83D8', '#C993E9'],
19-
cyan: ['#4FA8B8', '#68C7D6'],
20-
gray: ['#9B9BBA', '#E1E2ED'],
21-
violet: ['#8483D8', '#9291DC'],
14+
dark: {
15+
default: '#1A1B21',
16+
bright: '#8282A9',
17+
},
18+
red: {
19+
default: '#E66D75',
20+
bright: '#F17C88',
21+
},
22+
green: {
23+
default: '#93C591',
24+
bright: '#A1D79F',
25+
},
26+
yellow: {
27+
default: '#D9B469',
28+
bright: '#E8C87E',
29+
},
30+
blue: {
31+
default: '#5A9BCF',
32+
bright: '#6EB4E0',
33+
},
34+
magenta: {
35+
default: '#BB83D8',
36+
bright: '#C993E9',
37+
},
38+
purple: {
39+
default: '#8483D8',
40+
bright: '#9291DC',
41+
},
42+
cyan: {
43+
default: '#4FA8B8',
44+
bright: '#68C7D6',
45+
},
46+
gray: {
47+
default: '#9B9BBA',
48+
bright: '#E1E2ED',
49+
},
2250
};

0 commit comments

Comments
 (0)