initial commit

This commit is contained in:
2025-10-18 18:19:39 -07:00
commit 42a4252fc8
9 changed files with 799 additions and 0 deletions

42
package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"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.0",
"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"
]
}