43 lines
887 B
JSON
43 lines
887 B
JSON
{
|
|
"name": "fjord-theme",
|
|
"displayName": "Fjord",
|
|
"description": "Fjord theme for VS Code. Dusk-blue base with soft leaf-green accents, amber selections, and crisp blue/cyan separation.",
|
|
"icon": "fjordx128.png",
|
|
"version": "0.1.3",
|
|
"publisher": "jshuntley",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jshuntley/fjord-vscode"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.70.0"
|
|
},
|
|
"categories": [
|
|
"Themes"
|
|
],
|
|
"contributes": {
|
|
"themes": [
|
|
{
|
|
"label": "Fjord",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./themes/fjord-color-theme.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"package": "vsce package",
|
|
"publish": "vsce publish",
|
|
"clean": "rm -f *.vsix"
|
|
},
|
|
"devDependencies": {
|
|
"@vscode/vsce": "^2.21.0"
|
|
},
|
|
"keywords": [
|
|
"theme",
|
|
"color-theme",
|
|
"dark-theme",
|
|
"fjord"
|
|
]
|
|
}
|