@spwig/theme-cli 1.1.0 → 2.0.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.
- package/CHANGELOG.md +36 -0
- package/README.md +0 -0
- package/dist/cli.d.ts +0 -0
- package/dist/cli.d.ts.map +0 -0
- package/dist/cli.js +4 -30
- package/dist/cli.js.map +1 -1
- package/dist/commands/component.d.ts +0 -0
- package/dist/commands/component.d.ts.map +0 -0
- package/dist/commands/component.js +0 -0
- package/dist/commands/component.js.map +0 -0
- package/dist/commands/dev.d.ts +0 -0
- package/dist/commands/dev.d.ts.map +0 -0
- package/dist/commands/dev.js +2 -2
- package/dist/commands/dev.js.map +1 -1
- package/dist/commands/init.d.ts +5 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +80 -115
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/package.d.ts +0 -0
- package/dist/commands/package.d.ts.map +1 -1
- package/dist/commands/package.js +0 -2
- package/dist/commands/package.js.map +1 -1
- package/dist/commands/validate.d.ts +1 -2
- package/dist/commands/validate.d.ts.map +1 -1
- package/dist/commands/validate.js +10 -112
- package/dist/commands/validate.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/schemas/component_manifest_schema.json +0 -0
- package/dist/schemas/theme_manifest_schema.json +5 -63
- package/dist/templates/assets/logo.svg.template +6 -0
- package/dist/templates/assets/theme.js.template +150 -0
- package/dist/templates/components/blank.template.html.template +0 -0
- package/dist/templates/components/footer.manifest.json.template +0 -0
- package/dist/templates/components/footer.schema.json.template +22 -0
- package/dist/templates/components/footer.styles.css.template +80 -0
- package/dist/templates/components/footer.template.html.template +0 -0
- package/dist/templates/components/header.manifest.json.template +0 -0
- package/dist/templates/components/header.schema.json.template +0 -0
- package/dist/templates/components/header.styles.css.template +104 -0
- package/dist/templates/components/header.template.html.template +0 -0
- package/dist/templates/components/schema.json.template +0 -0
- package/dist/templates/components/section.manifest.json.template +2 -2
- package/dist/templates/components/section.schema.json.template +40 -0
- package/dist/templates/components/section.styles.css.template +60 -0
- package/dist/templates/components/section.template.html.template +0 -0
- package/dist/templates/components/utility.manifest.json.template +0 -0
- package/dist/templates/pages/cart.html.template +104 -0
- package/dist/templates/pages/collection.html.template +86 -0
- package/dist/templates/pages/home.html.template +51 -0
- package/dist/templates/pages/layout.html.template +48 -0
- package/dist/templates/pages/product.html.template +90 -0
- package/dist/templates/presets/footer.json.template +16 -0
- package/dist/templates/presets/header.json.template +16 -0
- package/dist/templates/theme/README.md.template +51 -21
- package/dist/templates/theme/design_tokens.json.template +0 -0
- package/dist/templates/theme/manifest.json.template +6 -28
- package/dist/templates/theme/tokens.json.template +1254 -0
- package/dist/utils/file-system.d.ts +0 -0
- package/dist/utils/file-system.d.ts.map +0 -0
- package/dist/utils/file-system.js +0 -0
- package/dist/utils/file-system.js.map +0 -0
- package/dist/utils/validation.d.ts +0 -0
- package/dist/utils/validation.d.ts.map +0 -0
- package/dist/utils/validation.js +0 -0
- package/dist/utils/validation.js.map +0 -0
- package/package.json +2 -2
- package/schemas/theme_manifest_schema.json +5 -63
- package/schemas/component_manifest_schema.json +0 -221
|
@@ -0,0 +1,1254 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": {
|
|
3
|
+
"primary": "{{primaryColor}}",
|
|
4
|
+
"primary-hover": "{{primaryHoverColor}}",
|
|
5
|
+
"primary-light": "#dbeafe",
|
|
6
|
+
"primary-dark": "#0b0b60",
|
|
7
|
+
"secondary": "#64748b",
|
|
8
|
+
"secondary-hover": "#475569",
|
|
9
|
+
"seconday-light": "#8A9FBD",
|
|
10
|
+
"secondary-dark": "#3B4E68",
|
|
11
|
+
"accent": "#10b981",
|
|
12
|
+
"accent-hover": "#059669",
|
|
13
|
+
"accent-light": "#14EBA3",
|
|
14
|
+
"accent-dark": "#0D9668",
|
|
15
|
+
"text": "#1f2937",
|
|
16
|
+
"text-light": "#374151",
|
|
17
|
+
"text-muted": "#6b7280",
|
|
18
|
+
"text-inverse": "#ffffff",
|
|
19
|
+
"background": "#ffffff",
|
|
20
|
+
"background-secondary": "#f9fafb",
|
|
21
|
+
"background-tertiary": "#E6F2FC",
|
|
22
|
+
"surface": "#F7FCFF",
|
|
23
|
+
"surface-hover": "#f3f4f6",
|
|
24
|
+
"surface-secondary": "#F0F3FF",
|
|
25
|
+
"surface-dark": "#D9DCE2",
|
|
26
|
+
"border": "#e5e7eb",
|
|
27
|
+
"border-light": "#f3f4f6",
|
|
28
|
+
"border-dark": "#d1d5db",
|
|
29
|
+
"success": "#10b981",
|
|
30
|
+
"success-light": "#d1fae5",
|
|
31
|
+
"error": "#ef4444",
|
|
32
|
+
"error-light": "#fee2e2",
|
|
33
|
+
"warning": "#f59e0b",
|
|
34
|
+
"warning-light": "#fef3c7",
|
|
35
|
+
"info": "#3b82f6",
|
|
36
|
+
"info-light": "#dbeafe",
|
|
37
|
+
"overlay": "rgba(0, 0, 0, 0.5)"
|
|
38
|
+
},
|
|
39
|
+
"typography": {
|
|
40
|
+
"font-family-body": "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif",
|
|
41
|
+
"font-family-heading": "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif",
|
|
42
|
+
"font-sans": "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif",
|
|
43
|
+
"font-serif": "Georgia, 'Times New Roman', serif",
|
|
44
|
+
"font-mono": "ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace",
|
|
45
|
+
"font-size-xs": "0.75rem",
|
|
46
|
+
"font-size-sm": "0.875rem",
|
|
47
|
+
"font-size-base": "1rem",
|
|
48
|
+
"font-size-lg": "1.125rem",
|
|
49
|
+
"font-size-xl": "1.25rem",
|
|
50
|
+
"font-size-2xl": "1.5rem",
|
|
51
|
+
"font-size-3xl": "1.875rem",
|
|
52
|
+
"font-size-4xl": "2.25rem",
|
|
53
|
+
"font-size-5xl": "3rem",
|
|
54
|
+
"font-weight-normal": "400",
|
|
55
|
+
"font-weight-medium": "500",
|
|
56
|
+
"font-weight-semibold": "600",
|
|
57
|
+
"font-weight-bold": "700",
|
|
58
|
+
"line-height-tight": "1.25",
|
|
59
|
+
"line-height-normal": "1.5",
|
|
60
|
+
"line-height-relaxed": "1.625",
|
|
61
|
+
"letter-spacing-tight": "-0.025em",
|
|
62
|
+
"letter-spacing-normal": "0",
|
|
63
|
+
"letter-spacing-wide": "0.025em",
|
|
64
|
+
"word-spacing-tight": "-0.05em",
|
|
65
|
+
"word-spacing-normal": "0",
|
|
66
|
+
"word-spacing-wide": "0.1em",
|
|
67
|
+
"text-indent-none": "0",
|
|
68
|
+
"text-indent-sm": "1em",
|
|
69
|
+
"text-indent-md": "2em",
|
|
70
|
+
"text-indent-lg": "3em",
|
|
71
|
+
"font-variant-normal": "normal",
|
|
72
|
+
"font-variant-small-caps": "small-caps",
|
|
73
|
+
"font-variant-all-small-caps": "all-small-caps",
|
|
74
|
+
"text-decoration-none": "none",
|
|
75
|
+
"text-decoration-underline": "underline",
|
|
76
|
+
"text-decoration-line-through": "line-through",
|
|
77
|
+
"text-align-left": "left",
|
|
78
|
+
"text-align-center": "center",
|
|
79
|
+
"text-align-right": "right",
|
|
80
|
+
"text-align-justify": "justify",
|
|
81
|
+
"vertical-align-baseline": "baseline",
|
|
82
|
+
"vertical-align-top": "top",
|
|
83
|
+
"vertical-align-middle": "middle",
|
|
84
|
+
"vertical-align-bottom": "bottom",
|
|
85
|
+
"direction-ltr": "ltr",
|
|
86
|
+
"direction-rtl": "rtl"
|
|
87
|
+
},
|
|
88
|
+
"spacing": {
|
|
89
|
+
"0": "0",
|
|
90
|
+
"1": "0.25rem",
|
|
91
|
+
"2": "0.5rem",
|
|
92
|
+
"3": "0.75rem",
|
|
93
|
+
"4": "1rem",
|
|
94
|
+
"5": "1.25rem",
|
|
95
|
+
"6": "1.5rem",
|
|
96
|
+
"8": "2rem",
|
|
97
|
+
"10": "2.5rem",
|
|
98
|
+
"12": "3rem",
|
|
99
|
+
"16": "4rem",
|
|
100
|
+
"20": "5rem",
|
|
101
|
+
"24": "6rem"
|
|
102
|
+
},
|
|
103
|
+
"borders": {
|
|
104
|
+
"width-0": "0",
|
|
105
|
+
"width-1": "1px",
|
|
106
|
+
"width-2": "2px",
|
|
107
|
+
"radius-none": "0",
|
|
108
|
+
"radius-sm": "0.25rem",
|
|
109
|
+
"radius-base": "0.375rem",
|
|
110
|
+
"radius-md": "0.5rem",
|
|
111
|
+
"radius-lg": "0.75rem",
|
|
112
|
+
"radius-xl": "1rem",
|
|
113
|
+
"radius-full": "9999px"
|
|
114
|
+
},
|
|
115
|
+
"shadows": {
|
|
116
|
+
"none": "none",
|
|
117
|
+
"sm": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
118
|
+
"base": "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)",
|
|
119
|
+
"md": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",
|
|
120
|
+
"lg": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)",
|
|
121
|
+
"xl": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)"
|
|
122
|
+
},
|
|
123
|
+
"transitions": {
|
|
124
|
+
"duration-fast": "150ms",
|
|
125
|
+
"duration-base": "200ms",
|
|
126
|
+
"duration-slow": "300ms",
|
|
127
|
+
"easing-default": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
128
|
+
"easing-in": "cubic-bezier(0.4, 0, 1, 1)",
|
|
129
|
+
"easing-out": "cubic-bezier(0, 0, 0.2, 1)"
|
|
130
|
+
},
|
|
131
|
+
"breakpoints": {
|
|
132
|
+
"sm": "640px",
|
|
133
|
+
"md": "768px",
|
|
134
|
+
"lg": "1024px",
|
|
135
|
+
"xl": "1280px",
|
|
136
|
+
"2xl": "1536px"
|
|
137
|
+
},
|
|
138
|
+
"z-index": {
|
|
139
|
+
"dropdown": "1000",
|
|
140
|
+
"sticky": "1020",
|
|
141
|
+
"fixed": "1030",
|
|
142
|
+
"modal-backdrop": "1040",
|
|
143
|
+
"modal": "1050",
|
|
144
|
+
"popover": "1060",
|
|
145
|
+
"tooltip": "1070"
|
|
146
|
+
},
|
|
147
|
+
"container": {
|
|
148
|
+
"max-width": "1280px",
|
|
149
|
+
"padding": "1rem"
|
|
150
|
+
},
|
|
151
|
+
"menu": {
|
|
152
|
+
"text-color": "var(--theme-color-text)",
|
|
153
|
+
"text-hover-color": "var(--theme-color-text-inverse)",
|
|
154
|
+
"background": "transparent",
|
|
155
|
+
"background-hover": "var(--theme-color-primary)",
|
|
156
|
+
"dropdown-background": "var(--theme-color-surface)",
|
|
157
|
+
"dropdown-shadow": "var(--theme-shadow-lg)",
|
|
158
|
+
"border-color": "var(--theme-color-border)",
|
|
159
|
+
"active-indicator-color": "var(--theme-color-primary)",
|
|
160
|
+
"item-gap": "var(--theme-space-1)",
|
|
161
|
+
"link-padding-x": "var(--theme-space-4)",
|
|
162
|
+
"link-padding-y": "var(--theme-space-2)",
|
|
163
|
+
"dropdown-padding": "var(--theme-space-2)",
|
|
164
|
+
"dropdown-offset": "var(--theme-space-2)",
|
|
165
|
+
"font-size": "var(--theme-font-size-base)",
|
|
166
|
+
"font-weight": "var(--theme-font-weight-medium)",
|
|
167
|
+
"font-weight-active": "var(--theme-font-weight-semibold)",
|
|
168
|
+
"border-radius": "var(--theme-radius-md)",
|
|
169
|
+
"dropdown-border-radius": "var(--theme-radius-lg)",
|
|
170
|
+
"animation-duration": "var(--theme-transition-duration-fast)",
|
|
171
|
+
"animation-timing": "var(--theme-transition-easing-default)",
|
|
172
|
+
"slide-duration": "var(--theme-transition-duration-slow)"
|
|
173
|
+
},
|
|
174
|
+
"header": {
|
|
175
|
+
"background": "var(--theme-color-surface)",
|
|
176
|
+
"text-color": "var(--theme-color-text)",
|
|
177
|
+
"border-color": "var(--theme-color-border)",
|
|
178
|
+
"link-color": "var(--theme-color-text)",
|
|
179
|
+
"link-hover-color": "var(--theme-color-primary)",
|
|
180
|
+
"padding-y": "var(--theme-space-4)",
|
|
181
|
+
"padding-x": "var(--theme-space-4)",
|
|
182
|
+
"logo-height": "40px",
|
|
183
|
+
"icon-size": "1.25rem",
|
|
184
|
+
"icon-color": "var(--theme-color-text)",
|
|
185
|
+
"icon-hover-color": "var(--theme-color-primary)",
|
|
186
|
+
"zones": {
|
|
187
|
+
"top-bar": {
|
|
188
|
+
"background": "var(--theme-header-background)",
|
|
189
|
+
"background-promotional": "var(--theme-header-zones-top-bar-background)",
|
|
190
|
+
"background-boutique": "var(--theme-header-zones-top-bar-background)",
|
|
191
|
+
"background-split": "var(--theme-header-zones-top-bar-background)",
|
|
192
|
+
"background-classic": "var(--theme-header-zones-top-bar-background)",
|
|
193
|
+
"background-mega": "var(--theme-header-zones-top-bar-background)",
|
|
194
|
+
"background-minimal": "var(--theme-header-zones-top-bar-background)",
|
|
195
|
+
"text-color": "var(--theme-color-text-muted)",
|
|
196
|
+
"text-color-promotional": "var(--theme-header-zones-top-bar-text-color)",
|
|
197
|
+
"text-color-boutique": "var(--theme-header-zones-top-bar-text-color)",
|
|
198
|
+
"text-color-split": "var(--theme-header-zones-top-bar-text-color)",
|
|
199
|
+
"text-color-classic": "var(--theme-header-zones-top-bar-text-color)",
|
|
200
|
+
"text-color-mega": "var(--theme-header-zones-top-bar-text-color)",
|
|
201
|
+
"text-color-minimal": "var(--theme-header-zones-top-bar-text-color)",
|
|
202
|
+
"border-color": "var(--theme-color-border)",
|
|
203
|
+
"border-color-promotional": "var(--theme-header-zones-top-bar-border-color)",
|
|
204
|
+
"border-color-boutique": "var(--theme-header-zones-top-bar-border-color)",
|
|
205
|
+
"border-color-split": "var(--theme-header-zones-top-bar-border-color)",
|
|
206
|
+
"border-color-classic": "var(--theme-header-zones-top-bar-border-color)",
|
|
207
|
+
"border-color-mega": "var(--theme-header-zones-top-bar-border-color)",
|
|
208
|
+
"border-color-minimal": "var(--theme-header-zones-top-bar-border-color)",
|
|
209
|
+
"height": "70px",
|
|
210
|
+
"height-promotional": "var(--theme-header-zones-top-bar-height)",
|
|
211
|
+
"height-boutique": "var(--theme-header-zones-top-bar-height)",
|
|
212
|
+
"height-split": "var(--theme-header-zones-top-bar-height)",
|
|
213
|
+
"height-classic": "var(--theme-header-zones-top-bar-height)",
|
|
214
|
+
"height-mega": "var(--theme-header-zones-top-bar-height)",
|
|
215
|
+
"height-minimal": "var(--theme-header-zones-top-bar-height)",
|
|
216
|
+
"padding-y": "var(--theme-space-4)",
|
|
217
|
+
"padding-y-promotional": "var(--theme-header-zones-top-bar-padding-y)",
|
|
218
|
+
"padding-y-boutique": "var(--theme-header-zones-top-bar-padding-y)",
|
|
219
|
+
"padding-y-split": "var(--theme-header-zones-top-bar-padding-y)",
|
|
220
|
+
"padding-y-classic": "var(--theme-header-zones-top-bar-padding-y)",
|
|
221
|
+
"padding-y-mega": "var(--theme-header-zones-top-bar-padding-y)",
|
|
222
|
+
"padding-y-minimal": "var(--theme-header-zones-top-bar-padding-y)",
|
|
223
|
+
"padding-x": "var(--theme-space-4)",
|
|
224
|
+
"padding-x-promotional": "var(--theme-header-zones-top-bar-padding-x)",
|
|
225
|
+
"padding-x-boutique": "var(--theme-header-zones-top-bar-padding-x)",
|
|
226
|
+
"padding-x-split": "var(--theme-header-zones-top-bar-padding-x)",
|
|
227
|
+
"padding-x-classic": "var(--theme-header-zones-top-bar-padding-x)",
|
|
228
|
+
"padding-x-mega": "var(--theme-header-zones-top-bar-padding-x)",
|
|
229
|
+
"padding-x-minimal": "var(--theme-header-zones-top-bar-padding-x)",
|
|
230
|
+
"font-size": "var(--theme-font-size-sm)",
|
|
231
|
+
"font-size-promotional": "var(--theme-header-zones-top-bar-font-size)",
|
|
232
|
+
"font-size-boutique": "var(--theme-header-zones-top-bar-font-size)",
|
|
233
|
+
"font-size-split": "var(--theme-header-zones-top-bar-font-size)",
|
|
234
|
+
"font-size-classic": "var(--theme-header-zones-top-bar-font-size)",
|
|
235
|
+
"font-size-mega": "var(--theme-header-zones-top-bar-font-size)",
|
|
236
|
+
"font-size-minimal": "var(--theme-header-zones-top-bar-font-size)"
|
|
237
|
+
},
|
|
238
|
+
"main-header": {
|
|
239
|
+
"background": "var(--theme-color-surface)",
|
|
240
|
+
"background-promotional": "var(--theme-header-main-header-background)",
|
|
241
|
+
"background-boutique": "var(--theme-header-main-header-background)",
|
|
242
|
+
"background-split": "var(--theme-header-main-header-background)",
|
|
243
|
+
"background-classic": "var(--theme-header-main-header-background)",
|
|
244
|
+
"background-mega": "var(--theme-header-main-header-background)",
|
|
245
|
+
"background-minimal": "var(--theme-header-main-header-background)",
|
|
246
|
+
"text-color": "var(--theme-color-text)",
|
|
247
|
+
"text-color-promotional": "var(--theme-header-main-header-text-color)",
|
|
248
|
+
"text-color-boutique": "var(--theme-header-main-header-text-color)",
|
|
249
|
+
"text-color-split": "var(--theme-header-main-header-text-color)",
|
|
250
|
+
"text-color-classic": "var(--theme-header-main-header-text-color)",
|
|
251
|
+
"text-color-mega": "var(--theme-header-main-header-text-color)",
|
|
252
|
+
"text-color-minimal": "var(--theme-header-main-header-text-color)",
|
|
253
|
+
"border-color": "var(--theme-color-border)",
|
|
254
|
+
"border-color-promotional": "var(--theme-header-main-header-border-color)",
|
|
255
|
+
"border-color-boutique": "var(--theme-header-main-header-border-color)",
|
|
256
|
+
"border-color-split": "var(--theme-header-main-header-border-color)",
|
|
257
|
+
"border-color-classic": "var(--theme-header-main-header-border-color)",
|
|
258
|
+
"border-color-mega": "var(--theme-header-main-header-border-color)",
|
|
259
|
+
"border-color-minimal": "var(--theme-header-main-header-border-color)",
|
|
260
|
+
"height": "70px",
|
|
261
|
+
"height-promotional": "var(--theme-header-main-header-height)",
|
|
262
|
+
"height-boutique": "var(--theme-header-main-header-height)",
|
|
263
|
+
"height-split": "var(--theme-header-main-header-height)",
|
|
264
|
+
"height-classic": "var(--theme-header-main-header-height)",
|
|
265
|
+
"height-mega": "var(--theme-header-main-header-height)",
|
|
266
|
+
"height-minimal": "var(--theme-header-main-header-height)",
|
|
267
|
+
"padding-y": "var(--theme-space-4)",
|
|
268
|
+
"padding-y-promotional": "var(--theme-header-main-header-padding-y)",
|
|
269
|
+
"padding-y-boutique": "var(--theme-header-main-header-padding-y)",
|
|
270
|
+
"padding-y-split": "var(--theme-header-main-header-padding-y)",
|
|
271
|
+
"padding-y-classic": "var(--theme-header-main-header-padding-y)",
|
|
272
|
+
"padding-y-mega": "var(--theme-header-main-header-padding-y)",
|
|
273
|
+
"padding-y-minimal": "var(--theme-header-main-header-padding-y)",
|
|
274
|
+
"padding-x": "var(--theme-space-4)",
|
|
275
|
+
"padding-x-promotional": "var(--theme-header-main-header-padding-x)",
|
|
276
|
+
"padding-x-boutique": "var(--theme-header-main-header-padding-x)",
|
|
277
|
+
"padding-x-split": "var(--theme-header-main-header-padding-x)",
|
|
278
|
+
"padding-x-classic": "var(--theme-header-main-header-padding-x)",
|
|
279
|
+
"padding-x-mega": "var(--theme-header-main-header-padding-x)",
|
|
280
|
+
"padding-x-minimal": "var(--theme-header-main-header-padding-x)",
|
|
281
|
+
"font-size": "var(--theme-font-size-sm)",
|
|
282
|
+
"font-size-promotional": "var(--theme-header-zones-main-header-font-size)",
|
|
283
|
+
"font-size-boutique": "var(--theme-header-zones-main-header-font-size)",
|
|
284
|
+
"font-size-split": "var(--theme-header-zones-main-header-font-size)",
|
|
285
|
+
"font-size-classic": "var(--theme-header-zones-main-header-font-size)",
|
|
286
|
+
"font-size-mega": "var(--theme-header-zones-main-header-font-size)",
|
|
287
|
+
"font-size-minimal": "var(--theme-header-zones-main-header-font-size)"
|
|
288
|
+
},
|
|
289
|
+
"bottom-bar": {
|
|
290
|
+
"background": "var(--theme-color-background-secondary)",
|
|
291
|
+
"background-promotional": "var(--theme-header-zones-bottom-bar-background)",
|
|
292
|
+
"background-boutique": "var(--theme-header-zones-bottom-bar-background)",
|
|
293
|
+
"background-split": "var(--theme-header-zones-bottom-bar-background)",
|
|
294
|
+
"background-classic": "var(--theme-header-zones-bottom-bar-background)",
|
|
295
|
+
"background-mega": "var(--theme-header-zones-bottom-bar-background)",
|
|
296
|
+
"background-minimal": "var(--theme-header-zones-bottom-bar-background)",
|
|
297
|
+
"text-color": "var(--theme-color-text)",
|
|
298
|
+
"text-color-promotional": "var(--theme-header-bottom-bar-text-color)",
|
|
299
|
+
"text-color-boutique": "var(--theme-header-bottom-bar-text-color)",
|
|
300
|
+
"text-color-split": "var(--theme-header-bottom-bar-text-color)",
|
|
301
|
+
"text-color-classic": "var(--theme-header-bottom-bar-text-color)",
|
|
302
|
+
"text-color-mega": "var(--theme-header-bottom-bar-text-color)",
|
|
303
|
+
"text-color-minimal": "var(--theme-header-bottom-bar-text-color)",
|
|
304
|
+
"border-color": "var(--theme-color-border)",
|
|
305
|
+
"border-color-promotional": "var(--theme-header-bottom-bar-border-color)",
|
|
306
|
+
"border-color-boutique": "var(--theme-header-bottom-bar-border-color)",
|
|
307
|
+
"border-color-split": "var(--theme-header-bottom-bar-border-color)",
|
|
308
|
+
"border-color-classic": "var(--theme-header-bottom-bar-border-color)",
|
|
309
|
+
"border-color-mega": "var(--theme-header-bottom-bar-border-color)",
|
|
310
|
+
"border-color-minimal": "var(--theme-header-bottom-bar-border-color)",
|
|
311
|
+
"height": "50px",
|
|
312
|
+
"height-promotional": "var(--theme-header-bottom-bar-height)",
|
|
313
|
+
"height-boutique": "var(--theme-header-bottom-bar-height)",
|
|
314
|
+
"height-split": "var(--theme-header-bottom-bar-height)",
|
|
315
|
+
"height-classic": "var(--theme-header-bottom-bar-height)",
|
|
316
|
+
"height-mega": "var(--theme-header-bottom-bar-height)",
|
|
317
|
+
"height-minimal": "var(--theme-header-bottom-bar-height)",
|
|
318
|
+
"padding-y": "var(--theme-space-3)",
|
|
319
|
+
"padding-y-promotional": "var(--theme-header-bottom-bar-padding-y)",
|
|
320
|
+
"padding-y-boutique": "var(--theme-header-bottom-bar-padding-y)",
|
|
321
|
+
"padding-y-split": "var(--theme-header-bottom-bar-padding-y)",
|
|
322
|
+
"padding-y-classic": "var(--theme-header-bottom-bar-padding-y)",
|
|
323
|
+
"padding-y-mega": "var(--theme-header-bottom-bar-padding-y)",
|
|
324
|
+
"padding-y-minimal": "var(--theme-header-bottom-bar-padding-y)",
|
|
325
|
+
"padding-x": "var(--theme-space-4)",
|
|
326
|
+
"padding-x-promotional": "var(--theme-header-bottom-bar-padding-x)",
|
|
327
|
+
"padding-x-boutique": "var(--theme-header-bottom-bar-padding-x)",
|
|
328
|
+
"padding-x-split": "var(--theme-header-bottom-bar-padding-x)",
|
|
329
|
+
"padding-x-classic": "var(--theme-header-bottom-bar-padding-x)",
|
|
330
|
+
"padding-x-mega": "var(--theme-header-bottom-bar-padding-x)",
|
|
331
|
+
"padding-x-minimal": "var(--theme-header-bottom-bar-padding-x)",
|
|
332
|
+
"font-size": "var(--theme-font-size-sm)",
|
|
333
|
+
"font-size-promotional": "var(--theme-header-zones-bottom-bar-font-size)",
|
|
334
|
+
"font-size-boutique": "var(--theme-header-zones-bottom-bar-font-size)",
|
|
335
|
+
"font-size-split": "var(--theme-header-zones-bottom-bar-font-size)",
|
|
336
|
+
"font-size-classic": "var(--theme-header-zones-bottom-bar-font-size)",
|
|
337
|
+
"font-size-mega": "var(--theme-header-zones-bottom-bar-font-size)",
|
|
338
|
+
"font-size-minimal": "var(--theme-header-zones-bottom-bar-font-size)"
|
|
339
|
+
},
|
|
340
|
+
"mega-menu-bar": {
|
|
341
|
+
"background": "var(--theme-color-background-secondary)",
|
|
342
|
+
"background-promotional": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
343
|
+
"background-boutique": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
344
|
+
"background-split": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
345
|
+
"background-classic": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
346
|
+
"background-mega": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
347
|
+
"background-minimal": "var(--theme-header-zones-mega-menu-bar-background)",
|
|
348
|
+
"text-color": "var(--theme-color-text)",
|
|
349
|
+
"text-color-promotional": "var(--theme-header-mega-menu-bar-text-color)",
|
|
350
|
+
"text-color-boutique": "var(--theme-header-mega-menu-bar-text-color)",
|
|
351
|
+
"text-color-split": "var(--theme-header-mega-menu-bar-text-color)",
|
|
352
|
+
"text-color-classic": "var(--theme-header-mega-menu-bar-text-color)",
|
|
353
|
+
"text-color-mega": "var(--theme-header-mega-menu-bar-text-color)",
|
|
354
|
+
"text-color-minimal": "var(--theme-header-mega-menu-bar-text-color)",
|
|
355
|
+
"border-color": "var(--theme-color-border)",
|
|
356
|
+
"border-color-promotional": "var(--theme-header-mega-menu-bar-border-color)",
|
|
357
|
+
"border-color-boutique": "var(--theme-header-mega-menu-bar-border-color)",
|
|
358
|
+
"border-color-split": "var(--theme-header-mega-menu-bar-border-color)",
|
|
359
|
+
"border-color-classic": "var(--theme-header-mega-menu-bar-border-color)",
|
|
360
|
+
"border-color-mega": "var(--theme-header-mega-menu-bar-border-color)",
|
|
361
|
+
"border-color-minimal": "var(--theme-header-mega-menu-bar-border-color)",
|
|
362
|
+
"height": "60px",
|
|
363
|
+
"height-promotional": "var(--theme-header-mega-menu-bar-height)",
|
|
364
|
+
"height-boutique": "var(--theme-header-mega-menu-bar-height)",
|
|
365
|
+
"height-split": "var(--theme-header-mega-menu-bar-height)",
|
|
366
|
+
"height-classic": "var(--theme-header-mega-menu-bar-height)",
|
|
367
|
+
"height-mega": "var(--theme-header-mega-menu-bar-height)",
|
|
368
|
+
"height-minimal": "var(--theme-header-mega-menu-bar-height)",
|
|
369
|
+
"padding-y": "var(--theme-space-4)",
|
|
370
|
+
"padding-y-promotional": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
371
|
+
"padding-y-boutique": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
372
|
+
"padding-y-split": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
373
|
+
"padding-y-classic": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
374
|
+
"padding-y-mega": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
375
|
+
"padding-y-minimal": "var(--theme-header-mega-menu-bar-padding-y)",
|
|
376
|
+
"padding-x": "var(--theme-space-4)",
|
|
377
|
+
"padding-x-promotional": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
378
|
+
"padding-x-boutique": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
379
|
+
"padding-x-split": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
380
|
+
"padding-x-classic": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
381
|
+
"padding-x-mega": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
382
|
+
"padding-x-minimal": "var(--theme-header-mega-menu-bar-padding-x)",
|
|
383
|
+
"font-size": "var(--theme-font-size-sm)",
|
|
384
|
+
"font-size-promotional": "var(--theme-header-zones-mega-menu-bar-font-size)",
|
|
385
|
+
"font-size-boutique": "var(--theme-header-zones-mega-menu-bar-font-size)",
|
|
386
|
+
"font-size-split": "var(--theme-header-zones-mega-menu-bar-font-size)",
|
|
387
|
+
"font-size-classic": "var(--theme-header-zones-mega-menu-bar-font-size)",
|
|
388
|
+
"font-size-mega": "var(--theme-header-zones-mega-menu-bar-font-size)",
|
|
389
|
+
"font-size-minimal": "var(--theme-header-zones-mega-menu-bar-font-size)"
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"footer": {
|
|
394
|
+
"background": "var(--theme-footer-background)",
|
|
395
|
+
"text-color": "var(--theme-color-text-inverse)",
|
|
396
|
+
"border-color": "var(--theme-color-border)",
|
|
397
|
+
"link-color": "var(--theme-color-text-inverse)",
|
|
398
|
+
"link-hover-color": "var(--theme-color-primary)",
|
|
399
|
+
"heading-color": "var(--theme-color-text-inverse)",
|
|
400
|
+
"muted-color": "var(--theme-color-text-muted)",
|
|
401
|
+
"padding-top": "var(--theme-space-12)",
|
|
402
|
+
"padding-bottom": "var(--theme-space-8)",
|
|
403
|
+
"column-gap": "var(--theme-space-8)",
|
|
404
|
+
"zones": {
|
|
405
|
+
"top": {
|
|
406
|
+
"background": "var(--theme-color-background-secondary)",
|
|
407
|
+
"text-color": "var(--theme-color-text-inverse)",
|
|
408
|
+
"border-color": "var(--theme-color-border-light)",
|
|
409
|
+
"padding-y": "var(--theme-space-12)"
|
|
410
|
+
},
|
|
411
|
+
"main": {
|
|
412
|
+
"background": "var(--theme-footer-background)",
|
|
413
|
+
"text-color": "var(--theme-color-text-inverse)",
|
|
414
|
+
"padding-y": "var(--theme-space-8)"
|
|
415
|
+
},
|
|
416
|
+
"bottom": {
|
|
417
|
+
"background": "var(--theme-color-background-secondary)",
|
|
418
|
+
"text-color": "var(--theme-color-text-inverse)",
|
|
419
|
+
"border-color": "var(--theme-color-border-light)",
|
|
420
|
+
"padding-y": "var(--theme-space-6)",
|
|
421
|
+
"font-size": "var(--theme-font-size-sm)"
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"search": {
|
|
426
|
+
"input-bg": "var(--theme-color-surface)",
|
|
427
|
+
"input-border": "var(--theme-color-border)",
|
|
428
|
+
"input-color": "var(--theme-color-text)",
|
|
429
|
+
"input-placeholder-color": "var(--theme-color-text-muted)",
|
|
430
|
+
"input-focus-border": "var(--theme-color-primary)",
|
|
431
|
+
"input-focus-shadow": "0 0 0 3px var(--theme-color-primary-light)",
|
|
432
|
+
"input-radius": "var(--theme-radius-md)",
|
|
433
|
+
"input-padding-x": "var(--theme-space-4)",
|
|
434
|
+
"input-padding-y": "var(--theme-space-2)",
|
|
435
|
+
"btn-bg": "var(--theme-color-primary)",
|
|
436
|
+
"btn-color": "var(--theme-color-text-inverse)",
|
|
437
|
+
"btn-hover-bg": "var(--theme-color-primary-hover)",
|
|
438
|
+
"btn-radius": "var(--theme-radius-md)",
|
|
439
|
+
"dropdown-bg": "var(--theme-color-surface)",
|
|
440
|
+
"dropdown-border": "var(--theme-color-border)",
|
|
441
|
+
"dropdown-shadow": "var(--theme-shadow-xl)",
|
|
442
|
+
"dropdown-radius": "var(--theme-radius-lg)",
|
|
443
|
+
"results-bg": "var(--theme-color-background-secondary)",
|
|
444
|
+
"results-item-hover-bg": "var(--theme-color-surface-hover)",
|
|
445
|
+
"results-item-padding": "var(--theme-space-3)",
|
|
446
|
+
"mobile-input-bg": "var(--theme-color-surface)",
|
|
447
|
+
"mobile-input-border": "var(--theme-color-border)",
|
|
448
|
+
"mobile-input-color": "var(--theme-color-text)",
|
|
449
|
+
"mobile-input-placeholder-color": "var(--theme-color-text-muted)",
|
|
450
|
+
"mobile-input-focus-border": "var(--theme-color-primary)",
|
|
451
|
+
"mobile-input-radius": "var(--theme-radius-md)",
|
|
452
|
+
"mobile-input-padding": "var(--theme-space-3)",
|
|
453
|
+
"mobile-btn-bg": "var(--theme-color-primary)",
|
|
454
|
+
"mobile-btn-color": "var(--theme-color-text-inverse)",
|
|
455
|
+
"mobile-btn-hover-bg": "var(--theme-color-primary-hover)",
|
|
456
|
+
"mobile-btn-radius": "var(--theme-radius-md)",
|
|
457
|
+
"mobile-btn-size": "44px",
|
|
458
|
+
"mobile-gap": "var(--theme-space-2)",
|
|
459
|
+
"mobile-margin-bottom": "var(--theme-space-4)"
|
|
460
|
+
},
|
|
461
|
+
"button-primary": {
|
|
462
|
+
"solid-bg": "var(--theme-color-primary)",
|
|
463
|
+
"solid-bg-hover": "var(--theme-color-primary-hover)",
|
|
464
|
+
"solid-text": "var(--theme-color-text-inverse)",
|
|
465
|
+
"solid-border": "var(--theme-color-primary)",
|
|
466
|
+
"outline-bg": "transparent",
|
|
467
|
+
"outline-bg-hover": "var(--theme-color-primary-light)",
|
|
468
|
+
"outline-text": "var(--theme-color-primary)",
|
|
469
|
+
"outline-border": "var(--theme-color-primary)",
|
|
470
|
+
"ghost-bg": "transparent",
|
|
471
|
+
"ghost-bg-hover": "var(--theme-color-primary-light)",
|
|
472
|
+
"ghost-text": "var(--theme-color-primary)",
|
|
473
|
+
"focus-ring-color": "var(--theme-color-primary-light)"
|
|
474
|
+
},
|
|
475
|
+
"button-secondary": {
|
|
476
|
+
"solid-bg": "var(--theme-color-secondary)",
|
|
477
|
+
"solid-bg-hover": "var(--theme-color-secondary-hover)",
|
|
478
|
+
"solid-text": "var(--theme-color-text-inverse)",
|
|
479
|
+
"solid-border": "var(--theme-color-secondary)",
|
|
480
|
+
"outline-bg": "transparent",
|
|
481
|
+
"outline-bg-hover": "rgba(100, 116, 139, 0.1)",
|
|
482
|
+
"outline-text": "var(--theme-color-secondary)",
|
|
483
|
+
"outline-border": "var(--theme-color-secondary)",
|
|
484
|
+
"ghost-bg": "transparent",
|
|
485
|
+
"ghost-bg-hover": "rgba(100, 116, 139, 0.1)",
|
|
486
|
+
"ghost-text": "var(--theme-color-secondary)",
|
|
487
|
+
"focus-ring-color": "rgba(100, 116, 139, 0.3)"
|
|
488
|
+
},
|
|
489
|
+
"button-neutral": {
|
|
490
|
+
"solid-bg": "var(--theme-color-text)",
|
|
491
|
+
"solid-bg-hover": "#374151",
|
|
492
|
+
"solid-text": "var(--theme-color-text-inverse)",
|
|
493
|
+
"solid-border": "var(--theme-color-text)",
|
|
494
|
+
"outline-bg": "transparent",
|
|
495
|
+
"outline-bg-hover": "var(--theme-color-surface-hover)",
|
|
496
|
+
"outline-text": "var(--theme-color-text)",
|
|
497
|
+
"outline-border": "var(--theme-color-border)",
|
|
498
|
+
"ghost-bg": "transparent",
|
|
499
|
+
"ghost-bg-hover": "var(--theme-color-surface-hover)",
|
|
500
|
+
"ghost-text": "var(--theme-color-text)",
|
|
501
|
+
"focus-ring-color": "var(--theme-color-border)"
|
|
502
|
+
},
|
|
503
|
+
"button-danger": {
|
|
504
|
+
"solid-bg": "var(--theme-color-error)",
|
|
505
|
+
"solid-bg-hover": "#dc2626",
|
|
506
|
+
"solid-text": "var(--theme-color-text-inverse)",
|
|
507
|
+
"solid-border": "var(--theme-color-error)",
|
|
508
|
+
"outline-bg": "transparent",
|
|
509
|
+
"outline-bg-hover": "var(--theme-color-error-light)",
|
|
510
|
+
"outline-text": "var(--theme-color-error)",
|
|
511
|
+
"outline-border": "var(--theme-color-error)",
|
|
512
|
+
"ghost-bg": "transparent",
|
|
513
|
+
"ghost-bg-hover": "var(--theme-color-error-light)",
|
|
514
|
+
"ghost-text": "var(--theme-color-error)",
|
|
515
|
+
"focus-ring-color": "var(--theme-color-error-light)"
|
|
516
|
+
},
|
|
517
|
+
"card-default": {
|
|
518
|
+
"bg": "var(--theme-color-surface)",
|
|
519
|
+
"border-width": "0",
|
|
520
|
+
"border-color": "transparent",
|
|
521
|
+
"shadow": "var(--theme-shadow-sm)",
|
|
522
|
+
"shadow-hover": "var(--theme-shadow-lg)"
|
|
523
|
+
},
|
|
524
|
+
"card-elevated": {
|
|
525
|
+
"bg": "var(--theme-color-surface)",
|
|
526
|
+
"border-width": "0",
|
|
527
|
+
"border-color": "transparent",
|
|
528
|
+
"shadow": "var(--theme-shadow-md)",
|
|
529
|
+
"shadow-hover": "var(--theme-shadow-xl)"
|
|
530
|
+
},
|
|
531
|
+
"card-bordered": {
|
|
532
|
+
"bg": "var(--theme-color-surface)",
|
|
533
|
+
"border-width": "var(--theme-border-width-1)",
|
|
534
|
+
"border-color": "var(--theme-color-border)",
|
|
535
|
+
"shadow": "none",
|
|
536
|
+
"shadow-hover": "none"
|
|
537
|
+
},
|
|
538
|
+
"card-minimal": {
|
|
539
|
+
"bg": "transparent",
|
|
540
|
+
"border-width": "0",
|
|
541
|
+
"border-color": "transparent",
|
|
542
|
+
"shadow": "none",
|
|
543
|
+
"shadow-hover": "none"
|
|
544
|
+
},
|
|
545
|
+
"elements": {
|
|
546
|
+
"hero": {
|
|
547
|
+
"min-height": "24rem",
|
|
548
|
+
"padding-y": "var(--theme-space-16)",
|
|
549
|
+
"padding-x": "var(--theme-space-4)",
|
|
550
|
+
"title-size": "var(--theme-font-size-4xl)",
|
|
551
|
+
"subtitle-size": "var(--theme-font-size-xl)",
|
|
552
|
+
"text-color": "var(--theme-color-text-inverse)",
|
|
553
|
+
"overlay-color": "var(--theme-color-overlay)"
|
|
554
|
+
},
|
|
555
|
+
"button": {
|
|
556
|
+
"font-family": "var(--theme-font-family-body)",
|
|
557
|
+
"font-weight": "var(--theme-font-weight-medium)",
|
|
558
|
+
"font-size-sm": "var(--theme-font-size-sm)",
|
|
559
|
+
"font-size-md": "var(--theme-font-size-base)",
|
|
560
|
+
"font-size-lg": "var(--theme-font-size-lg)",
|
|
561
|
+
"line-height": "var(--theme-line-height-normal)",
|
|
562
|
+
"letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
563
|
+
"text-transform": "none",
|
|
564
|
+
"padding-x-sm": "var(--theme-space-3)",
|
|
565
|
+
"padding-y-sm": "var(--theme-space-1)",
|
|
566
|
+
"padding-x-md": "var(--theme-space-4)",
|
|
567
|
+
"padding-y-md": "var(--theme-space-2)",
|
|
568
|
+
"padding-x-lg": "var(--theme-space-6)",
|
|
569
|
+
"padding-y-lg": "var(--theme-space-3)",
|
|
570
|
+
"radius": "var(--theme-radius-md)",
|
|
571
|
+
"radius-pill": "var(--theme-radius-full)",
|
|
572
|
+
"border-width": "var(--theme-border-width-1)",
|
|
573
|
+
"transition-duration": "var(--theme-transition-duration-fast)",
|
|
574
|
+
"transition-easing": "var(--theme-transition-easing-default)",
|
|
575
|
+
"focus-ring-width": "3px",
|
|
576
|
+
"focus-ring-offset": "2px",
|
|
577
|
+
"disabled-opacity": "0.5",
|
|
578
|
+
"icon-gap": "var(--theme-space-2)"
|
|
579
|
+
},
|
|
580
|
+
"card": {
|
|
581
|
+
"bg": "var(--theme-color-surface)",
|
|
582
|
+
"border-color": "var(--theme-color-border)",
|
|
583
|
+
"border-width": "var(--theme-border-width-1)",
|
|
584
|
+
"radius": "var(--theme-radius-lg)",
|
|
585
|
+
"shadow": "var(--theme-shadow-sm)",
|
|
586
|
+
"shadow-hover": "var(--theme-shadow-md)",
|
|
587
|
+
"padding": "var(--theme-space-4)",
|
|
588
|
+
"padding-sm": "var(--theme-space-3)",
|
|
589
|
+
"padding-lg": "var(--theme-space-6)",
|
|
590
|
+
"gap": "var(--theme-space-4)",
|
|
591
|
+
"transition-duration": "var(--theme-transition-duration-base)",
|
|
592
|
+
"transition-easing": "var(--theme-transition-easing-default)",
|
|
593
|
+
"title-font-family": "var(--theme-font-family-body)",
|
|
594
|
+
"title-font-size": "var(--theme-font-size-base)",
|
|
595
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
596
|
+
"title-line-height": "var(--theme-line-height-tight)",
|
|
597
|
+
"title-color": "var(--theme-color-text)",
|
|
598
|
+
"text-font-size": "var(--theme-font-size-sm)",
|
|
599
|
+
"text-color": "var(--theme-color-text-muted)",
|
|
600
|
+
"text-line-height": "var(--theme-line-height-normal)",
|
|
601
|
+
"meta-font-size": "var(--theme-font-size-xs)",
|
|
602
|
+
"meta-color": "var(--theme-color-text-muted)",
|
|
603
|
+
"image-radius": "var(--theme-radius-md)",
|
|
604
|
+
"image-bg": "var(--theme-color-background-secondary)",
|
|
605
|
+
"image-scale-hover": "1.05"
|
|
606
|
+
},
|
|
607
|
+
"divider": {
|
|
608
|
+
"color": "var(--theme-color-border)",
|
|
609
|
+
"thickness": "var(--theme-border-width-1)",
|
|
610
|
+
"spacing": "var(--theme-space-5)"
|
|
611
|
+
},
|
|
612
|
+
"form": {
|
|
613
|
+
"input-bg": "var(--theme-color-surface)",
|
|
614
|
+
"input-border": "var(--theme-color-border)",
|
|
615
|
+
"input-focus-border": "var(--theme-color-primary)",
|
|
616
|
+
"input-radius": "var(--theme-radius-md)",
|
|
617
|
+
"input-padding": "var(--theme-space-3)",
|
|
618
|
+
"input-disabled-bg": "var(--theme-color-background-secondary)",
|
|
619
|
+
"input-placeholder-color": "var(--theme-color-text-muted)",
|
|
620
|
+
"label-color": "var(--theme-color-text)",
|
|
621
|
+
"label-size": "var(--theme-font-size-sm)",
|
|
622
|
+
"error-color": "var(--theme-color-error)",
|
|
623
|
+
"help-color": "var(--theme-color-text-muted)",
|
|
624
|
+
"primary-color": "var(--theme-color-primary)",
|
|
625
|
+
"primary-hover": "var(--theme-color-primary-hover)",
|
|
626
|
+
"success-color": "var(--theme-color-success)",
|
|
627
|
+
"warning-color": "var(--theme-color-warning)",
|
|
628
|
+
"text-color": "var(--theme-color-text)",
|
|
629
|
+
"text-muted": "var(--theme-color-text-muted)",
|
|
630
|
+
"bg-color": "var(--theme-color-surface)",
|
|
631
|
+
"bg-light": "var(--theme-color-background-secondary)",
|
|
632
|
+
"border-color": "var(--theme-color-border)",
|
|
633
|
+
"focus-shadow": "0 0 0 3px var(--theme-color-primary-light)",
|
|
634
|
+
"title-size": "var(--theme-font-size-xl)",
|
|
635
|
+
"heading-size": "var(--theme-font-size-lg)",
|
|
636
|
+
"base-size": "var(--theme-font-size-base)",
|
|
637
|
+
"small-size": "var(--theme-font-size-sm)",
|
|
638
|
+
"tiny-size": "var(--theme-font-size-xs)",
|
|
639
|
+
"font-weight-bold": "var(--theme-font-weight-semibold)",
|
|
640
|
+
"font-weight-medium": "var(--theme-font-weight-medium)",
|
|
641
|
+
"line-height-relaxed": "var(--theme-line-height-relaxed)",
|
|
642
|
+
"spacing-lg": "var(--theme-space-6)",
|
|
643
|
+
"spacing-md": "var(--theme-space-4)",
|
|
644
|
+
"spacing-sm": "var(--theme-space-3)",
|
|
645
|
+
"spacing-xs": "var(--theme-space-2)",
|
|
646
|
+
"container-max-width": "720px",
|
|
647
|
+
"container-padding": "var(--theme-space-6)",
|
|
648
|
+
"shadow": "var(--theme-shadow-sm)",
|
|
649
|
+
"transition": "all 0.2s ease",
|
|
650
|
+
"button-padding-x": "var(--theme-space-6)",
|
|
651
|
+
"button-padding-y": "var(--theme-space-3)",
|
|
652
|
+
"button-radius": "var(--theme-radius-md)",
|
|
653
|
+
"checkbox-size": "1.25rem",
|
|
654
|
+
"checkbox-radius": "var(--theme-radius-sm)",
|
|
655
|
+
"radio-size": "1.25rem",
|
|
656
|
+
"star-empty-color": "var(--theme-color-border)",
|
|
657
|
+
"star-filled-color": "#fbbf24",
|
|
658
|
+
"nps-button-height": "48px",
|
|
659
|
+
"likert-min-width": "80px",
|
|
660
|
+
"progress-height": "8px",
|
|
661
|
+
"step-circle-size": "36px",
|
|
662
|
+
"step-circle-size-mobile": "32px"
|
|
663
|
+
},
|
|
664
|
+
"accordion": {
|
|
665
|
+
"header-bg": "var(--theme-color-surface)",
|
|
666
|
+
"header-hover-bg": "var(--theme-color-surface-hover)",
|
|
667
|
+
"border": "var(--theme-color-border)",
|
|
668
|
+
"content-bg": "var(--theme-color-background)",
|
|
669
|
+
"icon-color": "var(--theme-color-text-muted)",
|
|
670
|
+
"padding": "var(--theme-space-4)"
|
|
671
|
+
},
|
|
672
|
+
"modal": {
|
|
673
|
+
"backdrop-color": "var(--theme-color-overlay)",
|
|
674
|
+
"bg": "var(--theme-color-surface)",
|
|
675
|
+
"radius": "var(--theme-radius-xl)",
|
|
676
|
+
"shadow": "var(--theme-shadow-xl)",
|
|
677
|
+
"padding": "var(--theme-space-6)",
|
|
678
|
+
"max-width": "32rem",
|
|
679
|
+
"border-width": "0",
|
|
680
|
+
"border-color": "transparent",
|
|
681
|
+
"close-button-size": "36px",
|
|
682
|
+
"close-button-color": "var(--theme-color-text-muted)",
|
|
683
|
+
"close-button-color-hover": "var(--theme-color-text)",
|
|
684
|
+
"close-button-bg": "transparent",
|
|
685
|
+
"close-button-bg-hover": "var(--theme-color-surface-hover)"
|
|
686
|
+
},
|
|
687
|
+
"countdown": {
|
|
688
|
+
"number-size": "var(--theme-font-size-4xl)",
|
|
689
|
+
"number-color": "var(--theme-color-text)",
|
|
690
|
+
"label-size": "var(--theme-font-size-sm)",
|
|
691
|
+
"label-color": "var(--theme-color-text-muted)",
|
|
692
|
+
"bg": "var(--theme-color-surface)",
|
|
693
|
+
"separator-color": "var(--theme-color-text-muted)"
|
|
694
|
+
},
|
|
695
|
+
"testimonial": {
|
|
696
|
+
"bg": "var(--theme-color-surface)",
|
|
697
|
+
"border": "var(--theme-color-border)",
|
|
698
|
+
"quote-color": "var(--theme-color-text-muted)",
|
|
699
|
+
"author-color": "var(--theme-color-text)",
|
|
700
|
+
"radius": "var(--theme-radius-lg)",
|
|
701
|
+
"shadow": "var(--theme-shadow-sm)"
|
|
702
|
+
},
|
|
703
|
+
"blog": {
|
|
704
|
+
"card-radius": "var(--theme-radius-lg)",
|
|
705
|
+
"card-shadow": "var(--theme-shadow-sm)",
|
|
706
|
+
"meta-color": "var(--theme-color-text-muted)",
|
|
707
|
+
"title-color": "var(--theme-color-text)",
|
|
708
|
+
"excerpt-color": "var(--theme-color-text-light)"
|
|
709
|
+
},
|
|
710
|
+
"product": {
|
|
711
|
+
"card-bg": "var(--theme-color-surface)",
|
|
712
|
+
"card-radius": "var(--theme-radius-lg)",
|
|
713
|
+
"card-border-width": "0",
|
|
714
|
+
"card-border-color": "var(--theme-color-border)",
|
|
715
|
+
"card-border-color-hover": "var(--theme-color-primary)",
|
|
716
|
+
"card-shadow": "var(--theme-shadow-sm)",
|
|
717
|
+
"card-shadow-hover": "var(--theme-shadow-lg)",
|
|
718
|
+
"card-padding": "0",
|
|
719
|
+
"card-gap": "0",
|
|
720
|
+
"card-transition-duration": "var(--theme-transition-duration-base)",
|
|
721
|
+
"card-transition-easing": "var(--theme-transition-easing-default)",
|
|
722
|
+
"card-hover-transform": "translateY(-4px)",
|
|
723
|
+
|
|
724
|
+
"image-aspect-ratio": "1 / 1",
|
|
725
|
+
"image-object-fit": "cover",
|
|
726
|
+
"image-bg": "var(--theme-color-background-secondary)",
|
|
727
|
+
"image-radius": "0",
|
|
728
|
+
"image-zoom-scale": "1.08",
|
|
729
|
+
"image-transition-duration": "var(--theme-transition-duration-slow)",
|
|
730
|
+
"image-overlay-bg": "rgba(0, 0, 0, 0.03)",
|
|
731
|
+
"image-overlay-opacity": "0",
|
|
732
|
+
"image-overlay-opacity-hover": "1",
|
|
733
|
+
|
|
734
|
+
"content-padding": "var(--theme-space-4)",
|
|
735
|
+
"content-gap": "var(--theme-space-2)",
|
|
736
|
+
|
|
737
|
+
"title-font-family": "var(--theme-font-family-body)",
|
|
738
|
+
"title-font-size": "var(--theme-font-size-base)",
|
|
739
|
+
"title-font-weight": "var(--theme-font-weight-medium)",
|
|
740
|
+
"title-line-height": "var(--theme-line-height-tight)",
|
|
741
|
+
"title-color": "var(--theme-color-text)",
|
|
742
|
+
"title-color-hover": "var(--theme-color-primary)",
|
|
743
|
+
"title-max-lines": "2",
|
|
744
|
+
|
|
745
|
+
"price-font-size": "var(--theme-font-size-lg)",
|
|
746
|
+
"price-font-weight": "var(--theme-font-weight-bold)",
|
|
747
|
+
"price-color": "var(--theme-color-text)",
|
|
748
|
+
"price-gap": "var(--theme-space-2)",
|
|
749
|
+
"sale-price-color": "var(--theme-color-error)",
|
|
750
|
+
"original-price-font-size": "var(--theme-font-size-sm)",
|
|
751
|
+
"original-price-color": "var(--theme-color-text-muted)",
|
|
752
|
+
"original-price-decoration": "line-through",
|
|
753
|
+
"original-price-opacity": "0.7",
|
|
754
|
+
|
|
755
|
+
"badge-radius": "var(--theme-radius-sm)",
|
|
756
|
+
"badge-padding-x": "var(--theme-space-2)",
|
|
757
|
+
"badge-padding-y": "var(--theme-space-1)",
|
|
758
|
+
"badge-font-size": "var(--theme-font-size-xs)",
|
|
759
|
+
"badge-font-weight": "var(--theme-font-weight-semibold)",
|
|
760
|
+
"badge-sale-bg": "var(--theme-color-error)",
|
|
761
|
+
"badge-sale-color": "#ffffff",
|
|
762
|
+
"badge-new-bg": "var(--theme-color-primary)",
|
|
763
|
+
"badge-new-color": "#ffffff",
|
|
764
|
+
"badge-soldout-bg": "var(--theme-color-text-muted)",
|
|
765
|
+
"badge-soldout-color": "#ffffff",
|
|
766
|
+
|
|
767
|
+
"button-width": "100%",
|
|
768
|
+
"button-radius": "var(--theme-radius-base)",
|
|
769
|
+
"button-padding-x": "var(--theme-space-4)",
|
|
770
|
+
"button-padding-y": "var(--theme-space-2)",
|
|
771
|
+
"button-font-size": "var(--theme-font-size-sm)",
|
|
772
|
+
"button-font-weight": "var(--theme-font-weight-medium)",
|
|
773
|
+
|
|
774
|
+
"actions-offset": "var(--theme-space-2)",
|
|
775
|
+
"actions-gap": "var(--theme-space-2)",
|
|
776
|
+
"actions-opacity": "0",
|
|
777
|
+
"actions-opacity-hover": "1",
|
|
778
|
+
"actions-btn-bg": "var(--theme-color-surface)",
|
|
779
|
+
"actions-btn-color": "var(--theme-color-text)",
|
|
780
|
+
"actions-btn-shadow": "var(--theme-shadow-sm)",
|
|
781
|
+
"actions-btn-radius": "var(--theme-radius-full)",
|
|
782
|
+
"actions-btn-size": "36px",
|
|
783
|
+
|
|
784
|
+
"rating-star-size": "var(--theme-font-size-sm)",
|
|
785
|
+
"rating-star-filled-color": "#fbbf24",
|
|
786
|
+
"rating-star-empty-color": "var(--theme-color-border)",
|
|
787
|
+
"rating-gap": "var(--theme-space-1)",
|
|
788
|
+
|
|
789
|
+
"grid-columns-sm": "2",
|
|
790
|
+
"grid-columns-md": "3",
|
|
791
|
+
"grid-columns-lg": "4",
|
|
792
|
+
"grid-gap": "var(--theme-space-6)"
|
|
793
|
+
},
|
|
794
|
+
"voucher": {
|
|
795
|
+
"code-bg": "var(--theme-color-background-secondary)",
|
|
796
|
+
"code-border": "var(--theme-color-border)",
|
|
797
|
+
"code-font": "var(--theme-font-mono)",
|
|
798
|
+
"code-color": "var(--theme-color-text)"
|
|
799
|
+
},
|
|
800
|
+
"heading": {
|
|
801
|
+
"h1-font-family": "var(--theme-font-family-heading)",
|
|
802
|
+
"h2-font-family": "var(--theme-font-family-heading)",
|
|
803
|
+
"h3-font-family": "var(--theme-font-family-heading)",
|
|
804
|
+
"h4-font-family": "var(--theme-font-family-heading)",
|
|
805
|
+
"h5-font-family": "var(--theme-font-family-heading)",
|
|
806
|
+
"h6-font-family": "var(--theme-font-family-heading)",
|
|
807
|
+
"h1-size": "var(--theme-font-size-4xl)",
|
|
808
|
+
"h2-size": "var(--theme-font-size-3xl)",
|
|
809
|
+
"h3-size": "var(--theme-font-size-2xl)",
|
|
810
|
+
"h4-size": "var(--theme-font-size-xl)",
|
|
811
|
+
"h5-size": "var(--theme-font-size-lg)",
|
|
812
|
+
"h6-size": "var(--theme-font-size-base)",
|
|
813
|
+
"h1-line-height": "var(--theme-line-height-tight)",
|
|
814
|
+
"h2-line-height": "var(--theme-line-height-tight)",
|
|
815
|
+
"h3-line-height": "var(--theme-line-height-tight)",
|
|
816
|
+
"h4-line-height": "var(--theme-line-height-snug)",
|
|
817
|
+
"h5-line-height": "var(--theme-line-height-snug)",
|
|
818
|
+
"h6-line-height": "var(--theme-line-height-normal)",
|
|
819
|
+
"h1-letter-spacing": "var(--theme-letter-spacing-tight)",
|
|
820
|
+
"h2-letter-spacing": "var(--theme-letter-spacing-tight)",
|
|
821
|
+
"h3-letter-spacing": "var(--theme-letter-spacing-tight)",
|
|
822
|
+
"h4-letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
823
|
+
"h5-letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
824
|
+
"h6-letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
825
|
+
"h1-text-transform": "none",
|
|
826
|
+
"h2-text-transform": "none",
|
|
827
|
+
"h3-text-transform": "none",
|
|
828
|
+
"h4-text-transform": "none",
|
|
829
|
+
"h5-text-transform": "none",
|
|
830
|
+
"h6-text-transform": "none",
|
|
831
|
+
"h1-color": "var(--theme-color-text)",
|
|
832
|
+
"h2-color": "var(--theme-color-text)",
|
|
833
|
+
"h3-color": "var(--theme-color-text)",
|
|
834
|
+
"h4-color": "var(--theme-color-text)",
|
|
835
|
+
"h5-color": "var(--theme-color-text)",
|
|
836
|
+
"h6-color": "var(--theme-color-text)",
|
|
837
|
+
"h1-font-weight": "var(--theme-font-weight-bold)",
|
|
838
|
+
"h2-font-weight": "var(--theme-font-weight-bold)",
|
|
839
|
+
"h3-font-weight": "var(--theme-font-weight-bold)",
|
|
840
|
+
"h4-font-weight": "var(--theme-font-weight-bold)",
|
|
841
|
+
"h5-font-weight": "var(--theme-font-weight-bold)",
|
|
842
|
+
"h6-font-weight": "var(--theme-font-weight-bold)",
|
|
843
|
+
"h1-word-spacing": "var(--theme-word-spacing-normal)",
|
|
844
|
+
"h2-word-spacing": "var(--theme-word-spacing-normal)",
|
|
845
|
+
"h3-word-spacing": "var(--theme-word-spacing-normal)",
|
|
846
|
+
"h4-word-spacing": "var(--theme-word-spacing-normal)",
|
|
847
|
+
"h5-word-spacing": "var(--theme-word-spacing-normal)",
|
|
848
|
+
"h6-word-spacing": "var(--theme-word-spacing-normal)",
|
|
849
|
+
"h1-text-indent": "var(--theme-text-indent-none)",
|
|
850
|
+
"h2-text-indent": "var(--theme-text-indent-none)",
|
|
851
|
+
"h3-text-indent": "var(--theme-text-indent-none)",
|
|
852
|
+
"h4-text-indent": "var(--theme-text-indent-none)",
|
|
853
|
+
"h5-text-indent": "var(--theme-text-indent-none)",
|
|
854
|
+
"h6-text-indent": "var(--theme-text-indent-none)",
|
|
855
|
+
"h1-font-variant": "var(--theme-font-variant-normal)",
|
|
856
|
+
"h2-font-variant": "var(--theme-font-variant-normal)",
|
|
857
|
+
"h3-font-variant": "var(--theme-font-variant-normal)",
|
|
858
|
+
"h4-font-variant": "var(--theme-font-variant-normal)",
|
|
859
|
+
"h5-font-variant": "var(--theme-font-variant-normal)",
|
|
860
|
+
"h6-font-variant": "var(--theme-font-variant-normal)",
|
|
861
|
+
"h1-text-decoration": "var(--theme-text-decoration-none)",
|
|
862
|
+
"h2-text-decoration": "var(--theme-text-decoration-none)",
|
|
863
|
+
"h3-text-decoration": "var(--theme-text-decoration-none)",
|
|
864
|
+
"h4-text-decoration": "var(--theme-text-decoration-none)",
|
|
865
|
+
"h5-text-decoration": "var(--theme-text-decoration-none)",
|
|
866
|
+
"h6-text-decoration": "var(--theme-text-decoration-none)",
|
|
867
|
+
"h1-text-align": "var(--theme-text-align-left)",
|
|
868
|
+
"h2-text-align": "var(--theme-text-align-left)",
|
|
869
|
+
"h3-text-align": "var(--theme-text-align-left)",
|
|
870
|
+
"h4-text-align": "var(--theme-text-align-left)",
|
|
871
|
+
"h5-text-align": "var(--theme-text-align-left)",
|
|
872
|
+
"h6-text-align": "var(--theme-text-align-left)",
|
|
873
|
+
"h1-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
874
|
+
"h2-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
875
|
+
"h3-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
876
|
+
"h4-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
877
|
+
"h5-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
878
|
+
"h6-vertical-align": "var(--theme-vertical-align-baseline)",
|
|
879
|
+
"h1-direction": "var(--theme-direction-ltr)",
|
|
880
|
+
"h2-direction": "var(--theme-direction-ltr)",
|
|
881
|
+
"h3-direction": "var(--theme-direction-ltr)",
|
|
882
|
+
"h4-direction": "var(--theme-direction-ltr)",
|
|
883
|
+
"h5-direction": "var(--theme-direction-ltr)",
|
|
884
|
+
"h6-direction": "var(--theme-direction-ltr)"
|
|
885
|
+
},
|
|
886
|
+
"body": {
|
|
887
|
+
"font-family": "var(--theme-font-family-body)",
|
|
888
|
+
"font-size": "var(--theme-font-size-base)",
|
|
889
|
+
"font-weight": "var(--theme-font-weight-normal)",
|
|
890
|
+
"line-height": "var(--theme-line-height-normal)",
|
|
891
|
+
"letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
892
|
+
"word-spacing": "normal",
|
|
893
|
+
"text-indent": "0",
|
|
894
|
+
"font-variant": "normal",
|
|
895
|
+
"text-decoration": "none",
|
|
896
|
+
"text-align": "left",
|
|
897
|
+
"vertical-align": "baseline",
|
|
898
|
+
"direction": "ltr",
|
|
899
|
+
"color": "var(--theme-color-text)"
|
|
900
|
+
},
|
|
901
|
+
"body-light": {
|
|
902
|
+
"font-family": "var(--theme-font-family-body)",
|
|
903
|
+
"font-size": "var(--theme-font-size-base)",
|
|
904
|
+
"font-weight": "var(--theme-font-weight-normal)",
|
|
905
|
+
"line-height": "var(--theme-line-height-normal)",
|
|
906
|
+
"letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
907
|
+
"word-spacing": "normal",
|
|
908
|
+
"text-indent": "0",
|
|
909
|
+
"font-variant": "normal",
|
|
910
|
+
"text-decoration": "none",
|
|
911
|
+
"text-align": "left",
|
|
912
|
+
"vertical-align": "baseline",
|
|
913
|
+
"direction": "ltr",
|
|
914
|
+
"color": "var(--theme-color-text-light)"
|
|
915
|
+
},
|
|
916
|
+
"body-muted": {
|
|
917
|
+
"font-family": "var(--theme-font-family-body)",
|
|
918
|
+
"font-size": "var(--theme-font-size-base)",
|
|
919
|
+
"font-weight": "var(--theme-font-weight-normal)",
|
|
920
|
+
"line-height": "var(--theme-line-height-normal)",
|
|
921
|
+
"letter-spacing": "var(--theme-letter-spacing-normal)",
|
|
922
|
+
"word-spacing": "normal",
|
|
923
|
+
"text-indent": "0",
|
|
924
|
+
"font-variant": "normal",
|
|
925
|
+
"text-decoration": "none",
|
|
926
|
+
"text-align": "left",
|
|
927
|
+
"vertical-align": "baseline",
|
|
928
|
+
"direction": "ltr",
|
|
929
|
+
"color": "var(--theme-color-text-muted)"
|
|
930
|
+
},
|
|
931
|
+
"image": {
|
|
932
|
+
"radius": "var(--theme-radius-md)",
|
|
933
|
+
"shadow": "var(--theme-shadow-none)"
|
|
934
|
+
},
|
|
935
|
+
"gallery": {
|
|
936
|
+
"gap": "var(--theme-space-4)",
|
|
937
|
+
"radius": "var(--theme-radius-md)"
|
|
938
|
+
},
|
|
939
|
+
"alert": {
|
|
940
|
+
"padding": "var(--theme-space-4)",
|
|
941
|
+
"radius": "var(--theme-radius-base)",
|
|
942
|
+
"font-size": "var(--theme-font-size-sm)",
|
|
943
|
+
"font-weight": "var(--theme-font-weight-medium)",
|
|
944
|
+
"icon-size": "var(--theme-font-size-lg)",
|
|
945
|
+
"gap": "var(--theme-space-3)",
|
|
946
|
+
"success-bg": "var(--theme-color-success-light)",
|
|
947
|
+
"success-text": "var(--theme-color-success)",
|
|
948
|
+
"warning-bg": "var(--theme-color-warning-light)",
|
|
949
|
+
"warning-text": "var(--theme-color-warning)",
|
|
950
|
+
"error-bg": "var(--theme-color-error-light)",
|
|
951
|
+
"error-text": "var(--theme-color-error)",
|
|
952
|
+
"info-bg": "var(--theme-color-info-light)",
|
|
953
|
+
"info-text": "var(--theme-color-info)"
|
|
954
|
+
},
|
|
955
|
+
"image-accordion": {
|
|
956
|
+
"height-sm": "300px",
|
|
957
|
+
"height-md": "450px",
|
|
958
|
+
"height-lg": "600px",
|
|
959
|
+
"height-xl": "750px",
|
|
960
|
+
"gap": "var(--theme-space-4)",
|
|
961
|
+
"border-radius": "var(--theme-radius-lg)",
|
|
962
|
+
"frame-radius": "var(--theme-radius-md)",
|
|
963
|
+
"transition-duration": "300ms",
|
|
964
|
+
"transition-timing": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
965
|
+
"expand-ratio": "3",
|
|
966
|
+
"content-padding": "var(--theme-space-6)",
|
|
967
|
+
"title-size": "var(--theme-font-size-2xl)",
|
|
968
|
+
"title-color": "#ffffff",
|
|
969
|
+
"title-weight": "var(--theme-font-weight-bold)",
|
|
970
|
+
"subtitle-size": "var(--theme-font-size-base)",
|
|
971
|
+
"subtitle-color": "rgba(255, 255, 255, 0.85)",
|
|
972
|
+
"overlay-color": "#000000",
|
|
973
|
+
"overlay-opacity": "0.4",
|
|
974
|
+
"mobile-height": "250px",
|
|
975
|
+
"style-hero-bold-padding": "2.5rem",
|
|
976
|
+
"style-hero-bold-title-size": "clamp(2rem, 5vw, 3.5rem)",
|
|
977
|
+
"style-hero-bold-title-weight": "800",
|
|
978
|
+
"style-hero-bold-letter-spacing": "-0.025em",
|
|
979
|
+
"style-hero-bold-text-transform": "none",
|
|
980
|
+
"style-hero-bold-subtitle-size": "1.125rem",
|
|
981
|
+
"style-bottom-left-padding": "1.5rem",
|
|
982
|
+
"style-bottom-left-title-size": "1.25rem",
|
|
983
|
+
"style-bottom-left-subtitle-size": "0.875rem",
|
|
984
|
+
"style-bottom-right-padding": "1.5rem",
|
|
985
|
+
"style-bottom-right-title-size": "1.25rem",
|
|
986
|
+
"style-bottom-right-subtitle-size": "0.875rem",
|
|
987
|
+
"style-center-left-padding": "2rem",
|
|
988
|
+
"style-center-left-title-size": "1.75rem",
|
|
989
|
+
"style-center-left-subtitle-size": "1rem",
|
|
990
|
+
"style-center-right-padding": "2rem",
|
|
991
|
+
"style-center-right-title-size": "1.75rem",
|
|
992
|
+
"style-center-right-subtitle-size": "1rem",
|
|
993
|
+
"style-center-center-padding": "2rem",
|
|
994
|
+
"style-center-center-title-size": "2rem",
|
|
995
|
+
"style-center-center-subtitle-size": "1rem",
|
|
996
|
+
"style-top-left-padding": "1.5rem",
|
|
997
|
+
"style-top-left-title-size": "1.25rem",
|
|
998
|
+
"style-top-left-subtitle-size": "0.875rem",
|
|
999
|
+
"style-card-padding": "1.5rem",
|
|
1000
|
+
"style-card-panel-height": "45%",
|
|
1001
|
+
"style-card-panel-bg": "linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%)",
|
|
1002
|
+
"style-card-title-size": "1.375rem",
|
|
1003
|
+
"style-card-subtitle-size": "0.9375rem",
|
|
1004
|
+
"style-minimal-padding": "1.25rem",
|
|
1005
|
+
"style-minimal-title-size": "0.9375rem",
|
|
1006
|
+
"style-minimal-subtitle-size": "0.8125rem"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
"widgets": {
|
|
1010
|
+
"account": {
|
|
1011
|
+
"icon-size": "1.25rem",
|
|
1012
|
+
"icon-color": "var(--theme-header-icon-color)",
|
|
1013
|
+
"icon-hover-color": "var(--theme-header-icon-hover-color)",
|
|
1014
|
+
"dropdown-bg": "var(--theme-color-surface)",
|
|
1015
|
+
"dropdown-border": "var(--theme-color-border)",
|
|
1016
|
+
"dropdown-shadow": "var(--theme-shadow-lg)",
|
|
1017
|
+
"dropdown-radius": "var(--theme-radius-md)",
|
|
1018
|
+
"dropdown-padding": "var(--theme-space-2)",
|
|
1019
|
+
"link-color": "var(--theme-color-text)",
|
|
1020
|
+
"link-hover-bg": "var(--theme-color-surface-hover)",
|
|
1021
|
+
"link-padding": "var(--theme-space-2) var(--theme-space-3)",
|
|
1022
|
+
"link-radius": "var(--theme-radius-sm)"
|
|
1023
|
+
},
|
|
1024
|
+
"cart": {
|
|
1025
|
+
"icon-size": "1.25rem",
|
|
1026
|
+
"icon-color": "var(--theme-header-icon-color)",
|
|
1027
|
+
"icon-hover-color": "var(--theme-header-icon-hover-color)",
|
|
1028
|
+
"badge-bg": "var(--theme-color-primary)",
|
|
1029
|
+
"badge-color": "var(--theme-color-text-inverse)",
|
|
1030
|
+
"badge-size": "1.25rem",
|
|
1031
|
+
"badge-font-size": "var(--theme-font-size-xs)",
|
|
1032
|
+
"badge-font-weight": "var(--theme-font-weight-semibold)",
|
|
1033
|
+
"badge-offset-x": "-0.5rem",
|
|
1034
|
+
"badge-offset-y": "-0.25rem",
|
|
1035
|
+
"dropdown-bg": "var(--theme-color-surface)",
|
|
1036
|
+
"dropdown-border": "var(--theme-color-border)",
|
|
1037
|
+
"dropdown-shadow": "var(--theme-shadow-xl)",
|
|
1038
|
+
"dropdown-radius": "var(--theme-radius-lg)",
|
|
1039
|
+
"dropdown-padding": "var(--theme-space-4)",
|
|
1040
|
+
"dropdown-width": "320px",
|
|
1041
|
+
"panel-width": "420px",
|
|
1042
|
+
"overlay-bg": "var(--theme-color-overlay)",
|
|
1043
|
+
"z-index": "var(--theme-z-modal-backdrop)"
|
|
1044
|
+
},
|
|
1045
|
+
"language": {
|
|
1046
|
+
"select-bg": "var(--theme-color-surface)",
|
|
1047
|
+
"select-border": "var(--theme-color-border)",
|
|
1048
|
+
"select-color": "var(--theme-color-text)",
|
|
1049
|
+
"select-hover-bg": "var(--theme-color-surface-hover)",
|
|
1050
|
+
"select-focus-border": "var(--theme-color-primary)",
|
|
1051
|
+
"select-focus-shadow": "0 0 0 2px var(--theme-color-primary-light)",
|
|
1052
|
+
"select-radius": "var(--theme-radius-md)",
|
|
1053
|
+
"select-padding-x": "var(--theme-space-3)",
|
|
1054
|
+
"select-padding-y": "var(--theme-space-2)",
|
|
1055
|
+
"select-font-size": "var(--theme-font-size-sm)",
|
|
1056
|
+
"flag-size": "1.25em",
|
|
1057
|
+
"flag-gap": "var(--theme-space-2)"
|
|
1058
|
+
},
|
|
1059
|
+
"currency": {
|
|
1060
|
+
"select-bg": "var(--theme-color-surface)",
|
|
1061
|
+
"select-border": "var(--theme-color-border)",
|
|
1062
|
+
"select-color": "var(--theme-color-text)",
|
|
1063
|
+
"select-hover-bg": "var(--theme-color-surface-hover)",
|
|
1064
|
+
"select-hover-border": "var(--theme-color-border-hover)",
|
|
1065
|
+
"select-focus-border": "var(--theme-color-primary)",
|
|
1066
|
+
"select-focus-shadow": "0 0 0 3px var(--theme-color-primary-light)",
|
|
1067
|
+
"select-radius": "var(--theme-radius-md)",
|
|
1068
|
+
"select-padding-x": "var(--theme-space-3)",
|
|
1069
|
+
"select-padding-y": "var(--theme-space-2)",
|
|
1070
|
+
"select-font-size": "var(--theme-font-size-sm)",
|
|
1071
|
+
"select-min-width": "120px",
|
|
1072
|
+
"code-font-weight": "var(--theme-font-weight-medium)",
|
|
1073
|
+
"symbol-font-weight": "var(--theme-font-weight-medium)",
|
|
1074
|
+
"flag-size": "1.125rem",
|
|
1075
|
+
"button-gap": "var(--theme-space-2)",
|
|
1076
|
+
"button-padding-x": "var(--theme-space-3)",
|
|
1077
|
+
"button-padding-y": "var(--theme-space-2)",
|
|
1078
|
+
"button-radius": "var(--theme-radius-md)",
|
|
1079
|
+
"button-solid-bg": "var(--theme-color-primary)",
|
|
1080
|
+
"button-solid-color": "var(--theme-color-text-inverse)",
|
|
1081
|
+
"button-solid-border": "var(--theme-color-primary)",
|
|
1082
|
+
"button-outline-bg": "transparent",
|
|
1083
|
+
"button-outline-border": "var(--theme-color-border)",
|
|
1084
|
+
"button-outline-hover-bg": "var(--theme-color-surface-hover)",
|
|
1085
|
+
"button-ghost-bg": "transparent",
|
|
1086
|
+
"button-ghost-border": "transparent",
|
|
1087
|
+
"button-ghost-hover-bg": "var(--theme-color-surface-hover)",
|
|
1088
|
+
"dropdown-bg": "var(--theme-color-surface)",
|
|
1089
|
+
"dropdown-border": "var(--theme-color-border)",
|
|
1090
|
+
"dropdown-radius": "var(--theme-radius-lg)",
|
|
1091
|
+
"dropdown-shadow": "var(--theme-shadow-lg)",
|
|
1092
|
+
"dropdown-margin": "var(--theme-space-1)",
|
|
1093
|
+
"dropdown-padding": "var(--theme-space-1)",
|
|
1094
|
+
"dropdown-max-height": "300px",
|
|
1095
|
+
"dropdown-min-width": "200px",
|
|
1096
|
+
"option-padding-x": "var(--theme-space-3)",
|
|
1097
|
+
"option-padding-y": "var(--theme-space-2)",
|
|
1098
|
+
"option-gap": "var(--theme-space-2)",
|
|
1099
|
+
"option-radius": "var(--theme-radius-md)",
|
|
1100
|
+
"option-hover-bg": "var(--theme-color-surface-hover)",
|
|
1101
|
+
"option-active-bg": "var(--theme-color-primary-light)",
|
|
1102
|
+
"option-active-color": "var(--theme-color-primary)",
|
|
1103
|
+
"option-active-font-weight": "var(--theme-font-weight-medium)",
|
|
1104
|
+
"check-color": "var(--theme-color-primary)",
|
|
1105
|
+
"loading-color": "var(--theme-color-primary)",
|
|
1106
|
+
"chevron-color": "var(--theme-color-text-muted)"
|
|
1107
|
+
},
|
|
1108
|
+
"logo": {
|
|
1109
|
+
"max-height": "var(--theme-header-logo-height)",
|
|
1110
|
+
"max-width": "200px",
|
|
1111
|
+
"text-color": "var(--theme-header-text-color)",
|
|
1112
|
+
"text-font-size": "var(--theme-font-size-xl)",
|
|
1113
|
+
"text-font-weight": "var(--theme-font-weight-bold)",
|
|
1114
|
+
"text-letter-spacing": "var(--theme-letter-spacing-tight)"
|
|
1115
|
+
},
|
|
1116
|
+
"announcement": {
|
|
1117
|
+
"bar-bg": "var(--theme-color-primary)",
|
|
1118
|
+
"bar-color": "var(--theme-color-text-inverse)",
|
|
1119
|
+
"bar-padding-x": "var(--theme-space-4)",
|
|
1120
|
+
"bar-padding-y": "var(--theme-space-2)",
|
|
1121
|
+
"bar-font-size": "var(--theme-font-size-sm)",
|
|
1122
|
+
"bar-font-weight": "var(--theme-font-weight-medium)",
|
|
1123
|
+
"link-color": "var(--theme-color-text-inverse)",
|
|
1124
|
+
"link-hover-opacity": "0.8",
|
|
1125
|
+
"link-underline": "underline",
|
|
1126
|
+
"close-btn-color": "var(--theme-color-text-inverse)",
|
|
1127
|
+
"close-btn-hover-opacity": "0.7",
|
|
1128
|
+
"close-btn-size": "1.25rem",
|
|
1129
|
+
"scroll-speed": "20s",
|
|
1130
|
+
"vertical-transition-duration": "500ms",
|
|
1131
|
+
"vertical-transition-timing": "var(--theme-transition-easing-default)",
|
|
1132
|
+
"modal-max-width": "36rem",
|
|
1133
|
+
"modal-image-max-height": "300px",
|
|
1134
|
+
"modal-image-radius": "var(--theme-radius-md)",
|
|
1135
|
+
"modal-title-size": "var(--theme-font-size-xl)",
|
|
1136
|
+
"modal-title-weight": "var(--theme-font-weight-semibold)",
|
|
1137
|
+
"modal-body-size": "var(--theme-font-size-base)",
|
|
1138
|
+
"modal-body-color": "var(--theme-color-text-light)",
|
|
1139
|
+
"modal-link-btn-bg": "var(--theme-color-primary)",
|
|
1140
|
+
"modal-link-btn-color": "var(--theme-color-text-inverse)",
|
|
1141
|
+
"modal-link-btn-radius": "var(--theme-radius-md)",
|
|
1142
|
+
"modal-link-btn-padding-x": "var(--theme-space-6)",
|
|
1143
|
+
"modal-link-btn-padding-y": "var(--theme-space-3)"
|
|
1144
|
+
},
|
|
1145
|
+
"newsletter": {
|
|
1146
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1147
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1148
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1149
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1150
|
+
"description-color": "var(--theme-footer-muted-color)",
|
|
1151
|
+
"description-font-size": "var(--theme-font-size-sm)",
|
|
1152
|
+
"description-margin-bottom": "var(--theme-space-4)",
|
|
1153
|
+
"input-bg": "var(--theme-color-surface)",
|
|
1154
|
+
"input-border": "var(--theme-color-border)",
|
|
1155
|
+
"input-color": "var(--theme-color-text)",
|
|
1156
|
+
"input-placeholder-color": "var(--theme-color-text-muted)",
|
|
1157
|
+
"input-focus-border": "var(--theme-color-primary)",
|
|
1158
|
+
"input-focus-shadow": "0 0 0 2px var(--theme-color-primary-light)",
|
|
1159
|
+
"input-radius": "var(--theme-radius-md)",
|
|
1160
|
+
"input-padding-x": "var(--theme-space-4)",
|
|
1161
|
+
"input-padding-y": "var(--theme-space-3)",
|
|
1162
|
+
"button-bg": "var(--theme-color-primary)",
|
|
1163
|
+
"button-color": "var(--theme-color-text-inverse)",
|
|
1164
|
+
"button-hover-bg": "var(--theme-color-primary-dark)",
|
|
1165
|
+
"button-radius": "var(--theme-radius-md)",
|
|
1166
|
+
"button-padding-x": "var(--theme-space-6)",
|
|
1167
|
+
"button-padding-y": "var(--theme-space-3)",
|
|
1168
|
+
"button-font-weight": "var(--theme-font-weight-medium)",
|
|
1169
|
+
"success-color": "var(--theme-color-success)",
|
|
1170
|
+
"error-color": "var(--theme-color-error)",
|
|
1171
|
+
"gap": "var(--theme-space-3)"
|
|
1172
|
+
},
|
|
1173
|
+
"social": {
|
|
1174
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1175
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1176
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1177
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1178
|
+
"icon-size": "1.25rem",
|
|
1179
|
+
"icon-color": "var(--theme-footer-link-color)",
|
|
1180
|
+
"icon-hover-color": "var(--theme-color-primary)",
|
|
1181
|
+
"icon-bg": "transparent",
|
|
1182
|
+
"icon-hover-bg": "var(--theme-color-surface-hover)",
|
|
1183
|
+
"icon-padding": "var(--theme-space-2)",
|
|
1184
|
+
"icon-radius": "var(--theme-radius-full)",
|
|
1185
|
+
"gap": "var(--theme-space-3)"
|
|
1186
|
+
},
|
|
1187
|
+
"links": {
|
|
1188
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1189
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1190
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1191
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1192
|
+
"link-color": "var(--theme-footer-link-color)",
|
|
1193
|
+
"link-hover-color": "var(--theme-footer-link-hover-color)",
|
|
1194
|
+
"link-font-size": "var(--theme-font-size-sm)",
|
|
1195
|
+
"link-padding-y": "var(--theme-space-1)",
|
|
1196
|
+
"gap": "var(--theme-space-2)"
|
|
1197
|
+
},
|
|
1198
|
+
"text": {
|
|
1199
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1200
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1201
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1202
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1203
|
+
"content-color": "var(--theme-footer-muted-color)",
|
|
1204
|
+
"content-font-size": "var(--theme-font-size-sm)",
|
|
1205
|
+
"content-line-height": "var(--theme-line-height-relaxed)",
|
|
1206
|
+
"link-color": "var(--theme-footer-link-color)",
|
|
1207
|
+
"link-hover-color": "var(--theme-footer-link-hover-color)"
|
|
1208
|
+
},
|
|
1209
|
+
"payment": {
|
|
1210
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1211
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1212
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1213
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1214
|
+
"icon-height": "1.5rem",
|
|
1215
|
+
"icon-max-width": "2.5rem",
|
|
1216
|
+
"icon-opacity": "0.8",
|
|
1217
|
+
"icon-hover-opacity": "1",
|
|
1218
|
+
"icon-filter": "none",
|
|
1219
|
+
"gap": "var(--theme-space-3)"
|
|
1220
|
+
},
|
|
1221
|
+
"trust-badges": {
|
|
1222
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1223
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1224
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1225
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1226
|
+
"badge-bg": "var(--theme-color-surface)",
|
|
1227
|
+
"badge-border": "var(--theme-color-border)",
|
|
1228
|
+
"badge-radius": "var(--theme-radius-md)",
|
|
1229
|
+
"badge-padding": "var(--theme-space-3)",
|
|
1230
|
+
"badge-hover-border": "var(--theme-color-primary)",
|
|
1231
|
+
"icon-size": "1.5rem",
|
|
1232
|
+
"icon-color": "var(--theme-color-primary)",
|
|
1233
|
+
"text-color": "var(--theme-footer-text-color)",
|
|
1234
|
+
"text-font-size": "var(--theme-font-size-xs)",
|
|
1235
|
+
"gap": "var(--theme-space-3)"
|
|
1236
|
+
},
|
|
1237
|
+
"contact": {
|
|
1238
|
+
"title-color": "var(--theme-footer-text-color)",
|
|
1239
|
+
"title-font-size": "var(--theme-font-size-lg)",
|
|
1240
|
+
"title-font-weight": "var(--theme-font-weight-semibold)",
|
|
1241
|
+
"title-margin-bottom": "var(--theme-space-4)",
|
|
1242
|
+
"icon-size": "1rem",
|
|
1243
|
+
"icon-color": "var(--theme-color-primary)",
|
|
1244
|
+
"label-color": "var(--theme-footer-muted-color)",
|
|
1245
|
+
"label-font-size": "var(--theme-font-size-xs)",
|
|
1246
|
+
"value-color": "var(--theme-footer-text-color)",
|
|
1247
|
+
"value-font-size": "var(--theme-font-size-sm)",
|
|
1248
|
+
"link-color": "var(--theme-footer-link-color)",
|
|
1249
|
+
"link-hover-color": "var(--theme-footer-link-hover-color)",
|
|
1250
|
+
"item-gap": "var(--theme-space-4)",
|
|
1251
|
+
"icon-gap": "var(--theme-space-2)"
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
}
|