initial
This commit is contained in:
commit
569ffece16
5 changed files with 2431 additions and 0 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Set default behavior to automatically normalize line endings.
|
||||
* text=auto
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
*.vsix
|
4
.vscodeignore
Normal file
4
.vscodeignore
Normal file
|
@ -0,0 +1,4 @@
|
|||
.vscode/**
|
||||
.vscode-test/**
|
||||
.gitignore
|
||||
vsc-extension-quickstart.md
|
25
package.json
Normal file
25
package.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "neonxp-theme",
|
||||
"displayName": "NeonXP Theme",
|
||||
"description": "",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.94.0"
|
||||
},
|
||||
"categories": [
|
||||
"Themes"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.neonxp.ru/neonxp/vscode-theme"
|
||||
},
|
||||
"contributes": {
|
||||
"themes": [
|
||||
{
|
||||
"label": "NeonXP Theme Light",
|
||||
"uiTheme": "vs",
|
||||
"path": "./themes/light.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
2398
themes/light.json
Normal file
2398
themes/light.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue