@mirohq/design-system-themes 1.4.10 → 1.4.11
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/base.css +8 -0
- package/base.json +8 -0
- package/dark.css +8 -0
- package/dist/main.js +32 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +32 -0
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/light.css +8 -0
- package/metadata.json +24 -0
- package/new-dark.css +8 -0
- package/new-light.css +8 -0
- package/package.json +2 -2
package/base.css
CHANGED
|
@@ -177,6 +177,9 @@
|
|
|
177
177
|
--colors-button-background-ghost-inverse-hover: var(--colors-gray-800);
|
|
178
178
|
--colors-button-background-ghost-inverse-pressed: var(--colors-gray-750);
|
|
179
179
|
--colors-button-background-ghost-pressed: var(--colors-gray-200);
|
|
180
|
+
--colors-button-background-info: var(--colors-blue-500);
|
|
181
|
+
--colors-button-background-info-hover: var(--colors-blue-550);
|
|
182
|
+
--colors-button-background-info-pressed: var(--colors-blue-600);
|
|
180
183
|
--colors-button-background-inverse: var(--colors-blue-500);
|
|
181
184
|
--colors-button-background-inverse-disabled: var(--colors-gray-850);
|
|
182
185
|
--colors-button-background-inverse-hover: var(--colors-blue-550);
|
|
@@ -193,6 +196,9 @@
|
|
|
193
196
|
--colors-button-background-tertiary: var(--colors-transparent);
|
|
194
197
|
--colors-button-background-tertiary-hover: var(--colors-blue-150);
|
|
195
198
|
--colors-button-background-tertiary-pressed: var(--colors-blue-200);
|
|
199
|
+
--colors-button-background-warning: var(--colors-yellow-700);
|
|
200
|
+
--colors-button-background-warning-hover: var(--colors-yellow-750);
|
|
201
|
+
--colors-button-background-warning-pressed: var(--colors-yellow-800);
|
|
196
202
|
--colors-button-border-danger: var(--colors-red-500);
|
|
197
203
|
--colors-button-border-danger-hover: var(--colors-red-550);
|
|
198
204
|
--colors-button-border-danger-pressed: var(--colors-red-600);
|
|
@@ -310,6 +316,7 @@
|
|
|
310
316
|
--colors-icon-interactive-on-inverted-secondary-pressed: var(
|
|
311
317
|
--colors-gray-250
|
|
312
318
|
);
|
|
319
|
+
--colors-icon-interactive-on-inverted-selected: var(--colors-blue-400);
|
|
313
320
|
--colors-icon-interactive-primary: var(--colors-blue-500);
|
|
314
321
|
--colors-icon-interactive-primary-hover: var(--colors-blue-550);
|
|
315
322
|
--colors-icon-interactive-primary-pressed: var(--colors-blue-600);
|
|
@@ -423,6 +430,7 @@
|
|
|
423
430
|
--colors-text-inverted-secondary: var(--colors-gray-150);
|
|
424
431
|
--colors-text-muted: var(--colors-gray-400);
|
|
425
432
|
--colors-text-on-disabled: var(--colors-gray-350);
|
|
433
|
+
--colors-text-on-inverse-disabled: var(--colors-gray-450);
|
|
426
434
|
--colors-text-on-static-dark: var(--colors-gray-50);
|
|
427
435
|
--colors-text-on-static-dark-subtle: var(--colors-gray-300);
|
|
428
436
|
--colors-text-on-static-light: var(--colors-gray-900);
|
package/base.json
CHANGED
|
@@ -168,6 +168,9 @@
|
|
|
168
168
|
"buttonBackgroundGhostInverseHover": "{colors.gray800}",
|
|
169
169
|
"buttonBackgroundGhostInversePressed": "{colors.gray750}",
|
|
170
170
|
"buttonBackgroundGhostPressed": "{colors.gray200}",
|
|
171
|
+
"buttonBackgroundInfo": "{colors.blue500}",
|
|
172
|
+
"buttonBackgroundInfoHover": "{colors.blue550}",
|
|
173
|
+
"buttonBackgroundInfoPressed": "{colors.blue600}",
|
|
171
174
|
"buttonBackgroundInverse": "{colors.blue500}",
|
|
172
175
|
"buttonBackgroundInverseDisabled": "{colors.gray850}",
|
|
173
176
|
"buttonBackgroundInverseHover": "{colors.blue550}",
|
|
@@ -184,6 +187,9 @@
|
|
|
184
187
|
"buttonBackgroundTertiary": "{colors.transparent}",
|
|
185
188
|
"buttonBackgroundTertiaryHover": "{colors.blue150}",
|
|
186
189
|
"buttonBackgroundTertiaryPressed": "{colors.blue200}",
|
|
190
|
+
"buttonBackgroundWarning": "{colors.yellow700}",
|
|
191
|
+
"buttonBackgroundWarningHover": "{colors.yellow750}",
|
|
192
|
+
"buttonBackgroundWarningPressed": "{colors.yellow800}",
|
|
187
193
|
"buttonBorderDanger": "{colors.red500}",
|
|
188
194
|
"buttonBorderDangerHover": "{colors.red550}",
|
|
189
195
|
"buttonBorderDangerPressed": "{colors.red600}",
|
|
@@ -299,6 +305,7 @@
|
|
|
299
305
|
"iconInteractiveOnInvertedSecondary": "{colors.gray150}",
|
|
300
306
|
"iconInteractiveOnInvertedSecondaryHover": "{colors.gray200}",
|
|
301
307
|
"iconInteractiveOnInvertedSecondaryPressed": "{colors.gray250}",
|
|
308
|
+
"iconInteractiveOnInvertedSelected": "{colors.blue400}",
|
|
302
309
|
"iconInteractivePrimary": "{colors.blue500}",
|
|
303
310
|
"iconInteractivePrimaryHover": "{colors.blue550}",
|
|
304
311
|
"iconInteractivePrimaryPressed": "{colors.blue600}",
|
|
@@ -410,6 +417,7 @@
|
|
|
410
417
|
"textInvertedSecondary": "{colors.gray150}",
|
|
411
418
|
"textMuted": "{colors.gray400}",
|
|
412
419
|
"textOnDisabled": "{colors.gray350}",
|
|
420
|
+
"textOnInverseDisabled": "{colors.gray450}",
|
|
413
421
|
"textOnStaticDark": "{colors.gray50}",
|
|
414
422
|
"textOnStaticDarkSubtle": "{colors.gray300}",
|
|
415
423
|
"textOnStaticLight": "{colors.gray900}",
|
package/dark.css
CHANGED
|
@@ -177,6 +177,9 @@
|
|
|
177
177
|
--colors-button-background-ghost-inverse-hover: var(--colors-gray-150);
|
|
178
178
|
--colors-button-background-ghost-inverse-pressed: var(--colors-gray-200);
|
|
179
179
|
--colors-button-background-ghost-pressed: var(--colors-gray-750);
|
|
180
|
+
--colors-button-background-info: var(--colors-blue-500);
|
|
181
|
+
--colors-button-background-info-hover: var(--colors-blue-550);
|
|
182
|
+
--colors-button-background-info-pressed: var(--colors-blue-600);
|
|
180
183
|
--colors-button-background-inverse: var(--colors-blue-500);
|
|
181
184
|
--colors-button-background-inverse-disabled: var(--colors-gray-150);
|
|
182
185
|
--colors-button-background-inverse-hover: var(--colors-blue-450);
|
|
@@ -193,6 +196,9 @@
|
|
|
193
196
|
--colors-button-background-tertiary: var(--colors-transparent);
|
|
194
197
|
--colors-button-background-tertiary-hover: var(--colors-blue-900);
|
|
195
198
|
--colors-button-background-tertiary-pressed: var(--colors-blue-800);
|
|
199
|
+
--colors-button-background-warning: var(--colors-yellow-700);
|
|
200
|
+
--colors-button-background-warning-hover: var(--colors-yellow-750);
|
|
201
|
+
--colors-button-background-warning-pressed: var(--colors-yellow-800);
|
|
196
202
|
--colors-button-border-danger: var(--colors-red-500);
|
|
197
203
|
--colors-button-border-danger-hover: var(--colors-red-450);
|
|
198
204
|
--colors-button-border-danger-pressed: var(--colors-red-400);
|
|
@@ -310,6 +316,7 @@
|
|
|
310
316
|
--colors-icon-interactive-on-inverted-secondary-pressed: var(
|
|
311
317
|
--colors-gray-600
|
|
312
318
|
);
|
|
319
|
+
--colors-icon-interactive-on-inverted-selected: var(--colors-blue-550);
|
|
313
320
|
--colors-icon-interactive-primary: var(--colors-blue-400);
|
|
314
321
|
--colors-icon-interactive-primary-hover: var(--colors-blue-350);
|
|
315
322
|
--colors-icon-interactive-primary-pressed: var(--colors-blue-300);
|
|
@@ -423,6 +430,7 @@
|
|
|
423
430
|
--colors-text-inverted-secondary: var(--colors-gray-700);
|
|
424
431
|
--colors-text-muted: var(--colors-gray-400);
|
|
425
432
|
--colors-text-on-disabled: var(--colors-gray-450);
|
|
433
|
+
--colors-text-on-inverse-disabled: var(--colors-gray-350);
|
|
426
434
|
--colors-text-on-static-dark: var(--colors-gray-50);
|
|
427
435
|
--colors-text-on-static-dark-subtle: var(--colors-gray-300);
|
|
428
436
|
--colors-text-on-static-light: var(--colors-gray-900);
|
package/dist/main.js
CHANGED
|
@@ -169,6 +169,9 @@ const colors$3 = {
|
|
|
169
169
|
"button-background-ghost-inverse-hover": "$gray-800",
|
|
170
170
|
"button-background-ghost-inverse-pressed": "$gray-750",
|
|
171
171
|
"button-background-ghost-pressed": "$gray-200",
|
|
172
|
+
"button-background-info": "$blue-500",
|
|
173
|
+
"button-background-info-hover": "$blue-550",
|
|
174
|
+
"button-background-info-pressed": "$blue-600",
|
|
172
175
|
"button-background-inverse": "$blue-500",
|
|
173
176
|
"button-background-inverse-disabled": "$gray-850",
|
|
174
177
|
"button-background-inverse-hover": "$blue-550",
|
|
@@ -185,6 +188,9 @@ const colors$3 = {
|
|
|
185
188
|
"button-background-tertiary": "$transparent",
|
|
186
189
|
"button-background-tertiary-hover": "$blue-150",
|
|
187
190
|
"button-background-tertiary-pressed": "$blue-200",
|
|
191
|
+
"button-background-warning": "$yellow-700",
|
|
192
|
+
"button-background-warning-hover": "$yellow-750",
|
|
193
|
+
"button-background-warning-pressed": "$yellow-800",
|
|
188
194
|
"button-border-danger": "$red-500",
|
|
189
195
|
"button-border-danger-hover": "$red-550",
|
|
190
196
|
"button-border-danger-pressed": "$red-600",
|
|
@@ -300,6 +306,7 @@ const colors$3 = {
|
|
|
300
306
|
"icon-interactive-on-inverted-secondary": "$gray-150",
|
|
301
307
|
"icon-interactive-on-inverted-secondary-hover": "$gray-200",
|
|
302
308
|
"icon-interactive-on-inverted-secondary-pressed": "$gray-250",
|
|
309
|
+
"icon-interactive-on-inverted-selected": "$blue-400",
|
|
303
310
|
"icon-interactive-primary": "$blue-500",
|
|
304
311
|
"icon-interactive-primary-hover": "$blue-550",
|
|
305
312
|
"icon-interactive-primary-pressed": "$blue-600",
|
|
@@ -411,6 +418,7 @@ const colors$3 = {
|
|
|
411
418
|
"text-inverted-secondary": "$gray-150",
|
|
412
419
|
"text-muted": "$gray-400",
|
|
413
420
|
"text-on-disabled": "$gray-350",
|
|
421
|
+
"text-on-inverse-disabled": "$gray-450",
|
|
414
422
|
"text-on-static-dark": "$gray-50",
|
|
415
423
|
"text-on-static-dark-subtle": "$gray-300",
|
|
416
424
|
"text-on-static-light": "$gray-900",
|
|
@@ -818,6 +826,9 @@ const colors$2 = {
|
|
|
818
826
|
"button-background-ghost-inverse-hover": "$gray-150",
|
|
819
827
|
"button-background-ghost-inverse-pressed": "$gray-200",
|
|
820
828
|
"button-background-ghost-pressed": "$gray-750",
|
|
829
|
+
"button-background-info": "$blue-500",
|
|
830
|
+
"button-background-info-hover": "$blue-550",
|
|
831
|
+
"button-background-info-pressed": "$blue-600",
|
|
821
832
|
"button-background-inverse": "$blue-500",
|
|
822
833
|
"button-background-inverse-disabled": "$gray-150",
|
|
823
834
|
"button-background-inverse-hover": "$blue-450",
|
|
@@ -834,6 +845,9 @@ const colors$2 = {
|
|
|
834
845
|
"button-background-tertiary": "$transparent",
|
|
835
846
|
"button-background-tertiary-hover": "$blue-900",
|
|
836
847
|
"button-background-tertiary-pressed": "$blue-800",
|
|
848
|
+
"button-background-warning": "$yellow-700",
|
|
849
|
+
"button-background-warning-hover": "$yellow-750",
|
|
850
|
+
"button-background-warning-pressed": "$yellow-800",
|
|
837
851
|
"button-border-danger": "$red-500",
|
|
838
852
|
"button-border-danger-hover": "$red-450",
|
|
839
853
|
"button-border-danger-pressed": "$red-400",
|
|
@@ -949,6 +963,7 @@ const colors$2 = {
|
|
|
949
963
|
"icon-interactive-on-inverted-secondary": "$gray-700",
|
|
950
964
|
"icon-interactive-on-inverted-secondary-hover": "$gray-650",
|
|
951
965
|
"icon-interactive-on-inverted-secondary-pressed": "$gray-600",
|
|
966
|
+
"icon-interactive-on-inverted-selected": "$blue-550",
|
|
952
967
|
"icon-interactive-primary": "$blue-400",
|
|
953
968
|
"icon-interactive-primary-hover": "$blue-350",
|
|
954
969
|
"icon-interactive-primary-pressed": "$blue-300",
|
|
@@ -1060,6 +1075,7 @@ const colors$2 = {
|
|
|
1060
1075
|
"text-inverted-secondary": "$gray-700",
|
|
1061
1076
|
"text-muted": "$gray-400",
|
|
1062
1077
|
"text-on-disabled": "$gray-450",
|
|
1078
|
+
"text-on-inverse-disabled": "$gray-350",
|
|
1063
1079
|
"text-on-static-dark": "$gray-50",
|
|
1064
1080
|
"text-on-static-dark-subtle": "$gray-300",
|
|
1065
1081
|
"text-on-static-light": "$gray-900",
|
|
@@ -1467,6 +1483,9 @@ const colors$1 = {
|
|
|
1467
1483
|
"button-background-ghost-inverse-hover": "$cloud-750",
|
|
1468
1484
|
"button-background-ghost-inverse-pressed": "$cloud-700",
|
|
1469
1485
|
"button-background-ghost-pressed": "$cloud-200",
|
|
1486
|
+
"button-background-info": "$blue-500",
|
|
1487
|
+
"button-background-info-hover": "$blue-550",
|
|
1488
|
+
"button-background-info-pressed": "$blue-600",
|
|
1470
1489
|
"button-background-inverse": "$white",
|
|
1471
1490
|
"button-background-inverse-disabled": "$cloud-650",
|
|
1472
1491
|
"button-background-inverse-hover": "$cloud-100",
|
|
@@ -1483,6 +1502,9 @@ const colors$1 = {
|
|
|
1483
1502
|
"button-background-tertiary": "$transparent",
|
|
1484
1503
|
"button-background-tertiary-hover": "$cloud-150",
|
|
1485
1504
|
"button-background-tertiary-pressed": "$cloud-200",
|
|
1505
|
+
"button-background-warning": "$yellow-700",
|
|
1506
|
+
"button-background-warning-hover": "$yellow-750",
|
|
1507
|
+
"button-background-warning-pressed": "$yellow-800",
|
|
1486
1508
|
"button-border-danger": "$red-500",
|
|
1487
1509
|
"button-border-danger-hover": "$red-550",
|
|
1488
1510
|
"button-border-danger-pressed": "$red-600",
|
|
@@ -1598,6 +1620,7 @@ const colors$1 = {
|
|
|
1598
1620
|
"icon-interactive-on-inverted-secondary": "$cloud-300",
|
|
1599
1621
|
"icon-interactive-on-inverted-secondary-hover": "$cloud-350",
|
|
1600
1622
|
"icon-interactive-on-inverted-secondary-pressed": "$cloud-400",
|
|
1623
|
+
"icon-interactive-on-inverted-selected": "$blue-400",
|
|
1601
1624
|
"icon-interactive-primary": "$blue-500",
|
|
1602
1625
|
"icon-interactive-primary-hover": "$blue-550",
|
|
1603
1626
|
"icon-interactive-primary-pressed": "$blue-600",
|
|
@@ -1709,6 +1732,7 @@ const colors$1 = {
|
|
|
1709
1732
|
"text-inverted-secondary": "$cloud-300",
|
|
1710
1733
|
"text-muted": "$cloud-500",
|
|
1711
1734
|
"text-on-disabled": "$cloud-350",
|
|
1735
|
+
"text-on-inverse-disabled": "$cloud-500",
|
|
1712
1736
|
"text-on-static-dark": "$white",
|
|
1713
1737
|
"text-on-static-dark-subtle": "$cloud-300",
|
|
1714
1738
|
"text-on-static-light": "$cloud-900",
|
|
@@ -2116,6 +2140,9 @@ const colors = {
|
|
|
2116
2140
|
"button-background-ghost-inverse-hover": "$ink-150",
|
|
2117
2141
|
"button-background-ghost-inverse-pressed": "$ink-200",
|
|
2118
2142
|
"button-background-ghost-pressed": "$ink-700",
|
|
2143
|
+
"button-background-info": "$blue-500",
|
|
2144
|
+
"button-background-info-hover": "$blue-550",
|
|
2145
|
+
"button-background-info-pressed": "$blue-600",
|
|
2119
2146
|
"button-background-inverse": "$ink-800",
|
|
2120
2147
|
"button-background-inverse-disabled": "$ink-150",
|
|
2121
2148
|
"button-background-inverse-hover": "$ink-900",
|
|
@@ -2132,6 +2159,9 @@ const colors = {
|
|
|
2132
2159
|
"button-background-tertiary": "$transparent",
|
|
2133
2160
|
"button-background-tertiary-hover": "$ink-750",
|
|
2134
2161
|
"button-background-tertiary-pressed": "$ink-700",
|
|
2162
|
+
"button-background-warning": "$yellow-700",
|
|
2163
|
+
"button-background-warning-hover": "$yellow-750",
|
|
2164
|
+
"button-background-warning-pressed": "$yellow-800",
|
|
2135
2165
|
"button-border-danger": "$red-500",
|
|
2136
2166
|
"button-border-danger-hover": "$red-450",
|
|
2137
2167
|
"button-border-danger-pressed": "$red-400",
|
|
@@ -2247,6 +2277,7 @@ const colors = {
|
|
|
2247
2277
|
"icon-interactive-on-inverted-secondary": "$ink-700",
|
|
2248
2278
|
"icon-interactive-on-inverted-secondary-hover": "$ink-650",
|
|
2249
2279
|
"icon-interactive-on-inverted-secondary-pressed": "$ink-600",
|
|
2280
|
+
"icon-interactive-on-inverted-selected": "$blue-550",
|
|
2250
2281
|
"icon-interactive-primary": "$blue-500",
|
|
2251
2282
|
"icon-interactive-primary-hover": "$blue-450",
|
|
2252
2283
|
"icon-interactive-primary-pressed": "$blue-400",
|
|
@@ -2358,6 +2389,7 @@ const colors = {
|
|
|
2358
2389
|
"text-inverted-secondary": "$ink-700",
|
|
2359
2390
|
"text-muted": "$ink-400",
|
|
2360
2391
|
"text-on-disabled": "$ink-500",
|
|
2392
|
+
"text-on-inverse-disabled": "$ink-350",
|
|
2361
2393
|
"text-on-static-dark": "$white",
|
|
2362
2394
|
"text-on-static-dark-subtle": "$ink-300",
|
|
2363
2395
|
"text-on-static-light": "$ink-900",
|