Skip to content

Commit fe25c4d

Browse files
committed
Initial commit ✨
0 parents  commit fe25c4d

File tree

13 files changed

+1436
-0
lines changed

13 files changed

+1436
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
6+
**Please make sure you're using the latest version of the plugin before submitting an issue**
7+
8+
**Screenshots**
9+
If applicable, add screenshots to help explain your problem, it helps us debug faster.
10+
11+
If you are submitting a bug report in a language not currently in demo folder, a PR to this folder with the language helps us track it down.
12+
13+
Thanks!
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
---
5+
6+
**Describe the solution you'd like**
7+
A clear and concise description of what you want to happen.
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
If so, a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
### OSX ###
2+
*.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two
7+
Icon
8+
# Thumbnails
9+
._*
10+
# Files that might appear in the root of a volume
11+
.DocumentRevisions-V100
12+
.fseventsd
13+
.Spotlight-V100
14+
.TemporaryItems
15+
.Trashes
16+
.VolumeIcon.icns
17+
.com.apple.timemachine.donotpresent
18+
# Directories potentially created on remote AFP share
19+
.AppleDB
20+
.AppleDesktop
21+
Network Trash Folder
22+
Temporary Items
23+
.apdisk
24+
25+
### Node ###
26+
# Logs
27+
logs
28+
*.log
29+
npm-debug.log*
30+
31+
# Runtime data
32+
pids
33+
*.pid
34+
*.seed
35+
*.pid.lock
36+
37+
# Directory for instrumented libs generated by jscoverage/JSCover
38+
lib-cov
39+
40+
# Coverage directory used by tools like istanbul
41+
coverage
42+
43+
# nyc test coverage
44+
.nyc_output
45+
46+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
47+
.grunt
48+
49+
# node-waf configuration
50+
.lock-wscript
51+
52+
# Compiled binary addons (http://nodejs.org/api/addons.html)
53+
build/Release
54+
55+
# Dependency directories
56+
node_modules
57+
jspm_packages
58+
59+
# Optional npm cache directory
60+
.npm
61+
62+
# Optional eslint cache
63+
.eslintcache
64+
65+
# Optional REPL history
66+
.node_repl_history
67+
68+
# Output of 'npm pack'
69+
*.tgz
70+
71+
# Yarn Integrity file
72+
.yarn-integrity
73+
74+
# Nuxt build
75+
.nuxt
76+
77+
# Nuxt generate
78+
dist

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--extensionDevelopmentPath=${workspaceFolder}"
15+
]
16+
}
17+
]
18+
}

.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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
3+
All notable changes to the "yell" extension will be documented in this file.
4+
5+
## 0.1.0
6+
- Initial release

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Javier Diaz Chamorro
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# [Yell Theme ✨](https://github.com/coderdiaz/yell-vscode-theme) ·
2+
A Visual Studio Code theme for dark lovers with accesible colors ✨
3+
4+
About this theme, Thanks to Sarah Drasner (@sdras) for the tips and recommendations. This theme was created with help Sarah's article in CSS Tricks.
5+
6+
## Preview
7+
![Preview](preview.png)
8+
9+
## Installation
10+
1. Install [Visual Studio Code](https://code.visualstudio.com/).
11+
2. Launch Visual Studio Code.
12+
3. Choose **Extensions** from menu.
13+
4. Search for `yell`.
14+
5. Click **Install** to install it.
15+
6. Click **Reload** to reload the Code editor.
16+
7. From the menu bar click: Code > Preferences > Color Themes > **Yell**.
17+
18+
## Preferences shown in the preview
19+
The font in the preview image is Perplexed Font derivative of IBM Plex Mono, [available here](https://github.com/phoikoi/perplexed). Editor settings to activate font ligatures:
20+
```
21+
"editor.fontFamily": "Perplexed",
22+
"editor.fontLigatures": true,
23+
```
24+
25+
## Misc
26+
This is my first theme, so if you something amiss, please feel free to file and issue! I'm sure there are things I missed.
27+
28+
Any relevant changes for each version are documented in the changelog. Please update and check the changelog before filing any issues, as they may have already been taken care of.
29+
30+
This theme was inspired from favorite color palette used in my personal [portfolio](https://coderdiaz.me).

icon.png

2.93 KB
Loading

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "yell",
3+
"displayName": "Yell",
4+
"description": "A VS Code theme for dark lovers with accesible colors. ✨",
5+
"publisher": "coderdiaz",
6+
"version": "0.1.0",
7+
"license": "MIT",
8+
"scripts": {
9+
"publish": "vsce publish"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/coderdiaz/yell-vscode-theme.git"
14+
},
15+
"keywords": [
16+
"Theme",
17+
"Dark Theme",
18+
"Yell theme",
19+
"Darkscode",
20+
"Accesible Theme"
21+
],
22+
"icon": "icon.png",
23+
"engines": {
24+
"vscode": "^1.37.0"
25+
},
26+
"categories": [
27+
"Themes"
28+
],
29+
"contributes": {
30+
"themes": [
31+
{
32+
"label": "Yell",
33+
"uiTheme": "vs-dark",
34+
"path": "./themes/Yell-color-theme.json"
35+
}
36+
]
37+
}
38+
}

0 commit comments

Comments
 (0)