@rafael_dias/akoma 0.3.0 → 0.4.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/dist/index.d.ts CHANGED
@@ -33,6 +33,25 @@ padding: "none" | "sm" | "md" | "lg";
33
33
 
34
34
  declare const __VLS_component_5: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
35
35
 
36
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
37
+
38
+ declare const __VLS_component_7: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLUListElement>;
39
+
40
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
41
+ disabled: boolean;
42
+ interactive: boolean;
43
+ padding: ListRowPadding;
44
+ divider: boolean;
45
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
46
+
47
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
48
+ variant: IconButtonVariant;
49
+ size: IconButtonSize;
50
+ disabled: boolean;
51
+ loading: boolean;
52
+ type: "button" | "submit" | "reset";
53
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
54
+
36
55
  declare type __VLS_Props = {
37
56
  variant?: ButtonVariant;
38
57
  size?: ButtonSize;
@@ -42,6 +61,52 @@ declare type __VLS_Props = {
42
61
  block?: boolean;
43
62
  };
44
63
 
64
+ declare type __VLS_Props_10 = {
65
+ /** Horizontal spacing around the line */
66
+ spacing?: DividerSpacing;
67
+ /** Optional centered label */
68
+ label?: string;
69
+ vertical?: boolean;
70
+ };
71
+
72
+ declare type __VLS_Props_11 = {
73
+ /** Current value */
74
+ value?: number;
75
+ max?: number;
76
+ size?: ProgressSize;
77
+ /** CSS color for the fill (defaults to accent) */
78
+ color?: string;
79
+ label?: string;
80
+ showValue?: boolean;
81
+ };
82
+
83
+ declare type __VLS_Props_12 = {
84
+ title?: string;
85
+ };
86
+
87
+ declare type __VLS_Props_13 = {
88
+ interactive?: boolean;
89
+ disabled?: boolean;
90
+ padding?: ListRowPadding;
91
+ divider?: boolean;
92
+ };
93
+
94
+ declare type __VLS_Props_14 = {
95
+ variant?: IconButtonVariant;
96
+ size?: IconButtonSize;
97
+ disabled?: boolean;
98
+ loading?: boolean;
99
+ type?: 'button' | 'submit' | 'reset';
100
+ label: string;
101
+ };
102
+
103
+ declare type __VLS_Props_15 = {
104
+ modelValue?: boolean;
105
+ label?: string;
106
+ description?: string;
107
+ disabled?: boolean;
108
+ };
109
+
45
110
  declare type __VLS_Props_2 = {
46
111
  variant?: BadgeVariant;
47
112
  label?: string;
@@ -166,6 +231,56 @@ declare function __VLS_template_5(): {
166
231
  rootEl: HTMLDivElement;
167
232
  };
168
233
 
234
+ declare function __VLS_template_6(): {
235
+ attrs: Partial<{}>;
236
+ slots: Readonly<{
237
+ default?: () => unknown;
238
+ action?: () => unknown;
239
+ }> & {
240
+ default?: () => unknown;
241
+ action?: () => unknown;
242
+ };
243
+ refs: {};
244
+ rootEl: HTMLElement;
245
+ };
246
+
247
+ declare function __VLS_template_7(): {
248
+ attrs: Partial<{}>;
249
+ slots: {
250
+ default?(_: {}): any;
251
+ };
252
+ refs: {};
253
+ rootEl: HTMLUListElement;
254
+ };
255
+
256
+ declare function __VLS_template_8(): {
257
+ attrs: Partial<{}>;
258
+ slots: Readonly<{
259
+ leading?: () => unknown;
260
+ default?: () => unknown;
261
+ subtitle?: () => unknown;
262
+ trailing?: () => unknown;
263
+ }> & {
264
+ leading?: () => unknown;
265
+ default?: () => unknown;
266
+ subtitle?: () => unknown;
267
+ trailing?: () => unknown;
268
+ };
269
+ refs: {};
270
+ rootEl: any;
271
+ };
272
+
273
+ declare function __VLS_template_9(): {
274
+ attrs: Partial<{}>;
275
+ slots: Readonly<{
276
+ default?: () => unknown;
277
+ }> & {
278
+ default?: () => unknown;
279
+ };
280
+ refs: {};
281
+ rootEl: HTMLButtonElement;
282
+ };
283
+
169
284
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
170
285
 
171
286
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
@@ -176,6 +291,14 @@ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
176
291
 
177
292
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
178
293
 
294
+ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
295
+
296
+ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
297
+
298
+ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
299
+
300
+ declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
301
+
179
302
  declare type __VLS_WithTemplateSlots<T, S> = T & {
180
303
  new (): {
181
304
  $slots: S;
@@ -206,6 +329,30 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
206
329
  };
207
330
  };
208
331
 
332
+ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
333
+ new (): {
334
+ $slots: S;
335
+ };
336
+ };
337
+
338
+ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
339
+ new (): {
340
+ $slots: S;
341
+ };
342
+ };
343
+
344
+ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
345
+ new (): {
346
+ $slots: S;
347
+ };
348
+ };
349
+
350
+ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
351
+ new (): {
352
+ $slots: S;
353
+ };
354
+ };
355
+
209
356
  export declare const AkAmbientBg: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
210
357
  contained: boolean;
211
358
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -218,8 +365,15 @@ export declare const AkCard: __VLS_WithTemplateSlots_4<typeof __VLS_component_4,
218
365
 
219
366
  export declare const AkChip: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
220
367
 
368
+ export declare const AkDivider: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
369
+ spacing: DividerSpacing;
370
+ vertical: boolean;
371
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
372
+
221
373
  export declare const AkEmptyState: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
222
374
 
375
+ export declare const AkIconButton: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
376
+
223
377
  export declare const AkInput: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
224
378
  "update:modelValue": (value: string) => any;
225
379
  }, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
@@ -232,6 +386,10 @@ modelValue: string | number;
232
386
  required: boolean;
233
387
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
234
388
 
389
+ export declare const AkList: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
390
+
391
+ export declare const AkListRow: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
392
+
235
393
  export declare const Akoma: Plugin_2;
236
394
 
237
395
  export declare type AkomaOptions = {
@@ -239,12 +397,30 @@ export declare type AkomaOptions = {
239
397
  prefix?: string;
240
398
  };
241
399
 
400
+ export declare const AkProgress: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
401
+ size: ProgressSize;
402
+ value: number;
403
+ max: number;
404
+ showValue: boolean;
405
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
406
+
407
+ export declare const AkSectionHeader: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
408
+
242
409
  export declare const AkShimmer: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
243
410
  width: string;
244
411
  height: string;
245
412
  radius: "sm" | "md" | "lg" | "full" | string;
246
413
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
247
414
 
415
+ export declare const AkSwitch: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
416
+ "update:modelValue": (value: boolean) => any;
417
+ }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
418
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
419
+ }>, {
420
+ disabled: boolean;
421
+ modelValue: boolean;
422
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
423
+
248
424
  export declare const AkTextarea: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
249
425
  "update:modelValue": (value: string) => any;
250
426
  }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
@@ -262,6 +438,16 @@ export declare type ButtonSize = 'sm' | 'md' | 'lg';
262
438
 
263
439
  export declare type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger';
264
440
 
441
+ export declare type DividerSpacing = 'sm' | 'md' | 'lg';
442
+
443
+ export declare type IconButtonSize = 'sm' | 'md' | 'lg';
444
+
445
+ export declare type IconButtonVariant = 'ghost' | 'secondary' | 'danger';
446
+
265
447
  export declare type InputSize = 'sm' | 'md' | 'lg';
266
448
 
449
+ export declare type ListRowPadding = 'sm' | 'md';
450
+
451
+ export declare type ProgressSize = 'sm' | 'md';
452
+
267
453
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rafael_dias/akoma",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "A human Vue 3 design system with expressive App and trustworthy Site moods.",
5
5
  "type": "module",
6
6
  "author": "Rafael",
@@ -28,11 +28,13 @@
28
28
  "./style.css": "./dist/akoma.css",
29
29
  "./tokens.css": "./src/styles/tokens.css",
30
30
  "./base.css": "./src/styles/base.css",
31
- "./motion.css": "./src/styles/motion.css"
31
+ "./motion.css": "./src/styles/motion.css",
32
+ "./content/*": "./content/*"
32
33
  },
33
34
  "files": [
34
35
  "dist",
35
- "src/styles"
36
+ "src/styles",
37
+ "content"
36
38
  ],
37
39
  "publishConfig": {
38
40
  "access": "public",
@@ -41,7 +43,7 @@
41
43
  "scripts": {
42
44
  "dev": "vite",
43
45
  "build": "vue-tsc -p tsconfig.lib.json --declaration --emitDeclarationOnly && vite build --config vite.lib.config.ts",
44
- "build:docs": "vite build",
46
+ "build:docs": "vite build && node scripts/prepare-docs-dist.mjs",
45
47
  "preview": "vite preview",
46
48
  "typecheck": "vue-tsc -p tsconfig.app.json --noEmit"
47
49
  },
@@ -49,12 +51,13 @@
49
51
  "vue": "^3.5.0"
50
52
  },
51
53
  "dependencies": {
52
- "vue": "^3.5.39"
54
+ "vue": "^3.5.0"
53
55
  },
54
56
  "devDependencies": {
55
57
  "@types/node": "^24.13.2",
56
58
  "@vitejs/plugin-vue": "^6.0.7",
57
59
  "@vue/tsconfig": "^0.9.1",
60
+ "marked": "^18.0.6",
58
61
  "typescript": "~6.0.2",
59
62
  "vite": "^8.1.1",
60
63
  "vite-plugin-dts": "^4.5.4",
@@ -54,8 +54,8 @@
54
54
  --text-tertiary: #929b95;
55
55
  --text-inverse: #fffefa;
56
56
 
57
- --border: rgba(41, 49, 45, 0.07);
58
- --border-strong: rgba(41, 49, 45, 0.14);
57
+ --border: rgba(41, 49, 45, 0.1);
58
+ --border-strong: rgba(41, 49, 45, 0.18);
59
59
 
60
60
  --accent: #6658b8;
61
61
  --accent-hover: #5548a3;
@@ -78,28 +78,28 @@
78
78
  --info: #426f8e;
79
79
  --info-soft: #e6f0f6;
80
80
 
81
- --shadow-sm: 0 1px 2px rgba(49, 44, 35, 0.04), 0 8px 22px rgba(49, 44, 35, 0.055);
82
- --shadow-md: 0 2px 4px rgba(49, 44, 35, 0.04), 0 18px 44px rgba(49, 44, 35, 0.09);
83
- --shadow-nav: 0 -8px 32px rgba(49, 44, 35, 0.07);
81
+ --shadow-sm: none;
82
+ --shadow-md: none;
83
+ --shadow-nav: 0 -1px 0 var(--border);
84
84
 
85
- --radius-sm: 12px;
86
- --radius-md: 18px;
87
- --radius-lg: 28px;
85
+ --radius-sm: 8px;
86
+ --radius-md: 10px;
87
+ --radius-lg: 14px;
88
88
  --button-radius: var(--radius-full);
89
- --card-radius: 24px;
90
- --field-radius: 16px;
89
+ --card-radius: 10px;
90
+ --field-radius: 12px;
91
91
  --chip-radius: var(--radius-full);
92
92
  --badge-radius: var(--radius-full);
93
93
 
94
- --card-bg: var(--bg-elevated);
95
- --card-border: transparent;
96
- --card-shadow: var(--shadow-sm);
94
+ --card-bg: var(--bg);
95
+ --card-border: var(--border-strong);
96
+ --card-shadow: none;
97
97
  --field-bg: var(--bg-soft);
98
98
  --field-bg-hover: var(--bg-muted);
99
99
  --field-border: transparent;
100
100
  --control-border: var(--border-strong);
101
- --focus-ring: 0 0 0 4px rgba(102, 88, 184, 0.15);
102
- --button-shadow: 0 6px 18px rgba(102, 88, 184, 0.2);
101
+ --focus-ring: 0 0 0 3px rgba(102, 88, 184, 0.14);
102
+ --button-shadow: none;
103
103
 
104
104
  --nav-glass: rgba(255, 254, 250, 0.9);
105
105
  --fill-strong: #29312d;
@@ -125,30 +125,30 @@
125
125
  --text-secondary: #65706a;
126
126
  --text-tertiary: #929b95;
127
127
  --text-inverse: #fffefa;
128
- --border: rgba(41, 49, 45, 0.07);
129
- --border-strong: rgba(41, 49, 45, 0.14);
128
+ --border: rgba(41, 49, 45, 0.1);
129
+ --border-strong: rgba(41, 49, 45, 0.18);
130
130
  --accent: #6658b8;
131
131
  --accent-hover: #5548a3;
132
132
  --accent-soft: #ece9f8;
133
133
  --accent-contrast: #ffffff;
134
- --shadow-sm: 0 1px 2px rgba(49, 44, 35, 0.04), 0 8px 22px rgba(49, 44, 35, 0.055);
135
- --shadow-md: 0 2px 4px rgba(49, 44, 35, 0.04), 0 18px 44px rgba(49, 44, 35, 0.09);
136
- --radius-sm: 12px;
137
- --radius-md: 18px;
138
- --radius-lg: 28px;
134
+ --shadow-sm: none;
135
+ --shadow-md: none;
136
+ --radius-sm: 8px;
137
+ --radius-md: 10px;
138
+ --radius-lg: 14px;
139
139
  --button-radius: var(--radius-full);
140
- --card-radius: 24px;
141
- --field-radius: 16px;
140
+ --card-radius: 10px;
141
+ --field-radius: 12px;
142
142
  --chip-radius: var(--radius-full);
143
143
  --badge-radius: var(--radius-full);
144
- --card-bg: var(--bg-elevated);
145
- --card-border: transparent;
146
- --card-shadow: var(--shadow-sm);
144
+ --card-bg: var(--bg);
145
+ --card-border: var(--border-strong);
146
+ --card-shadow: none;
147
147
  --field-bg: var(--bg-soft);
148
148
  --field-bg-hover: var(--bg-muted);
149
149
  --field-border: transparent;
150
- --focus-ring: 0 0 0 4px rgba(102, 88, 184, 0.15);
151
- --button-shadow: 0 6px 18px rgba(102, 88, 184, 0.2);
150
+ --focus-ring: 0 0 0 3px rgba(102, 88, 184, 0.14);
151
+ --button-shadow: none;
152
152
  }
153
153
 
154
154
  /* Site expression — mineral white + confident evergreen.
@@ -166,8 +166,8 @@
166
166
  --text-tertiary: #8b978f;
167
167
  --text-inverse: #ffffff;
168
168
 
169
- --border: rgba(33, 49, 41, 0.08);
170
- --border-strong: rgba(33, 49, 41, 0.16);
169
+ --border: rgba(33, 49, 41, 0.11);
170
+ --border-strong: rgba(33, 49, 41, 0.2);
171
171
 
172
172
  --accent: #2e684f;
173
173
  --accent-hover: #245640;
@@ -190,28 +190,28 @@
190
190
  --info: #386984;
191
191
  --info-soft: #e3eef4;
192
192
 
193
- --shadow-sm: 0 1px 2px rgba(28, 48, 38, 0.035), 0 5px 16px rgba(28, 48, 38, 0.045);
194
- --shadow-md: 0 2px 4px rgba(28, 48, 38, 0.04), 0 14px 36px rgba(28, 48, 38, 0.075);
195
- --shadow-nav: 0 -6px 28px rgba(28, 48, 38, 0.055);
193
+ --shadow-sm: none;
194
+ --shadow-md: none;
195
+ --shadow-nav: 0 -1px 0 var(--border);
196
196
 
197
- --radius-sm: 8px;
198
- --radius-md: 12px;
199
- --radius-lg: 18px;
200
- --button-radius: 10px;
201
- --card-radius: 16px;
197
+ --radius-sm: 6px;
198
+ --radius-md: 8px;
199
+ --radius-lg: 12px;
200
+ --button-radius: 8px;
201
+ --card-radius: 8px;
202
202
  --field-radius: 10px;
203
203
  --chip-radius: 10px;
204
204
  --badge-radius: 8px;
205
205
 
206
- --card-bg: var(--bg-elevated);
207
- --card-border: var(--border);
208
- --card-shadow: 0 1px 2px rgba(28, 48, 38, 0.025), 0 8px 24px rgba(28, 48, 38, 0.04);
206
+ --card-bg: var(--bg);
207
+ --card-border: var(--border-strong);
208
+ --card-shadow: none;
209
209
  --field-bg: var(--bg-elevated);
210
210
  --field-bg-hover: var(--bg-elevated);
211
211
  --field-border: var(--border-strong);
212
212
  --control-border: var(--border-strong);
213
- --focus-ring: 0 0 0 4px rgba(46, 104, 79, 0.13);
214
- --button-shadow: 0 4px 12px rgba(46, 104, 79, 0.16);
213
+ --focus-ring: 0 0 0 3px rgba(46, 104, 79, 0.12);
214
+ --button-shadow: none;
215
215
 
216
216
  --nav-glass: rgba(255, 255, 255, 0.92);
217
217
  --fill-strong: #213129;
@@ -257,13 +257,14 @@
257
257
  --info: #86afc8;
258
258
  --info-soft: #293b46;
259
259
 
260
- --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.16), 0 8px 22px rgba(0, 0, 0, 0.14);
261
- --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.18), 0 18px 44px rgba(0, 0, 0, 0.24);
262
- --card-border: rgba(255, 255, 255, 0.04);
260
+ --shadow-sm: none;
261
+ --shadow-md: none;
262
+ --card-border: rgba(255, 255, 255, 0.1);
263
+ --card-shadow: none;
263
264
  --field-border: rgba(255, 255, 255, 0.1);
264
265
  --control-border: rgba(255, 255, 255, 0.14);
265
- --focus-ring: 0 0 0 4px rgba(169, 158, 232, 0.18);
266
- --button-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
266
+ --focus-ring: 0 0 0 3px rgba(169, 158, 232, 0.16);
267
+ --button-shadow: none;
267
268
 
268
269
  --nav-glass: rgba(39, 44, 41, 0.92);
269
270
  --fill-strong: #f3f1ec;
@@ -305,14 +306,14 @@
305
306
  --info: #84adc4;
306
307
  --info-soft: #293d47;
307
308
 
308
- --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.16), 0 6px 18px rgba(0, 0, 0, 0.13);
309
- --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.18), 0 16px 40px rgba(0, 0, 0, 0.22);
310
- --card-border: rgba(255, 255, 255, 0.065);
311
- --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.12);
309
+ --shadow-sm: none;
310
+ --shadow-md: none;
311
+ --card-border: rgba(255, 255, 255, 0.1);
312
+ --card-shadow: none;
312
313
  --field-border: rgba(255, 255, 255, 0.13);
313
314
  --control-border: rgba(255, 255, 255, 0.14);
314
- --focus-ring: 0 0 0 4px rgba(130, 185, 157, 0.16);
315
- --button-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
315
+ --focus-ring: 0 0 0 3px rgba(130, 185, 157, 0.14);
316
+ --button-shadow: none;
316
317
 
317
318
  --nav-glass: rgba(35, 45, 40, 0.92);
318
319
  --fill-strong: #f0f3f0;