Skip to content

Commit

Permalink
Uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
ENTPRESTIGIOUS committed Apr 1, 2022
0 parents commit f62133e
Show file tree
Hide file tree
Showing 11 changed files with 1,391 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Set default behavior to automatically normalize line endings.
* text=auto

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "dark-white-theme-v1" extension will be documented in this file.

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

## [Unreleased]

- Initial release
674 changes: 674 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dark White Theme V1
Binary file added dark-white-theme-v1-1.0.0.vsix
Binary file not shown.
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "dark-white-theme-v1",
"displayName": "Dark White Theme V1",
"description": "Dark White Theme V1",
"publisher": "ELITE NOTORIOUS THE PRESTIGIOUS",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/ENTPRESTIGIOUS/dark-white-theme-v1"
},
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Dark White Theme V1",
"uiTheme": "vs-dark",
"path": "./themes/Dark White Theme V1-color-theme.json"
}
]
}
}
Loading

0 comments on commit f62133e

Please sign in to comment.