Skip to content

Commit d40d4d5

Browse files
committed
initial theme upload
1 parent 1b08e15 commit d40d4d5

File tree

5 files changed

+1048
-1
lines changed

5 files changed

+1048
-1
lines changed

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
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": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
11+
}
12+
]
13+
}

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
11
# Angular-io-Code-VSCode
2-
Repository to store VSCode Color Theme package
2+
3+
Repository to store VSCode Color Theme package
4+
5+
# Install
6+
7+
```ext install angular-io-code```
8+
9+
# Screenshot
10+
11+
![Screenshot](https://raw.githubusercontent.com/Angular-io-Code/Angular-io-Code/master/theme.png)
12+
13+
# Purpose
14+
15+
The purpose of the organization Angular-io-Code is to provide color theme 100% alike to the one used in and from Angular.io for all major cross platform text editors.
16+
17+
# Credits
18+
19+
The original theme is the one stored in this repository.
20+
21+
It was made with (http://tmtheme-editor.herokuapp.com) and we appreciate the project TmTheme-Editor.
22+
23+
For more info visit (https://github.com/aziz/tmTheme-Editor).
24+
25+
RealGithub theme was not build from scratch instead we used Inspiredgithub theme (http://tmtheme-editor.herokuapp.com/#!/editor/theme/Inspiredgithub) from (http://tmtheme-editor.herokuapp.com) as a starting point, but we made some tiny changes so the resulting theme looks exaclty like the one used in and from github.
26+
27+
We want to thank to (https://github.com/aziz/tmTheme-Editor), the creator of (http://tmtheme-editor.herokuapp.com/#!/editor/theme/Inspiredgithub) and (https://github.com) beacuse they are the reason for creation of RealGithub theme.
28+
29+
# Mismatch
30+
31+
If you find any mismatch from theme used by Angular.io plase make a new Issue or new Pull Request to the original Angular-io-Code theme repository (https://github.com/Angular-io-Code/Angular-io-Code) not to this one.
32+
33+
# Enjoy the coding experience!
34+
35+
# We hope we bring you the same coding experience as browsing at (https://angular.io)!
36+
37+
# We <3 Angular!
38+

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "angular-io-code",
3+
"displayName": "Angular-io-Code",
4+
"description": "Angular.io inspired Color Theme.",
5+
"version": "0.0.1",
6+
"publisher": "NoHomey",
7+
"engines": {
8+
"vscode": "^1.0.0"
9+
},
10+
"categories": [
11+
"Themes"
12+
],
13+
"contributes": {
14+
"themes": [
15+
{
16+
"label": "Angular-io-Code",
17+
"uiTheme": "vs",
18+
"path": "./themes/Angular-io-Code.tmTheme"
19+
}
20+
]
21+
}
22+
}

0 commit comments

Comments
 (0)