kimu-core 0.4.1 → 0.4.2
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/.editorconfig +116 -30
- package/.gitattributes +81 -11
- package/.github/FUNDING.yml +8 -8
- package/.github/kimu-copilot-instructions.md +3779 -3779
- package/.github/workflows/deploy-demo.yml +39 -39
- package/.nvmrc +1 -0
- package/.prettierignore +44 -0
- package/.prettierrc +16 -0
- package/FUNDING.md +31 -31
- package/icon.svg +10 -10
- package/package.json +9 -2
- package/scripts/minify-css-assets.js +82 -82
- package/src/core/index.ts +47 -47
- package/src/core/kimu-global-styles.ts +136 -136
- package/src/core/kimu-reactive.ts +196 -196
- package/src/modules-repository/api-axios/CHANGELOG.md +48 -48
- package/src/modules-repository/api-axios/QUICK-REFERENCE.md +178 -178
- package/src/modules-repository/api-axios/README.md +304 -304
- package/src/modules-repository/api-axios/api-axios-service.ts +355 -355
- package/src/modules-repository/api-axios/examples.ts +293 -293
- package/src/modules-repository/api-axios/index.ts +19 -19
- package/src/modules-repository/api-axios/interfaces.ts +71 -71
- package/src/modules-repository/api-axios/module.ts +41 -41
- package/src/modules-repository/api-core/CHANGELOG.md +42 -42
- package/src/modules-repository/api-core/QUICK-REFERENCE.md +192 -192
- package/src/modules-repository/api-core/README.md +435 -435
- package/src/modules-repository/api-core/api-core-service.ts +289 -289
- package/src/modules-repository/api-core/examples.ts +432 -432
- package/src/modules-repository/api-core/index.ts +8 -8
- package/src/modules-repository/api-core/interfaces.ts +83 -83
- package/src/modules-repository/api-core/module.ts +30 -30
- package/src/modules-repository/event-bus/README.md +273 -273
- package/src/modules-repository/event-bus/event-bus-service.ts +176 -176
- package/src/modules-repository/event-bus/module.ts +30 -30
- package/src/modules-repository/notification/README.md +423 -423
- package/src/modules-repository/notification/module.ts +30 -30
- package/src/modules-repository/notification/notification-service.ts +436 -436
- package/src/modules-repository/router/README.it.md +61 -10
- package/src/modules-repository/router/README.md +61 -10
- package/src/modules-repository/router/router-config.ts.example +61 -0
- package/src/modules-repository/router/router.ts +18 -0
- package/src/modules-repository/state/README.md +409 -409
- package/src/modules-repository/state/module.ts +30 -30
- package/src/modules-repository/state/state-service.ts +296 -296
- package/src/modules-repository/theme/README.md +311 -267
- package/src/modules-repository/theme/module.ts +30 -30
- package/src/modules-repository/theme/pre-build.js +40 -40
- package/src/modules-repository/theme/theme-service.ts +411 -389
- package/src/modules-repository/theme/themes/theme-cherry-blossom.css +78 -78
- package/src/modules-repository/theme/themes/theme-cozy.css +111 -111
- package/src/modules-repository/theme/themes/theme-cyberpunk.css +150 -150
- package/src/modules-repository/theme/themes/theme-dark.css +79 -79
- package/src/modules-repository/theme/themes/theme-forest.css +171 -171
- package/src/modules-repository/theme/themes/theme-gold.css +100 -100
- package/src/modules-repository/theme/themes/theme-high-contrast.css +126 -126
- package/src/modules-repository/theme/themes/theme-lava.css +101 -101
- package/src/modules-repository/theme/themes/theme-lavender.css +90 -90
- package/src/modules-repository/theme/themes/theme-light.css +79 -79
- package/src/modules-repository/theme/themes/theme-matrix.css +103 -103
- package/src/modules-repository/theme/themes/theme-midnight.css +81 -81
- package/src/modules-repository/theme/themes/theme-nord.css +94 -94
- package/src/modules-repository/theme/themes/theme-ocean.css +84 -84
- package/src/modules-repository/theme/themes/theme-retro80s.css +343 -343
- package/src/modules-repository/theme/themes/theme-sunset.css +62 -62
- package/src/modules-repository/theme/themes-config-default.json +19 -0
- package/src/modules-repository/theme/themes-config.d.ts +27 -27
- package/src/modules-repository/theme/{themes-config.json → themes-config.json.example} +223 -213
|
@@ -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
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
"
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
"
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
"
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
"
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
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
|
+
}
|