kimu-core 0.4.1 → 0.5.0

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.
Files changed (75) hide show
  1. package/.editorconfig +116 -30
  2. package/.gitattributes +81 -11
  3. package/.github/FUNDING.yml +8 -8
  4. package/.github/kimu-copilot-instructions.md +3779 -3779
  5. package/.github/workflows/deploy-demo.yml +39 -39
  6. package/.nvmrc +1 -0
  7. package/.prettierignore +44 -0
  8. package/.prettierrc +16 -0
  9. package/FUNDING.md +31 -31
  10. package/icon.svg +10 -10
  11. package/kimu-core-0.5.0.tgz +0 -0
  12. package/package.json +10 -3
  13. package/scripts/minify-css-assets.js +82 -82
  14. package/src/core/index.ts +47 -47
  15. package/src/core/kimu-global-styles.ts +136 -136
  16. package/src/core/kimu-reactive.ts +196 -196
  17. package/src/extensions/{kimu-home → app-root}/component.ts +5 -5
  18. package/src/extensions/extensions-manifest.json +4 -4
  19. package/src/main.ts +3 -3
  20. package/src/modules-repository/api-axios/CHANGELOG.md +48 -48
  21. package/src/modules-repository/api-axios/QUICK-REFERENCE.md +178 -178
  22. package/src/modules-repository/api-axios/README.md +304 -304
  23. package/src/modules-repository/api-axios/api-axios-service.ts +355 -355
  24. package/src/modules-repository/api-axios/examples.ts +293 -293
  25. package/src/modules-repository/api-axios/index.ts +19 -19
  26. package/src/modules-repository/api-axios/interfaces.ts +71 -71
  27. package/src/modules-repository/api-axios/module.ts +41 -41
  28. package/src/modules-repository/api-core/CHANGELOG.md +42 -42
  29. package/src/modules-repository/api-core/QUICK-REFERENCE.md +192 -192
  30. package/src/modules-repository/api-core/README.md +435 -435
  31. package/src/modules-repository/api-core/api-core-service.ts +289 -289
  32. package/src/modules-repository/api-core/examples.ts +432 -432
  33. package/src/modules-repository/api-core/index.ts +8 -8
  34. package/src/modules-repository/api-core/interfaces.ts +83 -83
  35. package/src/modules-repository/api-core/module.ts +30 -30
  36. package/src/modules-repository/event-bus/README.md +273 -273
  37. package/src/modules-repository/event-bus/event-bus-service.ts +176 -176
  38. package/src/modules-repository/event-bus/module.ts +30 -30
  39. package/src/modules-repository/notification/README.md +423 -423
  40. package/src/modules-repository/notification/module.ts +30 -30
  41. package/src/modules-repository/notification/notification-service.ts +436 -436
  42. package/src/modules-repository/router/README.it.md +61 -10
  43. package/src/modules-repository/router/README.md +61 -10
  44. package/src/modules-repository/router/router-config.ts.example +61 -0
  45. package/src/modules-repository/router/router.ts +18 -0
  46. package/src/modules-repository/state/README.md +409 -409
  47. package/src/modules-repository/state/module.ts +30 -30
  48. package/src/modules-repository/state/state-service.ts +296 -296
  49. package/src/modules-repository/theme/README.md +311 -267
  50. package/src/modules-repository/theme/module.ts +30 -30
  51. package/src/modules-repository/theme/pre-build.js +40 -40
  52. package/src/modules-repository/theme/theme-service.ts +411 -389
  53. package/src/modules-repository/theme/themes/theme-cherry-blossom.css +78 -78
  54. package/src/modules-repository/theme/themes/theme-cozy.css +111 -111
  55. package/src/modules-repository/theme/themes/theme-cyberpunk.css +150 -150
  56. package/src/modules-repository/theme/themes/theme-dark.css +79 -79
  57. package/src/modules-repository/theme/themes/theme-forest.css +171 -171
  58. package/src/modules-repository/theme/themes/theme-gold.css +100 -100
  59. package/src/modules-repository/theme/themes/theme-high-contrast.css +126 -126
  60. package/src/modules-repository/theme/themes/theme-lava.css +101 -101
  61. package/src/modules-repository/theme/themes/theme-lavender.css +90 -90
  62. package/src/modules-repository/theme/themes/theme-light.css +79 -79
  63. package/src/modules-repository/theme/themes/theme-matrix.css +103 -103
  64. package/src/modules-repository/theme/themes/theme-midnight.css +81 -81
  65. package/src/modules-repository/theme/themes/theme-nord.css +94 -94
  66. package/src/modules-repository/theme/themes/theme-ocean.css +84 -84
  67. package/src/modules-repository/theme/themes/theme-retro80s.css +343 -343
  68. package/src/modules-repository/theme/themes/theme-sunset.css +62 -62
  69. package/src/modules-repository/theme/themes-config-default.json +19 -0
  70. package/src/modules-repository/theme/themes-config.d.ts +27 -27
  71. package/src/modules-repository/theme/{themes-config.json → themes-config.json.example} +223 -213
  72. /package/src/extensions/{kimu-home → app-root}/lang/en.json +0 -0
  73. /package/src/extensions/{kimu-home → app-root}/lang/it.json +0 -0
  74. /package/src/extensions/{kimu-home → app-root}/style.css +0 -0
  75. /package/src/extensions/{kimu-home → app-root}/view.html +0 -0
@@ -1,62 +1,62 @@
1
- /**
2
- * Sunset Theme - Warm orange and pink sunset colors
3
- * A warm and energetic theme inspired by beautiful sunsets
4
- */
5
-
6
- :root {
7
- /* Main colors */
8
- --kimu-background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFA07A 100%);
9
- --kimu-surface: rgba(255, 107, 53, 0.1);
10
- --kimu-surface-elevated: rgba(255, 107, 53, 0.15);
11
-
12
- /* Text colors */
13
- --kimu-text-primary: #2D1B00;
14
- --kimu-text-secondary: #5D3A1A;
15
- --kimu-text-tertiary: #8B5A2B;
16
- --kimu-text-disabled: #A67C52;
17
-
18
- /* Border colors */
19
- --kimu-border: #FF8C52;
20
- --kimu-border-light: #FFB088;
21
- --kimu-divider: rgba(255, 107, 53, 0.2);
22
-
23
- /* Accent colors */
24
- --kimu-primary: #FF6B35;
25
- --kimu-primary-dark: #E55B2B;
26
- --kimu-primary-light: #FF8C52;
27
- --kimu-secondary: #F7931E;
28
- --kimu-accent: #FFA07A;
29
-
30
- /* State colors */
31
- --kimu-success: #FFD700;
32
- --kimu-warning: #FF8C00;
33
- --kimu-error: #DC143C;
34
- --kimu-info: #FF7F50;
35
-
36
- /* Shadow */
37
- --kimu-shadow: rgba(255, 107, 53, 0.3);
38
- --kimu-shadow-strong: rgba(255, 107, 53, 0.5);
39
-
40
- /* Component colors */
41
- --kimu-input-bg: #FFF5EE;
42
- --kimu-input-border: #FF8C52;
43
- --kimu-button-bg: #FF6B35;
44
- --kimu-button-hover: #E55B2B;
45
- --kimu-card-bg: rgba(255, 255, 255, 0.95);
46
-
47
- /* Font */
48
- --kimu-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
49
- }
50
-
51
- /* Body background with gradient */
52
- body {
53
- background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFA07A 100%);
54
- background-attachment: fixed;
55
- color: var(--kimu-text-primary);
56
- }
57
-
58
- /* Glow effect for interactive elements */
59
- button:hover,
60
- a:hover {
61
- box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
62
- }
1
+ /**
2
+ * Sunset Theme - Warm orange and pink sunset colors
3
+ * A warm and energetic theme inspired by beautiful sunsets
4
+ */
5
+
6
+ :root {
7
+ /* Main colors */
8
+ --kimu-background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFA07A 100%);
9
+ --kimu-surface: rgba(255, 107, 53, 0.1);
10
+ --kimu-surface-elevated: rgba(255, 107, 53, 0.15);
11
+
12
+ /* Text colors */
13
+ --kimu-text-primary: #2D1B00;
14
+ --kimu-text-secondary: #5D3A1A;
15
+ --kimu-text-tertiary: #8B5A2B;
16
+ --kimu-text-disabled: #A67C52;
17
+
18
+ /* Border colors */
19
+ --kimu-border: #FF8C52;
20
+ --kimu-border-light: #FFB088;
21
+ --kimu-divider: rgba(255, 107, 53, 0.2);
22
+
23
+ /* Accent colors */
24
+ --kimu-primary: #FF6B35;
25
+ --kimu-primary-dark: #E55B2B;
26
+ --kimu-primary-light: #FF8C52;
27
+ --kimu-secondary: #F7931E;
28
+ --kimu-accent: #FFA07A;
29
+
30
+ /* State colors */
31
+ --kimu-success: #FFD700;
32
+ --kimu-warning: #FF8C00;
33
+ --kimu-error: #DC143C;
34
+ --kimu-info: #FF7F50;
35
+
36
+ /* Shadow */
37
+ --kimu-shadow: rgba(255, 107, 53, 0.3);
38
+ --kimu-shadow-strong: rgba(255, 107, 53, 0.5);
39
+
40
+ /* Component colors */
41
+ --kimu-input-bg: #FFF5EE;
42
+ --kimu-input-border: #FF8C52;
43
+ --kimu-button-bg: #FF6B35;
44
+ --kimu-button-hover: #E55B2B;
45
+ --kimu-card-bg: rgba(255, 255, 255, 0.95);
46
+
47
+ /* Font */
48
+ --kimu-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
49
+ }
50
+
51
+ /* Body background with gradient */
52
+ body {
53
+ background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFA07A 100%);
54
+ background-attachment: fixed;
55
+ color: var(--kimu-text-primary);
56
+ }
57
+
58
+ /* Glow effect for interactive elements */
59
+ button:hover,
60
+ a:hover {
61
+ box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
62
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "$comment": "Default fallback themes configuration - used when user config is not found",
3
+ "themes": [
4
+ {
5
+ "name": "light",
6
+ "mode": "light",
7
+ "cssPath": "theme-light.css",
8
+ "description": "Light theme (default)",
9
+ "icon": "☀️"
10
+ },
11
+ {
12
+ "name": "dark",
13
+ "mode": "dark",
14
+ "cssPath": "theme-dark.css",
15
+ "description": "Dark theme (default)",
16
+ "icon": "🌙"
17
+ }
18
+ ]
19
+ }
@@ -1,27 +1,27 @@
1
- /**
2
- * Type definitions for themes configuration
3
- */
4
-
5
- export interface ThemeColors {
6
- background: string;
7
- backgroundEnd: string;
8
- text: string;
9
- border: string;
10
- }
11
-
12
- export interface ThemeConfig {
13
- name: string;
14
- mode: 'light' | 'dark';
15
- cssPath: string;
16
- description?: string;
17
- icon?: string;
18
- colors?: ThemeColors;
19
- }
20
-
21
- export interface ThemesConfiguration {
22
- themes: ThemeConfig[];
23
- defaultTheme: string;
24
- }
25
-
26
- declare const themesConfig: ThemesConfiguration;
27
- export default themesConfig;
1
+ /**
2
+ * Type definitions for themes configuration
3
+ */
4
+
5
+ export interface ThemeColors {
6
+ background: string;
7
+ backgroundEnd: string;
8
+ text: string;
9
+ border: string;
10
+ }
11
+
12
+ export interface ThemeConfig {
13
+ name: string;
14
+ mode: 'light' | 'dark';
15
+ cssPath: string;
16
+ description?: string;
17
+ icon?: string;
18
+ colors?: ThemeColors;
19
+ }
20
+
21
+ export interface ThemesConfiguration {
22
+ themes: ThemeConfig[];
23
+ defaultTheme: string;
24
+ }
25
+
26
+ declare const themesConfig: ThemesConfiguration;
27
+ export default themesConfig;
@@ -1,213 +1,223 @@
1
- {
2
- "themes": [
3
- {
4
- "name": "light",
5
- "mode": "light",
6
- "cssPath": "theme-light.css",
7
- "description": "Clean and bright theme",
8
- "icon": "☀️",
9
- "colors": {
10
- "background": "#ffffff",
11
- "backgroundEnd": "#f7fafc",
12
- "text": "#1a202c",
13
- "border": "#e2e8f0"
14
- }
15
- },
16
- {
17
- "name": "dark",
18
- "mode": "dark",
19
- "cssPath": "theme-dark.css",
20
- "description": "Dark theme for low-light environments",
21
- "icon": "🌙",
22
- "colors": {
23
- "background": "#1a202c",
24
- "backgroundEnd": "#2d3748",
25
- "text": "#f7fafc",
26
- "border": "#4a5568"
27
- }
28
- },
29
- {
30
- "name": "ocean",
31
- "mode": "dark",
32
- "cssPath": "theme-ocean.css",
33
- "description": "Ocean-inspired dark theme",
34
- "icon": "🌊",
35
- "colors": {
36
- "background": "#0c1821",
37
- "backgroundEnd": "#1b3a4b",
38
- "text": "#e0f2fe",
39
- "border": "#155e75"
40
- }
41
- },
42
- {
43
- "name": "cozy",
44
- "mode": "light",
45
- "cssPath": "theme-cozy.css",
46
- "description": "Warm and cozy feminine theme",
47
- "icon": "🌸",
48
- "colors": {
49
- "background": "#fef3f2",
50
- "backgroundEnd": "#fff1f0",
51
- "text": "#431407",
52
- "border": "#fed7d7"
53
- }
54
- },
55
- {
56
- "name": "nord",
57
- "mode": "dark",
58
- "cssPath": "theme-nord.css",
59
- "description": "Cold and relaxing Nordic theme",
60
- "icon": "❄️",
61
- "colors": {
62
- "background": "#2E3440",
63
- "backgroundEnd": "#3B4252",
64
- "text": "#88C0D0",
65
- "border": "#4C566A"
66
- }
67
- },
68
- {
69
- "name": "forest",
70
- "mode": "light",
71
- "cssPath": "theme-forest.css",
72
- "description": "Natural green theme",
73
- "icon": "🌲",
74
- "colors": {
75
- "background": "#F5F3EF",
76
- "backgroundEnd": "#EAE7E0",
77
- "text": "#2D5016",
78
- "border": "#B8B3A7"
79
- }
80
- },
81
- {
82
- "name": "high-contrast",
83
- "mode": "light",
84
- "cssPath": "theme-high-contrast.css",
85
- "description": "High contrast theme for accessibility",
86
- "icon": "",
87
- "colors": {
88
- "background": "#FFFFFF",
89
- "backgroundEnd": "#F5F5F5",
90
- "text": "#000000",
91
- "border": "#000000"
92
- }
93
- },
94
- {
95
- "name": "cyberpunk",
96
- "mode": "dark",
97
- "cssPath": "theme-cyberpunk.css",
98
- "description": "Futuristic neon theme",
99
- "icon": "🎮",
100
- "colors": {
101
- "background": "#0A0A0F",
102
- "backgroundEnd": "#14141F",
103
- "text": "#00F0FF",
104
- "border": "#FF006E"
105
- }
106
- },
107
- {
108
- "name": "retro80s",
109
- "mode": "dark",
110
- "cssPath": "theme-retro80s.css",
111
- "description": "Nostalgic 80s aesthetic with LED and laser effects",
112
- "icon": "🕹️",
113
- "colors": {
114
- "background": "#0D0221",
115
- "backgroundEnd": "#190F33",
116
- "text": "#FF10F0",
117
- "border": "#00FFFF"
118
- }
119
- },
120
- {
121
- "name": "sunset",
122
- "mode": "light",
123
- "cssPath": "theme-sunset.css",
124
- "description": "Warm orange and pink sunset colors",
125
- "icon": "🌅",
126
- "colors": {
127
- "background": "#FF6B35",
128
- "backgroundEnd": "#FFA07A",
129
- "text": "#2D1B00",
130
- "border": "#FF8C52"
131
- }
132
- },
133
- {
134
- "name": "midnight",
135
- "mode": "dark",
136
- "cssPath": "theme-midnight.css",
137
- "description": "Deep blue night colors with stars",
138
- "icon": "🌃",
139
- "colors": {
140
- "background": "#0B1D3D",
141
- "backgroundEnd": "#2A4A7C",
142
- "text": "#E0E7FF",
143
- "border": "#3D5A8C"
144
- }
145
- },
146
- {
147
- "name": "cherry-blossom",
148
- "mode": "light",
149
- "cssPath": "theme-cherry-blossom.css",
150
- "description": "Delicate pink sakura colors",
151
- "icon": "🌸",
152
- "colors": {
153
- "background": "#FFE5EC",
154
- "backgroundEnd": "#FFC2D4",
155
- "text": "#6B2E4F",
156
- "border": "#FFB3C6"
157
- }
158
- },
159
- {
160
- "name": "lava",
161
- "mode": "dark",
162
- "cssPath": "theme-lava.css",
163
- "description": "Intense red and orange fire colors",
164
- "icon": "🌋",
165
- "colors": {
166
- "background": "#1A0000",
167
- "backgroundEnd": "#660000",
168
- "text": "#FFE5D9",
169
- "border": "#FF4500"
170
- }
171
- },
172
- {
173
- "name": "matrix",
174
- "mode": "dark",
175
- "cssPath": "theme-matrix.css",
176
- "description": "Green phosphorescent hacker theme",
177
- "icon": "💚",
178
- "colors": {
179
- "background": "#000000",
180
- "backgroundEnd": "#001100",
181
- "text": "#00FF41",
182
- "border": "#00FF41"
183
- }
184
- },
185
- {
186
- "name": "gold",
187
- "mode": "dark",
188
- "cssPath": "theme-gold.css",
189
- "description": "Elegant gold and luxury colors",
190
- "icon": "👑",
191
- "colors": {
192
- "background": "#1A1410",
193
- "backgroundEnd": "#3A3020",
194
- "text": "#FFD700",
195
- "border": "#DAA520"
196
- }
197
- },
198
- {
199
- "name": "lavender",
200
- "mode": "light",
201
- "cssPath": "theme-lavender.css",
202
- "description": "Relaxing purple lavender colors",
203
- "icon": "💜",
204
- "colors": {
205
- "background": "#F4ECFA",
206
- "backgroundEnd": "#D8C6F0",
207
- "text": "#4A2C5B",
208
- "border": "#C8B2E0"
209
- }
210
- }
211
- ],
212
- "defaultTheme": "light"
213
- }
1
+ {
2
+ "$schema": "./themes-config.d.ts",
3
+ "_comment": "Theme Configuration Example File",
4
+ "_instructions": [
5
+ "Copy this file to: src/config/theme/themes-config.json",
6
+ "Commands:",
7
+ " mkdir -p src/config/theme",
8
+ " cp src/modules/theme/themes-config.json.example src/config/theme/themes-config.json",
9
+ "",
10
+ "Then customize the themes array below with your application themes."
11
+ ],
12
+ "themes": [
13
+ {
14
+ "name": "light",
15
+ "mode": "light",
16
+ "cssPath": "theme-light.css",
17
+ "description": "Clean and bright theme",
18
+ "icon": "☀️",
19
+ "colors": {
20
+ "background": "#ffffff",
21
+ "backgroundEnd": "#f7fafc",
22
+ "text": "#1a202c",
23
+ "border": "#e2e8f0"
24
+ }
25
+ },
26
+ {
27
+ "name": "dark",
28
+ "mode": "dark",
29
+ "cssPath": "theme-dark.css",
30
+ "description": "Dark theme for low-light environments",
31
+ "icon": "🌙",
32
+ "colors": {
33
+ "background": "#1a202c",
34
+ "backgroundEnd": "#2d3748",
35
+ "text": "#f7fafc",
36
+ "border": "#4a5568"
37
+ }
38
+ },
39
+ {
40
+ "name": "ocean",
41
+ "mode": "dark",
42
+ "cssPath": "theme-ocean.css",
43
+ "description": "Ocean-inspired dark theme",
44
+ "icon": "🌊",
45
+ "colors": {
46
+ "background": "#0c1821",
47
+ "backgroundEnd": "#1b3a4b",
48
+ "text": "#e0f2fe",
49
+ "border": "#155e75"
50
+ }
51
+ },
52
+ {
53
+ "name": "cozy",
54
+ "mode": "light",
55
+ "cssPath": "theme-cozy.css",
56
+ "description": "Warm and cozy feminine theme",
57
+ "icon": "🌸",
58
+ "colors": {
59
+ "background": "#fef3f2",
60
+ "backgroundEnd": "#fff1f0",
61
+ "text": "#431407",
62
+ "border": "#fed7d7"
63
+ }
64
+ },
65
+ {
66
+ "name": "nord",
67
+ "mode": "dark",
68
+ "cssPath": "theme-nord.css",
69
+ "description": "Cold and relaxing Nordic theme",
70
+ "icon": "❄️",
71
+ "colors": {
72
+ "background": "#2E3440",
73
+ "backgroundEnd": "#3B4252",
74
+ "text": "#88C0D0",
75
+ "border": "#4C566A"
76
+ }
77
+ },
78
+ {
79
+ "name": "forest",
80
+ "mode": "light",
81
+ "cssPath": "theme-forest.css",
82
+ "description": "Natural green theme",
83
+ "icon": "🌲",
84
+ "colors": {
85
+ "background": "#F5F3EF",
86
+ "backgroundEnd": "#EAE7E0",
87
+ "text": "#2D5016",
88
+ "border": "#B8B3A7"
89
+ }
90
+ },
91
+ {
92
+ "name": "high-contrast",
93
+ "mode": "light",
94
+ "cssPath": "theme-high-contrast.css",
95
+ "description": "High contrast theme for accessibility",
96
+ "icon": "",
97
+ "colors": {
98
+ "background": "#FFFFFF",
99
+ "backgroundEnd": "#F5F5F5",
100
+ "text": "#000000",
101
+ "border": "#000000"
102
+ }
103
+ },
104
+ {
105
+ "name": "cyberpunk",
106
+ "mode": "dark",
107
+ "cssPath": "theme-cyberpunk.css",
108
+ "description": "Futuristic neon theme",
109
+ "icon": "🎮",
110
+ "colors": {
111
+ "background": "#0A0A0F",
112
+ "backgroundEnd": "#14141F",
113
+ "text": "#00F0FF",
114
+ "border": "#FF006E"
115
+ }
116
+ },
117
+ {
118
+ "name": "retro80s",
119
+ "mode": "dark",
120
+ "cssPath": "theme-retro80s.css",
121
+ "description": "Nostalgic 80s aesthetic with LED and laser effects",
122
+ "icon": "🕹️",
123
+ "colors": {
124
+ "background": "#0D0221",
125
+ "backgroundEnd": "#190F33",
126
+ "text": "#FF10F0",
127
+ "border": "#00FFFF"
128
+ }
129
+ },
130
+ {
131
+ "name": "sunset",
132
+ "mode": "light",
133
+ "cssPath": "theme-sunset.css",
134
+ "description": "Warm orange and pink sunset colors",
135
+ "icon": "🌅",
136
+ "colors": {
137
+ "background": "#FF6B35",
138
+ "backgroundEnd": "#FFA07A",
139
+ "text": "#2D1B00",
140
+ "border": "#FF8C52"
141
+ }
142
+ },
143
+ {
144
+ "name": "midnight",
145
+ "mode": "dark",
146
+ "cssPath": "theme-midnight.css",
147
+ "description": "Deep blue night colors with stars",
148
+ "icon": "🌃",
149
+ "colors": {
150
+ "background": "#0B1D3D",
151
+ "backgroundEnd": "#2A4A7C",
152
+ "text": "#E0E7FF",
153
+ "border": "#3D5A8C"
154
+ }
155
+ },
156
+ {
157
+ "name": "cherry-blossom",
158
+ "mode": "light",
159
+ "cssPath": "theme-cherry-blossom.css",
160
+ "description": "Delicate pink sakura colors",
161
+ "icon": "🌸",
162
+ "colors": {
163
+ "background": "#FFE5EC",
164
+ "backgroundEnd": "#FFC2D4",
165
+ "text": "#6B2E4F",
166
+ "border": "#FFB3C6"
167
+ }
168
+ },
169
+ {
170
+ "name": "lava",
171
+ "mode": "dark",
172
+ "cssPath": "theme-lava.css",
173
+ "description": "Intense red and orange fire colors",
174
+ "icon": "🌋",
175
+ "colors": {
176
+ "background": "#1A0000",
177
+ "backgroundEnd": "#660000",
178
+ "text": "#FFE5D9",
179
+ "border": "#FF4500"
180
+ }
181
+ },
182
+ {
183
+ "name": "matrix",
184
+ "mode": "dark",
185
+ "cssPath": "theme-matrix.css",
186
+ "description": "Green phosphorescent hacker theme",
187
+ "icon": "💚",
188
+ "colors": {
189
+ "background": "#000000",
190
+ "backgroundEnd": "#001100",
191
+ "text": "#00FF41",
192
+ "border": "#00FF41"
193
+ }
194
+ },
195
+ {
196
+ "name": "gold",
197
+ "mode": "dark",
198
+ "cssPath": "theme-gold.css",
199
+ "description": "Elegant gold and luxury colors",
200
+ "icon": "👑",
201
+ "colors": {
202
+ "background": "#1A1410",
203
+ "backgroundEnd": "#3A3020",
204
+ "text": "#FFD700",
205
+ "border": "#DAA520"
206
+ }
207
+ },
208
+ {
209
+ "name": "lavender",
210
+ "mode": "light",
211
+ "cssPath": "theme-lavender.css",
212
+ "description": "Relaxing purple lavender colors",
213
+ "icon": "💜",
214
+ "colors": {
215
+ "background": "#F4ECFA",
216
+ "backgroundEnd": "#D8C6F0",
217
+ "text": "#4A2C5B",
218
+ "border": "#C8B2E0"
219
+ }
220
+ }
221
+ ],
222
+ "defaultTheme": "light"
223
+ }