Skip to content
This repository was archived by the owner on Aug 26, 2023. It is now read-only.

Commit 9f366be

Browse files
committed
first
0 parents  commit 9f366be

File tree

7 files changed

+2143
-0
lines changed

7 files changed

+2143
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
All notable changes to the "dahong" 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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# README
2+
## This is the README for your extension "dahong"
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!**

index.js

Lines changed: 842 additions & 0 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "dahong",
3+
"displayName": "dahong",
4+
"description": "A simple theme",
5+
"version": "0.0.1",
6+
"publisher": "shaodahong",
7+
"engines": {
8+
"vscode": "^1.13.0"
9+
},
10+
"categories": [
11+
"Themes"
12+
],
13+
"contributes": {
14+
"themes": [
15+
{
16+
"label": "dahong",
17+
"uiTheme": "vs-dark",
18+
"path": "./themes/dahong-color-theme.json"
19+
}
20+
]
21+
}
22+
}

themes/dahong-color-theme.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"tokenColors": "./dahong.tmTheme",
3+
"colors": {
4+
5+
},
6+
"name": "dahong"
7+
}

0 commit comments

Comments
 (0)