@j3m-quantum/ui 1.3.0 → 1.3.1

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.
@@ -430,23 +430,78 @@
430
430
  --j3m-bg-input-disabled: var(--j3m-glass-light-20);
431
431
  --j3m-bg-sidebar: #E8E8E8; /* Solid sidebar in glass mode */
432
432
 
433
- /* Legacy surface tokens */
434
- --surface-bg: var(--j3m-glass-light-40);
435
- --surface-border: var(--j3m-glass-border-white);
433
+ /* Legacy surface tokens - SOLID colors for portal components (match solid light mode) */
434
+ --surface-bg: var(--j3m-gray-1);
435
+ --surface-border: var(--j3m-gray-6);
436
436
  --surface-shadow: var(--j3m-glass-shadow-md);
437
437
  --surface-radius: var(--j3m-radius-l);
438
- --surface-blur: var(--j3m-blur-lg);
438
+ --surface-blur: 0;
439
439
 
440
- /* Overlay surfaces (dialogs, popovers, etc) */
441
- --overlay-bg: var(--j3m-glass-light-70);
442
- --overlay-border: var(--j3m-glass-border-light);
440
+ /* Overlay surfaces (dialogs, popovers, etc) - WHITE to match solid light mode */
441
+ --overlay-bg: var(--j3m-gray-1);
442
+ --overlay-border: var(--j3m-gray-6);
443
443
  --overlay-shadow: var(--j3m-glass-shadow-lg);
444
- --overlay-blur: var(--j3m-blur-lg);
444
+ --overlay-blur: 0;
445
445
 
446
- /* Shadcn overrides for glass */
447
- --input-bg: var(--j3m-glass-light-50);
446
+ /* Shadcn overrides for glass - Portal components use WHITE to match solid light mode */
447
+ --input-bg: var(--j3m-gray-1);
448
448
  --card: var(--j3m-glass-light-50);
449
- --popover: var(--j3m-glass-light-70);
449
+ --popover: var(--j3m-gray-1);
450
+
451
+ /* Dialog, Sheet, Drawer use popover token - ensure they're white */
452
+ --dialog: var(--j3m-gray-1);
453
+ }
454
+
455
+ /* Light Glass Mode - Portal Components (Dialog, Sheet, Drawer, Popover, HoverCard)
456
+ These render outside the app tree via React Portals.
457
+ Use WHITE backgrounds to match solid light mode. */
458
+ .theme-glass:not(.dark) [data-slot="dialog-content"],
459
+ .theme-glass:not(.dark) [data-slot="sheet-content"],
460
+ .theme-glass:not(.dark) [data-slot="drawer-content"],
461
+ .theme-glass:not(.dark) [data-slot="popover-content"],
462
+ .theme-glass:not(.dark) [data-slot="hover-card-content"],
463
+ .theme-glass:not(.dark) [data-slot="dropdown-menu-content"],
464
+ .theme-glass:not(.dark) [data-slot="context-menu-content"],
465
+ .theme-glass:not(.dark) [data-slot="menubar-content"],
466
+ .theme-glass:not(.dark) [data-slot="select-content"] {
467
+ background: var(--j3m-gray-1) !important;
468
+ border-color: var(--j3m-gray-6) !important;
469
+ color: var(--j3m-gray-12) !important;
470
+ }
471
+
472
+ /* Light Glass Mode - Command component and its children */
473
+ .theme-glass:not(.dark) [data-slot="command"] {
474
+ background: transparent !important;
475
+ }
476
+
477
+ .theme-glass:not(.dark) [data-slot="command-input-wrapper"] {
478
+ background: var(--j3m-gray-1) !important;
479
+ border-color: var(--j3m-gray-6) !important;
480
+ }
481
+
482
+ .theme-glass:not(.dark) [data-slot="command-list"] {
483
+ background: var(--j3m-gray-1) !important;
484
+ border-color: var(--j3m-gray-6) !important;
485
+ }
486
+
487
+ .theme-glass:not(.dark) [data-slot="command-input"] {
488
+ color: var(--j3m-gray-12) !important;
489
+ }
490
+
491
+ .theme-glass:not(.dark) [data-slot="command-item"] {
492
+ color: var(--j3m-gray-12) !important;
493
+ }
494
+
495
+ .theme-glass:not(.dark) [data-slot="command-group-heading"] {
496
+ color: var(--j3m-gray-9) !important;
497
+ }
498
+
499
+ /* Light Glass Mode - Calendar should match solid mode */
500
+ .theme-glass:not(.dark) [data-slot="calendar"],
501
+ .theme-glass:not(.dark) .rdp {
502
+ background: var(--j3m-gray-1) !important;
503
+ border-color: var(--j3m-gray-6) !important;
504
+ color: var(--j3m-gray-12) !important;
450
505
  }
451
506
 
452
507
  /* ========================================
@@ -466,7 +521,7 @@
466
521
  --j3m-glass-border-subtle: var(--j3m-glass-dark-border-subtle);
467
522
 
468
523
  /* Override text colors for visibility */
469
- --card-foreground: rgba(255, 255, 255, 0.95);
524
+ --card-foreground: var(--accent-foreground);
470
525
  --accent-foreground: #FFFFFF;
471
526
  --foreground: rgba(255, 255, 255, 0.95);
472
527
  --muted-foreground: rgba(255, 255, 255, 0.6);
@@ -488,40 +543,50 @@
488
543
  radial-gradient(at 0% 100%, rgba(22, 27, 34, 0.6) 0px, transparent 50%),
489
544
  linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #161b22 100%);
490
545
 
491
- /* Background & Surface Tokens (Dark Glass) - using semantic tokens */
546
+ /* Background & Surface Tokens (Dark Glass) - Use SOLID colors to match solid dark mode */
492
547
  --j3m-bg-app: transparent;
493
548
  --j3m-bg-page: transparent;
494
- --j3m-bg-surface: var(--j3m-glass-dark-surface);
495
- --j3m-bg-surface-hover: var(--j3m-glass-dark-surface-hover);
496
- --j3m-bg-surface-active: var(--j3m-glass-dark-surface-active);
497
- --j3m-bg-elevated: var(--j3m-glass-dark-elevated);
498
- --j3m-bg-elevated-hover: var(--j3m-glass-dark-elevated-hover);
499
- --j3m-bg-overlay: var(--j3m-glass-dark-overlay);
500
- --j3m-bg-muted: var(--j3m-glass-dark-muted);
501
- --j3m-bg-subtle: var(--j3m-glass-dark-subtle);
502
- --j3m-bg-element: var(--j3m-glass-dark-element);
503
- --j3m-bg-element-hover: var(--j3m-glass-dark-element-hover);
504
- --j3m-bg-element-active: var(--j3m-glass-dark-element-active);
505
- --j3m-bg-input: var(--j3m-glass-dark-input);
506
- --j3m-bg-input-disabled: var(--j3m-glass-dark-subtle);
507
- --j3m-bg-sidebar: #1a1a1a; /* Solid dark sidebar in glass mode */
508
-
509
- /* Legacy surface tokens */
510
- --surface-bg: var(--j3m-glass-dark-surface);
511
- --surface-border: var(--j3m-glass-dark-border);
512
- --overlay-bg: var(--j3m-glass-dark-overlay);
513
- --overlay-border: var(--j3m-glass-dark-border-light);
549
+ --j3m-bg-surface: var(--j3m-gray-13);
550
+ --j3m-bg-surface-hover: var(--j3m-gray-12);
551
+ --j3m-bg-surface-active: #404040;
552
+ --j3m-bg-elevated: var(--j3m-gray-12);
553
+ --j3m-bg-elevated-hover: #404040;
554
+ --j3m-bg-overlay: var(--j3m-gray-13);
555
+ --j3m-bg-muted: var(--j3m-gray-12);
556
+ --j3m-bg-subtle: var(--j3m-gray-11);
557
+ --j3m-bg-element: var(--j3m-gray-12);
558
+ --j3m-bg-element-hover: #404040;
559
+ --j3m-bg-element-active: #4a4a4a;
560
+ --j3m-bg-input: var(--j3m-gray-11);
561
+ --j3m-bg-input-disabled: var(--j3m-gray-10);
562
+ --j3m-bg-sidebar: var(--j3m-gray-13);
563
+
564
+ /* Legacy surface tokens - SOLID colors for portal components */
565
+ --surface-bg: var(--j3m-gray-13);
566
+ --surface-border: var(--j3m-gray-11);
567
+ --overlay-bg: var(--j3m-gray-13);
568
+ --overlay-border: var(--j3m-gray-11);
514
569
 
515
- /* Dark glass borders */
516
- --border: var(--j3m-glass-dark-border);
570
+ /* Dark glass borders - SOLID to match solid dark mode */
571
+ --border: var(--j3m-gray-11);
517
572
 
518
- /* Text colors for dark glass */
519
- --foreground: rgba(255, 255, 255, 0.95);
520
- --muted-foreground: rgba(255, 255, 255, 0.6);
573
+ /* Text colors - match solid dark mode */
574
+ --foreground: var(--j3m-gray-1);
575
+ --muted-foreground: var(--j3m-gray-7);
521
576
 
522
- /* Shadcn overrides for dark glass */
523
- --card: var(--j3m-glass-dark-surface);
524
- --popover: var(--j3m-glass-dark-overlay);
577
+ /* Shadcn overrides for dark glass - Use SOLID colors to match solid dark mode */
578
+ --card: var(--j3m-gray-13);
579
+ --popover: var(--j3m-gray-13);
580
+ --secondary: var(--j3m-gray-12);
581
+ --accent: #404040;
582
+ --accent-foreground: var(--j3m-gray-1);
583
+
584
+ /* Sidebar tokens - match solid dark mode */
585
+ --sidebar: var(--j3m-gray-13);
586
+ --sidebar-foreground: var(--j3m-gray-1);
587
+ --sidebar-border: var(--j3m-gray-11);
588
+ --sidebar-accent: #404040;
589
+ --sidebar-accent-foreground: var(--j3m-gray-1);
525
590
 
526
591
  /* Orange accent glow for interactive elements */
527
592
  --j3m-glass-shadow-glow: 0 0 20px rgba(243, 108, 33, 0.3);
@@ -532,30 +597,35 @@
532
597
  Applied inside glass surfaces to adjust nested components
533
598
  ======================================== */
534
599
 
600
+ /* Glass Context - Applied inside glass surfaces
601
+ - card: Keeps glass appearance for in-app content
602
+ - popover: WHITE solid to match solid light mode */
535
603
  .glass-context {
536
604
  --background: var(--j3m-glass-light-80);
537
605
  --input: var(--j3m-glass-light-50);
538
606
  --card: var(--j3m-glass-light-70);
539
- --popover: var(--j3m-glass-light-80);
607
+ --popover: var(--j3m-gray-1);
540
608
  --muted: var(--j3m-glass-light-50);
541
609
  --muted-foreground: rgba(0, 0, 0, 0.55);
542
610
  --secondary: var(--j3m-glass-light-80);
543
611
  --border: var(--j3m-glass-border-light);
544
612
  }
545
613
 
546
- /* Dark glass context - override for dark mode */
614
+ /* Dark glass context - Use SOLID dark mode colors to match solid dark mode */
547
615
  .dark .glass-context,
548
616
  .theme-glass.dark .glass-context {
549
- --background: var(--j3m-glass-dark-surface);
550
- --input: var(--j3m-glass-dark-input);
551
- --card: var(--j3m-glass-dark-surface);
552
- --popover: var(--j3m-glass-dark-overlay);
553
- --muted: var(--j3m-glass-dark-muted);
554
- --muted-foreground: rgba(255, 255, 255, 0.6);
555
- --secondary: var(--j3m-glass-dark-element);
556
- --border: var(--j3m-glass-dark-border);
557
- --foreground: rgba(255, 255, 255, 0.95);
558
- --card-foreground: rgba(255, 255, 255, 0.95);
617
+ --background: var(--j3m-gray-12);
618
+ --input: var(--j3m-gray-11);
619
+ --card: var(--j3m-gray-13);
620
+ --popover: var(--j3m-gray-13);
621
+ --muted: var(--j3m-gray-12);
622
+ --muted-foreground: var(--j3m-gray-7);
623
+ --secondary: var(--j3m-gray-12);
624
+ --accent: #404040;
625
+ --accent-foreground: var(--j3m-gray-1);
626
+ --border: var(--j3m-gray-11);
627
+ --foreground: var(--j3m-gray-1);
628
+ --card-foreground: var(--j3m-gray-1);
559
629
  }
560
630
 
561
631
  /* ========================================
@@ -1351,12 +1421,13 @@ textarea,
1351
1421
  }
1352
1422
 
1353
1423
  /* --- CALENDAR --- */
1354
- /* Glass mode - same background as input boxes, keep default hover/selected states */
1424
+ /* Glass mode - use solid white to match solid light mode */
1355
1425
  .glass-context [data-slot="calendar"],
1356
1426
  .glass-context .rdp {
1357
- background: rgba(255, 255, 255, 0.8) !important;
1358
- border: 1px solid rgba(0, 0, 0, 0.15) !important;
1427
+ background: var(--j3m-gray-1) !important;
1428
+ border: 1px solid var(--j3m-gray-6) !important;
1359
1429
  border-radius: var(--j3m-radius-l) !important;
1430
+ color: var(--j3m-gray-12) !important;
1360
1431
  }
1361
1432
 
1362
1433
  /* Remove inner white background from calendar grid */
@@ -1600,15 +1671,6 @@ textarea,
1600
1671
  .glass-context [data-slot="sheet-content"] {
1601
1672
  background: var(--sidebar) !important;
1602
1673
  border-color: var(--sidebar-border) !important;
1603
- padding-left: 1.5rem !important;
1604
- padding-right: 1.5rem !important;
1605
- }
1606
-
1607
- .glass-context [data-slot="sheet-header"],
1608
- .glass-context [data-slot="sheet-footer"],
1609
- .glass-context [data-slot="sheet-body"] {
1610
- padding-left: 0 !important;
1611
- padding-right: 0 !important;
1612
1674
  }
1613
1675
 
1614
1676
  /* --- DIALOG --- */
@@ -1624,40 +1686,56 @@ textarea,
1624
1686
  }
1625
1687
 
1626
1688
  .glass-context [data-slot="command"] {
1627
- background: transparent !important;
1628
- background-color: transparent !important;
1629
- border: none !important;
1630
- box-shadow: none !important;
1689
+ background: var(--j3m-gray-1) !important;
1690
+ background-color: var(--j3m-gray-1) !important;
1691
+ border: 1px solid var(--j3m-gray-6) !important;
1692
+ border-width: 1px !important;
1693
+ border-style: solid !important;
1694
+ box-shadow: var(--shadow-md) !important;
1631
1695
  outline: none !important;
1696
+ border-radius: var(--j3m-radius-l) !important;
1697
+ overflow: hidden !important;
1632
1698
  }
1633
1699
 
1700
+ /* Command in glass-context - unified container styling */
1634
1701
  .glass-context [data-slot="command-input-wrapper"] {
1635
- background: var(--sidebar) !important;
1636
- border: 1px solid var(--sidebar-border) !important;
1637
- border-radius: var(--j3m-radius-full) !important;
1638
- padding-left: 1rem !important;
1639
- padding-right: 1rem !important;
1702
+ background: transparent !important;
1703
+ border: 0 !important;
1704
+ border-width: 0 !important;
1705
+ border-bottom: 1px solid var(--j3m-gray-6) !important;
1706
+ border-radius: 0 !important;
1707
+ padding-left: 0.75rem !important;
1708
+ padding-right: 0.75rem !important;
1640
1709
  }
1641
1710
 
1642
1711
  .glass-context [data-slot="command-input"] {
1643
1712
  background: transparent !important;
1644
- color: var(--sidebar-foreground) !important;
1713
+ color: var(--j3m-gray-12) !important;
1645
1714
  }
1646
1715
 
1647
1716
  .glass-context [data-slot="command-input"]::placeholder {
1648
- color: var(--muted-foreground) !important;
1717
+ color: var(--j3m-gray-9) !important;
1718
+ }
1719
+
1720
+ /* Override generic input focus styles for command-input */
1721
+ .glass-context [data-slot="command-input"]:focus,
1722
+ .glass-context [data-slot="command-input"]:focus-visible {
1723
+ border-color: transparent !important;
1724
+ box-shadow: none !important;
1725
+ outline: none !important;
1649
1726
  }
1650
1727
 
1651
1728
  .glass-context [data-slot="command-input-wrapper"]:focus-within {
1652
- border-color: var(--j3m-orange-9) !important;
1653
- box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.2) !important;
1729
+ border-bottom-color: var(--j3m-gray-8) !important;
1730
+ box-shadow: none !important;
1654
1731
  }
1655
1732
 
1656
1733
  .glass-context [data-slot="command-list"] {
1657
- background: var(--sidebar) !important;
1658
- border: 1px solid var(--sidebar-border) !important;
1659
- border-radius: var(--j3m-radius-l) !important;
1660
- margin-top: 0.25rem !important;
1734
+ background: transparent !important;
1735
+ border: 0 !important;
1736
+ border-width: 0 !important;
1737
+ border-radius: 0 !important;
1738
+ margin-top: 0 !important;
1661
1739
  }
1662
1740
 
1663
1741
  .glass-context [data-slot="command-group"] {
@@ -1665,7 +1743,11 @@ textarea,
1665
1743
  }
1666
1744
 
1667
1745
  .glass-context [data-slot="command-item"] {
1668
- color: var(--sidebar-foreground) !important;
1746
+ color: var(--j3m-gray-12) !important;
1747
+ }
1748
+
1749
+ .glass-context [data-slot="command-group-heading"] {
1750
+ color: var(--j3m-gray-9) !important;
1669
1751
  }
1670
1752
 
1671
1753
  /* Command item hover - use accent (grey) not primary (orange) */
@@ -1745,15 +1827,15 @@ textarea,
1745
1827
  Styling for components inside .dark .glass-context
1746
1828
  ======================================== */
1747
1829
 
1748
- /* --- CARDS (Dark Glass) - ALL cards in dark glass mode --- */
1830
+ /* --- CARDS (Dark Glass) - Use SOLID dark colors to match solid dark mode --- */
1749
1831
  .dark.theme-glass [data-slot="card"],
1750
1832
  .theme-glass.dark [data-slot="card"],
1751
1833
  .dark .glass-context [data-slot="card"],
1752
1834
  .theme-glass.dark .glass-context [data-slot="card"] {
1753
- background: var(--sidebar) !important;
1754
- border: 1px solid var(--sidebar-border) !important;
1755
- box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15) !important;
1756
- color: var(--sidebar-foreground) !important;
1835
+ background: var(--j3m-gray-13) !important;
1836
+ border: 1px solid var(--j3m-gray-11) !important;
1837
+ box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25) !important;
1838
+ color: var(--j3m-gray-1) !important;
1757
1839
  }
1758
1840
 
1759
1841
  /* Remove the light gradient border pseudo-element in dark mode */
@@ -1769,7 +1851,7 @@ textarea,
1769
1851
  .theme-glass.dark [data-slot="card"] *,
1770
1852
  .dark.theme-glass .glass-context *,
1771
1853
  .theme-glass.dark .glass-context * {
1772
- --card-foreground: var(--sidebar-foreground);
1854
+ --card-foreground: rgba(255, 255, 255, 0.95);
1773
1855
  }
1774
1856
 
1775
1857
  /* --- INPUT FIELDS (Dark Glass) --- */
@@ -1976,10 +2058,25 @@ textarea,
1976
2058
  }
1977
2059
 
1978
2060
  /* --- COMMAND (Dark Glass) --- */
2061
+ .dark .glass-context [data-slot="command"],
2062
+ .theme-glass.dark .glass-context [data-slot="command"] {
2063
+ background: var(--sidebar) !important;
2064
+ background-color: var(--sidebar) !important;
2065
+ border: 1px solid var(--sidebar-border) !important;
2066
+ border-width: 1px !important;
2067
+ border-style: solid !important;
2068
+ }
2069
+
1979
2070
  .dark .glass-context [data-slot="command-input-wrapper"],
1980
2071
  .theme-glass.dark .glass-context [data-slot="command-input-wrapper"] {
1981
- background: var(--sidebar) !important;
1982
- border-color: var(--sidebar-border) !important;
2072
+ background: transparent !important;
2073
+ border-bottom-color: var(--sidebar-border) !important;
2074
+ }
2075
+
2076
+ .dark .glass-context [data-slot="command-input-wrapper"]:focus-within,
2077
+ .theme-glass.dark .glass-context [data-slot="command-input-wrapper"]:focus-within {
2078
+ border-bottom-color: var(--j3m-gray-8) !important;
2079
+ box-shadow: none !important;
1983
2080
  }
1984
2081
 
1985
2082
  .dark .glass-context [data-slot="command-input"],
@@ -1992,10 +2089,21 @@ textarea,
1992
2089
  color: var(--muted-foreground) !important;
1993
2090
  }
1994
2091
 
2092
+ /* Override generic input focus styles for command-input in dark glass */
2093
+ .dark .glass-context [data-slot="command-input"]:focus,
2094
+ .dark .glass-context [data-slot="command-input"]:focus-visible,
2095
+ .theme-glass.dark .glass-context [data-slot="command-input"]:focus,
2096
+ .theme-glass.dark .glass-context [data-slot="command-input"]:focus-visible {
2097
+ border-color: transparent !important;
2098
+ box-shadow: none !important;
2099
+ outline: none !important;
2100
+ }
2101
+
1995
2102
  .dark .glass-context [data-slot="command-list"],
1996
2103
  .theme-glass.dark .glass-context [data-slot="command-list"] {
1997
- background: var(--sidebar) !important;
1998
- border-color: var(--sidebar-border) !important;
2104
+ background: transparent !important;
2105
+ border: 0 !important;
2106
+ border-width: 0 !important;
1999
2107
  }
2000
2108
 
2001
2109
  .dark .glass-context [data-slot="command-item"],
@@ -2078,13 +2186,16 @@ textarea,
2078
2186
  border-color: var(--sidebar-border) !important;
2079
2187
  }
2080
2188
 
2081
- /* --- CALENDAR (Dark Glass) --- */
2189
+ /* --- CALENDAR (Dark Glass) - Match solid dark mode --- */
2082
2190
  .dark .glass-context [data-slot="calendar"],
2083
2191
  .dark .glass-context .rdp,
2084
2192
  .theme-glass.dark .glass-context [data-slot="calendar"],
2085
- .theme-glass.dark .glass-context .rdp {
2086
- background: var(--sidebar) !important;
2087
- border-color: var(--sidebar-border) !important;
2193
+ .theme-glass.dark .glass-context .rdp,
2194
+ .theme-glass.dark [data-slot="calendar"],
2195
+ .theme-glass.dark .rdp {
2196
+ background: var(--j3m-gray-13) !important;
2197
+ border-color: var(--j3m-gray-11) !important;
2198
+ color: var(--j3m-gray-1) !important;
2088
2199
  }
2089
2200
 
2090
2201
  /* --- SLIDER (Dark Glass) --- */
@@ -2150,12 +2261,34 @@ textarea,
2150
2261
  transform: translateX(-50%) !important;
2151
2262
  }
2152
2263
 
2153
- /* Glass mode toast styling */
2154
- .glass-context [data-sonner-toast],
2155
- .glass-context .sonner-toast {
2156
- background: var(--sidebar) !important;
2264
+ /* Light Glass mode toast styling - WHITE to match solid light mode */
2265
+ .theme-glass:not(.dark) [data-sonner-toast],
2266
+ .theme-glass:not(.dark) .sonner-toast {
2267
+ background: var(--j3m-gray-1) !important;
2268
+ border-color: var(--j3m-gray-6) !important;
2269
+ color: var(--j3m-gray-12) !important;
2270
+ }
2271
+
2272
+ /* Dark glass toast - solid dark background with bright text */
2273
+ .theme-glass.dark [data-sonner-toast],
2274
+ .theme-glass.dark .sonner-toast,
2275
+ .dark.theme-glass [data-sonner-toast],
2276
+ .dark.theme-glass .sonner-toast {
2277
+ background: var(--j3m-bg-sidebar) !important;
2157
2278
  border-color: var(--sidebar-border) !important;
2158
- color: var(--sidebar-foreground) !important;
2279
+ color: #FFFFFF !important;
2280
+ }
2281
+
2282
+ .theme-glass.dark [data-sonner-toast] *,
2283
+ .theme-glass.dark .sonner-toast *,
2284
+ .dark.theme-glass [data-sonner-toast] *,
2285
+ .dark.theme-glass .sonner-toast * {
2286
+ color: #FFFFFF !important;
2287
+ }
2288
+
2289
+ .theme-glass.dark [data-sonner-toast] [data-description],
2290
+ .dark.theme-glass [data-sonner-toast] [data-description] {
2291
+ color: rgba(255, 255, 255, 0.7) !important;
2159
2292
  }
2160
2293
 
2161
2294
  /* ========================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j3m-quantum/ui",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "private": false,
5
5
  "description": "J3M UI Component Library - React components with J3M design tokens",
6
6
  "type": "module",
@@ -23,7 +23,8 @@
23
23
  },
24
24
  "files": [
25
25
  "dist",
26
- "cursor-rules-for-consumers.md"
26
+ "cursor-rules-for-consumers.md",
27
+ "README.md"
27
28
  ],
28
29
  "scripts": {
29
30
  "build": "tsup && npm run copy-styles",