This commit is contained in:
암냥 2026-09-09 12:12:31 +09:00
commit 123e8492a6
7 changed files with 939 additions and 0 deletions

31
package.json Normal file
View file

@ -0,0 +1,31 @@
{
"name": "kawa",
"displayName": "Kawa",
"description": "A soft pink VS Code theme based on the Kawa color palette.",
"repository": "https://github.com/imnyang/kawa",
"publisher": "imnyang",
"version": "1.0.1",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Themes"
],
"scripts": {
"build:themes": "node scripts/build-themes.js"
},
"contributes": {
"themes": [
{
"label": "Kawa Dark",
"uiTheme": "vs-dark",
"path": "./themes/kawa-color-theme.json"
},
{
"label": "Kawa Light",
"uiTheme": "vs",
"path": "./themes/kawa-light-color-theme.json"
}
]
}
}