@rovula/ui 0.0.45 → 0.0.47

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.
Files changed (63) hide show
  1. package/dist/cjs/bundle.css +57 -28
  2. package/dist/cjs/bundle.js +2 -2
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/Table/Table.d.ts +1 -0
  5. package/dist/cjs/types/components/Table/Table.stories.d.ts +2 -0
  6. package/dist/cjs/types/components/Toast/Toast.stories.d.ts +8 -0
  7. package/dist/cjs/types/components/Toast/Toaster.d.ts +2 -1
  8. package/dist/cjs/types/components/Toast/useToast.d.ts +1 -0
  9. package/dist/components/Switch/Switch.js +15 -1
  10. package/dist/components/Table/Table.js +2 -2
  11. package/dist/components/Toast/Toast.stories.js +19 -0
  12. package/dist/components/Toast/Toaster.js +4 -3
  13. package/dist/components/Toast/useToast.js +5 -2
  14. package/dist/esm/bundle.css +57 -28
  15. package/dist/esm/bundle.js +2 -2
  16. package/dist/esm/bundle.js.map +1 -1
  17. package/dist/esm/types/components/Table/Table.d.ts +1 -0
  18. package/dist/esm/types/components/Table/Table.stories.d.ts +2 -0
  19. package/dist/esm/types/components/Toast/Toast.stories.d.ts +8 -0
  20. package/dist/esm/types/components/Toast/Toaster.d.ts +2 -1
  21. package/dist/esm/types/components/Toast/useToast.d.ts +1 -0
  22. package/dist/index.d.ts +4 -1
  23. package/dist/src/theme/global.css +1249 -37
  24. package/dist/theme/global.css +1 -0
  25. package/dist/theme/themes/SKL/baseline.css +12 -0
  26. package/dist/theme/themes/SKL/color.css +78 -0
  27. package/dist/theme/themes/SKL/components/action-button.css +127 -0
  28. package/dist/theme/themes/SKL/components/button.css +512 -0
  29. package/dist/theme/themes/SKL/components/dropdown-menu.css +27 -0
  30. package/dist/theme/themes/SKL/components/loading.css +11 -0
  31. package/dist/theme/themes/SKL/components/navbar.css +8 -0
  32. package/dist/theme/themes/SKL/components/progress-bar.css +8 -0
  33. package/dist/theme/themes/SKL/components/switch.css +30 -0
  34. package/dist/theme/themes/SKL/palette.css +145 -0
  35. package/dist/theme/themes/SKL/state.css +86 -0
  36. package/dist/theme/themes/SKL/transparent.css +68 -0
  37. package/dist/theme/themes/SKL/typography.css +199 -0
  38. package/dist/theme/themes/SKL/variables.css +28 -0
  39. package/dist/theme/tokens/baseline.css +2 -1
  40. package/dist/theme/tokens/components/switch.css +30 -0
  41. package/package.json +1 -1
  42. package/src/components/Switch/Switch.tsx +37 -9
  43. package/src/components/Table/Table.tsx +7 -2
  44. package/src/components/Toast/Toast.stories.tsx +50 -0
  45. package/src/components/Toast/Toaster.tsx +5 -3
  46. package/src/components/Toast/useToast.ts +6 -2
  47. package/src/theme/global.css +1 -0
  48. package/src/theme/themes/SKL/baseline.css +12 -0
  49. package/src/theme/themes/SKL/color.css +78 -0
  50. package/src/theme/themes/SKL/components/action-button.css +127 -0
  51. package/src/theme/themes/SKL/components/button.css +512 -0
  52. package/src/theme/themes/SKL/components/dropdown-menu.css +27 -0
  53. package/src/theme/themes/SKL/components/loading.css +11 -0
  54. package/src/theme/themes/SKL/components/navbar.css +8 -0
  55. package/src/theme/themes/SKL/components/progress-bar.css +8 -0
  56. package/src/theme/themes/SKL/components/switch.css +30 -0
  57. package/src/theme/themes/SKL/palette.css +145 -0
  58. package/src/theme/themes/SKL/state.css +86 -0
  59. package/src/theme/themes/SKL/transparent.css +68 -0
  60. package/src/theme/themes/SKL/typography.css +199 -0
  61. package/src/theme/themes/SKL/variables.css +28 -0
  62. package/src/theme/tokens/baseline.css +2 -1
  63. package/src/theme/tokens/components/switch.css +30 -0
@@ -1090,6 +1090,30 @@
1090
1090
  /* Disabled State */
1091
1091
  --dropdown-menu-disabled-bg: transparent;
1092
1092
  --dropdown-menu-disabled-text: var(--state-color-disable-outline);
1093
+ /* ------------------------------------------------------------------ */
1094
+ /* Switch Component Tokens */
1095
+ /* ------------------------------------------------------------------ */
1096
+ /* Naming Convention: --[component]-[element]-[state]-[property] */
1097
+ /* Element: [progress, track] */
1098
+ /* ------------------------------------------------------------------ */
1099
+ /* Default State */
1100
+ --switch-default-color: rgb(from var(--state-color-tertiary-active) r g b / 0.32);
1101
+ --switch-thumb-default-color: var(--state-color-tertiary-active);
1102
+ /* Hover State */
1103
+ --switch-hover-color: rgb(from var(--state-color-tertiary-active) r g b / 0.48);
1104
+ --switch-thumb-hover-color: var(--switch-thumb-default-color);
1105
+ --switch-thumb-hover-ring: var(--state-color-tertiary-hover-bg);
1106
+ /* Active State */
1107
+ --switch-active-color: rgb(from var(--state-color-secondary-active) r g b / 0.32);
1108
+ --switch-thumb-active-color: var(--state-color-secondary-active);
1109
+ /* Active Hover State */
1110
+ --switch-active-hover-color: rgb(from var(--state-color-secondary-active) r g b / 0.48);
1111
+ --switch-thumb-active-hover-color: var(--switch-thumb-active-color);
1112
+ --switch-thumb-active-hover-ring: var(--state-color-secondary-hover-bg);
1113
+ /* Disabled State */
1114
+ --switch-disabled-color: rgb(from var(--state-color-disable-solid) r g b / 0.32);
1115
+ --switch-thumb-disabled-color: var(--state-color-disable-solid)
1116
+ ;
1093
1117
  }
1094
1118
 
1095
1119
  :root[data-theme="xspector"]{
@@ -1530,28 +1554,1179 @@
1530
1554
  /* Naming Convention: --[component]-[element]-[property] */
1531
1555
  /* Element: [progress, track] */
1532
1556
  /* ------------------------------------------------------------------ */
1533
- --loading-process-color: var(--primary);
1557
+ --loading-process-color: var(--primary);
1558
+ --loading-track-color: #9E9E9E7A;
1559
+ /* ------------------------------------------------------------------ */
1560
+ /* DropdownMenu Component Tokens */
1561
+ /* ------------------------------------------------------------------ */
1562
+ /* Naming Convention: --[component]-[state]-[property] */
1563
+ /* Element: [default, hover, selected, disabled] */
1564
+ /* ------------------------------------------------------------------ */
1565
+ --dropdown-menu-seperator-bg: var(--other-transparency-white-08);
1566
+ --dropdown-menu-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);
1567
+ /* Default State */
1568
+ --dropdown-menu-default-bg: transparent;
1569
+ --dropdown-menu-default-text: inherit;
1570
+ /* Hover State */
1571
+ --dropdown-menu-hover-bg: var(--other-transparency-white-08);
1572
+ --dropdown-menu-hover-text: inherit;
1573
+ /* Selected State */
1574
+ --dropdown-menu-selected-bg: var(--grey-grey-150);
1575
+ --dropdown-menu-selected-text: inherit;
1576
+ /* Disabled State */
1577
+ --dropdown-menu-disabled-bg: transparent;
1578
+ --dropdown-menu-disabled-text: var(--grey-grey-140);
1579
+ }
1580
+
1581
+ :root[data-theme="SKL"]{
1582
+ --primary-ramps-primary-5: #eff6ff;
1583
+ --primary-ramps-primary-10: #dbeafe;
1584
+ --primary-ramps-primary-20: #bfdbfe;
1585
+ --primary-ramps-primary-30: #93c5fd;
1586
+ --primary-ramps-primary-40: #60a5fa;
1587
+ --primary-ramps-primary-50: #3b82f6;
1588
+ --primary-ramps-primary-60: #2563eb;
1589
+ --primary-ramps-primary-70: #1d4ed8;
1590
+ --primary-ramps-primary-80: #1e40af;
1591
+ --primary-ramps-primary-90: #1e3a8a;
1592
+ /* --primary-ramps-primary-100: #ddcd00;
1593
+ --primary-ramps-primary-110: #c7b800;
1594
+ --primary-ramps-primary-120: #b1a400;
1595
+ --primary-ramps-primary-130: #9b8f00;
1596
+ --primary-ramps-primary-140: #857b00;
1597
+ --primary-ramps-primary-150: #6f6700; */
1598
+ --secondary-ramps-secondary-5: #ecfeff;
1599
+ --secondary-ramps-secondary-10: #cffafe;
1600
+ --secondary-ramps-secondary-20: #a5f3fc;
1601
+ --secondary-ramps-secondary-30: #67e8f9;
1602
+ --secondary-ramps-secondary-40: #22d3ee;
1603
+ --secondary-ramps-secondary-50: #06b6d4;
1604
+ --secondary-ramps-secondary-60: #0891b2;
1605
+ --secondary-ramps-secondary-70: #0e7490;
1606
+ --secondary-ramps-secondary-80: #155e75;
1607
+ --secondary-ramps-secondary-90: #164e63;
1608
+ /* --secondary-ramps-secondary-100: #9e9e9e;
1609
+ --secondary-ramps-secondary-110: #8e8e8e;
1610
+ --secondary-ramps-secondary-120: #7e7e7e;
1611
+ --secondary-ramps-secondary-130: #6f6f6f;
1612
+ --secondary-ramps-secondary-140: #5f5f5f;
1613
+ --secondary-ramps-secondary-150: #4f4f4f; */
1614
+ --tertiary-ramps-tertiary-5: #FAFAFA;
1615
+ --tertiary-ramps-tertiary-10: #F5F5F5;
1616
+ --tertiary-ramps-tertiary-20: #ECECEC;
1617
+ --tertiary-ramps-tertiary-30: #E2E2E2;
1618
+ --tertiary-ramps-tertiary-40: #D8D8D8;
1619
+ --tertiary-ramps-tertiary-50: #CFCFCF;
1620
+ --tertiary-ramps-tertiary-60: #C5C5C5;
1621
+ --tertiary-ramps-tertiary-70: #BBB;
1622
+ --tertiary-ramps-tertiary-80: #B1B1B1;
1623
+ --tertiary-ramps-tertiary-90: #A8A8A8;
1624
+ --tertiary-ramps-tertiary-100: #9E9E9E;
1625
+ --tertiary-ramps-tertiary-110: #8E8E8E;
1626
+ --tertiary-ramps-tertiary-120: #7E7E7E;
1627
+ --tertiary-ramps-tertiary-130: #6F6F6F;
1628
+ --tertiary-ramps-tertiary-140: #5F5F5F;
1629
+ --tertiary-ramps-tertiary-150: #4F4F4F;
1630
+ --grey-grey-5: #fafafa;
1631
+ --grey-grey-10: #f5f5f5;
1632
+ --grey-grey-20: #ececec;
1633
+ --grey-grey-30: #e2e2e2;
1634
+ --grey-grey-40: #d8d8d8;
1635
+ --grey-grey-50: #cfcfcf;
1636
+ --grey-grey-60: #c5c5c5;
1637
+ --grey-grey-70: #bbbbbb;
1638
+ --grey-grey-80: #b1b1b1;
1639
+ --grey-grey-90: #a8a8a8;
1640
+ --grey-grey-100: #9e9e9e;
1641
+ --grey-grey-110: #8e8e8e;
1642
+ --grey-grey-120: #7e7e7e;
1643
+ --grey-grey-130: #6f6f6f;
1644
+ --grey-grey-140: #5f5f5f;
1645
+ --grey-grey-150: #4f4f4f;
1646
+ --grey2-grey2-50: #f8fafa;
1647
+ --grey2-grey2-100: #f2f5f5;
1648
+ --grey2-grey2-200: #e7ebed;
1649
+ --grey2-grey2-300: #d3dadf;
1650
+ --grey2-grey2-400: #bac5cb;
1651
+ --grey2-grey2-500: #9dabb5;
1652
+ --grey2-grey2-600: #919eab;
1653
+ --grey2-grey2-700: #72808f;
1654
+ --grey2-grey2-800: #606b77;
1655
+ --grey2-grey2-900: #4f5863;
1656
+ --grey2-grey2-950: #343b41;
1657
+ --purple-900: #;
1658
+ --purple-800: #;
1659
+ --purple-700: #;
1660
+ --purple-600: #;
1661
+ --purple-500: #;
1662
+ --purple-400: #;
1663
+ --purple-300: #;
1664
+ --purple-200: #;
1665
+ --purple-100: #;
1666
+ --purple-50: #;
1667
+ --info-info-50: #f5f3ff;
1668
+ --info-info-100: #ede9fe;
1669
+ --info-info-200: #ddd6fe;
1670
+ --info-info-300: #c4b5fd;
1671
+ --info-info-400: #a78bfa;
1672
+ --info-info-500: #8b5cf6;
1673
+ --info-info-600: #7c3aed;
1674
+ --info-info-700: #6d28d9;
1675
+ --info-info-800: #5b21b6;
1676
+ --info-info-900: #4c1d95;
1677
+ /* --info-info-950: #142c57; */
1678
+ --success-success-50: #effce9;
1679
+ --success-success-100: #daf9ce;
1680
+ --success-success-200: #b8f3a3;
1681
+ --success-success-300: #8ce86e;
1682
+ --success-success-400: #54d62c;
1683
+ --success-success-500: #44c022;
1684
+ --success-success-600: #319917;
1685
+ --success-success-700: #277516;
1686
+ --success-success-800: #235d17;
1687
+ --success-success-900: #214f18;
1688
+ --success-success-950: #0c2b08;
1689
+ --warning-warning-50: #ffffea;
1690
+ --warning-warning-100: #fffbc5;
1691
+ --warning-warning-200: #fff885;
1692
+ --warning-warning-300: #ffee46;
1693
+ --warning-warning-400: #ffdf1b;
1694
+ --warning-warning-500: #ffc107;
1695
+ --warning-warning-600: #e29400;
1696
+ --warning-warning-700: #bb6902;
1697
+ --warning-warning-800: #985108;
1698
+ --warning-warning-900: #7c420b;
1699
+ --warning-warning-950: #482200;
1700
+ --error-error-50: #fff3f1;
1701
+ --error-error-100: #ffe3df;
1702
+ --error-error-200: #ffccc5;
1703
+ --error-error-300: #ffa99d;
1704
+ --error-error-400: #ff7664;
1705
+ --error-error-500: #ff4d35;
1706
+ --error-error-600: #ed2f15;
1707
+ --error-error-700: #c8230d;
1708
+ --error-error-800: #a5210f;
1709
+ --error-error-900: #882214;
1710
+ --error-error-950: #4b0c04;
1711
+ /* ------------------------------------------------------------------ */
1712
+ /* State Tokens */
1713
+ /* ------------------------------------------------------------------ */
1714
+ /* Naming Convention: --state-color-[theme]-[element?]-[state] */
1715
+ /* States: [default, hover, pressed, disabled] */
1716
+ --state-color-primary-default: #2563eb;
1717
+ --state-color-primary-hover: #60a5fa;
1718
+ --state-color-primary-stroke: rgba(37, 99, 235, 0.64);
1719
+ /* No change in design system. */
1720
+ --state-color-primary-hover-bg: rgba(96, 165, 250, 0.08);
1721
+ /* No change in design system. */
1722
+ --state-color-primary-pressed: #1e40af;
1723
+ --state-color-primary-active: #1e3a8a;
1724
+ --state-color-primary-text-solid: #ffffff;
1725
+ --state-color-primary-text-outline: #2563eb;
1726
+ /* No change in design system. */
1727
+ --state-color-primary-text-hover: #60a5fa;
1728
+ /* No change in design system. */
1729
+ --state-color-primary-text-pressed: #1e40af;
1730
+ /* No change in design system. */
1731
+ --state-color-secondary-default: #0891b2;
1732
+ --state-color-secondary-hover: #22d3ee;
1733
+ --state-color-secondary-stroke: rgba(8, 145, 178, 0.64);
1734
+ /* No change in design system. */
1735
+ --state-color-secondary-hover-bg: rgba(34, 211, 238, 0.08);
1736
+ /* No change in design system. */
1737
+ --state-color-secondary-pressed: #155e75;
1738
+ --state-color-secondary-active: #164e63;
1739
+ --state-color-secondary-text-solid: #ffffff;
1740
+ --state-color-secondary-text-outline: #0891b2;
1741
+ /* No change in design system. */
1742
+ --state-color-secondary-text-hover: #22d3ee;
1743
+ /* No change in design system. */
1744
+ --state-color-secondary-text-pressed: #155e75;
1745
+ /* No change in design system. */
1746
+ --state-color-tertiary-default: #4f4f4f;
1747
+ --state-color-tertiary-hover: #6f6f6f;
1748
+ --state-color-tertiary-stroke: rgba(79 79 79 / 0.48);
1749
+ /* No in design system. -default */
1750
+ --state-color-tertiary-hover-bg: rgba(158 158 158 / 0.08);
1751
+ /* No in design system. -hover */
1752
+ --state-color-tertiary-pressed: #b1b1b1;
1753
+ --state-color-tertiary-active: #6f6f6f;
1754
+ --state-color-tertiary-text-solid: #ffffff;
1755
+ --state-color-tertiary-text-outline: #4f4f4f;
1756
+ --state-color-tertiary-text-hover: #6f6f6f;
1757
+ --state-color-tertiary-text-pressed: #b1b1b1;
1758
+ --state-color-info-default: #8b5cf6;
1759
+ --state-color-info-hover: #c4b5fd;
1760
+ /* No in design system. info-300 */
1761
+ --state-color-info-stroke: rgba(139, 92, 246, 0.48);
1762
+ --state-color-info-hover-bg: rgba(196, 181, 253, 0.08);
1763
+ --state-color-info-pressed: #6d28d9;
1764
+ /* No in design system. info-700 */
1765
+ --state-color-info-active: #c4b5fd;
1766
+ /* No in design system. info-300 */
1767
+ --state-color-info-text-solid: #ffffff;
1768
+ --state-color-info-text-outline: #8b5cf6;
1769
+ --state-color-info-text-hover: #c4b5fd;
1770
+ /* No in design system. info-300 */
1771
+ --state-color-info-text-pressed: #6d28d9;
1772
+ /* No in design system. info-700 */
1773
+ --state-color-success-default: #319917;
1774
+ --state-color-success-hover: #44c022;
1775
+ --state-color-success-stroke: rgba(68 192 34 / 0.48);
1776
+ /* No in design system. -default */
1777
+ --state-color-success-hover-bg: rgba(84 214 44 / 0.08);
1778
+ /* No in design system. -hover */
1779
+ --state-color-success-pressed: #235d17;
1780
+ --state-color-success-active: #44c022;
1781
+ --state-color-success-text-solid: #ffffff;
1782
+ --state-color-success-text-outline: #319917;
1783
+ --state-color-success-text-hover: #44c022;
1784
+ --state-color-success-text-pressed: #235d17;
1785
+ --state-color-warning-default: #ffc107;
1786
+ --state-color-warning-hover: #ffdf1b;
1787
+ --state-color-warning-stroke: rgba(255 223 27 / 0.48);
1788
+ /* No in design system. -default */
1789
+ --state-color-warning-hover-bg: rgba(255 193 7 / 0.08);
1790
+ /* No in design system. -hover */
1791
+ --state-color-warning-pressed: #985108;
1792
+ --state-color-warning-active: #ffc107;
1793
+ --state-color-warning-text-solid: #1e3249;
1794
+ --state-color-warning-text-outline: #ffc107;
1795
+ --state-color-warning-text-hover: #ffdf1b;
1796
+ --state-color-warning-text-pressed: #985108;
1797
+ --state-color-error-default: #ed2f15;
1798
+ --state-color-error-hover: #ff4d35;
1799
+ --state-color-error-stroke: rgba(237 47 21 / 0.64);
1800
+ /* No in design system. -default */
1801
+ --state-color-error-hover-bg: rgba(255 77 53 / 0.08);
1802
+ /* No in design system. -hover */
1803
+ --state-color-error-pressed: #a5210f;
1804
+ --state-color-error-active: #ff4d35;
1805
+ --state-color-error-text-solid: #ffffff;
1806
+ --state-color-error-text-outline: #ed2f15;
1807
+ --state-color-error-text-hover: #ff4d35;
1808
+ --state-color-error-text-pressed: #a5210f;
1809
+ --state-color-disable-solid: #d3dadf;
1810
+ --state-color-disable-outline: #9dabb5;
1811
+ /* Base from design */
1812
+ --input-color-default-text: #9e9e9e;
1813
+ --input-color-default-stroke: #cfcfcf;
1814
+ --input-color-filled-text: #4f4f4f;
1815
+ --input-color-active-stroke: #9e9e9e;
1816
+ --input-color-disable-text: #919eab;
1817
+ --input-color-disable-stroke: #e7ebed;
1818
+ --input-color-disable-bg: #f2f5f5;
1819
+ --input-color-label-bg: #ffffff;
1820
+ /* #2d2e30; */
1821
+ --input-color-error: #ed2f15;
1822
+ /* Function button */
1823
+ --function-default-solid: #1e3249;
1824
+ --function-default-hover: #35475b;
1825
+ --function-default-hover-bg: rgba(30 50 73 / 0.08);
1826
+ --function-default-stroke: rgba(30 50 73 / 0.48);
1827
+ --function-default-icon: #ffffff;
1828
+ --function-default-outline-icon: #1e3249;
1829
+ --function-active-solid: #9b8f00;
1830
+ --function-active-hover: #b1a400;
1831
+ --function-active-hover-bg: rgba(221 205 0 / 0.08);
1832
+ --function-active-stroke: rgba(177 164 0 / 0.48);
1833
+ --function-active-icon: #ffffff;
1834
+ --text-black: #000000;
1835
+ --text-dark: #18283a;
1836
+ --text-medium: #4b5b6d;
1837
+ --text-light: #8e98a4;
1838
+ --text-grey-dark: #4f4f4f;
1839
+ --text-grey-medium: #7e7e7e;
1840
+ --text-grey-light: #9e9e9e;
1841
+ --text-white: #ffffff;
1842
+ --base-color-bg: #f5f5f5;
1843
+ --base-color-bg2: #f5f5f5;
1844
+ --base-color-bg3: #d8d8d8;
1845
+ --base-color-workspace-stroke: #e2e2e2;
1846
+ --base-color-guideline-stroke: #c5c5c5;
1847
+ --base-color-popup: #ffffff;
1848
+ --base-color-popup-hightlight: #343638;
1849
+ --base-color-popup-curtain: rgba(0 0 0 / 0.6);
1850
+ --common-white: #ffffff;
1851
+ --common-black: #000000;
1852
+ /* ------- Addon base ---------- */
1853
+ --background: var(--base-color-bg);
1854
+ --foreground: var(--common-black);
1855
+ --primary: var(--primary-ramps-primary-100);
1856
+ --secondary: var(--secondary-ramps-secondary-100);
1857
+ --tertiary: var(--tertiary-ramps-tertiary-100);
1858
+ --info: var(--info-info-100);
1859
+ --success: var(--success-success-100);
1860
+ --warning: var(--warning-warning-100);
1861
+ --error: var(--error-error-100);
1862
+ --grey: var(--grey-grey-100);
1863
+ --grey2: var(--grey2-grey2-100);
1864
+ --primary-foreground: var(--state-color-primary-text-solid);
1865
+ --secondary-foreground: var(--state-color-secondary-text-solid);
1866
+ --tertiary-foreground: var(--state-color-tertiary-text-solid);
1867
+ --info-foreground: var(--state-color-info-text-solid);
1868
+ --success-foreground: var(--state-color-success-text-solid);
1869
+ --warning-foreground: var(--state-color-warning-text-solid);
1870
+ --error-foreground: var(--state-color-error-text-solid);
1871
+ --grey-foreground: var(--common-black);
1872
+ --grey2-foreground: var(--common-black);
1873
+ --surface: var(--base-color-bg);
1874
+ --surface-foreground: var(--common-black);
1875
+ --primary-foreground: var(--common-white);
1876
+ --secondary-foreground: var(--common-white);
1877
+ --base-color-popup-foreground: var(--text-dark);
1878
+ --main-transparency-primary-8: rgba(30 50 73 / 0.08);
1879
+ --main-transparency-primary-12: rgba(30 50 73 / 0.12);
1880
+ --main-transparency-primary-16: rgba(30 50 73 / 0.16);
1881
+ --main-transparency-primary-24: rgba(30 50 73 / 0.24);
1882
+ --main-transparency-primary-32: rgba(30 50 73 / 0.32);
1883
+ --main-transparency-primary-48: rgba(30 50 73 / 0.48);
1884
+ --main-transparency-secondary-8: rgba(221 205 0 / 0.08);
1885
+ --main-transparency-secondary-12: rgba(221 205 0 / 0.12);
1886
+ --main-transparency-secondary-16: rgba(221 205 0 / 0.16);
1887
+ --main-transparency-secondary-24: rgba(221 205 0 / 0.24);
1888
+ --main-transparency-secondary-32: rgba(221 205 0 / 0.32);
1889
+ --main-transparency-secondary-48: rgba(221 205 0 / 0.48);
1890
+ --main-transparency-tertiary-8: rgba(158 158 158 / 0.08);
1891
+ --main-transparency-tertiary-12: rgba(158 158 158 / 0.12);
1892
+ --main-transparency-tertiary-16: rgba(158 158 158 / 0.16);
1893
+ --main-transparency-tertiary-24: rgba(158 158 158 / 0.24);
1894
+ --main-transparency-tertiary-32: rgba(158 158 158 / 0.32);
1895
+ --main-transparency-tertiary-48: rgba(158 158 158 / 0.48);
1896
+ --other-transparency-info-8: rgba(41 152 255 / 0.08);
1897
+ --other-transparency-info-12: rgba(41 152 255 / 0.12);
1898
+ --other-transparency-info-16: rgba(41 152 255 / 0.16);
1899
+ --other-transparency-info-24: rgba(41 152 255 / 0.24);
1900
+ --other-transparency-info-32: rgba(41 152 255 / 0.32);
1901
+ --other-transparency-info-48: rgba(41 152 255 / 0.48);
1902
+ --other-transparency-success-8: rgba(84 214 44 / 0.08);
1903
+ --other-transparency-success-12: rgba(84 214 44 / 0.12);
1904
+ --other-transparency-success-16: rgba(84 214 44 / 0.16);
1905
+ --other-transparency-success-24: rgba(84 214 44 / 0.24);
1906
+ --other-transparency-success-32: rgba(84 214 44 / 0.32);
1907
+ --other-transparency-success-48: rgba(84 214 44 / 0.48);
1908
+ --other-transparency-warning-8: rgba(255 193 7 / 0.08);
1909
+ --other-transparency-warning-12: rgba(255 193 7 / 0.12);
1910
+ --other-transparency-warning-16: rgba(255 193 7 / 0.16);
1911
+ --other-transparency-warning-24: rgba(255 193 7 / 0.24);
1912
+ --other-transparency-warning-32: rgba(255 193 7 / 0.32);
1913
+ --other-transparency-warning-48: rgba(255 193 7 / 0.48);
1914
+ --other-transparency-error-8: rgba(255 72 66 / 0.08);
1915
+ --other-transparency-error-12: rgba(255 72 66 / 0.12);
1916
+ --other-transparency-error-16: rgba(255 72 66 / 0.16);
1917
+ --other-transparency-error-24: rgba(255 72 66 / 0.24);
1918
+ --other-transparency-error-32: rgba(255 72 66 / 0.32);
1919
+ --other-transparency-error-48: rgba(255 72 66 / 0.48);
1920
+ --other-transparency-grey-8: rgba(158 158 158 / 0.08);
1921
+ --other-transparency-grey-12: rgba(158 158 158 / 0.12);
1922
+ --other-transparency-grey-16: rgba(158 158 158 / 0.16);
1923
+ --other-transparency-grey-24: rgba(158 158 158 / 0.24);
1924
+ --other-transparency-grey-32: rgba(158 158 158 / 0.32);
1925
+ --other-transparency-grey-48: rgba(158 158 158 / 0.48);
1926
+ --other-transparency-grey2-8: rgba(145 158 171 / 0.08);
1927
+ --other-transparency-grey2-12: rgba(145 158 171 / 0.12);
1928
+ --other-transparency-grey2-16: rgba(145 158 171 / 0.16);
1929
+ --other-transparency-grey2-24: rgba(145 158 171 / 0.24);
1930
+ --other-transparency-grey2-32: rgba(145 158 171 / 0.32);
1931
+ --other-transparency-grey2-48: rgba(145 158 171 / 0.48);
1932
+ --other-transparency-white-8: rgba(255 255 255 / 0.08);
1933
+ --other-transparency-white-12: rgba(255 255 255 / 0.12);
1934
+ --other-transparency-white-16: rgba(255 255 255 / 0.16);
1935
+ --other-transparency-white-24: rgba(255 255 255 / 0.24);
1936
+ --other-transparency-white-32: rgba(255 255 255 / 0.32);
1937
+ --other-transparency-white-48: rgba(255 255 255 / 0.48);
1938
+ --other-transparency-black-8: rgba(0 0 0 / 0.08);
1939
+ --other-transparency-black-12: rgba(0 0 0 / 0.12);
1940
+ --other-transparency-black-16: rgba(0 0 0 / 0.16);
1941
+ --other-transparency-black-24: rgba(0 0 0 / 0.24);
1942
+ --other-transparency-black-32: rgba(0 0 0 / 0.32);
1943
+ --other-transparency-black-48: rgba(0 0 0 / 0.48);
1944
+ --radius-radius-xl: 16px;
1945
+ --radius-radius-xl-rem: 1rem;
1946
+ --radius-radius-l: 12px;
1947
+ --radius-radius-l-rem: 0.75rem;
1948
+ --radius-radius-m: 8px;
1949
+ --radius-radius-m-rem: 0.5rem;
1950
+ --radius-radius-s: 6px;
1951
+ --radius-radius-s-rem: 0.375rem;
1952
+ --radius-radius-xs: 4px;
1953
+ --radius-radius-xs-rem: 0.25rem;
1954
+ --spacing-spacing-xxs: 2px;
1955
+ --spacing-spacing-xxs-rem: 0.125rem;
1956
+ --spacing-spacing-xs: 4px;
1957
+ --spacing-spacing-xs-rem: 0.25rem;
1958
+ --spacing-spacing-s: 8px;
1959
+ --spacing-spacing-s-rem: 0.5rem;
1960
+ --spacing-spacing-m: 12px;
1961
+ --spacing-spacing-m-rem: 0.75rem;
1962
+ --spacing-spacing-l: 16px;
1963
+ --spacing-spacing-l-rem: 1rem;
1964
+ --spacing-spacing-xl: 24px;
1965
+ --spacing-spacing-xl-rem: 1.5rem;
1966
+ --spacing-spacing-xxl: 32px;
1967
+ --spacing-spacing-xxl-rem: 2rem;
1968
+ --spacing-spacing-xxxl: 48px;
1969
+ --spacing-spacing-xxxl-rem: 3rem;
1970
+ /* TYPE */
1971
+ --h1-family: "Montserrat";
1972
+ --h1-size: 64px;
1973
+ --h1-size-rem: 4rem;
1974
+ --h1-weight: 700;
1975
+ --h1-style: normal;
1976
+ --h1-line-height: 80px;
1977
+ --h1-line-height-rem: 5rem;
1978
+ --h2-family: "Montserrat";
1979
+ --h2-size: 48px;
1980
+ --h2-size-rem: 3rem;
1981
+ --h2-weight: 700;
1982
+ --h2-style: normal;
1983
+ --h2-line-height: 60px;
1984
+ --h2-line-height-rem: 3.75rem;
1985
+ --h3-family: "Montserrat";
1986
+ --h3-size: 32px;
1987
+ --h3-size-rem: 2rem;
1988
+ --h3-weight: 700;
1989
+ --h3-style: normal;
1990
+ --h3-line-height: 48px;
1991
+ --h3-line-height-rem: 3rem;
1992
+ --h4-family: "Montserrat";
1993
+ --h4-size: 24px;
1994
+ --h4-size-rem: 1.5rem;
1995
+ --h4-weight: 700;
1996
+ --h4-style: normal;
1997
+ --h4-line-height: 32px;
1998
+ --h4-line-height-rem: 2rem;
1999
+ --h5-family: "Montserrat";
2000
+ --h5-size: 20px;
2001
+ --h5-size-rem: 1.25rem;
2002
+ --h5-weight: 700;
2003
+ --h5-style: normal;
2004
+ --h5-line-height: 28px;
2005
+ --h5-line-height-rem: 1.75rem;
2006
+ --h6-family: "Montserrat";
2007
+ --h6-size: 18px;
2008
+ --h6-size-rem: 1.125rem;
2009
+ --h6-weight: 700;
2010
+ --h6-style: normal;
2011
+ --h6-line-height: 24px;
2012
+ --h6-line-height-rem: 1.5rem;
2013
+ --subtitle1-family: "Montserrat";
2014
+ --subtitle1-size: 16px;
2015
+ --subtitle1-size-rem: 1rem;
2016
+ --subtitle1-weight: 400;
2017
+ --subtitle1-style: normal;
2018
+ --subtitle1-line-height: 24px;
2019
+ --subtitle1-line-height-rem: 1.5rem;
2020
+ --subtitle2-family: "Montserrat";
2021
+ --subtitle2-size: 16px;
2022
+ --subtitle2-size-rem: 1rem;
2023
+ --subtitle2-weight: 500;
2024
+ --subtitle2-style: normal;
2025
+ --subtitle2-line-height: 24px;
2026
+ --subtitle2-line-height-rem: 1.5rem;
2027
+ --subtitle3-family: "Montserrat";
2028
+ --subtitle3-size: 16px;
2029
+ --subtitle3-size-rem: 1rem;
2030
+ --subtitle3-weight: 600;
2031
+ --subtitle3-style: normal;
2032
+ --subtitle3-line-height: 24px;
2033
+ --subtitle3-line-height-rem: 1.5rem;
2034
+ --subtitle4-family: "Montserrat";
2035
+ --subtitle4-size: 14px;
2036
+ --subtitle4-size-rem: 0.875rem;
2037
+ --subtitle4-weight: 400;
2038
+ --subtitle4-style: normal;
2039
+ --subtitle4-line-height: 22px;
2040
+ --subtitle4-line-height-rem: 1.375rem;
2041
+ --subtitle5-family: "Montserrat";
2042
+ --subtitle5-size: 14px;
2043
+ --subtitle5-size-rem: 0.875rem;
2044
+ --subtitle5-weight: 500;
2045
+ --subtitle5-style: normal;
2046
+ --subtitle5-line-height: 22px;
2047
+ --subtitle5-line-height-rem: 1.375rem;
2048
+ --subtitle6-family: "Montserrat";
2049
+ --subtitle6-size: 14px;
2050
+ --subtitle6-size-rem: 0.875rem;
2051
+ --subtitle6-weight: 600;
2052
+ --subtitle6-style: normal;
2053
+ --subtitle6-line-height: 22px;
2054
+ --subtitle6-line-height-rem: 1.375rem;
2055
+ --body1-family: "Montserrat";
2056
+ --body1-size: 16px;
2057
+ --body1-size-rem: 1rem;
2058
+ --body1-weight: 400;
2059
+ --body1-style: normal;
2060
+ --body1-line-height: 20px;
2061
+ --body1-line-height-rem: 1.25rem;
2062
+ --body2-family: "Montserrat";
2063
+ --body2-size: 16px;
2064
+ --body2-size-rem: 1rem;
2065
+ --body2-weight: 500;
2066
+ --body2-style: normal;
2067
+ --body2-line-height: 20px;
2068
+ --body2-line-height-rem: 1.25rem;
2069
+ --body3-family: "Montserrat";
2070
+ --body3-size: 14px;
2071
+ --body3-size-rem: 0.875rem;
2072
+ --body3-weight: 400;
2073
+ --body3-style: normal;
2074
+ --body3-line-height: 18px;
2075
+ --body3-line-height-rem: 1.125rem;
2076
+ --body4-family: "Montserrat";
2077
+ --body4-size: 14px;
2078
+ --body4-size-rem: 0.875rem;
2079
+ --body4-weight: 500;
2080
+ --body4-style: normal;
2081
+ --body4-line-height: 18px;
2082
+ --body4-line-height-rem: 1.125rem;
2083
+ --small1-family: "Montserrat";
2084
+ --small1-size: 12px;
2085
+ --small1-size-rem: 0.75rem;
2086
+ --small1-weight: 400;
2087
+ --small1-style: normal;
2088
+ --small1-line-height: 14px;
2089
+ --small1-line-height-rem: 0.875rem;
2090
+ --small2-family: "Montserrat";
2091
+ --small2-size: 12px;
2092
+ --small2-size-rem: 0.75rem;
2093
+ --small2-weight: 500;
2094
+ --small2-style: normal;
2095
+ --small2-line-height: 14px;
2096
+ --small2-line-height-rem: 0.875rem;
2097
+ --small3-family: "Montserrat";
2098
+ --small3-size: 12px;
2099
+ --small3-size-rem: 0.75rem;
2100
+ --small3-weight: 600;
2101
+ --small3-style: normal;
2102
+ --small3-line-height: 14px;
2103
+ --small3-line-height-rem: 0.875rem;
2104
+ --small4-family: "Montserrat";
2105
+ --small4-size: 10px;
2106
+ --small4-size-rem: 0.625rem;
2107
+ --small4-weight: 400;
2108
+ --small4-style: normal;
2109
+ --small4-line-height: 12px;
2110
+ --small4-line-height-rem: 0.75rem;
2111
+ --small5-family: "Montserrat";
2112
+ --small5-size: 10px;
2113
+ --small5-size-rem: 0.625rem;
2114
+ --small5-weight: 500;
2115
+ --small5-style: normal;
2116
+ --small5-line-height: 12px;
2117
+ --small5-line-height-rem: 0.75rem;
2118
+ --small6-family: "Montserrat";
2119
+ --small6-size: 10px;
2120
+ --small6-size-rem: 0.625rem;
2121
+ --small6-weight: 600;
2122
+ --small6-style: normal;
2123
+ --small6-line-height: 12px;
2124
+ --small6-line-height-rem: 0.75rem;
2125
+ --small7-family: "Montserrat";
2126
+ --small7-size: 8px;
2127
+ --small7-size-rem: 0.5rem;
2128
+ --small7-weight: 600;
2129
+ --small7-style: normal;
2130
+ --small7-line-height: 10px;
2131
+ --small7-line-height-rem: 0.625rem;
2132
+ --small8-family: "Montserrat";
2133
+ --small8-size: 8px;
2134
+ --small8-size-rem: 0.5rem;
2135
+ --small8-weight: 700;
2136
+ --small8-style: normal;
2137
+ --small8-line-height: 10px;
2138
+ --small8-line-height-rem: 0.625rem;
2139
+ --label-label1-family: "Montserrat";
2140
+ --label-label1-size: 12px;
2141
+ --label-label1-size-rem: 0.75rem;
2142
+ --label-label1-weight: 400;
2143
+ --label-label1-style: normal;
2144
+ --label-label1-line-height: 12px;
2145
+ --label-label1-line-height-rem: 0.75rem;
2146
+ --label-label2-family: "Montserrat";
2147
+ --label-label2-size: 10px;
2148
+ --label-label2-size-rem: 0.625rem;
2149
+ --label-label2-weight: 400;
2150
+ --label-label2-style: normal;
2151
+ --label-label2-line-height: 10px;
2152
+ --label-label2-line-height-rem: 0.625rem;
2153
+ --button-button-l-family: "Montserrat";
2154
+ --button-button-l-size: 16px;
2155
+ --button-button-l-size-rem: 1rem;
2156
+ --button-button-l-weight: 700;
2157
+ --button-button-l-style: normal;
2158
+ --button-button-l-line-height: 24px;
2159
+ --button-button-l-line-height-rem: 1.5rem;
2160
+ --button-button-ms-family: "Montserrat";
2161
+ --button-button-ms-size: 14px;
2162
+ --button-button-ms-size-rem: 0.875rem;
2163
+ --button-button-ms-weight: 700;
2164
+ --button-button-ms-style: normal;
2165
+ --button-button-ms-line-height: 22px;
2166
+ --button-button-ms-line-height-rem: 1.375rem;
2167
+ /* ------------------------------------------------------------------ */
2168
+ /* Button Component Tokens */
2169
+ /* ------------------------------------------------------------------ */
2170
+ /* Naming Convention: --[component]-[theme]-[mode]-[state]-[property] */
2171
+ /* States: [default, hover, active, disabled] */
2172
+ /* ------------------------------------------------------------------ */
2173
+ /* ------------------------------------------------------------------ */
2174
+ /* Solid Mode Tokens - Primary Theme */
2175
+ /* ------------------------------------------------------------------ */
2176
+ /* Default State */
2177
+ --button-primary-solid-default-bg: var(--state-color-primary-default);
2178
+ --button-primary-solid-default-border: var(--state-color-primary-default);
2179
+ --button-primary-solid-default-text: var(--state-color-primary-text-solid);
2180
+ /* Hover State */
2181
+ --button-primary-solid-hover-bg: var(--state-color-primary-hover);
2182
+ --button-primary-solid-hover-border: var(--state-color-primary-hover);
2183
+ --button-primary-solid-hover-text: var(--state-color-primary-text-solid);
2184
+ /* Active State */
2185
+ --button-primary-solid-active-bg: var(--state-color-primary-pressed);
2186
+ --button-primary-solid-active-border: var(--state-color-primary-pressed);
2187
+ --button-primary-solid-active-text: var(--state-color-primary-text-solid);
2188
+ /* Disabled State */
2189
+ --button-primary-solid-disabled-bg: var(--state-color-disable-solid);
2190
+ --button-primary-solid-disabled-border: var(--state-color-disable-solid);
2191
+ --button-primary-solid-disabled-text: var(--state-color-disable-outline);
2192
+ /* ------------------------------------------------------------------ */
2193
+ /* Outline Mode Tokens - Primary Theme */
2194
+ /* ------------------------------------------------------------------ */
2195
+ /* Default State */
2196
+ --button-primary-outline-default-bg: transparent;
2197
+ --button-primary-outline-default-border: var(--state-color-primary-stroke);
2198
+ --button-primary-outline-default-text: var(--state-color-primary-text-outline);
2199
+ /* Hover State */
2200
+ --button-primary-outline-hover-bg: var(--state-color-primary-hover-bg);
2201
+ --button-primary-outline-hover-border: var(--state-color-primary-hover);
2202
+ --button-primary-outline-hover-text: var(--state-color-primary-text-hover);
2203
+ /* Active State */
2204
+ --button-primary-outline-active-bg: var(--state-color-primary-hover-bg);
2205
+ --button-primary-outline-active-border: var(--state-color-primary-pressed);
2206
+ --button-primary-outline-active-text: var(--state-color-primary-text-pressed);
2207
+ /* Disabled State */
2208
+ --button-primary-outline-disabled-bg: transparent;
2209
+ --button-primary-outline-disabled-border: var(--state-color-disable-outline);
2210
+ --button-primary-outline-disabled-text: var(--state-color-disable-outline);
2211
+ /* ------------------------------------------------------------------ */
2212
+ /* Flat Mode Tokens - Primary Theme */
2213
+ /* ------------------------------------------------------------------ */
2214
+ /* Default State */
2215
+ --button-primary-flat-default-bg: transparent;
2216
+ --button-primary-flat-default-border: transparent;
2217
+ --button-primary-flat-default-text: var(--state-color-primary-text-outline);
2218
+ /* Hover State */
2219
+ --button-primary-flat-hover-bg: var(--state-color-primary-hover-bg);
2220
+ --button-primary-flat-hover-border: transparent;
2221
+ --button-primary-flat-hover-text: var(--state-color-primary-text-hover);
2222
+ /* Active State */
2223
+ --button-primary-flat-active-bg: transparent;
2224
+ --button-primary-flat-active-border: transparent;
2225
+ --button-primary-flat-active-text: var(--state-color-primary-text-pressed);
2226
+ /* Disabled State */
2227
+ --button-primary-flat-disabled-bg: transparent;
2228
+ --button-primary-flat-disabled-border: transparent;
2229
+ --button-primary-flat-disabled-text: var(--state-color-disable-outline);
2230
+ /* ------------------------------------------------------------------ */
2231
+ /* Solid Mode Tokens - Secondary Theme */
2232
+ /* ------------------------------------------------------------------ */
2233
+ /* Default State */
2234
+ --button-secondary-solid-default-bg: var(--state-color-secondary-default);
2235
+ --button-secondary-solid-default-border: var(--state-color-secondary-default);
2236
+ --button-secondary-solid-default-text: var(--state-color-secondary-text-solid);
2237
+ /* Hover State */
2238
+ --button-secondary-solid-hover-bg: var(--state-color-secondary-hover);
2239
+ --button-secondary-solid-hover-border: var(--state-color-secondary-hover);
2240
+ --button-secondary-solid-hover-text: var(--state-color-secondary-text-solid);
2241
+ /* Active State */
2242
+ --button-secondary-solid-active-bg: var(--state-color-secondary-pressed);
2243
+ --button-secondary-solid-active-border: var(--state-color-secondary-pressed);
2244
+ --button-secondary-solid-active-text: var(--state-color-secondary-text-solid);
2245
+ /* Disabled State */
2246
+ --button-secondary-solid-disabled-bg: var(--state-color-disable-solid);
2247
+ --button-secondary-solid-disabled-border: var(--state-color-disable-solid);
2248
+ --button-secondary-solid-disabled-text: var(--state-color-disable-outline);
2249
+ /* ------------------------------------------------------------------ */
2250
+ /* Outline Mode Tokens - secondary Theme */
2251
+ /* ------------------------------------------------------------------ */
2252
+ /* Default State */
2253
+ --button-secondary-outline-default-bg: transparent;
2254
+ --button-secondary-outline-default-border: var(--state-color-secondary-stroke);
2255
+ --button-secondary-outline-default-text: var(--state-color-secondary-text-outline);
2256
+ /* Hover State */
2257
+ --button-secondary-outline-hover-bg: var(--state-color-secondary-hover-bg);
2258
+ --button-secondary-outline-hover-border: var(--state-color-secondary-hover);
2259
+ --button-secondary-outline-hover-text: var(--state-color-secondary-text-hover);
2260
+ /* Active State */
2261
+ --button-secondary-outline-active-bg: var(--state-color-secondary-hover-bg);
2262
+ --button-secondary-outline-active-border: var(--state-color-secondary-pressed);
2263
+ --button-secondary-outline-active-text: var(--state-color-secondary-text-pressed);
2264
+ /* Disabled State */
2265
+ --button-secondary-outline-disabled-bg: transparent;
2266
+ --button-secondary-outline-disabled-border: var(--state-color-disable-outline);
2267
+ --button-secondary-outline-disabled-text: var(--state-color-disable-outline);
2268
+ /* ------------------------------------------------------------------ */
2269
+ /* Flat Mode Tokens - Secondary Theme */
2270
+ /* ------------------------------------------------------------------ */
2271
+ /* Default State */
2272
+ --button-secondary-flat-default-bg: transparent;
2273
+ --button-secondary-flat-default-border: transparent;
2274
+ --button-secondary-flat-default-text: var(--state-color-secondary-text-outline);
2275
+ /* Hover State */
2276
+ --button-secondary-flat-hover-bg: var(--state-color-secondary-hover-bg);
2277
+ --button-secondary-flat-hover-border: transparent;
2278
+ --button-secondary-flat-hover-text: var(--state-color-secondary-text-hover);
2279
+ /* Active State */
2280
+ --button-secondary-flat-active-bg: transparent;
2281
+ --button-secondary-flat-active-border: transparent;
2282
+ --button-secondary-flat-active-text: var(--state-color-secondary-text-pressed);
2283
+ /* Disabled State */
2284
+ --button-secondary-flat-disabled-bg: transparent;
2285
+ --button-secondary-flat-disabled-border: transparent;
2286
+ --button-secondary-flat-disabled-text: var(--state-color-disable-outline);
2287
+ /* ------------------------------------------------------------------ */
2288
+ /* Solid Mode Tokens - Tertiary Theme */
2289
+ /* ------------------------------------------------------------------ */
2290
+ /* Default State */
2291
+ --button-tertiary-solid-default-bg: var(--state-color-tertiary-default);
2292
+ --button-tertiary-solid-default-border: var(--state-color-tertiary-default);
2293
+ --button-tertiary-solid-default-text: var(--state-color-tertiary-text-solid);
2294
+ /* Hover State */
2295
+ --button-tertiary-solid-hover-bg: var(--state-color-tertiary-hover);
2296
+ --button-tertiary-solid-hover-border: var(--state-color-tertiary-hover);
2297
+ --button-tertiary-solid-hover-text: var(--state-color-tertiary-text-solid);
2298
+ /* Active State */
2299
+ --button-tertiary-solid-active-bg: var(--state-color-tertiary-pressed);
2300
+ --button-tertiary-solid-active-border: var(--state-color-tertiary-pressed);
2301
+ --button-tertiary-solid-active-text: var(--state-color-tertiary-text-solid);
2302
+ /* Disabled State */
2303
+ --button-tertiary-solid-disabled-bg: var(--state-color-disable-solid);
2304
+ --button-tertiary-solid-disabled-border: var(--state-color-disable-solid);
2305
+ --button-tertiary-solid-disabled-text: var(--state-color-disable-outline);
2306
+ /* ------------------------------------------------------------------ */
2307
+ /* Outline Mode Tokens - Tertiary Theme */
2308
+ /* ------------------------------------------------------------------ */
2309
+ /* Default State */
2310
+ --button-tertiary-outline-default-bg: transparent;
2311
+ --button-tertiary-outline-default-border: var(--state-color-tertiary-stroke);
2312
+ --button-tertiary-outline-default-text: var(--state-color-tertiary-text-outline);
2313
+ /* Hover State */
2314
+ --button-tertiary-outline-hover-bg: var(--state-color-tertiary-hover-bg);
2315
+ --button-tertiary-outline-hover-border: var(--state-color-tertiary-hover);
2316
+ --button-tertiary-outline-hover-text: var(--state-color-tertiary-text-hover);
2317
+ /* Active State */
2318
+ --button-tertiary-outline-active-bg: var(--state-color-tertiary-hover-bg);
2319
+ --button-tertiary-outline-active-border: var(--state-color-tertiary-pressed);
2320
+ --button-tertiary-outline-active-text: var(--state-color-tertiary-text-pressed);
2321
+ /* Disabled State */
2322
+ --button-tertiary-outline-disabled-bg: transparent;
2323
+ --button-tertiary-outline-disabled-border: var(--state-color-disable-outline);
2324
+ --button-tertiary-outline-disabled-text: var(--state-color-disable-outline);
2325
+ /* ------------------------------------------------------------------ */
2326
+ /* Flat Mode Tokens - Tertiary Theme */
2327
+ /* ------------------------------------------------------------------ */
2328
+ /* Default State */
2329
+ --button-tertiary-flat-default-bg: transparent;
2330
+ --button-tertiary-flat-default-border: transparent;
2331
+ --button-tertiary-flat-default-text: var(--state-color-tertiary-text-outline);
2332
+ /* Hover State */
2333
+ --button-tertiary-flat-hover-bg: var(--state-color-tertiary-hover-bg);
2334
+ --button-tertiary-flat-hover-border: transparent;
2335
+ --button-tertiary-flat-hover-text: var(--state-color-tertiary-text-hover);
2336
+ /* Active State */
2337
+ --button-tertiary-flat-active-bg: transparent;
2338
+ --button-tertiary-flat-active-border: transparent;
2339
+ --button-tertiary-flat-active-text: var(--state-color-tertiary-text-pressed);
2340
+ /* Disabled State */
2341
+ --button-tertiary-flat-disabled-bg: transparent;
2342
+ --button-tertiary-flat-disabled-border: transparent;
2343
+ --button-tertiary-flat-disabled-text: var(--state-color-disable-outline);
2344
+ /* ------------------------------------------------------------------ */
2345
+ /* Solid Mode Tokens - Info Theme */
2346
+ /* ------------------------------------------------------------------ */
2347
+ /* Default State */
2348
+ --button-info-solid-default-bg: var(--state-color-info-default);
2349
+ --button-info-solid-default-border: var(--state-color-info-default);
2350
+ --button-info-solid-default-text: var(--state-color-info-text-solid);
2351
+ /* Hover State */
2352
+ --button-info-solid-hover-bg: var(--state-color-info-hover);
2353
+ --button-info-solid-hover-border: var(--state-color-info-hover);
2354
+ --button-info-solid-hover-text: var(--state-color-info-text-solid);
2355
+ /* Active State */
2356
+ --button-info-solid-active-bg: var(--state-color-info-pressed);
2357
+ --button-info-solid-active-border: var(--state-color-info-pressed);
2358
+ --button-info-solid-active-text: var(--state-color-info-text-solid);
2359
+ /* Disabled State */
2360
+ --button-info-solid-disabled-bg: var(--state-color-disable-solid);
2361
+ --button-info-solid-disabled-border: var(--state-color-disable-solid);
2362
+ --button-info-solid-disabled-text: var(--state-color-disable-outline);
2363
+ /* ------------------------------------------------------------------ */
2364
+ /* Outline Mode Tokens - Info Theme */
2365
+ /* ------------------------------------------------------------------ */
2366
+ /* Default State */
2367
+ --button-info-outline-default-bg: transparent;
2368
+ --button-info-outline-default-border: var(--state-color-info-stroke);
2369
+ --button-info-outline-default-text: var(--state-color-info-text-outline);
2370
+ /* Hover State */
2371
+ --button-info-outline-hover-bg: var(--state-color-info-hover-bg);
2372
+ --button-info-outline-hover-border: var(--state-color-info-hover);
2373
+ --button-info-outline-hover-text: var(--state-color-info-text-hover);
2374
+ /* Active State */
2375
+ --button-info-outline-active-bg: var(--state-color-info-hover-bg);
2376
+ --button-info-outline-active-border: var(--state-color-info-pressed);
2377
+ --button-info-outline-active-text: var(--state-color-info-text-pressed);
2378
+ /* Disabled State */
2379
+ --button-info-outline-disabled-bg: transparent;
2380
+ --button-info-outline-disabled-border: var(--state-color-disable-outline);
2381
+ --button-info-outline-disabled-text: var(--state-color-disable-outline);
2382
+ /* ------------------------------------------------------------------ */
2383
+ /* Flat Mode Tokens - Info Theme */
2384
+ /* ------------------------------------------------------------------ */
2385
+ /* Default State */
2386
+ --button-info-flat-default-bg: transparent;
2387
+ --button-info-flat-default-border: transparent;
2388
+ --button-info-flat-default-text: var(--state-color-info-text-outline);
2389
+ /* Hover State */
2390
+ --button-info-flat-hover-bg: var(--state-color-info-hover-bg);
2391
+ --button-info-flat-hover-border: transparent;
2392
+ --button-info-flat-hover-text: var(--state-color-info-text-hover);
2393
+ /* Active State */
2394
+ --button-info-flat-active-bg: transparent;
2395
+ --button-info-flat-active-border: transparent;
2396
+ --button-info-flat-active-text: var(--state-color-info-text-pressed);
2397
+ /* Disabled State */
2398
+ --button-info-flat-disabled-bg: transparent;
2399
+ --button-info-flat-disabled-border: transparent;
2400
+ --button-info-flat-disabled-text: var(--state-color-disable-outline);
2401
+ /* ------------------------------------------------------------------ */
2402
+ /* Solid Mode Tokens - Success Theme */
2403
+ /* ------------------------------------------------------------------ */
2404
+ /* Default State */
2405
+ --button-success-solid-default-bg: var(--state-color-success-default);
2406
+ --button-success-solid-default-border: var(--state-color-success-default);
2407
+ --button-success-solid-default-text: var(--state-color-success-text-solid);
2408
+ /* Hover State */
2409
+ --button-success-solid-hover-bg: var(--state-color-success-hover);
2410
+ --button-success-solid-hover-border: var(--state-color-success-hover);
2411
+ --button-success-solid-hover-text: var(--state-color-success-text-solid);
2412
+ /* Active State */
2413
+ --button-success-solid-active-bg: var(--state-color-success-pressed);
2414
+ --button-success-solid-active-border: var(--state-color-success-pressed);
2415
+ --button-success-solid-active-text: var(--state-color-success-text-solid);
2416
+ /* Disabled State */
2417
+ --button-success-solid-disabled-bg: var(--state-color-disable-solid);
2418
+ --button-success-solid-disabled-border: var(--state-color-disable-solid);
2419
+ --button-success-solid-disabled-text: var(--state-color-disable-outline);
2420
+ /* ------------------------------------------------------------------ */
2421
+ /* Outline Mode Tokens - Success Theme */
2422
+ /* ------------------------------------------------------------------ */
2423
+ /* Default State */
2424
+ --button-success-outline-default-bg: transparent;
2425
+ --button-success-outline-default-border: var(--state-color-success-stroke);
2426
+ --button-success-outline-default-text: var(--state-color-success-text-outline);
2427
+ /* Hover State */
2428
+ --button-success-outline-hover-bg: var(--state-color-success-hover-bg);
2429
+ --button-success-outline-hover-border: var(--state-color-success-hover);
2430
+ --button-success-outline-hover-text: var(--state-color-success-text-hover);
2431
+ /* Active State */
2432
+ --button-success-outline-active-bg: var(--state-color-success-hover-bg);
2433
+ --button-success-outline-active-border: var(--state-color-success-pressed);
2434
+ --button-success-outline-active-text: var(--state-color-success-text-pressed);
2435
+ /* Disabled State */
2436
+ --button-success-outline-disabled-bg: transparent;
2437
+ --button-success-outline-disabled-border: var(--state-color-disable-outline);
2438
+ --button-success-outline-disabled-text: var(--state-color-disable-outline);
2439
+ /* ------------------------------------------------------------------ */
2440
+ /* Flat Mode Tokens - Success Theme */
2441
+ /* ------------------------------------------------------------------ */
2442
+ /* Default State */
2443
+ --button-success-flat-default-bg: transparent;
2444
+ --button-success-flat-default-border: transparent;
2445
+ --button-success-flat-default-text: var(--state-color-success-text-outline);
2446
+ /* Hover State */
2447
+ --button-success-flat-hover-bg: var(--state-color-success-hover-bg);
2448
+ --button-success-flat-hover-border: transparent;
2449
+ --button-success-flat-hover-text: var(--state-color-success-text-hover);
2450
+ /* Active State */
2451
+ --button-success-flat-active-bg: transparent;
2452
+ --button-success-flat-active-border: transparent;
2453
+ --button-success-flat-active-text: var(--state-color-success-text-pressed);
2454
+ /* Disabled State */
2455
+ --button-success-flat-disabled-bg: transparent;
2456
+ --button-success-flat-disabled-border: transparent;
2457
+ --button-success-flat-disabled-text: var(--state-color-disable-outline);
2458
+ /* ------------------------------------------------------------------ */
2459
+ /* Solid Mode Tokens - Warning Theme */
2460
+ /* ------------------------------------------------------------------ */
2461
+ /* Default State */
2462
+ --button-warning-solid-default-bg: var(--state-color-warning-default);
2463
+ --button-warning-solid-default-border: var(--state-color-warning-default);
2464
+ --button-warning-solid-default-text: var(--state-color-warning-text-solid);
2465
+ /* Hover State */
2466
+ --button-warning-solid-hover-bg: var(--state-color-warning-hover);
2467
+ --button-warning-solid-hover-border: var(--state-color-warning-hover);
2468
+ --button-warning-solid-hover-text: var(--state-color-warning-text-solid);
2469
+ /* Active State */
2470
+ --button-warning-solid-active-bg: var(--state-color-warning-pressed);
2471
+ --button-warning-solid-active-border: var(--state-color-warning-pressed);
2472
+ --button-warning-solid-active-text: var(--state-color-warning-text-solid);
2473
+ /* Disabled State */
2474
+ --button-warning-solid-disabled-bg: var(--state-color-disable-solid);
2475
+ --button-warning-solid-disabled-border: var(--state-color-disable-solid);
2476
+ --button-warning-solid-disabled-text: var(--state-color-disable-outline);
2477
+ /* ------------------------------------------------------------------ */
2478
+ /* Outline Mode Tokens - Warning Theme */
2479
+ /* ------------------------------------------------------------------ */
2480
+ /* Default State */
2481
+ --button-warning-outline-default-bg: transparent;
2482
+ --button-warning-outline-default-border: var(--state-color-warning-stroke);
2483
+ --button-warning-outline-default-text: var(--state-color-warning-text-outline);
2484
+ /* Hover State */
2485
+ --button-warning-outline-hover-bg: var(--state-color-warning-hover-bg);
2486
+ --button-warning-outline-hover-border: var(--state-color-warning-hover);
2487
+ --button-warning-outline-hover-text: var(--state-color-warning-text-hover);
2488
+ /* Active State */
2489
+ --button-warning-outline-active-bg: var(--state-color-warning-hover-bg);
2490
+ --button-warning-outline-active-border: var(--state-color-warning-pressed);
2491
+ --button-warning-outline-active-text: var(--state-color-warning-text-pressed);
2492
+ /* Disabled State */
2493
+ --button-warning-outline-disabled-bg: transparent;
2494
+ --button-warning-outline-disabled-border: var(--state-color-disable-outline);
2495
+ --button-warning-outline-disabled-text: var(--state-color-disable-outline);
2496
+ /* ------------------------------------------------------------------ */
2497
+ /* Flat Mode Tokens - Warning Theme */
2498
+ /* ------------------------------------------------------------------ */
2499
+ /* Default State */
2500
+ --button-warning-flat-default-bg: transparent;
2501
+ --button-warning-flat-default-border: transparent;
2502
+ --button-warning-flat-default-text: var(--state-color-warning-text-outline);
2503
+ /* Hover State */
2504
+ --button-warning-flat-hover-bg: var(--state-color-warning-hover-bg);
2505
+ --button-warning-flat-hover-border: transparent;
2506
+ --button-warning-flat-hover-text: var(--state-color-warning-text-hover);
2507
+ /* Active State */
2508
+ --button-warning-flat-active-bg: transparent;
2509
+ --button-warning-flat-active-border: transparent;
2510
+ --button-warning-flat-active-text: var(--state-color-warning-text-pressed);
2511
+ /* Disabled State */
2512
+ --button-warning-flat-disabled-bg: transparent;
2513
+ --button-warning-flat-disabled-border: transparent;
2514
+ --button-warning-flat-disabled-text: var(--state-color-disable-outline);
2515
+ /* ------------------------------------------------------------------ */
2516
+ /* Solid Mode Tokens - Error Theme */
2517
+ /* ------------------------------------------------------------------ */
2518
+ /* Default State */
2519
+ --button-error-solid-default-bg: var(--state-color-error-default);
2520
+ --button-error-solid-default-border: var(--state-color-error-default);
2521
+ --button-error-solid-default-text: var(--state-color-error-text-solid);
2522
+ /* Hover State */
2523
+ --button-error-solid-hover-bg: var(--state-color-error-hover);
2524
+ --button-error-solid-hover-border: var(--state-color-error-hover);
2525
+ --button-error-solid-hover-text: var(--state-color-error-text-solid);
2526
+ /* Active State */
2527
+ --button-error-solid-active-bg: var(--state-color-error-pressed);
2528
+ --button-error-solid-active-border: var(--state-color-error-pressed);
2529
+ --button-error-solid-active-text: var(--state-color-error-text-solid);
2530
+ /* Disabled State */
2531
+ --button-error-solid-disabled-bg: var(--state-color-disable-solid);
2532
+ --button-error-solid-disabled-border: var(--state-color-disable-solid);
2533
+ --button-error-solid-disabled-text: var(--state-color-disable-outline);
2534
+ /* ------------------------------------------------------------------ */
2535
+ /* Outline Mode Tokens - Error Theme */
2536
+ /* ------------------------------------------------------------------ */
2537
+ /* Default State */
2538
+ --button-error-outline-default-bg: transparent;
2539
+ --button-error-outline-default-border: var(--state-color-error-stroke);
2540
+ --button-error-outline-default-text: var(--state-color-error-text-outline);
2541
+ /* Hover State */
2542
+ --button-error-outline-hover-bg: var(--state-color-error-hover-bg);
2543
+ --button-error-outline-hover-border: var(--state-color-error-hover);
2544
+ --button-error-outline-hover-text: var(--state-color-error-text-hover);
2545
+ /* Active State */
2546
+ --button-error-outline-active-bg: var(--state-color-error-hover-bg);
2547
+ --button-error-outline-active-border: var(--state-color-error-pressed);
2548
+ --button-error-outline-active-text: var(--state-color-error-text-pressed);
2549
+ /* Disabled State */
2550
+ --button-error-outline-disabled-bg: transparent;
2551
+ --button-error-outline-disabled-border: var(--state-color-disable-outline);
2552
+ --button-error-outline-disabled-text: var(--state-color-disable-outline);
2553
+ /* ------------------------------------------------------------------ */
2554
+ /* Flat Mode Tokens - Error Theme */
2555
+ /* ------------------------------------------------------------------ */
2556
+ /* Default State */
2557
+ --button-error-flat-default-bg: transparent;
2558
+ --button-error-flat-default-border: transparent;
2559
+ --button-error-flat-default-text: var(--state-color-error-text-outline);
2560
+ /* Hover State */
2561
+ --button-error-flat-hover-bg: var(--state-color-error-hover-bg);
2562
+ --button-error-flat-hover-border: transparent;
2563
+ --button-error-flat-hover-text: var(--state-color-error-text-hover);
2564
+ /* Active State */
2565
+ --button-error-flat-active-bg: transparent;
2566
+ --button-error-flat-active-border: transparent;
2567
+ --button-error-flat-active-text: var(--state-color-error-text-pressed);
2568
+ /* Disabled State */
2569
+ --button-error-flat-disabled-bg: transparent;
2570
+ --button-error-flat-disabled-border: transparent;
2571
+ --button-error-flat-disabled-text: var(--state-color-disable-outline);
2572
+ /* --------------------------------------------------------------------------------- */
2573
+ /* Action Button Component Tokens */
2574
+ /* --------------------------------------------------------------------------------- */
2575
+ /* Naming Convention: --[component]-[mode]-[state]-[property] */
2576
+ /* Mone: [solid, outline, icon] */
2577
+ /* States: [default, hover, pressed, active, active-pressed active-hover disabled] */
2578
+ /* --------------------------------------------------------------------------------- */
2579
+ /* ------------------------------------------------------------------ */
2580
+ /* Solid Mode Tokens */
2581
+ /* ------------------------------------------------------------------ */
2582
+ /* Default State */
2583
+ --action-button-solid-default-bg: var(--function-default-solid);
2584
+ --action-button-solid-default-border: var(--function-default-solid);
2585
+ --action-button-solid-default-text: var(--function-default-icon);
2586
+ /* Hover State */
2587
+ --action-button-solid-hover-bg: var(--function-default-hover);
2588
+ --action-button-solid-hover-border: var(--function-default-hover);
2589
+ --action-button-solid-hover-text: var(--function-default-icon);
2590
+ /* Pressed State */
2591
+ --action-button-solid-pressed-bg: var(--function-default-solid);
2592
+ --action-button-solid-pressed-border: var(--function-default-solid);
2593
+ --action-button-solid-pressed-text: var(--function-default-icon);
2594
+ /* Active State */
2595
+ --action-button-solid-active-bg: var(--function-active-solid);
2596
+ --action-button-solid-active-border: var(--function-active-solid);
2597
+ --action-button-solid-active-text: var(--function-active-icon);
2598
+ /* Active Hover State */
2599
+ --action-button-solid-active-hover-bg: var(--function-active-hover);
2600
+ --action-button-solid-active-hover-border: var(--function-active-hover);
2601
+ --action-button-solid-active-hover-text: var(--function-active-icon);
2602
+ /* Active Pressed State */
2603
+ --action-button-solid-active-pressed-bg: var(--function-active-solid);
2604
+ --action-button-solid-active-pressed-border: var(--function-active-solid);
2605
+ --action-button-solid-active-pressed-text: var(--function-active-icon);
2606
+ /* Disabled State */
2607
+ --action-button-solid-disabled-bg: var(--state-color-disable-solid);
2608
+ --action-button-solid-disabled-border: var(--state-color-disable-solid);
2609
+ --action-button-solid-disabled-text: var(--state-color-disable-outline);
2610
+ /* ------------------------------------------------------------------ */
2611
+ /* Outline Mode Tokens */
2612
+ /* ------------------------------------------------------------------ */
2613
+ /* Default State */
2614
+ --action-button-outline-default-bg: transparent;
2615
+ --action-button-outline-default-border: var(--function-default-stroke);
2616
+ --action-button-outline-default-text: var(--function-default-outline-icon);
2617
+ /* Hover State */
2618
+ --action-button-outline-hover-bg: var(--function-default-hover-bg);
2619
+ --action-button-outline-hover-border: var(--function-default-hover);
2620
+ --action-button-outline-hover-text: var(--function-default-hover);
2621
+ /* Pressed State */
2622
+ --action-button-outline-pressed-bg: var(--function-default-hover-bg);
2623
+ --action-button-outline-pressed-border: var(--function-default-stroke);
2624
+ --action-button-outline-pressed-text: var(--function-default-outline-icon);
2625
+ /* Active State */
2626
+ --action-button-outline-active-bg: transparent;
2627
+ --action-button-outline-active-border: var(--function-active-stroke);
2628
+ --action-button-outline-active-text: var(--function-active-solid);
2629
+ /* Active Hover State */
2630
+ --action-button-outline-active-hover-bg: var(--function-active-hover-bg);
2631
+ --action-button-outline-active-hover-border: var(--function-active-hover);
2632
+ --action-button-outline-active-hover-text: var(--function-active-hover);
2633
+ /* Active Pressed State */
2634
+ --action-button-outline-active-pressed-bg: var(--function-active-hover-bg);
2635
+ --action-button-outline-active-pressed-border: var(--function-active-stroke);
2636
+ --action-button-outline-active-pressed-text: var(--function-active-solid);
2637
+ /* Disabled State */
2638
+ --action-button-outline-disabled-bg: transparent;
2639
+ --action-button-outline-disabled-border: var(--state-color-disable-outline);
2640
+ --action-button-outline-disabled-text: var(--state-color-disable-outline);
2641
+ /* ------------------------------------------------------------------ */
2642
+ /* Icon Mode Tokens */
2643
+ /* ------------------------------------------------------------------ */
2644
+ /* Default State */
2645
+ --action-button-icon-default-bg: transparent;
2646
+ --action-button-icon-default-border: transparent;
2647
+ --action-button-icon-default-text: var(--function-default-outline-icon);
2648
+ /* Hover State */
2649
+ --action-button-icon-hover-bg: var(--function-default-hover-bg);
2650
+ --action-button-icon-hover-border: transparent;
2651
+ --action-button-icon-hover-text: var(--function-default-hover);
2652
+ /* Pressed State */
2653
+ --action-button-icon-pressed-bg: transparent;
2654
+ --action-button-icon-pressed-border: transparent;
2655
+ --action-button-icon-pressed-text: var(--function-default-outline-icon);
2656
+ /* Active State */
2657
+ --action-button-icon-active-bg: transparent;
2658
+ --action-button-icon-active-border: transparent;
2659
+ --action-button-icon-active-text: var(--function-active-solid);
2660
+ /* Active Hover State */
2661
+ --action-button-icon-active-hover-bg: var(--function-active-hover-bg);
2662
+ --action-button-icon-active-hover-border: transparent;
2663
+ --action-button-icon-active-hover-text: var(--function-active-hover);
2664
+ /* Active Pressed State */
2665
+ --action-button-icon-active-pressed-bg: transparent;
2666
+ --action-button-icon-active-pressed-border: transparent;
2667
+ --action-button-icon-active-pressed-text: var(--function-active-solid);
2668
+ /* Disabled State */
2669
+ --action-button-icon-disabled-bg: transparent;
2670
+ --action-button-icon-disabled-border: transparent;
2671
+ --action-button-icon-disabled-text: var(--state-color-disable-outline);
2672
+ /* ------------------------------------------------------------------ */
2673
+ /* Loading Component Tokens */
2674
+ /* ------------------------------------------------------------------ */
2675
+ /* Naming Convention: --[component]-[element]-[property] */
2676
+ /* Element: [progress, track] */
2677
+ /* ------------------------------------------------------------------ */
2678
+ --loading-process-color: var(--secondary);
1534
2679
  --loading-track-color: #9E9E9E7A;
2680
+ /* Navbar */
2681
+ --navbar-height: 58px;
2682
+ --navbar-bg-color: var(--primary-default);
2683
+ --navbar-text-color: var(--primary-foreground);
2684
+ --navbar-border-color: var(--primary-foreground);
2685
+ --navbar-gap: 16px;
1535
2686
  /* ------------------------------------------------------------------ */
1536
2687
  /* DropdownMenu Component Tokens */
1537
2688
  /* ------------------------------------------------------------------ */
1538
2689
  /* Naming Convention: --[component]-[state]-[property] */
1539
2690
  /* Element: [default, hover, selected, disabled] */
1540
2691
  /* ------------------------------------------------------------------ */
1541
- --dropdown-menu-seperator-bg: var(--other-transparency-white-08);
1542
- --dropdown-menu-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);
2692
+ --dropdown-menu-seperator-bg: var(--base-color-workspace-stroke);
2693
+ --dropdown-menu-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
1543
2694
  /* Default State */
1544
2695
  --dropdown-menu-default-bg: transparent;
1545
2696
  --dropdown-menu-default-text: inherit;
1546
2697
  /* Hover State */
1547
- --dropdown-menu-hover-bg: var(--other-transparency-white-08);
2698
+ --dropdown-menu-hover-bg: var(--state-color-primary-hover-bg);
1548
2699
  --dropdown-menu-hover-text: inherit;
1549
2700
  /* Selected State */
1550
- --dropdown-menu-selected-bg: var(--grey-grey-150);
2701
+ --dropdown-menu-selected-bg: transparent;
1551
2702
  --dropdown-menu-selected-text: inherit;
1552
2703
  /* Disabled State */
1553
2704
  --dropdown-menu-disabled-bg: transparent;
1554
- --dropdown-menu-disabled-text: var(--grey-grey-140);
2705
+ --dropdown-menu-disabled-text: var(--state-color-disable-outline);
2706
+ /* ------------------------------------------------------------------ */
2707
+ /* Switch Component Tokens */
2708
+ /* ------------------------------------------------------------------ */
2709
+ /* Naming Convention: --[component]-[element]-[state]-[property] */
2710
+ /* Element: [progress, track] */
2711
+ /* ------------------------------------------------------------------ */
2712
+ /* Default State */
2713
+ --switch-default-color: rgb(from var(--state-color-tertiary-active) r g b / 0.32);
2714
+ --switch-thumb-default-color: var(--state-color-tertiary-active);
2715
+ /* Hover State */
2716
+ --switch-hover-color: rgb(from var(--state-color-tertiary-active) r g b / 0.48);
2717
+ --switch-thumb-hover-color: var(--switch-thumb-default-color);
2718
+ --switch-thumb-hover-ring: var(--state-color-tertiary-hover-bg);
2719
+ /* Active State */
2720
+ --switch-active-color: rgb(from var(--state-color-secondary-default) r g b / 0.32);
2721
+ --switch-thumb-active-color: var(--state-color-secondary-default);
2722
+ /* Active Hover State */
2723
+ --switch-active-hover-color: rgb(from var(--state-color-secondary-default) r g b / 0.48);
2724
+ --switch-thumb-active-hover-color: var(--switch-thumb-active-color);
2725
+ --switch-thumb-active-hover-ring: var(--state-color-secondary-hover-bg);
2726
+ /* Disabled State */
2727
+ --switch-disabled-color: rgb(from var(--state-color-disable-solid) r g b / 0.32);
2728
+ --switch-thumb-disabled-color: var(--state-color-disable-solid)
2729
+ ;
1555
2730
  }
1556
2731
 
1557
2732
  /* ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */
@@ -2307,6 +3482,10 @@ input[type=number] {
2307
3482
  margin-right: -0.5rem;
2308
3483
  }
2309
3484
 
3485
+ .-mt-\[30px\] {
3486
+ margin-top: -30px;
3487
+ }
3488
+
2310
3489
  .ml-2 {
2311
3490
  margin-left: 0.5rem;
2312
3491
  }
@@ -3165,6 +4344,11 @@ input[type=number] {
3165
4344
  border-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-border-opacity)), transparent);
3166
4345
  }
3167
4346
 
4347
+ .border-info {
4348
+ --tw-border-opacity: 1;
4349
+ border-color: color-mix(in srgb, var(--state-color-info-default) calc(100% * var(--tw-border-opacity)), transparent);
4350
+ }
4351
+
3168
4352
  .border-info-stroke {
3169
4353
  --tw-border-opacity: 1;
3170
4354
  border-color: color-mix(in srgb, var(--state-color-info-stroke) calc(100% * var(--tw-border-opacity)), transparent);
@@ -3658,6 +4842,11 @@ input[type=number] {
3658
4842
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
3659
4843
  }
3660
4844
 
4845
+ .bg-green-500 {
4846
+ --tw-bg-opacity: 1;
4847
+ background-color: rgb(34 197 94 / var(--tw-bg-opacity));
4848
+ }
4849
+
3661
4850
  .bg-grey-10 {
3662
4851
  --tw-bg-opacity: 1;
3663
4852
  background-color: color-mix(in srgb, var(--grey-grey-10) calc(100% * var(--tw-bg-opacity)), transparent);
@@ -3983,6 +5172,11 @@ input[type=number] {
3983
5172
  background-color: color-mix(in srgb, var(--input-color-label-bg) calc(100% * var(--tw-bg-opacity)), transparent);
3984
5173
  }
3985
5174
 
5175
+ .bg-pink-100 {
5176
+ --tw-bg-opacity: 1;
5177
+ background-color: rgb(252 231 243 / var(--tw-bg-opacity));
5178
+ }
5179
+
3986
5180
  .bg-primary {
3987
5181
  --tw-bg-opacity: 1;
3988
5182
  background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
@@ -4143,6 +5337,11 @@ input[type=number] {
4143
5337
  background-color: color-mix(in srgb, var(--main-transparency-primary-8) calc(100% * var(--tw-bg-opacity)), transparent);
4144
5338
  }
4145
5339
 
5340
+ .bg-red-100 {
5341
+ --tw-bg-opacity: 1;
5342
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity));
5343
+ }
5344
+
4146
5345
  .bg-secondary {
4147
5346
  --tw-bg-opacity: 1;
4148
5347
  background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
@@ -4228,11 +5427,6 @@ input[type=number] {
4228
5427
  background-color: color-mix(in srgb, var(--secondary-ramps-secondary-90) calc(100% * var(--tw-bg-opacity)), transparent);
4229
5428
  }
4230
5429
 
4231
- .bg-secondary-active {
4232
- --tw-bg-opacity: 1;
4233
- background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * var(--tw-bg-opacity)), transparent);
4234
- }
4235
-
4236
5430
  .bg-secondary-default {
4237
5431
  --tw-bg-opacity: 1;
4238
5432
  background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
@@ -5592,6 +6786,11 @@ input[type=number] {
5592
6786
  color: rgb(107 114 128 / var(--tw-text-opacity));
5593
6787
  }
5594
6788
 
6789
+ .text-grey2-500 {
6790
+ --tw-text-opacity: 1;
6791
+ color: color-mix(in srgb, var(--grey2-grey2-500) calc(100% * var(--tw-text-opacity)), transparent);
6792
+ }
6793
+
5595
6794
  .text-info {
5596
6795
  --tw-text-opacity: 1;
5597
6796
  color: color-mix(in srgb, var(--state-color-info-default) calc(100% * var(--tw-text-opacity)), transparent);
@@ -5626,6 +6825,11 @@ input[type=number] {
5626
6825
  color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-text-opacity)), transparent);
5627
6826
  }
5628
6827
 
6828
+ .text-red-500 {
6829
+ --tw-text-opacity: 1;
6830
+ color: rgb(239 68 68 / var(--tw-text-opacity));
6831
+ }
6832
+
5629
6833
  .text-secondary {
5630
6834
  --tw-text-opacity: 1;
5631
6835
  color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-text-opacity)), transparent);
@@ -7717,9 +8921,8 @@ input[type=number] {
7717
8921
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
7718
8922
  }
7719
8923
 
7720
- .group:disabled .group-disabled\:bg-state-disable-solid {
7721
- --tw-bg-opacity: 1;
7722
- background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
8924
+ .group:disabled .group-disabled\:bg-\[--switch-thumb-disabled-color\] {
8925
+ background-color: var(--switch-thumb-disabled-color);
7723
8926
  }
7724
8927
 
7725
8928
  .peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:top-2 {
@@ -8052,8 +9255,8 @@ input[type=number] {
8052
9255
  background-color: var(--dropdown-menu-disabled-bg) !important;
8053
9256
  }
8054
9257
 
8055
- .data-\[disabled\]\:bg-state-disable-solid\/\[0\.32\][data-disabled] {
8056
- background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * 0.32), transparent);
9258
+ .data-\[disabled\]\:bg-\[var\(--switch-disabled-color\)\][data-disabled] {
9259
+ background-color: var(--switch-disabled-color);
8057
9260
  }
8058
9261
 
8059
9262
  .data-\[loading\=true\]\:bg-button-error-flat-active[data-loading=true] {
@@ -8165,15 +9368,19 @@ input[type=number] {
8165
9368
  background-color: var(--dropdown-menu-selected-bg);
8166
9369
  }
8167
9370
 
9371
+ .data-\[state\=checked\]\:bg-\[var\(--switch-active-color\)\][data-state=checked] {
9372
+ background-color: var(--switch-active-color);
9373
+ }
9374
+
9375
+ .data-\[state\=checked\]\:bg-\[var\(--switch-thumb-active-color\)\][data-state=checked] {
9376
+ background-color: var(--switch-thumb-active-color);
9377
+ }
9378
+
8168
9379
  .data-\[state\=checked\]\:bg-function-active-solid[data-state=checked] {
8169
9380
  --tw-bg-opacity: 1;
8170
9381
  background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
8171
9382
  }
8172
9383
 
8173
- .data-\[state\=checked\]\:bg-secondary-active\/\[0\.32\][data-state=checked] {
8174
- background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * 0.32), transparent);
8175
- }
8176
-
8177
9384
  .data-\[state\=open\]\:bg-primary[data-state=open] {
8178
9385
  --tw-bg-opacity: 1;
8179
9386
  background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
@@ -8184,13 +9391,12 @@ input[type=number] {
8184
9391
  background-color: color-mix(in srgb, var(--grey-grey-20) calc(100% * var(--tw-bg-opacity)), transparent);
8185
9392
  }
8186
9393
 
8187
- .data-\[state\=unchecked\]\:bg-tertiary-active[data-state=unchecked] {
8188
- --tw-bg-opacity: 1;
8189
- background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * var(--tw-bg-opacity)), transparent);
9394
+ .data-\[state\=unchecked\]\:bg-\[var\(--switch-default-color\)\][data-state=unchecked] {
9395
+ background-color: var(--switch-default-color);
8190
9396
  }
8191
9397
 
8192
- .data-\[state\=unchecked\]\:bg-tertiary-active\/\[0\.32\][data-state=unchecked] {
8193
- background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * 0.32), transparent);
9398
+ .data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-default-color\)\][data-state=unchecked] {
9399
+ background-color: var(--switch-thumb-default-color);
8194
9400
  }
8195
9401
 
8196
9402
  .data-\[disabled\]\:\!fill-state-disable-solid[data-disabled] {
@@ -8429,17 +9635,17 @@ input[type=number] {
8429
9635
  border-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-border-opacity)), transparent);
8430
9636
  }
8431
9637
 
9638
+ .hover\:data-\[state\=checked\]\:bg-\[var\(--switch-active-hover-color\)\][data-state=checked]:hover {
9639
+ background-color: var(--switch-active-hover-color);
9640
+ }
9641
+
8432
9642
  .hover\:data-\[state\=checked\]\:bg-function-active-hover[data-state=checked]:hover {
8433
9643
  --tw-bg-opacity: 1;
8434
9644
  background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
8435
9645
  }
8436
9646
 
8437
- .hover\:data-\[state\=checked\]\:bg-secondary-active\/\[0\.48\][data-state=checked]:hover {
8438
- background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * 0.48), transparent);
8439
- }
8440
-
8441
- .hover\:data-\[state\=unchecked\]\:bg-tertiary-active\/\[0\.48\][data-state=unchecked]:hover {
8442
- background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * 0.48), transparent);
9647
+ .hover\:data-\[state\=unchecked\]\:bg-\[var\(--switch-hover-color\)\][data-state=unchecked]:hover {
9648
+ background-color: var(--switch-hover-color);
8443
9649
  }
8444
9650
 
8445
9651
  .hover\:data-\[state\=checked\]\:text-function-active-hover[data-state=checked]:hover {
@@ -8447,14 +9653,20 @@ input[type=number] {
8447
9653
  color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-text-opacity)), transparent);
8448
9654
  }
8449
9655
 
8450
- .group:hover .group-hover\:data-\[state\=checked\]\:ring-secondary-hover-bg[data-state=checked] {
8451
- --tw-ring-opacity: 1;
8452
- --tw-ring-color: color-mix(in srgb, var(--state-color-secondary-hover-bg) calc(100% * var(--tw-ring-opacity)), transparent);
9656
+ .group:hover .group-hover\:data-\[state\=checked\]\:bg-\[var\(--switch-thumb-active-hover-color\)\][data-state=checked] {
9657
+ background-color: var(--switch-thumb-active-hover-color);
8453
9658
  }
8454
9659
 
8455
- .group:hover .group-hover\:data-\[state\=unchecked\]\:ring-tertiary-hover-bg[data-state=unchecked] {
8456
- --tw-ring-opacity: 1;
8457
- --tw-ring-color: color-mix(in srgb, var(--state-color-tertiary-hover-bg) calc(100% * var(--tw-ring-opacity)), transparent);
9660
+ .group:hover .group-hover\:data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-hover-color\)\][data-state=unchecked] {
9661
+ background-color: var(--switch-thumb-hover-color);
9662
+ }
9663
+
9664
+ .group:hover .group-hover\:data-\[state\=checked\]\:ring-\[var\(--switch-thumb-active-hover-ring\)\][data-state=checked] {
9665
+ --tw-ring-color: var(--switch-thumb-active-hover-ring);
9666
+ }
9667
+
9668
+ .group:hover .group-hover\:data-\[state\=unchecked\]\:ring-\[var\(--switch-thumb-hover-ring\)\][data-state=unchecked] {
9669
+ --tw-ring-color: var(--switch-thumb-hover-ring);
8458
9670
  }
8459
9671
 
8460
9672
  @media (min-width: 640px) {