Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Peymanslh committed Jun 26, 2017
0 parents commit 3392393
Show file tree
Hide file tree
Showing 10 changed files with 918 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
*.log
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Change Log

## V0.1.0
- Initial release
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 Peyman Salehi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Blueberry Dark Theme
Based on [Material theme](https://marketplace.visualstudio.com/items?itemName=ms-vscode.Theme-MaterialKit) and [DuoTone Syntax](https://github.com/simurai/duotone-syntax) With a little change.

![Colors](https://raw.githubusercontent.com/peymanslh/vscode-blueberry-dark-theme/master/colors.jpg)

## Screen Shot
![Screen Shot](https://raw.githubusercontent.com/peymanslh/vscode-blueberry-dark-theme/master/screenshot.png)

> The font in the screenshot is [Operator Mono](https://www.typography.com/blog/introducing-operator) .
Binary file added colors.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "blueberry-dark-theme",
"displayName": "Blueberry dark theme",
"description": "Blueberry Dark Theme for Visual Studio Code",
"version": "0.1.0",
"publisher": "peymanslh",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"icon": "icon.svg",
"contributes": {
"themes": [
{
"label": "Blueberry dark theme",
"uiTheme": "vs-dark",
"path": "./themes/blueberry-dark-theme-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peymanslh/vscode-blueberry-dark-theme.git"
},
"homepage": "https://github.com/peymanslh/vscode-blueberry-dark-theme#readme",
"license": "MIT",
"author": "Peyman Salehi <[email protected]>"
}
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3392393

Please sign in to comment.