@rovula/ui 0.0.32 → 0.0.34
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/cjs/bundle.css +120 -16
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dialog/Dialog.d.ts +4 -1
- package/dist/components/Dialog/Dialog.js +2 -2
- package/dist/esm/bundle.css +120 -16
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dialog/Dialog.d.ts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/src/theme/global.css +154 -23
- package/dist/stories/ColorGroupPreview.js +20 -22
- package/dist/theme/presets/colors.js +1 -0
- package/dist/theme/tokens/color.css +2 -1
- package/dist/theme/tokens/transparent.css +2 -2
- package/dist/theme/utils.js +12 -1
- package/package.json +3 -2
- package/src/components/Dialog/Dialog.tsx +41 -20
- package/src/stories/ColorGroupPreview.tsx +20 -22
- package/src/theme/presets/colors.js +1 -0
- package/src/theme/tokens/color.css +2 -1
- package/src/theme/tokens/transparent.css +2 -2
- package/src/theme/utils.js +12 -1
|
@@ -5,7 +5,10 @@ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.Dia
|
|
|
5
5
|
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
6
6
|
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
7
7
|
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> &
|
|
8
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
9
|
+
showCloseButton?: boolean | undefined;
|
|
10
|
+
closeButtonClassName?: string | undefined;
|
|
11
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
9
12
|
declare const DialogHeader: {
|
|
10
13
|
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
11
14
|
displayName: string;
|
|
@@ -25,8 +25,8 @@ const DialogOverlay = React.forwardRef((_a, ref) => {
|
|
|
25
25
|
});
|
|
26
26
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
27
27
|
const DialogContent = React.forwardRef((_a, ref) => {
|
|
28
|
-
var { className, children } = _a, props = __rest(_a, ["className", "children"]);
|
|
29
|
-
return (_jsxs(DialogPortal, { children: [_jsx(DialogOverlay, {}), _jsxs(DialogPrimitive.Content, Object.assign({ ref: ref, className: cn("fixed text-base-popup-foreground left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border border-base-popup bg-base-popup p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-md", className) }, props, { children: [children, _jsxs(DialogPrimitive.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-primary data-[state=open]:text-primary-foreground", children: [_jsx(XMarkIcon, { className: "h-4 w-4" }), _jsx("span", { className: "sr-only", children: "Close" })] })] }))] }));
|
|
28
|
+
var { className, children, showCloseButton = false, closeButtonClassName } = _a, props = __rest(_a, ["className", "children", "showCloseButton", "closeButtonClassName"]);
|
|
29
|
+
return (_jsxs(DialogPortal, { children: [_jsx(DialogOverlay, {}), _jsxs(DialogPrimitive.Content, Object.assign({ ref: ref, className: cn("fixed text-base-popup-foreground left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border border-base-popup bg-base-popup p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-md", className) }, props, { children: [children, showCloseButton && (_jsxs(DialogPrimitive.Close, { className: cn("absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-primary data-[state=open]:text-primary-foreground", closeButtonClassName), children: [_jsx(XMarkIcon, { className: "h-4 w-4" }), _jsx("span", { className: "sr-only", children: "Close" })] }))] }))] }));
|
|
30
30
|
});
|
|
31
31
|
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
32
32
|
const DialogHeader = (_a) => {
|
package/dist/esm/bundle.css
CHANGED
|
@@ -1426,6 +1426,10 @@ body {
|
|
|
1426
1426
|
--tw-bg-opacity: 1;
|
|
1427
1427
|
background-color: color-mix(in srgb, var(--background) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1428
1428
|
}
|
|
1429
|
+
.bg-base-bg{
|
|
1430
|
+
--tw-bg-opacity: 1;
|
|
1431
|
+
background-color: color-mix(in srgb, var(--base-color-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1432
|
+
}
|
|
1429
1433
|
.bg-base-bg2{
|
|
1430
1434
|
--tw-bg-opacity: 1;
|
|
1431
1435
|
background-color: color-mix(in srgb, var(--base-color-bg2) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1434,6 +1438,10 @@ body {
|
|
|
1434
1438
|
--tw-bg-opacity: 1;
|
|
1435
1439
|
background-color: color-mix(in srgb, var(--base-color-bg3) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1436
1440
|
}
|
|
1441
|
+
.bg-base-guideline-stroke{
|
|
1442
|
+
--tw-bg-opacity: 1;
|
|
1443
|
+
background-color: color-mix(in srgb, var(--base-color-guideline-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1444
|
+
}
|
|
1437
1445
|
.bg-base-popup{
|
|
1438
1446
|
--tw-bg-opacity: 1;
|
|
1439
1447
|
background-color: color-mix(in srgb, var(--base-color-popup) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1442,10 +1450,22 @@ body {
|
|
|
1442
1450
|
--tw-bg-opacity: 1;
|
|
1443
1451
|
background-color: color-mix(in srgb, var(--base-color-popup-curtain) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1444
1452
|
}
|
|
1453
|
+
.bg-base-popup-foreground{
|
|
1454
|
+
--tw-bg-opacity: 1;
|
|
1455
|
+
background-color: color-mix(in srgb, var(--base-color-popup-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1456
|
+
}
|
|
1445
1457
|
.bg-base-popup-highlight{
|
|
1446
1458
|
--tw-bg-opacity: 1;
|
|
1447
1459
|
background-color: color-mix(in srgb, var(--base-color-popup-hightlight) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1448
1460
|
}
|
|
1461
|
+
.bg-base-stroke{
|
|
1462
|
+
--tw-bg-opacity: 1;
|
|
1463
|
+
background-color: color-mix(in srgb, var(--base-color-workspace-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1464
|
+
}
|
|
1465
|
+
.bg-base-workspace-stroke{
|
|
1466
|
+
--tw-bg-opacity: 1;
|
|
1467
|
+
background-color: color-mix(in srgb, var(--base-color-workspace-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1468
|
+
}
|
|
1449
1469
|
.bg-black{
|
|
1450
1470
|
--tw-bg-opacity: 1;
|
|
1451
1471
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
@@ -1690,10 +1710,6 @@ body {
|
|
|
1690
1710
|
--tw-bg-opacity: 1;
|
|
1691
1711
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1692
1712
|
}
|
|
1693
|
-
.bg-grey{
|
|
1694
|
-
--tw-bg-opacity: 1;
|
|
1695
|
-
background-color: color-mix(in srgb, var(--state-color-grey-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1696
|
-
}
|
|
1697
1713
|
.bg-grey-10{
|
|
1698
1714
|
--tw-bg-opacity: 1;
|
|
1699
1715
|
background-color: color-mix(in srgb, var(--grey-grey-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1758,10 +1774,6 @@ body {
|
|
|
1758
1774
|
--tw-bg-opacity: 1;
|
|
1759
1775
|
background-color: color-mix(in srgb, var(--grey-grey-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1760
1776
|
}
|
|
1761
|
-
.bg-grey-foreground{
|
|
1762
|
-
--tw-bg-opacity: 1;
|
|
1763
|
-
background-color: color-mix(in srgb, var(--grey-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1764
|
-
}
|
|
1765
1777
|
.bg-grey-transparent-12{
|
|
1766
1778
|
--tw-bg-opacity: 1;
|
|
1767
1779
|
background-color: color-mix(in srgb, var(--other-transparency-grey-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1786,10 +1798,6 @@ body {
|
|
|
1786
1798
|
--tw-bg-opacity: 1;
|
|
1787
1799
|
background-color: color-mix(in srgb, var(--other-transparency-grey-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1788
1800
|
}
|
|
1789
|
-
.bg-grey2{
|
|
1790
|
-
--tw-bg-opacity: 1;
|
|
1791
|
-
background-color: color-mix(in srgb, var(--state-color-grey2-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1792
|
-
}
|
|
1793
1801
|
.bg-grey2-100{
|
|
1794
1802
|
--tw-bg-opacity: 1;
|
|
1795
1803
|
background-color: color-mix(in srgb, var(--grey2-grey2-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1830,10 +1838,6 @@ body {
|
|
|
1830
1838
|
--tw-bg-opacity: 1;
|
|
1831
1839
|
background-color: color-mix(in srgb, var(--grey2-grey2-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1832
1840
|
}
|
|
1833
|
-
.bg-grey2-foreground{
|
|
1834
|
-
--tw-bg-opacity: 1;
|
|
1835
|
-
background-color: color-mix(in srgb, var(--grey2-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1836
|
-
}
|
|
1837
1841
|
.bg-grey2-transparent-12{
|
|
1838
1842
|
--tw-bg-opacity: 1;
|
|
1839
1843
|
background-color: color-mix(in srgb, var(--other-transparency-grey2-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2058,6 +2062,18 @@ body {
|
|
|
2058
2062
|
--tw-bg-opacity: 1;
|
|
2059
2063
|
background-color: color-mix(in srgb, var(--state-color-primary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2060
2064
|
}
|
|
2065
|
+
.bg-primary-text-outline{
|
|
2066
|
+
--tw-bg-opacity: 1;
|
|
2067
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2068
|
+
}
|
|
2069
|
+
.bg-primary-text-pressed{
|
|
2070
|
+
--tw-bg-opacity: 1;
|
|
2071
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2072
|
+
}
|
|
2073
|
+
.bg-primary-text-solid{
|
|
2074
|
+
--tw-bg-opacity: 1;
|
|
2075
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2076
|
+
}
|
|
2061
2077
|
.bg-primary-transparent-12{
|
|
2062
2078
|
--tw-bg-opacity: 1;
|
|
2063
2079
|
background-color: color-mix(in srgb, var(--main-transparency-primary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2178,6 +2194,18 @@ body {
|
|
|
2178
2194
|
--tw-bg-opacity: 1;
|
|
2179
2195
|
background-color: color-mix(in srgb, var(--state-color-secondary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2180
2196
|
}
|
|
2197
|
+
.bg-secondary-text-outline{
|
|
2198
|
+
--tw-bg-opacity: 1;
|
|
2199
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2200
|
+
}
|
|
2201
|
+
.bg-secondary-text-pressed{
|
|
2202
|
+
--tw-bg-opacity: 1;
|
|
2203
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2204
|
+
}
|
|
2205
|
+
.bg-secondary-text-solid{
|
|
2206
|
+
--tw-bg-opacity: 1;
|
|
2207
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2208
|
+
}
|
|
2181
2209
|
.bg-secondary-transparent-12{
|
|
2182
2210
|
--tw-bg-opacity: 1;
|
|
2183
2211
|
background-color: color-mix(in srgb, var(--main-transparency-secondary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2210,6 +2238,54 @@ body {
|
|
|
2210
2238
|
--tw-bg-opacity: 1;
|
|
2211
2239
|
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2212
2240
|
}
|
|
2241
|
+
.bg-success{
|
|
2242
|
+
--tw-bg-opacity: 1;
|
|
2243
|
+
background-color: color-mix(in srgb, var(--state-color-success-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2244
|
+
}
|
|
2245
|
+
.bg-success-100{
|
|
2246
|
+
--tw-bg-opacity: 1;
|
|
2247
|
+
background-color: color-mix(in srgb, var(--success-success-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2248
|
+
}
|
|
2249
|
+
.bg-success-200{
|
|
2250
|
+
--tw-bg-opacity: 1;
|
|
2251
|
+
background-color: color-mix(in srgb, var(--success-success-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2252
|
+
}
|
|
2253
|
+
.bg-success-300{
|
|
2254
|
+
--tw-bg-opacity: 1;
|
|
2255
|
+
background-color: color-mix(in srgb, var(--success-success-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2256
|
+
}
|
|
2257
|
+
.bg-success-400{
|
|
2258
|
+
--tw-bg-opacity: 1;
|
|
2259
|
+
background-color: color-mix(in srgb, var(--success-success-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2260
|
+
}
|
|
2261
|
+
.bg-success-50{
|
|
2262
|
+
--tw-bg-opacity: 1;
|
|
2263
|
+
background-color: color-mix(in srgb, var(--success-success-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2264
|
+
}
|
|
2265
|
+
.bg-success-500{
|
|
2266
|
+
--tw-bg-opacity: 1;
|
|
2267
|
+
background-color: color-mix(in srgb, var(--success-success-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2268
|
+
}
|
|
2269
|
+
.bg-success-600{
|
|
2270
|
+
--tw-bg-opacity: 1;
|
|
2271
|
+
background-color: color-mix(in srgb, var(--success-success-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2272
|
+
}
|
|
2273
|
+
.bg-success-700{
|
|
2274
|
+
--tw-bg-opacity: 1;
|
|
2275
|
+
background-color: color-mix(in srgb, var(--success-success-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2276
|
+
}
|
|
2277
|
+
.bg-success-800{
|
|
2278
|
+
--tw-bg-opacity: 1;
|
|
2279
|
+
background-color: color-mix(in srgb, var(--success-success-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2280
|
+
}
|
|
2281
|
+
.bg-success-900{
|
|
2282
|
+
--tw-bg-opacity: 1;
|
|
2283
|
+
background-color: color-mix(in srgb, var(--success-success-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2284
|
+
}
|
|
2285
|
+
.bg-success-foreground{
|
|
2286
|
+
--tw-bg-opacity: 1;
|
|
2287
|
+
background-color: color-mix(in srgb, var(--success-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2288
|
+
}
|
|
2213
2289
|
.bg-success-transparent-12{
|
|
2214
2290
|
--tw-bg-opacity: 1;
|
|
2215
2291
|
background-color: color-mix(in srgb, var(--other-transparency-success-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2238,6 +2314,10 @@ body {
|
|
|
2238
2314
|
--tw-bg-opacity: 1;
|
|
2239
2315
|
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2240
2316
|
}
|
|
2317
|
+
.bg-tertiary{
|
|
2318
|
+
--tw-bg-opacity: 1;
|
|
2319
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2320
|
+
}
|
|
2241
2321
|
.bg-tertiary-10{
|
|
2242
2322
|
--tw-bg-opacity: 1;
|
|
2243
2323
|
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2306,6 +2386,10 @@ body {
|
|
|
2306
2386
|
--tw-bg-opacity: 1;
|
|
2307
2387
|
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2308
2388
|
}
|
|
2389
|
+
.bg-tertiary-foreground{
|
|
2390
|
+
--tw-bg-opacity: 1;
|
|
2391
|
+
background-color: color-mix(in srgb, var(--tertiary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2392
|
+
}
|
|
2309
2393
|
.bg-tertiary-hover{
|
|
2310
2394
|
--tw-bg-opacity: 1;
|
|
2311
2395
|
background-color: color-mix(in srgb, var(--state-color-tertiary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2322,6 +2406,18 @@ body {
|
|
|
2322
2406
|
--tw-bg-opacity: 1;
|
|
2323
2407
|
background-color: color-mix(in srgb, var(--state-color-tertiary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2324
2408
|
}
|
|
2409
|
+
.bg-tertiary-text-outline{
|
|
2410
|
+
--tw-bg-opacity: 1;
|
|
2411
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2412
|
+
}
|
|
2413
|
+
.bg-tertiary-text-pressed{
|
|
2414
|
+
--tw-bg-opacity: 1;
|
|
2415
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2416
|
+
}
|
|
2417
|
+
.bg-tertiary-text-solid{
|
|
2418
|
+
--tw-bg-opacity: 1;
|
|
2419
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2420
|
+
}
|
|
2325
2421
|
.bg-tertiary-transparent-12{
|
|
2326
2422
|
--tw-bg-opacity: 1;
|
|
2327
2423
|
background-color: color-mix(in srgb, var(--main-transparency-tertiary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -2346,6 +2442,10 @@ body {
|
|
|
2346
2442
|
--tw-bg-opacity: 1;
|
|
2347
2443
|
background-color: color-mix(in srgb, var(--main-transparency-tertiary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2348
2444
|
}
|
|
2445
|
+
.bg-text-black{
|
|
2446
|
+
--tw-bg-opacity: 1;
|
|
2447
|
+
background-color: color-mix(in srgb, var(--text-black) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2448
|
+
}
|
|
2349
2449
|
.bg-text-dark{
|
|
2350
2450
|
--tw-bg-opacity: 1;
|
|
2351
2451
|
background-color: color-mix(in srgb, var(--text-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -3027,6 +3127,10 @@ body {
|
|
|
3027
3127
|
--tw-text-opacity: 1;
|
|
3028
3128
|
color: color-mix(in srgb, var(--base-color-popup-foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
3029
3129
|
}
|
|
3130
|
+
.text-black{
|
|
3131
|
+
--tw-text-opacity: 1;
|
|
3132
|
+
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
3133
|
+
}
|
|
3030
3134
|
.text-button-error-flat-default{
|
|
3031
3135
|
--tw-text-opacity: 1;
|
|
3032
3136
|
color: color-mix(in srgb, var(--button-error-flat-default-text) calc(100% * var(--tw-text-opacity)), transparent);
|