Skip to content

Commit 20ee093

Browse files
committed
Initial commit
1 parent 9165529 commit 20ee093

File tree

8 files changed

+1113
-739
lines changed

8 files changed

+1113
-739
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

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

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

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) 2024 Moonbloom Theme
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: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,34 @@
1-
# moonbloom-x README
1+
<div align="center">
2+
<h1>Moonbloom for <a href="http://code.visualstudio.com">Visual Studio Code</a></h1>
3+
<p>Gentle on the eyes, evoking the cozy tranquility of a serene night.</p>
4+
<span><a href="https://github.com/moonbloom-theme/moonbloom">Homepage</a> • <a href="https://moonbloom.teplostanski.dev">Website</a> • <a href="https://github.com/orgs/moonbloom-theme/discussions">Discussions</a> • <a href="https://donate.teplostanski.dev">Support Us</a></span>
5+
</div>
26

3-
## Working with Markdown
7+
<br/>
48

5-
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
9+
> [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.
610
7-
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
8-
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
9-
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
11+
<!--<img width="720px" src="./screen.png">-->
1012

11-
## For more information
13+
## Install
14+
See [INSTALL.md](./INSTALL.md)
1215

13-
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
14-
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
16+
## Team
1517

16-
**Enjoy!**
18+
This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/moonbloom-theme/visual-studio-code/graphs/contributors).
19+
20+
<!--CONTRIBUTORS_TABLE--><table><tr>
21+
<td align="center">
22+
<a href="https://github.com/teplostanski" title="Игорь Теплостанский">
23+
<img src="https://avatars.githubusercontent.com/u/56846024?v=4" width="42;" alt="Игорь Теплостанский"/>
24+
<br /><sub><b>Игорь Теплостанский</b></sub>
25+
</a>
26+
</td>
27+
</tr></table><!--CONTRIBUTORS_TABLE-END-->
28+
29+
</br>
30+
31+
<p align="center">
32+
<img alt="GitHub License" src="https://img.shields.io/github/license/moonbloom-theme/visual-studio-code?style=flat-square&labelColor=%231e1f27&color=%23E8C87E">
33+
<img alt="GitHub Release" src="https://img.shields.io/github/v/release/moonbloom-theme/visual-studio-code?include_prereleases&display_name=release&style=flat-square&labelColor=%231e1f27&color=%23E8C87E">
34+
</p>

color-schema.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
const colorSchema = {
2+
background: {
3+
xs: '#3D3D50',
4+
s: '#323242',
5+
m: '#292936',
6+
l: '#1D1E27',
7+
xl: '#191A21',
8+
},
9+
foreground: '#D1D2E8',
10+
border: '#3F3F52',
11+
comment: '#8282A9',
12+
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'],
22+
};

icon.png

132 KB
Loading

package.json

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"name": "moonbloom-x",
3-
"displayName": "moonbloom-x",
2+
"name": "moonbloom-theme",
3+
"displayName": "Moonbloom Official Theme",
44
"description": "",
5-
"version": "0.0.1",
5+
"publisher": "Moonbloom",
6+
"version": "1.0.1",
67
"engines": {
78
"vscode": "^1.95.0"
89
},
@@ -12,10 +13,35 @@
1213
"contributes": {
1314
"themes": [
1415
{
15-
"label": "Moonbloom Dark Theme",
16+
"label": "Moonbloom Official Theme",
1617
"uiTheme": "vs-dark",
17-
"path": "./themes/Moonbloom Dark Theme-color-theme.json"
18+
"path": "./themes/moonbloom.json"
1819
}
1920
]
21+
},
22+
"license": "MIT",
23+
"maintainers": [
24+
"Igor Teplostanski"
25+
],
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/moonbloom-theme/visual-studio-code.git"
29+
},
30+
"bugs": {
31+
"url": "https://github.com/moonbloom-theme/visual-studio-code/issues"
32+
},
33+
"keywords": [
34+
"moonbloom",
35+
"dark",
36+
"theme",
37+
"color-theme"
38+
],
39+
"icon": "icon.png",
40+
"galleryBanner": {
41+
"color": "#1D1E27",
42+
"theme": "dark"
43+
},
44+
"__metadata": {
45+
"size": 92613
2046
}
2147
}

0 commit comments

Comments
 (0)