Skip to content

Commit c6a0a80

Browse files
initial commit from imported starting theme
0 parents  commit c6a0a80

9 files changed

+637
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.vsix

.vscode/launch.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
11+
}
12+
]
13+
}

.vscodeignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
All notable changes to the "soft-era" extension will be documented in this file.
3+
4+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5+
6+
## [Unreleased]
7+
- Initial release

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# README
2+
## This is the README for your extension "soft-era"
3+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
4+
5+
* Split the editor (`Cmd+\` on OSX or `Ctrl+\` on Windows and Linux)
6+
* Toggle preview (`Shift+CMD+V` on OSX or `Shift+Ctrl+V` on Windows and Linux)
7+
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (OSX) to see a list of Markdown snippets
8+
9+
### For more information
10+
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
11+
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
12+
13+
**Enjoy!**

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "soft-era",
3+
"displayName": "soft era",
4+
"description": "Light pastel syntax theme for soft, warm, cozy, cute coding",
5+
"version": "0.0.1",
6+
"publisher": "audreymoon",
7+
"engines": {
8+
"vscode": "^1.19.0"
9+
},
10+
"categories": [
11+
"Themes"
12+
],
13+
"contributes": {
14+
"themes": [
15+
{
16+
"label": "soft era",
17+
"uiTheme": "vs",
18+
"path": "./themes/soft era-color-theme.json"
19+
}
20+
]
21+
}
22+
}

themes/soft era-color-theme.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"tokenColors": "./soft-era-test-1.tmTheme",
3+
"colors": {
4+
"editor.background": "#F9F5F5",
5+
"editorCursor.foreground": "#EEAABE",
6+
"editor.foreground": "#C8B3B3",
7+
"editorWhitespace.foreground": "#d6d5d4",
8+
"editor.lineHighlightBackground": "#F9F5F5",
9+
"editor.selectionBackground": "#ECEAFA"
10+
},
11+
"name": "soft era"
12+
}

0 commit comments

Comments
 (0)