Skip to content

Commit 084ac7f

Browse files
Init commit
0 parents  commit 084ac7f

File tree

10 files changed

+2894
-0
lines changed

10 files changed

+2894
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "tab-s8-ultra-code-theme" extension will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

LICENSE

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

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# tab-s8-ultra-code-theme README
2+
3+
## Working with Markdown
4+
5+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
6+
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.
10+
11+
## For more information
12+
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/)
15+
16+
**Enjoy!**

package.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "tab-s8-ultra-code-theme",
3+
"displayName": "Tab S8 Ultra Code Theme",
4+
"description": "VSCode theme made for Tab S8 Ultra!",
5+
"version": "1.0.0",
6+
"engines": {
7+
"vscode": "^1.85.0"
8+
},
9+
"categories": [
10+
"Themes"
11+
],
12+
"keywords": [
13+
"theme",
14+
"dark",
15+
"light",
16+
"high contrast",
17+
"tab s8 ultra",
18+
"tab s8u",
19+
"tab s8",
20+
"tab s8 ultra code theme",
21+
"tab s8u code theme",
22+
"tab s8 code theme",
23+
"tab s8 ultra theme",
24+
"tab s8u theme",
25+
"tab s8 theme",
26+
"tab s8 ultra code",
27+
"tab s8u code",
28+
"tab s8 code",
29+
"tab s8 ultra",
30+
"tab s8u",
31+
"tab s8"
32+
],
33+
"contributes": {
34+
"themes": [
35+
{
36+
"label": "Tab S8U Code Theme",
37+
"uiTheme": "vs-dark",
38+
"path": "./themes/Tab S8U Code Theme-color-theme.json"
39+
}
40+
]
41+
}
42+
}

0 commit comments

Comments
 (0)