rehamo 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +24 -0
- package/README.md +3 -0
- package/package.json +6 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workbench.colorCustomizations": {
|
|
3
|
+
// --- ベースの背景色 ---
|
|
4
|
+
"editor.background": "#1e1e2e",
|
|
5
|
+
"sideBar.background": "#181825",
|
|
6
|
+
|
|
7
|
+
// --- タイトルバー(アクティブ):静かなブルースモーク ---
|
|
8
|
+
"titleBar.activeBackground": "#6b8299",
|
|
9
|
+
"titleBar.activeForeground": "#ffffff",
|
|
10
|
+
|
|
11
|
+
// --- タイトルバー(非アクティブ) ---
|
|
12
|
+
"titleBar.inactiveBackground": "#6b829988",
|
|
13
|
+
"titleBar.inactiveForeground": "#ffffff88",
|
|
14
|
+
|
|
15
|
+
// --- ステータスバー(下のバー) ---
|
|
16
|
+
"statusBar.background": "#6b8299",
|
|
17
|
+
"statusBar.foreground": "#ffffff",
|
|
18
|
+
|
|
19
|
+
// --- その他のアクセント ---
|
|
20
|
+
"activityBar.foreground": "#6b8299",
|
|
21
|
+
"editorCursor.foreground": "#a3d6ff", // カーソルは透明感のあるアクアブルーに
|
|
22
|
+
"tab.activeBorder": "#6b8299"
|
|
23
|
+
}
|
|
24
|
+
}
|
package/README.md
ADDED