@warmio/design 1.1.0 → 1.2.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/package.json +1 -1
- package/theme.css +50 -0
package/package.json
CHANGED
package/theme.css
CHANGED
|
@@ -221,6 +221,23 @@
|
|
|
221
221
|
--button-primary-border: oklch(0 0 0 / 0.18);
|
|
222
222
|
--button-primary-hover: oklch(from var(--primary) calc(l + 0.08) c h);
|
|
223
223
|
--button-primary-active: oklch(from var(--primary) calc(l - 0.04) c h);
|
|
224
|
+
--button-primary-shadow:
|
|
225
|
+
inset 0 1px 0 rgb(255 255 255 / 0.18), inset 0 -1px 0 rgb(0 0 0 / 0.55), 0 0 0 1px #26251f,
|
|
226
|
+
0 1px 2px rgb(0 0 0 / 0.18);
|
|
227
|
+
--button-primary-gradient: linear-gradient(
|
|
228
|
+
to bottom,
|
|
229
|
+
#46453e 0%,
|
|
230
|
+
#383731 28%,
|
|
231
|
+
#292824 64%,
|
|
232
|
+
#1d1c19 100%
|
|
233
|
+
);
|
|
234
|
+
--button-primary-gradient-hover: linear-gradient(
|
|
235
|
+
to bottom,
|
|
236
|
+
#4f4e48 0%,
|
|
237
|
+
#42413b 28%,
|
|
238
|
+
#34332f 64%,
|
|
239
|
+
#282724 100%
|
|
240
|
+
);
|
|
224
241
|
--apple-button-background: var(--foreground);
|
|
225
242
|
--apple-button-foreground: var(--background);
|
|
226
243
|
--apple-button-hover: var(--apple-button-background);
|
|
@@ -326,6 +343,22 @@
|
|
|
326
343
|
--button-primary-border: oklch(1 0 0 / 0.18);
|
|
327
344
|
--button-primary-hover: oklch(1 0 0);
|
|
328
345
|
--button-primary-active: oklch(0.94 0 0);
|
|
346
|
+
--button-primary-shadow:
|
|
347
|
+
inset 0 1px 0 rgb(255 255 255), 0 0 0 1px rgb(0 0 0 / 0.42), 0 2px 3px rgb(0 0 0 / 0.28);
|
|
348
|
+
--button-primary-gradient: linear-gradient(
|
|
349
|
+
to bottom,
|
|
350
|
+
#ffffff 0%,
|
|
351
|
+
#f8f7f4 28%,
|
|
352
|
+
#f0eee9 64%,
|
|
353
|
+
#e4e1db 100%
|
|
354
|
+
);
|
|
355
|
+
--button-primary-gradient-hover: linear-gradient(
|
|
356
|
+
to bottom,
|
|
357
|
+
#f2f2f2 0%,
|
|
358
|
+
#ecebe8 28%,
|
|
359
|
+
#e4e2dd 64%,
|
|
360
|
+
#d9d6d0 100%
|
|
361
|
+
);
|
|
329
362
|
--apple-button-background: oklch(0 0 0);
|
|
330
363
|
--apple-button-foreground: oklch(1 0 0);
|
|
331
364
|
--apple-button-hover: var(--apple-button-background);
|
|
@@ -447,6 +480,23 @@
|
|
|
447
480
|
--default-button-gradient-start: oklch(1 0 0);
|
|
448
481
|
--default-button-gradient-end: oklch(0.92 0 0);
|
|
449
482
|
--default-button-active: oklch(0.91 0 0);
|
|
483
|
+
--button-primary-shadow:
|
|
484
|
+
inset 0 1px 0 rgb(255 255 255 / 0.18), inset 0 -1px 0 rgb(0 0 0 / 0.55), 0 0 0 1px #26251f,
|
|
485
|
+
0 1px 2px rgb(0 0 0 / 0.18);
|
|
486
|
+
--button-primary-gradient: linear-gradient(
|
|
487
|
+
to bottom,
|
|
488
|
+
#46453e 0%,
|
|
489
|
+
#383731 28%,
|
|
490
|
+
#292824 64%,
|
|
491
|
+
#1d1c19 100%
|
|
492
|
+
);
|
|
493
|
+
--button-primary-gradient-hover: linear-gradient(
|
|
494
|
+
to bottom,
|
|
495
|
+
#4f4e48 0%,
|
|
496
|
+
#42413b 28%,
|
|
497
|
+
#34332f 64%,
|
|
498
|
+
#282724 100%
|
|
499
|
+
);
|
|
450
500
|
|
|
451
501
|
/* Charts */
|
|
452
502
|
--chart-1: var(--brand-primary);
|