Skip to content

Commit

Permalink
added new theme types
Browse files Browse the repository at this point in the history
changed repo
  • Loading branch information
KamenKolev committed Sep 19, 2019
1 parent 21190de commit 4e2fe81
Showing 1 changed file with 52 additions and 101 deletions.
153 changes: 52 additions & 101 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,103 +1,54 @@
{
"name": "noctis",
"displayName": "Noctis",
"description": "Noctis is a collection of light & dark themes with a well balanced blend of warm and cold colors",
"version": "10.10.0",
"publisher": "liviuschera",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.36.0"
},
"galleryBanner": {
"color": "#052529",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/liviuschera/noctis"
},
"scripts": {
"build": "node --experimental-modules src/build.mjs",
"release:major---": "npm run build && git add . && git commit -m 🆕10.0.0🆕 && npm version major & vsce publish && git push",
"release:minor": "npm run build && git add . && git commit -m 10.10.0 && npm version minor & vsce publish && git push",
"release:patch": "npm run build && git add . && git commit -m 10.2.1 && npm version patch & vsce publish && git push"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"noctis",
"blue",
"azure",
"semantic",
"italic",
"bold"
],
"contributes": {
"themes": [
{
"label": "Noctis Lux",
"uiTheme": "vs",
"path": "./themes/lux.json"
},
{
"label": "Noctis Hibernus",
"uiTheme": "vs",
"path": "./themes/hibernus.json"
},
{
"label": "Noctis Lilac",
"uiTheme": "vs",
"path": "./themes/lilac.json"
},
{
"label": "Noctis",
"uiTheme": "vs-dark",
"path": "./themes/noctis.json"
},
{
"label": "Noctis Azureus",
"uiTheme": "vs-dark",
"path": "./themes/azureus.json"
},
{
"label": "Noctis Bordo",
"uiTheme": "vs-dark",
"path": "./themes/bordo.json"
},
{
"label": "Noctis Obscuro",
"uiTheme": "vs-dark",
"path": "./themes/obscuro.json"
},
{
"label": "Noctis Sereno",
"uiTheme": "vs-dark",
"path": "./themes/sereno.json"
},
{
"label": "Noctis Uva",
"uiTheme": "vs-dark",
"path": "./themes/uva.json"
},
{
"label": "Noctis Viola",
"uiTheme": "vs-dark",
"path": "./themes/viola.json"
},
{
"label": "Noctis Minimus",
"uiTheme": "vs-dark",
"path": "./themes/minimus.json"
}
]
},
"dependencies": {},
"__metadata": {
"id": "d4e2a48f-0b88-4540-92c5-a4ab4dd2c813",
"publisherId": "676e5383-8870-48a9-80bb-67ae23e9228c",
"publisherDisplayName": "Liviu Schera"
},
"devDependencies": {}
"name": "noctis-high-contrast",
"displayName": "Noctis High Contrast",
"description": "A fork of the Noctis theme, with more vivid syntax colors and a slick black UI",
"version": "10.10.0",
"engines": {
"vscode": "^1.36.0"
},
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"scripts": {
"build": "node --experimental-modules src/utils/build.mjs",
"release:major---": "npm run build && git add . && git commit -m 🆕11.0.0🆕 && npm version major & vsce publish && git push",
"release:minor": "npm run build && git add . && git commit -m 10.11.0 && npm version minor & vsce publish && git push",
"release:patch": "npm run build && git add . && git commit -m 10.10.1 && npm version patch & vsce publish && git push"
},
"categories": [
"Themes"
],
"keywords": [
"noctis",
"black",
"high contrast",
"semantic",
"italic",
"bold"
],
"contributes": {
"themes": [
{
"label": "Noctis High Contrast",
"uiTheme": "vs-dark",
"path": "./themes/hc.json"
},
{
"label": "Noctis High Contrast No Italic",
"uiTheme": "vs-dark",
"path": "./themes/hc-no-italic.json"
},
{
"label": "Noctis High Contrast No Italic No Bold",
"uiTheme": "vs-dark",
"path": "./themes/hc-no-italic-no-bold.json"
}
]
},
"publisher": "Kamen",
"repository": {
"type": "git",
"url": "https://github.com/KamenKolev/noctis-hc"
}
}

0 comments on commit 4e2fe81

Please sign in to comment.