@rovula/ui 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/bundle.css +49 -28
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Switch/Switch.stories.d.ts +1 -6
- package/dist/cjs/types/components/Table/Table.d.ts +1 -0
- package/dist/cjs/types/components/Table/Table.stories.d.ts +2 -0
- package/dist/cjs/types/components/Tree/Tree.d.ts +45 -0
- package/dist/cjs/types/components/Tree/Tree.stories.d.ts +5 -0
- package/dist/components/Switch/Switch.js +15 -1
- package/dist/components/Switch/Switch.stories.js +2 -7
- package/dist/components/Table/Table.js +2 -2
- package/dist/components/Tree/Tree.js +138 -0
- package/dist/components/Tree/Tree.stories.js +53 -0
- package/dist/esm/bundle.css +49 -28
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Switch/Switch.stories.d.ts +1 -6
- package/dist/esm/types/components/Table/Table.d.ts +1 -0
- package/dist/esm/types/components/Table/Table.stories.d.ts +2 -0
- package/dist/esm/types/components/Tree/Tree.d.ts +45 -0
- package/dist/esm/types/components/Tree/Tree.stories.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/src/theme/global.css +1264 -37
- package/dist/theme/global.css +1 -0
- package/dist/theme/themes/SKL/baseline.css +12 -0
- package/dist/theme/themes/SKL/color.css +78 -0
- package/dist/theme/themes/SKL/components/action-button.css +127 -0
- package/dist/theme/themes/SKL/components/button.css +512 -0
- package/dist/theme/themes/SKL/components/dropdown-menu.css +27 -0
- package/dist/theme/themes/SKL/components/loading.css +11 -0
- package/dist/theme/themes/SKL/components/navbar.css +8 -0
- package/dist/theme/themes/SKL/components/progress-bar.css +8 -0
- package/dist/theme/themes/SKL/components/switch.css +30 -0
- package/dist/theme/themes/SKL/palette.css +145 -0
- package/dist/theme/themes/SKL/state.css +86 -0
- package/dist/theme/themes/SKL/transparent.css +68 -0
- package/dist/theme/themes/SKL/typography.css +199 -0
- package/dist/theme/themes/SKL/variables.css +28 -0
- package/dist/theme/themes/xspector/baseline.css +1 -0
- package/dist/theme/themes/xspector/components/switch.css +30 -0
- package/dist/theme/tokens/baseline.css +2 -1
- package/dist/theme/tokens/components/switch.css +30 -0
- package/package.json +1 -1
- package/src/components/Switch/Switch.stories.tsx +2 -7
- package/src/components/Switch/Switch.tsx +37 -9
- package/src/components/Table/Table.tsx +7 -2
- package/src/components/Tree/Tree.stories.tsx +66 -0
- package/src/components/Tree/Tree.tsx +331 -0
- package/src/theme/global.css +1 -0
- package/src/theme/themes/SKL/baseline.css +12 -0
- package/src/theme/themes/SKL/color.css +78 -0
- package/src/theme/themes/SKL/components/action-button.css +127 -0
- package/src/theme/themes/SKL/components/button.css +512 -0
- package/src/theme/themes/SKL/components/dropdown-menu.css +27 -0
- package/src/theme/themes/SKL/components/loading.css +11 -0
- package/src/theme/themes/SKL/components/navbar.css +8 -0
- package/src/theme/themes/SKL/components/progress-bar.css +8 -0
- package/src/theme/themes/SKL/components/switch.css +30 -0
- package/src/theme/themes/SKL/palette.css +145 -0
- package/src/theme/themes/SKL/state.css +86 -0
- package/src/theme/themes/SKL/transparent.css +68 -0
- package/src/theme/themes/SKL/typography.css +199 -0
- package/src/theme/themes/SKL/variables.css +28 -0
- package/src/theme/themes/xspector/baseline.css +1 -0
- package/src/theme/themes/xspector/components/switch.css +30 -0
- package/src/theme/tokens/baseline.css +2 -1
- 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,1203 @@
|
|
|
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
|
+
/* Switch Component Tokens */
|
|
1581
|
+
/* ------------------------------------------------------------------ */
|
|
1582
|
+
/* Naming Convention: --[component]-[element]-[state]-[property] */
|
|
1583
|
+
/* Element: [progress, track] */
|
|
1584
|
+
/* ------------------------------------------------------------------ */
|
|
1585
|
+
/* Default State */
|
|
1586
|
+
--switch-default-color: rgb(from var(--state-color-secondary-active) r g b / 0.32);
|
|
1587
|
+
--switch-thumb-default-color: var(--state-color-secondary-active);
|
|
1588
|
+
/* Hover State */
|
|
1589
|
+
--switch-hover-color: rgb(from var(--state-color-secondary-active) r g b / 0.48);
|
|
1590
|
+
--switch-thumb-hover-color: var(--switch-thumb-default-color);
|
|
1591
|
+
--switch-thumb-hover-ring: var(--state-color-secondary-hover-bg);
|
|
1592
|
+
/* Active State */
|
|
1593
|
+
--switch-active-color: rgb(from var(--state-color-primary-active) r g b / 0.32);
|
|
1594
|
+
--switch-thumb-active-color: var(--state-color-primary-active);
|
|
1595
|
+
/* Active Hover State */
|
|
1596
|
+
--switch-active-hover-color: rgb(from var(--state-color-primary-active) r g b / 0.48);
|
|
1597
|
+
--switch-thumb-active-hover-color: var(--switch-thumb-active-color);
|
|
1598
|
+
--switch-thumb-active-hover-ring: var(--state-color-primary-hover-bg);
|
|
1599
|
+
/* Disabled State */
|
|
1600
|
+
--switch-disabled-color: rgb(from var(--state-color-disable-solid) r g b / 0.32);
|
|
1601
|
+
--switch-thumb-disabled-color: var(--state-color-disable-solid)
|
|
1602
|
+
;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
:root[data-theme="SKL"]{
|
|
1606
|
+
--primary-ramps-primary-5: #eff6ff;
|
|
1607
|
+
--primary-ramps-primary-10: #dbeafe;
|
|
1608
|
+
--primary-ramps-primary-20: #bfdbfe;
|
|
1609
|
+
--primary-ramps-primary-30: #93c5fd;
|
|
1610
|
+
--primary-ramps-primary-40: #60a5fa;
|
|
1611
|
+
--primary-ramps-primary-50: #3b82f6;
|
|
1612
|
+
--primary-ramps-primary-60: #2563eb;
|
|
1613
|
+
--primary-ramps-primary-70: #1d4ed8;
|
|
1614
|
+
--primary-ramps-primary-80: #1e40af;
|
|
1615
|
+
--primary-ramps-primary-90: #1e3a8a;
|
|
1616
|
+
/* --primary-ramps-primary-100: #ddcd00;
|
|
1617
|
+
--primary-ramps-primary-110: #c7b800;
|
|
1618
|
+
--primary-ramps-primary-120: #b1a400;
|
|
1619
|
+
--primary-ramps-primary-130: #9b8f00;
|
|
1620
|
+
--primary-ramps-primary-140: #857b00;
|
|
1621
|
+
--primary-ramps-primary-150: #6f6700; */
|
|
1622
|
+
--secondary-ramps-secondary-5: #ecfeff;
|
|
1623
|
+
--secondary-ramps-secondary-10: #cffafe;
|
|
1624
|
+
--secondary-ramps-secondary-20: #a5f3fc;
|
|
1625
|
+
--secondary-ramps-secondary-30: #67e8f9;
|
|
1626
|
+
--secondary-ramps-secondary-40: #22d3ee;
|
|
1627
|
+
--secondary-ramps-secondary-50: #06b6d4;
|
|
1628
|
+
--secondary-ramps-secondary-60: #0891b2;
|
|
1629
|
+
--secondary-ramps-secondary-70: #0e7490;
|
|
1630
|
+
--secondary-ramps-secondary-80: #155e75;
|
|
1631
|
+
--secondary-ramps-secondary-90: #164e63;
|
|
1632
|
+
/* --secondary-ramps-secondary-100: #9e9e9e;
|
|
1633
|
+
--secondary-ramps-secondary-110: #8e8e8e;
|
|
1634
|
+
--secondary-ramps-secondary-120: #7e7e7e;
|
|
1635
|
+
--secondary-ramps-secondary-130: #6f6f6f;
|
|
1636
|
+
--secondary-ramps-secondary-140: #5f5f5f;
|
|
1637
|
+
--secondary-ramps-secondary-150: #4f4f4f; */
|
|
1638
|
+
--tertiary-ramps-tertiary-5: #FAFAFA;
|
|
1639
|
+
--tertiary-ramps-tertiary-10: #F5F5F5;
|
|
1640
|
+
--tertiary-ramps-tertiary-20: #ECECEC;
|
|
1641
|
+
--tertiary-ramps-tertiary-30: #E2E2E2;
|
|
1642
|
+
--tertiary-ramps-tertiary-40: #D8D8D8;
|
|
1643
|
+
--tertiary-ramps-tertiary-50: #CFCFCF;
|
|
1644
|
+
--tertiary-ramps-tertiary-60: #C5C5C5;
|
|
1645
|
+
--tertiary-ramps-tertiary-70: #BBB;
|
|
1646
|
+
--tertiary-ramps-tertiary-80: #B1B1B1;
|
|
1647
|
+
--tertiary-ramps-tertiary-90: #A8A8A8;
|
|
1648
|
+
--tertiary-ramps-tertiary-100: #9E9E9E;
|
|
1649
|
+
--tertiary-ramps-tertiary-110: #8E8E8E;
|
|
1650
|
+
--tertiary-ramps-tertiary-120: #7E7E7E;
|
|
1651
|
+
--tertiary-ramps-tertiary-130: #6F6F6F;
|
|
1652
|
+
--tertiary-ramps-tertiary-140: #5F5F5F;
|
|
1653
|
+
--tertiary-ramps-tertiary-150: #4F4F4F;
|
|
1654
|
+
--grey-grey-5: #fafafa;
|
|
1655
|
+
--grey-grey-10: #f5f5f5;
|
|
1656
|
+
--grey-grey-20: #ececec;
|
|
1657
|
+
--grey-grey-30: #e2e2e2;
|
|
1658
|
+
--grey-grey-40: #d8d8d8;
|
|
1659
|
+
--grey-grey-50: #cfcfcf;
|
|
1660
|
+
--grey-grey-60: #c5c5c5;
|
|
1661
|
+
--grey-grey-70: #bbbbbb;
|
|
1662
|
+
--grey-grey-80: #b1b1b1;
|
|
1663
|
+
--grey-grey-90: #a8a8a8;
|
|
1664
|
+
--grey-grey-100: #9e9e9e;
|
|
1665
|
+
--grey-grey-110: #8e8e8e;
|
|
1666
|
+
--grey-grey-120: #7e7e7e;
|
|
1667
|
+
--grey-grey-130: #6f6f6f;
|
|
1668
|
+
--grey-grey-140: #5f5f5f;
|
|
1669
|
+
--grey-grey-150: #4f4f4f;
|
|
1670
|
+
--grey2-grey2-50: #f8fafa;
|
|
1671
|
+
--grey2-grey2-100: #f2f5f5;
|
|
1672
|
+
--grey2-grey2-200: #e7ebed;
|
|
1673
|
+
--grey2-grey2-300: #d3dadf;
|
|
1674
|
+
--grey2-grey2-400: #bac5cb;
|
|
1675
|
+
--grey2-grey2-500: #9dabb5;
|
|
1676
|
+
--grey2-grey2-600: #919eab;
|
|
1677
|
+
--grey2-grey2-700: #72808f;
|
|
1678
|
+
--grey2-grey2-800: #606b77;
|
|
1679
|
+
--grey2-grey2-900: #4f5863;
|
|
1680
|
+
--grey2-grey2-950: #343b41;
|
|
1681
|
+
--purple-900: #;
|
|
1682
|
+
--purple-800: #;
|
|
1683
|
+
--purple-700: #;
|
|
1684
|
+
--purple-600: #;
|
|
1685
|
+
--purple-500: #;
|
|
1686
|
+
--purple-400: #;
|
|
1687
|
+
--purple-300: #;
|
|
1688
|
+
--purple-200: #;
|
|
1689
|
+
--purple-100: #;
|
|
1690
|
+
--purple-50: #;
|
|
1691
|
+
--info-info-50: #f5f3ff;
|
|
1692
|
+
--info-info-100: #ede9fe;
|
|
1693
|
+
--info-info-200: #ddd6fe;
|
|
1694
|
+
--info-info-300: #c4b5fd;
|
|
1695
|
+
--info-info-400: #a78bfa;
|
|
1696
|
+
--info-info-500: #8b5cf6;
|
|
1697
|
+
--info-info-600: #7c3aed;
|
|
1698
|
+
--info-info-700: #6d28d9;
|
|
1699
|
+
--info-info-800: #5b21b6;
|
|
1700
|
+
--info-info-900: #4c1d95;
|
|
1701
|
+
/* --info-info-950: #142c57; */
|
|
1702
|
+
--success-success-50: #effce9;
|
|
1703
|
+
--success-success-100: #daf9ce;
|
|
1704
|
+
--success-success-200: #b8f3a3;
|
|
1705
|
+
--success-success-300: #8ce86e;
|
|
1706
|
+
--success-success-400: #54d62c;
|
|
1707
|
+
--success-success-500: #44c022;
|
|
1708
|
+
--success-success-600: #319917;
|
|
1709
|
+
--success-success-700: #277516;
|
|
1710
|
+
--success-success-800: #235d17;
|
|
1711
|
+
--success-success-900: #214f18;
|
|
1712
|
+
--success-success-950: #0c2b08;
|
|
1713
|
+
--warning-warning-50: #ffffea;
|
|
1714
|
+
--warning-warning-100: #fffbc5;
|
|
1715
|
+
--warning-warning-200: #fff885;
|
|
1716
|
+
--warning-warning-300: #ffee46;
|
|
1717
|
+
--warning-warning-400: #ffdf1b;
|
|
1718
|
+
--warning-warning-500: #ffc107;
|
|
1719
|
+
--warning-warning-600: #e29400;
|
|
1720
|
+
--warning-warning-700: #bb6902;
|
|
1721
|
+
--warning-warning-800: #985108;
|
|
1722
|
+
--warning-warning-900: #7c420b;
|
|
1723
|
+
--warning-warning-950: #482200;
|
|
1724
|
+
--error-error-50: #fff3f1;
|
|
1725
|
+
--error-error-100: #ffe3df;
|
|
1726
|
+
--error-error-200: #ffccc5;
|
|
1727
|
+
--error-error-300: #ffa99d;
|
|
1728
|
+
--error-error-400: #ff7664;
|
|
1729
|
+
--error-error-500: #ff4d35;
|
|
1730
|
+
--error-error-600: #ed2f15;
|
|
1731
|
+
--error-error-700: #c8230d;
|
|
1732
|
+
--error-error-800: #a5210f;
|
|
1733
|
+
--error-error-900: #882214;
|
|
1734
|
+
--error-error-950: #4b0c04;
|
|
1735
|
+
/* ------------------------------------------------------------------ */
|
|
1736
|
+
/* State Tokens */
|
|
1737
|
+
/* ------------------------------------------------------------------ */
|
|
1738
|
+
/* Naming Convention: --state-color-[theme]-[element?]-[state] */
|
|
1739
|
+
/* States: [default, hover, pressed, disabled] */
|
|
1740
|
+
--state-color-primary-default: #2563eb;
|
|
1741
|
+
--state-color-primary-hover: #60a5fa;
|
|
1742
|
+
--state-color-primary-stroke: rgba(37, 99, 235, 0.64);
|
|
1743
|
+
/* No change in design system. */
|
|
1744
|
+
--state-color-primary-hover-bg: rgba(96, 165, 250, 0.08);
|
|
1745
|
+
/* No change in design system. */
|
|
1746
|
+
--state-color-primary-pressed: #1e40af;
|
|
1747
|
+
--state-color-primary-active: #1e3a8a;
|
|
1748
|
+
--state-color-primary-text-solid: #ffffff;
|
|
1749
|
+
--state-color-primary-text-outline: #2563eb;
|
|
1750
|
+
/* No change in design system. */
|
|
1751
|
+
--state-color-primary-text-hover: #60a5fa;
|
|
1752
|
+
/* No change in design system. */
|
|
1753
|
+
--state-color-primary-text-pressed: #1e40af;
|
|
1754
|
+
/* No change in design system. */
|
|
1755
|
+
--state-color-secondary-default: #0891b2;
|
|
1756
|
+
--state-color-secondary-hover: #22d3ee;
|
|
1757
|
+
--state-color-secondary-stroke: rgba(8, 145, 178, 0.64);
|
|
1758
|
+
/* No change in design system. */
|
|
1759
|
+
--state-color-secondary-hover-bg: rgba(34, 211, 238, 0.08);
|
|
1760
|
+
/* No change in design system. */
|
|
1761
|
+
--state-color-secondary-pressed: #155e75;
|
|
1762
|
+
--state-color-secondary-active: #164e63;
|
|
1763
|
+
--state-color-secondary-text-solid: #ffffff;
|
|
1764
|
+
--state-color-secondary-text-outline: #0891b2;
|
|
1765
|
+
/* No change in design system. */
|
|
1766
|
+
--state-color-secondary-text-hover: #22d3ee;
|
|
1767
|
+
/* No change in design system. */
|
|
1768
|
+
--state-color-secondary-text-pressed: #155e75;
|
|
1769
|
+
/* No change in design system. */
|
|
1770
|
+
--state-color-tertiary-default: #4f4f4f;
|
|
1771
|
+
--state-color-tertiary-hover: #6f6f6f;
|
|
1772
|
+
--state-color-tertiary-stroke: rgba(79 79 79 / 0.48);
|
|
1773
|
+
/* No in design system. -default */
|
|
1774
|
+
--state-color-tertiary-hover-bg: rgba(158 158 158 / 0.08);
|
|
1775
|
+
/* No in design system. -hover */
|
|
1776
|
+
--state-color-tertiary-pressed: #b1b1b1;
|
|
1777
|
+
--state-color-tertiary-active: #6f6f6f;
|
|
1778
|
+
--state-color-tertiary-text-solid: #ffffff;
|
|
1779
|
+
--state-color-tertiary-text-outline: #4f4f4f;
|
|
1780
|
+
--state-color-tertiary-text-hover: #6f6f6f;
|
|
1781
|
+
--state-color-tertiary-text-pressed: #b1b1b1;
|
|
1782
|
+
--state-color-info-default: #8b5cf6;
|
|
1783
|
+
--state-color-info-hover: #c4b5fd;
|
|
1784
|
+
/* No in design system. info-300 */
|
|
1785
|
+
--state-color-info-stroke: rgba(139, 92, 246, 0.48);
|
|
1786
|
+
--state-color-info-hover-bg: rgba(196, 181, 253, 0.08);
|
|
1787
|
+
--state-color-info-pressed: #6d28d9;
|
|
1788
|
+
/* No in design system. info-700 */
|
|
1789
|
+
--state-color-info-active: #c4b5fd;
|
|
1790
|
+
/* No in design system. info-300 */
|
|
1791
|
+
--state-color-info-text-solid: #ffffff;
|
|
1792
|
+
--state-color-info-text-outline: #8b5cf6;
|
|
1793
|
+
--state-color-info-text-hover: #c4b5fd;
|
|
1794
|
+
/* No in design system. info-300 */
|
|
1795
|
+
--state-color-info-text-pressed: #6d28d9;
|
|
1796
|
+
/* No in design system. info-700 */
|
|
1797
|
+
--state-color-success-default: #319917;
|
|
1798
|
+
--state-color-success-hover: #44c022;
|
|
1799
|
+
--state-color-success-stroke: rgba(68 192 34 / 0.48);
|
|
1800
|
+
/* No in design system. -default */
|
|
1801
|
+
--state-color-success-hover-bg: rgba(84 214 44 / 0.08);
|
|
1802
|
+
/* No in design system. -hover */
|
|
1803
|
+
--state-color-success-pressed: #235d17;
|
|
1804
|
+
--state-color-success-active: #44c022;
|
|
1805
|
+
--state-color-success-text-solid: #ffffff;
|
|
1806
|
+
--state-color-success-text-outline: #319917;
|
|
1807
|
+
--state-color-success-text-hover: #44c022;
|
|
1808
|
+
--state-color-success-text-pressed: #235d17;
|
|
1809
|
+
--state-color-warning-default: #ffc107;
|
|
1810
|
+
--state-color-warning-hover: #ffdf1b;
|
|
1811
|
+
--state-color-warning-stroke: rgba(255 223 27 / 0.48);
|
|
1812
|
+
/* No in design system. -default */
|
|
1813
|
+
--state-color-warning-hover-bg: rgba(255 193 7 / 0.08);
|
|
1814
|
+
/* No in design system. -hover */
|
|
1815
|
+
--state-color-warning-pressed: #985108;
|
|
1816
|
+
--state-color-warning-active: #ffc107;
|
|
1817
|
+
--state-color-warning-text-solid: #1e3249;
|
|
1818
|
+
--state-color-warning-text-outline: #ffc107;
|
|
1819
|
+
--state-color-warning-text-hover: #ffdf1b;
|
|
1820
|
+
--state-color-warning-text-pressed: #985108;
|
|
1821
|
+
--state-color-error-default: #ed2f15;
|
|
1822
|
+
--state-color-error-hover: #ff4d35;
|
|
1823
|
+
--state-color-error-stroke: rgba(237 47 21 / 0.64);
|
|
1824
|
+
/* No in design system. -default */
|
|
1825
|
+
--state-color-error-hover-bg: rgba(255 77 53 / 0.08);
|
|
1826
|
+
/* No in design system. -hover */
|
|
1827
|
+
--state-color-error-pressed: #a5210f;
|
|
1828
|
+
--state-color-error-active: #ff4d35;
|
|
1829
|
+
--state-color-error-text-solid: #ffffff;
|
|
1830
|
+
--state-color-error-text-outline: #ed2f15;
|
|
1831
|
+
--state-color-error-text-hover: #ff4d35;
|
|
1832
|
+
--state-color-error-text-pressed: #a5210f;
|
|
1833
|
+
--state-color-disable-solid: #d3dadf;
|
|
1834
|
+
--state-color-disable-outline: #9dabb5;
|
|
1835
|
+
/* Base from design */
|
|
1836
|
+
--input-color-default-text: #9e9e9e;
|
|
1837
|
+
--input-color-default-stroke: #cfcfcf;
|
|
1838
|
+
--input-color-filled-text: #4f4f4f;
|
|
1839
|
+
--input-color-active-stroke: #9e9e9e;
|
|
1840
|
+
--input-color-disable-text: #919eab;
|
|
1841
|
+
--input-color-disable-stroke: #e7ebed;
|
|
1842
|
+
--input-color-disable-bg: #f2f5f5;
|
|
1843
|
+
--input-color-label-bg: #ffffff;
|
|
1844
|
+
/* #2d2e30; */
|
|
1845
|
+
--input-color-error: #ed2f15;
|
|
1846
|
+
/* Function button */
|
|
1847
|
+
--function-default-solid: var(--state-color-primary-default);
|
|
1848
|
+
--function-default-hover: var(--state-color-primary-hover);
|
|
1849
|
+
--function-default-hover-bg: var(--state-color-primary-hover-bg);
|
|
1850
|
+
--function-default-stroke: var(--state-color-primary-stroke);
|
|
1851
|
+
--function-default-icon: #ffffff;
|
|
1852
|
+
--function-default-outline-icon: var(--state-color-primary-default);
|
|
1853
|
+
--function-active-solid: var(--state-color-secondary-default);
|
|
1854
|
+
--function-active-hover: var(--state-color-secondary-hover);
|
|
1855
|
+
--function-active-hover-bg: var(--state-color-secondary-hover-bg);
|
|
1856
|
+
--function-active-stroke: var(--state-color-secondary-stroke);
|
|
1857
|
+
--function-active-icon: #ffffff;
|
|
1858
|
+
--text-black: #000000;
|
|
1859
|
+
--text-dark: #18283a;
|
|
1860
|
+
--text-medium: #4b5b6d;
|
|
1861
|
+
--text-light: #8e98a4;
|
|
1862
|
+
--text-grey-dark: #4f4f4f;
|
|
1863
|
+
--text-grey-medium: #7e7e7e;
|
|
1864
|
+
--text-grey-light: #9e9e9e;
|
|
1865
|
+
--text-white: #ffffff;
|
|
1866
|
+
--base-color-bg: #f5f5f5;
|
|
1867
|
+
--base-color-bg2: #f5f5f5;
|
|
1868
|
+
--base-color-bg3: #d8d8d8;
|
|
1869
|
+
--base-color-workspace-stroke: #e2e2e2;
|
|
1870
|
+
--base-color-guideline-stroke: #c5c5c5;
|
|
1871
|
+
--base-color-popup: #ffffff;
|
|
1872
|
+
--base-color-popup-hightlight: #343638;
|
|
1873
|
+
--base-color-popup-curtain: rgba(0 0 0 / 0.6);
|
|
1874
|
+
--common-white: #ffffff;
|
|
1875
|
+
--common-black: #000000;
|
|
1876
|
+
/* ------- Addon base ---------- */
|
|
1877
|
+
--background: var(--base-color-bg);
|
|
1878
|
+
--foreground: var(--common-black);
|
|
1879
|
+
--primary: var(--primary-ramps-primary-100);
|
|
1880
|
+
--primary: var(--secondary-ramps-secondary-100);
|
|
1881
|
+
--tertiary: var(--tertiary-ramps-tertiary-100);
|
|
1882
|
+
--info: var(--info-info-100);
|
|
1883
|
+
--success: var(--success-success-100);
|
|
1884
|
+
--warning: var(--warning-warning-100);
|
|
1885
|
+
--error: var(--error-error-100);
|
|
1886
|
+
--grey: var(--grey-grey-100);
|
|
1887
|
+
--grey2: var(--grey2-grey2-100);
|
|
1888
|
+
--primary-foreground: var(--state-color-primary-text-solid);
|
|
1889
|
+
--secondary-foreground: var(--state-color-secondary-text-solid);
|
|
1890
|
+
--tertiary-foreground: var(--state-color-tertiary-text-solid);
|
|
1891
|
+
--info-foreground: var(--state-color-info-text-solid);
|
|
1892
|
+
--success-foreground: var(--state-color-success-text-solid);
|
|
1893
|
+
--warning-foreground: var(--state-color-warning-text-solid);
|
|
1894
|
+
--error-foreground: var(--state-color-error-text-solid);
|
|
1895
|
+
--grey-foreground: var(--common-black);
|
|
1896
|
+
--grey2-foreground: var(--common-black);
|
|
1897
|
+
--surface: var(--base-color-bg);
|
|
1898
|
+
--surface-foreground: var(--common-black);
|
|
1899
|
+
--primary-foreground: var(--common-white);
|
|
1900
|
+
--secondary-foreground: var(--common-white);
|
|
1901
|
+
--base-color-popup-foreground: var(--text-dark);
|
|
1902
|
+
--main-transparency-primary-8: rgba(30 50 73 / 0.08);
|
|
1903
|
+
--main-transparency-primary-12: rgba(30 50 73 / 0.12);
|
|
1904
|
+
--main-transparency-primary-16: rgba(30 50 73 / 0.16);
|
|
1905
|
+
--main-transparency-primary-24: rgba(30 50 73 / 0.24);
|
|
1906
|
+
--main-transparency-primary-32: rgba(30 50 73 / 0.32);
|
|
1907
|
+
--main-transparency-primary-48: rgba(30 50 73 / 0.48);
|
|
1908
|
+
--main-transparency-secondary-8: rgba(221 205 0 / 0.08);
|
|
1909
|
+
--main-transparency-secondary-12: rgba(221 205 0 / 0.12);
|
|
1910
|
+
--main-transparency-secondary-16: rgba(221 205 0 / 0.16);
|
|
1911
|
+
--main-transparency-secondary-24: rgba(221 205 0 / 0.24);
|
|
1912
|
+
--main-transparency-secondary-32: rgba(221 205 0 / 0.32);
|
|
1913
|
+
--main-transparency-secondary-48: rgba(221 205 0 / 0.48);
|
|
1914
|
+
--main-transparency-tertiary-8: rgba(158 158 158 / 0.08);
|
|
1915
|
+
--main-transparency-tertiary-12: rgba(158 158 158 / 0.12);
|
|
1916
|
+
--main-transparency-tertiary-16: rgba(158 158 158 / 0.16);
|
|
1917
|
+
--main-transparency-tertiary-24: rgba(158 158 158 / 0.24);
|
|
1918
|
+
--main-transparency-tertiary-32: rgba(158 158 158 / 0.32);
|
|
1919
|
+
--main-transparency-tertiary-48: rgba(158 158 158 / 0.48);
|
|
1920
|
+
--other-transparency-info-8: rgba(41 152 255 / 0.08);
|
|
1921
|
+
--other-transparency-info-12: rgba(41 152 255 / 0.12);
|
|
1922
|
+
--other-transparency-info-16: rgba(41 152 255 / 0.16);
|
|
1923
|
+
--other-transparency-info-24: rgba(41 152 255 / 0.24);
|
|
1924
|
+
--other-transparency-info-32: rgba(41 152 255 / 0.32);
|
|
1925
|
+
--other-transparency-info-48: rgba(41 152 255 / 0.48);
|
|
1926
|
+
--other-transparency-success-8: rgba(84 214 44 / 0.08);
|
|
1927
|
+
--other-transparency-success-12: rgba(84 214 44 / 0.12);
|
|
1928
|
+
--other-transparency-success-16: rgba(84 214 44 / 0.16);
|
|
1929
|
+
--other-transparency-success-24: rgba(84 214 44 / 0.24);
|
|
1930
|
+
--other-transparency-success-32: rgba(84 214 44 / 0.32);
|
|
1931
|
+
--other-transparency-success-48: rgba(84 214 44 / 0.48);
|
|
1932
|
+
--other-transparency-warning-8: rgba(255 193 7 / 0.08);
|
|
1933
|
+
--other-transparency-warning-12: rgba(255 193 7 / 0.12);
|
|
1934
|
+
--other-transparency-warning-16: rgba(255 193 7 / 0.16);
|
|
1935
|
+
--other-transparency-warning-24: rgba(255 193 7 / 0.24);
|
|
1936
|
+
--other-transparency-warning-32: rgba(255 193 7 / 0.32);
|
|
1937
|
+
--other-transparency-warning-48: rgba(255 193 7 / 0.48);
|
|
1938
|
+
--other-transparency-error-8: rgba(255 72 66 / 0.08);
|
|
1939
|
+
--other-transparency-error-12: rgba(255 72 66 / 0.12);
|
|
1940
|
+
--other-transparency-error-16: rgba(255 72 66 / 0.16);
|
|
1941
|
+
--other-transparency-error-24: rgba(255 72 66 / 0.24);
|
|
1942
|
+
--other-transparency-error-32: rgba(255 72 66 / 0.32);
|
|
1943
|
+
--other-transparency-error-48: rgba(255 72 66 / 0.48);
|
|
1944
|
+
--other-transparency-grey-8: rgba(158 158 158 / 0.08);
|
|
1945
|
+
--other-transparency-grey-12: rgba(158 158 158 / 0.12);
|
|
1946
|
+
--other-transparency-grey-16: rgba(158 158 158 / 0.16);
|
|
1947
|
+
--other-transparency-grey-24: rgba(158 158 158 / 0.24);
|
|
1948
|
+
--other-transparency-grey-32: rgba(158 158 158 / 0.32);
|
|
1949
|
+
--other-transparency-grey-48: rgba(158 158 158 / 0.48);
|
|
1950
|
+
--other-transparency-grey2-8: rgba(145 158 171 / 0.08);
|
|
1951
|
+
--other-transparency-grey2-12: rgba(145 158 171 / 0.12);
|
|
1952
|
+
--other-transparency-grey2-16: rgba(145 158 171 / 0.16);
|
|
1953
|
+
--other-transparency-grey2-24: rgba(145 158 171 / 0.24);
|
|
1954
|
+
--other-transparency-grey2-32: rgba(145 158 171 / 0.32);
|
|
1955
|
+
--other-transparency-grey2-48: rgba(145 158 171 / 0.48);
|
|
1956
|
+
--other-transparency-white-8: rgba(255 255 255 / 0.08);
|
|
1957
|
+
--other-transparency-white-12: rgba(255 255 255 / 0.12);
|
|
1958
|
+
--other-transparency-white-16: rgba(255 255 255 / 0.16);
|
|
1959
|
+
--other-transparency-white-24: rgba(255 255 255 / 0.24);
|
|
1960
|
+
--other-transparency-white-32: rgba(255 255 255 / 0.32);
|
|
1961
|
+
--other-transparency-white-48: rgba(255 255 255 / 0.48);
|
|
1962
|
+
--other-transparency-black-8: rgba(0 0 0 / 0.08);
|
|
1963
|
+
--other-transparency-black-12: rgba(0 0 0 / 0.12);
|
|
1964
|
+
--other-transparency-black-16: rgba(0 0 0 / 0.16);
|
|
1965
|
+
--other-transparency-black-24: rgba(0 0 0 / 0.24);
|
|
1966
|
+
--other-transparency-black-32: rgba(0 0 0 / 0.32);
|
|
1967
|
+
--other-transparency-black-48: rgba(0 0 0 / 0.48);
|
|
1968
|
+
--radius-radius-xl: 16px;
|
|
1969
|
+
--radius-radius-xl-rem: 1rem;
|
|
1970
|
+
--radius-radius-l: 12px;
|
|
1971
|
+
--radius-radius-l-rem: 0.75rem;
|
|
1972
|
+
--radius-radius-m: 8px;
|
|
1973
|
+
--radius-radius-m-rem: 0.5rem;
|
|
1974
|
+
--radius-radius-s: 6px;
|
|
1975
|
+
--radius-radius-s-rem: 0.375rem;
|
|
1976
|
+
--radius-radius-xs: 4px;
|
|
1977
|
+
--radius-radius-xs-rem: 0.25rem;
|
|
1978
|
+
--spacing-spacing-xxs: 2px;
|
|
1979
|
+
--spacing-spacing-xxs-rem: 0.125rem;
|
|
1980
|
+
--spacing-spacing-xs: 4px;
|
|
1981
|
+
--spacing-spacing-xs-rem: 0.25rem;
|
|
1982
|
+
--spacing-spacing-s: 8px;
|
|
1983
|
+
--spacing-spacing-s-rem: 0.5rem;
|
|
1984
|
+
--spacing-spacing-m: 12px;
|
|
1985
|
+
--spacing-spacing-m-rem: 0.75rem;
|
|
1986
|
+
--spacing-spacing-l: 16px;
|
|
1987
|
+
--spacing-spacing-l-rem: 1rem;
|
|
1988
|
+
--spacing-spacing-xl: 24px;
|
|
1989
|
+
--spacing-spacing-xl-rem: 1.5rem;
|
|
1990
|
+
--spacing-spacing-xxl: 32px;
|
|
1991
|
+
--spacing-spacing-xxl-rem: 2rem;
|
|
1992
|
+
--spacing-spacing-xxxl: 48px;
|
|
1993
|
+
--spacing-spacing-xxxl-rem: 3rem;
|
|
1994
|
+
/* TYPE */
|
|
1995
|
+
--h1-family: "Montserrat";
|
|
1996
|
+
--h1-size: 64px;
|
|
1997
|
+
--h1-size-rem: 4rem;
|
|
1998
|
+
--h1-weight: 700;
|
|
1999
|
+
--h1-style: normal;
|
|
2000
|
+
--h1-line-height: 80px;
|
|
2001
|
+
--h1-line-height-rem: 5rem;
|
|
2002
|
+
--h2-family: "Montserrat";
|
|
2003
|
+
--h2-size: 48px;
|
|
2004
|
+
--h2-size-rem: 3rem;
|
|
2005
|
+
--h2-weight: 700;
|
|
2006
|
+
--h2-style: normal;
|
|
2007
|
+
--h2-line-height: 60px;
|
|
2008
|
+
--h2-line-height-rem: 3.75rem;
|
|
2009
|
+
--h3-family: "Montserrat";
|
|
2010
|
+
--h3-size: 32px;
|
|
2011
|
+
--h3-size-rem: 2rem;
|
|
2012
|
+
--h3-weight: 700;
|
|
2013
|
+
--h3-style: normal;
|
|
2014
|
+
--h3-line-height: 48px;
|
|
2015
|
+
--h3-line-height-rem: 3rem;
|
|
2016
|
+
--h4-family: "Montserrat";
|
|
2017
|
+
--h4-size: 24px;
|
|
2018
|
+
--h4-size-rem: 1.5rem;
|
|
2019
|
+
--h4-weight: 700;
|
|
2020
|
+
--h4-style: normal;
|
|
2021
|
+
--h4-line-height: 32px;
|
|
2022
|
+
--h4-line-height-rem: 2rem;
|
|
2023
|
+
--h5-family: "Montserrat";
|
|
2024
|
+
--h5-size: 20px;
|
|
2025
|
+
--h5-size-rem: 1.25rem;
|
|
2026
|
+
--h5-weight: 700;
|
|
2027
|
+
--h5-style: normal;
|
|
2028
|
+
--h5-line-height: 28px;
|
|
2029
|
+
--h5-line-height-rem: 1.75rem;
|
|
2030
|
+
--h6-family: "Montserrat";
|
|
2031
|
+
--h6-size: 18px;
|
|
2032
|
+
--h6-size-rem: 1.125rem;
|
|
2033
|
+
--h6-weight: 700;
|
|
2034
|
+
--h6-style: normal;
|
|
2035
|
+
--h6-line-height: 24px;
|
|
2036
|
+
--h6-line-height-rem: 1.5rem;
|
|
2037
|
+
--subtitle1-family: "Montserrat";
|
|
2038
|
+
--subtitle1-size: 16px;
|
|
2039
|
+
--subtitle1-size-rem: 1rem;
|
|
2040
|
+
--subtitle1-weight: 400;
|
|
2041
|
+
--subtitle1-style: normal;
|
|
2042
|
+
--subtitle1-line-height: 24px;
|
|
2043
|
+
--subtitle1-line-height-rem: 1.5rem;
|
|
2044
|
+
--subtitle2-family: "Montserrat";
|
|
2045
|
+
--subtitle2-size: 16px;
|
|
2046
|
+
--subtitle2-size-rem: 1rem;
|
|
2047
|
+
--subtitle2-weight: 500;
|
|
2048
|
+
--subtitle2-style: normal;
|
|
2049
|
+
--subtitle2-line-height: 24px;
|
|
2050
|
+
--subtitle2-line-height-rem: 1.5rem;
|
|
2051
|
+
--subtitle3-family: "Montserrat";
|
|
2052
|
+
--subtitle3-size: 16px;
|
|
2053
|
+
--subtitle3-size-rem: 1rem;
|
|
2054
|
+
--subtitle3-weight: 600;
|
|
2055
|
+
--subtitle3-style: normal;
|
|
2056
|
+
--subtitle3-line-height: 24px;
|
|
2057
|
+
--subtitle3-line-height-rem: 1.5rem;
|
|
2058
|
+
--subtitle4-family: "Montserrat";
|
|
2059
|
+
--subtitle4-size: 14px;
|
|
2060
|
+
--subtitle4-size-rem: 0.875rem;
|
|
2061
|
+
--subtitle4-weight: 400;
|
|
2062
|
+
--subtitle4-style: normal;
|
|
2063
|
+
--subtitle4-line-height: 22px;
|
|
2064
|
+
--subtitle4-line-height-rem: 1.375rem;
|
|
2065
|
+
--subtitle5-family: "Montserrat";
|
|
2066
|
+
--subtitle5-size: 14px;
|
|
2067
|
+
--subtitle5-size-rem: 0.875rem;
|
|
2068
|
+
--subtitle5-weight: 500;
|
|
2069
|
+
--subtitle5-style: normal;
|
|
2070
|
+
--subtitle5-line-height: 22px;
|
|
2071
|
+
--subtitle5-line-height-rem: 1.375rem;
|
|
2072
|
+
--subtitle6-family: "Montserrat";
|
|
2073
|
+
--subtitle6-size: 14px;
|
|
2074
|
+
--subtitle6-size-rem: 0.875rem;
|
|
2075
|
+
--subtitle6-weight: 600;
|
|
2076
|
+
--subtitle6-style: normal;
|
|
2077
|
+
--subtitle6-line-height: 22px;
|
|
2078
|
+
--subtitle6-line-height-rem: 1.375rem;
|
|
2079
|
+
--body1-family: "Montserrat";
|
|
2080
|
+
--body1-size: 16px;
|
|
2081
|
+
--body1-size-rem: 1rem;
|
|
2082
|
+
--body1-weight: 400;
|
|
2083
|
+
--body1-style: normal;
|
|
2084
|
+
--body1-line-height: 20px;
|
|
2085
|
+
--body1-line-height-rem: 1.25rem;
|
|
2086
|
+
--body2-family: "Montserrat";
|
|
2087
|
+
--body2-size: 16px;
|
|
2088
|
+
--body2-size-rem: 1rem;
|
|
2089
|
+
--body2-weight: 500;
|
|
2090
|
+
--body2-style: normal;
|
|
2091
|
+
--body2-line-height: 20px;
|
|
2092
|
+
--body2-line-height-rem: 1.25rem;
|
|
2093
|
+
--body3-family: "Montserrat";
|
|
2094
|
+
--body3-size: 14px;
|
|
2095
|
+
--body3-size-rem: 0.875rem;
|
|
2096
|
+
--body3-weight: 400;
|
|
2097
|
+
--body3-style: normal;
|
|
2098
|
+
--body3-line-height: 18px;
|
|
2099
|
+
--body3-line-height-rem: 1.125rem;
|
|
2100
|
+
--body4-family: "Montserrat";
|
|
2101
|
+
--body4-size: 14px;
|
|
2102
|
+
--body4-size-rem: 0.875rem;
|
|
2103
|
+
--body4-weight: 500;
|
|
2104
|
+
--body4-style: normal;
|
|
2105
|
+
--body4-line-height: 18px;
|
|
2106
|
+
--body4-line-height-rem: 1.125rem;
|
|
2107
|
+
--small1-family: "Montserrat";
|
|
2108
|
+
--small1-size: 12px;
|
|
2109
|
+
--small1-size-rem: 0.75rem;
|
|
2110
|
+
--small1-weight: 400;
|
|
2111
|
+
--small1-style: normal;
|
|
2112
|
+
--small1-line-height: 14px;
|
|
2113
|
+
--small1-line-height-rem: 0.875rem;
|
|
2114
|
+
--small2-family: "Montserrat";
|
|
2115
|
+
--small2-size: 12px;
|
|
2116
|
+
--small2-size-rem: 0.75rem;
|
|
2117
|
+
--small2-weight: 500;
|
|
2118
|
+
--small2-style: normal;
|
|
2119
|
+
--small2-line-height: 14px;
|
|
2120
|
+
--small2-line-height-rem: 0.875rem;
|
|
2121
|
+
--small3-family: "Montserrat";
|
|
2122
|
+
--small3-size: 12px;
|
|
2123
|
+
--small3-size-rem: 0.75rem;
|
|
2124
|
+
--small3-weight: 600;
|
|
2125
|
+
--small3-style: normal;
|
|
2126
|
+
--small3-line-height: 14px;
|
|
2127
|
+
--small3-line-height-rem: 0.875rem;
|
|
2128
|
+
--small4-family: "Montserrat";
|
|
2129
|
+
--small4-size: 10px;
|
|
2130
|
+
--small4-size-rem: 0.625rem;
|
|
2131
|
+
--small4-weight: 400;
|
|
2132
|
+
--small4-style: normal;
|
|
2133
|
+
--small4-line-height: 12px;
|
|
2134
|
+
--small4-line-height-rem: 0.75rem;
|
|
2135
|
+
--small5-family: "Montserrat";
|
|
2136
|
+
--small5-size: 10px;
|
|
2137
|
+
--small5-size-rem: 0.625rem;
|
|
2138
|
+
--small5-weight: 500;
|
|
2139
|
+
--small5-style: normal;
|
|
2140
|
+
--small5-line-height: 12px;
|
|
2141
|
+
--small5-line-height-rem: 0.75rem;
|
|
2142
|
+
--small6-family: "Montserrat";
|
|
2143
|
+
--small6-size: 10px;
|
|
2144
|
+
--small6-size-rem: 0.625rem;
|
|
2145
|
+
--small6-weight: 600;
|
|
2146
|
+
--small6-style: normal;
|
|
2147
|
+
--small6-line-height: 12px;
|
|
2148
|
+
--small6-line-height-rem: 0.75rem;
|
|
2149
|
+
--small7-family: "Montserrat";
|
|
2150
|
+
--small7-size: 8px;
|
|
2151
|
+
--small7-size-rem: 0.5rem;
|
|
2152
|
+
--small7-weight: 600;
|
|
2153
|
+
--small7-style: normal;
|
|
2154
|
+
--small7-line-height: 10px;
|
|
2155
|
+
--small7-line-height-rem: 0.625rem;
|
|
2156
|
+
--small8-family: "Montserrat";
|
|
2157
|
+
--small8-size: 8px;
|
|
2158
|
+
--small8-size-rem: 0.5rem;
|
|
2159
|
+
--small8-weight: 700;
|
|
2160
|
+
--small8-style: normal;
|
|
2161
|
+
--small8-line-height: 10px;
|
|
2162
|
+
--small8-line-height-rem: 0.625rem;
|
|
2163
|
+
--label-label1-family: "Montserrat";
|
|
2164
|
+
--label-label1-size: 12px;
|
|
2165
|
+
--label-label1-size-rem: 0.75rem;
|
|
2166
|
+
--label-label1-weight: 400;
|
|
2167
|
+
--label-label1-style: normal;
|
|
2168
|
+
--label-label1-line-height: 12px;
|
|
2169
|
+
--label-label1-line-height-rem: 0.75rem;
|
|
2170
|
+
--label-label2-family: "Montserrat";
|
|
2171
|
+
--label-label2-size: 10px;
|
|
2172
|
+
--label-label2-size-rem: 0.625rem;
|
|
2173
|
+
--label-label2-weight: 400;
|
|
2174
|
+
--label-label2-style: normal;
|
|
2175
|
+
--label-label2-line-height: 10px;
|
|
2176
|
+
--label-label2-line-height-rem: 0.625rem;
|
|
2177
|
+
--button-button-l-family: "Montserrat";
|
|
2178
|
+
--button-button-l-size: 16px;
|
|
2179
|
+
--button-button-l-size-rem: 1rem;
|
|
2180
|
+
--button-button-l-weight: 700;
|
|
2181
|
+
--button-button-l-style: normal;
|
|
2182
|
+
--button-button-l-line-height: 24px;
|
|
2183
|
+
--button-button-l-line-height-rem: 1.5rem;
|
|
2184
|
+
--button-button-ms-family: "Montserrat";
|
|
2185
|
+
--button-button-ms-size: 14px;
|
|
2186
|
+
--button-button-ms-size-rem: 0.875rem;
|
|
2187
|
+
--button-button-ms-weight: 700;
|
|
2188
|
+
--button-button-ms-style: normal;
|
|
2189
|
+
--button-button-ms-line-height: 22px;
|
|
2190
|
+
--button-button-ms-line-height-rem: 1.375rem;
|
|
2191
|
+
/* ------------------------------------------------------------------ */
|
|
2192
|
+
/* Button Component Tokens */
|
|
2193
|
+
/* ------------------------------------------------------------------ */
|
|
2194
|
+
/* Naming Convention: --[component]-[theme]-[mode]-[state]-[property] */
|
|
2195
|
+
/* States: [default, hover, active, disabled] */
|
|
2196
|
+
/* ------------------------------------------------------------------ */
|
|
2197
|
+
/* ------------------------------------------------------------------ */
|
|
2198
|
+
/* Solid Mode Tokens - Primary Theme */
|
|
2199
|
+
/* ------------------------------------------------------------------ */
|
|
2200
|
+
/* Default State */
|
|
2201
|
+
--button-primary-solid-default-bg: var(--state-color-primary-default);
|
|
2202
|
+
--button-primary-solid-default-border: var(--state-color-primary-default);
|
|
2203
|
+
--button-primary-solid-default-text: var(--state-color-primary-text-solid);
|
|
2204
|
+
/* Hover State */
|
|
2205
|
+
--button-primary-solid-hover-bg: var(--state-color-primary-hover);
|
|
2206
|
+
--button-primary-solid-hover-border: var(--state-color-primary-hover);
|
|
2207
|
+
--button-primary-solid-hover-text: var(--state-color-primary-text-solid);
|
|
2208
|
+
/* Active State */
|
|
2209
|
+
--button-primary-solid-active-bg: var(--state-color-primary-pressed);
|
|
2210
|
+
--button-primary-solid-active-border: var(--state-color-primary-pressed);
|
|
2211
|
+
--button-primary-solid-active-text: var(--state-color-primary-text-solid);
|
|
2212
|
+
/* Disabled State */
|
|
2213
|
+
--button-primary-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2214
|
+
--button-primary-solid-disabled-border: var(--state-color-disable-solid);
|
|
2215
|
+
--button-primary-solid-disabled-text: var(--state-color-disable-outline);
|
|
2216
|
+
/* ------------------------------------------------------------------ */
|
|
2217
|
+
/* Outline Mode Tokens - Primary Theme */
|
|
2218
|
+
/* ------------------------------------------------------------------ */
|
|
2219
|
+
/* Default State */
|
|
2220
|
+
--button-primary-outline-default-bg: transparent;
|
|
2221
|
+
--button-primary-outline-default-border: var(--state-color-primary-stroke);
|
|
2222
|
+
--button-primary-outline-default-text: var(--state-color-primary-text-outline);
|
|
2223
|
+
/* Hover State */
|
|
2224
|
+
--button-primary-outline-hover-bg: var(--state-color-primary-hover-bg);
|
|
2225
|
+
--button-primary-outline-hover-border: var(--state-color-primary-hover);
|
|
2226
|
+
--button-primary-outline-hover-text: var(--state-color-primary-text-hover);
|
|
2227
|
+
/* Active State */
|
|
2228
|
+
--button-primary-outline-active-bg: var(--state-color-primary-hover-bg);
|
|
2229
|
+
--button-primary-outline-active-border: var(--state-color-primary-pressed);
|
|
2230
|
+
--button-primary-outline-active-text: var(--state-color-primary-text-pressed);
|
|
2231
|
+
/* Disabled State */
|
|
2232
|
+
--button-primary-outline-disabled-bg: transparent;
|
|
2233
|
+
--button-primary-outline-disabled-border: var(--state-color-disable-outline);
|
|
2234
|
+
--button-primary-outline-disabled-text: var(--state-color-disable-outline);
|
|
2235
|
+
/* ------------------------------------------------------------------ */
|
|
2236
|
+
/* Flat Mode Tokens - Primary Theme */
|
|
2237
|
+
/* ------------------------------------------------------------------ */
|
|
2238
|
+
/* Default State */
|
|
2239
|
+
--button-primary-flat-default-bg: transparent;
|
|
2240
|
+
--button-primary-flat-default-border: transparent;
|
|
2241
|
+
--button-primary-flat-default-text: var(--state-color-primary-text-outline);
|
|
2242
|
+
/* Hover State */
|
|
2243
|
+
--button-primary-flat-hover-bg: var(--state-color-primary-hover-bg);
|
|
2244
|
+
--button-primary-flat-hover-border: transparent;
|
|
2245
|
+
--button-primary-flat-hover-text: var(--state-color-primary-text-hover);
|
|
2246
|
+
/* Active State */
|
|
2247
|
+
--button-primary-flat-active-bg: transparent;
|
|
2248
|
+
--button-primary-flat-active-border: transparent;
|
|
2249
|
+
--button-primary-flat-active-text: var(--state-color-primary-text-pressed);
|
|
2250
|
+
/* Disabled State */
|
|
2251
|
+
--button-primary-flat-disabled-bg: transparent;
|
|
2252
|
+
--button-primary-flat-disabled-border: transparent;
|
|
2253
|
+
--button-primary-flat-disabled-text: var(--state-color-disable-outline);
|
|
2254
|
+
/* ------------------------------------------------------------------ */
|
|
2255
|
+
/* Solid Mode Tokens - Secondary Theme */
|
|
2256
|
+
/* ------------------------------------------------------------------ */
|
|
2257
|
+
/* Default State */
|
|
2258
|
+
--button-secondary-solid-default-bg: var(--state-color-secondary-default);
|
|
2259
|
+
--button-secondary-solid-default-border: var(--state-color-secondary-default);
|
|
2260
|
+
--button-secondary-solid-default-text: var(--state-color-secondary-text-solid);
|
|
2261
|
+
/* Hover State */
|
|
2262
|
+
--button-secondary-solid-hover-bg: var(--state-color-secondary-hover);
|
|
2263
|
+
--button-secondary-solid-hover-border: var(--state-color-secondary-hover);
|
|
2264
|
+
--button-secondary-solid-hover-text: var(--state-color-secondary-text-solid);
|
|
2265
|
+
/* Active State */
|
|
2266
|
+
--button-secondary-solid-active-bg: var(--state-color-secondary-pressed);
|
|
2267
|
+
--button-secondary-solid-active-border: var(--state-color-secondary-pressed);
|
|
2268
|
+
--button-secondary-solid-active-text: var(--state-color-secondary-text-solid);
|
|
2269
|
+
/* Disabled State */
|
|
2270
|
+
--button-secondary-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2271
|
+
--button-secondary-solid-disabled-border: var(--state-color-disable-solid);
|
|
2272
|
+
--button-secondary-solid-disabled-text: var(--state-color-disable-outline);
|
|
2273
|
+
/* ------------------------------------------------------------------ */
|
|
2274
|
+
/* Outline Mode Tokens - secondary Theme */
|
|
2275
|
+
/* ------------------------------------------------------------------ */
|
|
2276
|
+
/* Default State */
|
|
2277
|
+
--button-secondary-outline-default-bg: transparent;
|
|
2278
|
+
--button-secondary-outline-default-border: var(--state-color-secondary-stroke);
|
|
2279
|
+
--button-secondary-outline-default-text: var(--state-color-secondary-text-outline);
|
|
2280
|
+
/* Hover State */
|
|
2281
|
+
--button-secondary-outline-hover-bg: var(--state-color-secondary-hover-bg);
|
|
2282
|
+
--button-secondary-outline-hover-border: var(--state-color-secondary-hover);
|
|
2283
|
+
--button-secondary-outline-hover-text: var(--state-color-secondary-text-hover);
|
|
2284
|
+
/* Active State */
|
|
2285
|
+
--button-secondary-outline-active-bg: var(--state-color-secondary-hover-bg);
|
|
2286
|
+
--button-secondary-outline-active-border: var(--state-color-secondary-pressed);
|
|
2287
|
+
--button-secondary-outline-active-text: var(--state-color-secondary-text-pressed);
|
|
2288
|
+
/* Disabled State */
|
|
2289
|
+
--button-secondary-outline-disabled-bg: transparent;
|
|
2290
|
+
--button-secondary-outline-disabled-border: var(--state-color-disable-outline);
|
|
2291
|
+
--button-secondary-outline-disabled-text: var(--state-color-disable-outline);
|
|
2292
|
+
/* ------------------------------------------------------------------ */
|
|
2293
|
+
/* Flat Mode Tokens - Secondary Theme */
|
|
2294
|
+
/* ------------------------------------------------------------------ */
|
|
2295
|
+
/* Default State */
|
|
2296
|
+
--button-secondary-flat-default-bg: transparent;
|
|
2297
|
+
--button-secondary-flat-default-border: transparent;
|
|
2298
|
+
--button-secondary-flat-default-text: var(--state-color-secondary-text-outline);
|
|
2299
|
+
/* Hover State */
|
|
2300
|
+
--button-secondary-flat-hover-bg: var(--state-color-secondary-hover-bg);
|
|
2301
|
+
--button-secondary-flat-hover-border: transparent;
|
|
2302
|
+
--button-secondary-flat-hover-text: var(--state-color-secondary-text-hover);
|
|
2303
|
+
/* Active State */
|
|
2304
|
+
--button-secondary-flat-active-bg: transparent;
|
|
2305
|
+
--button-secondary-flat-active-border: transparent;
|
|
2306
|
+
--button-secondary-flat-active-text: var(--state-color-secondary-text-pressed);
|
|
2307
|
+
/* Disabled State */
|
|
2308
|
+
--button-secondary-flat-disabled-bg: transparent;
|
|
2309
|
+
--button-secondary-flat-disabled-border: transparent;
|
|
2310
|
+
--button-secondary-flat-disabled-text: var(--state-color-disable-outline);
|
|
2311
|
+
/* ------------------------------------------------------------------ */
|
|
2312
|
+
/* Solid Mode Tokens - Tertiary Theme */
|
|
2313
|
+
/* ------------------------------------------------------------------ */
|
|
2314
|
+
/* Default State */
|
|
2315
|
+
--button-tertiary-solid-default-bg: var(--state-color-tertiary-default);
|
|
2316
|
+
--button-tertiary-solid-default-border: var(--state-color-tertiary-default);
|
|
2317
|
+
--button-tertiary-solid-default-text: var(--state-color-tertiary-text-solid);
|
|
2318
|
+
/* Hover State */
|
|
2319
|
+
--button-tertiary-solid-hover-bg: var(--state-color-tertiary-hover);
|
|
2320
|
+
--button-tertiary-solid-hover-border: var(--state-color-tertiary-hover);
|
|
2321
|
+
--button-tertiary-solid-hover-text: var(--state-color-tertiary-text-solid);
|
|
2322
|
+
/* Active State */
|
|
2323
|
+
--button-tertiary-solid-active-bg: var(--state-color-tertiary-pressed);
|
|
2324
|
+
--button-tertiary-solid-active-border: var(--state-color-tertiary-pressed);
|
|
2325
|
+
--button-tertiary-solid-active-text: var(--state-color-tertiary-text-solid);
|
|
2326
|
+
/* Disabled State */
|
|
2327
|
+
--button-tertiary-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2328
|
+
--button-tertiary-solid-disabled-border: var(--state-color-disable-solid);
|
|
2329
|
+
--button-tertiary-solid-disabled-text: var(--state-color-disable-outline);
|
|
2330
|
+
/* ------------------------------------------------------------------ */
|
|
2331
|
+
/* Outline Mode Tokens - Tertiary Theme */
|
|
2332
|
+
/* ------------------------------------------------------------------ */
|
|
2333
|
+
/* Default State */
|
|
2334
|
+
--button-tertiary-outline-default-bg: transparent;
|
|
2335
|
+
--button-tertiary-outline-default-border: var(--state-color-tertiary-stroke);
|
|
2336
|
+
--button-tertiary-outline-default-text: var(--state-color-tertiary-text-outline);
|
|
2337
|
+
/* Hover State */
|
|
2338
|
+
--button-tertiary-outline-hover-bg: var(--state-color-tertiary-hover-bg);
|
|
2339
|
+
--button-tertiary-outline-hover-border: var(--state-color-tertiary-hover);
|
|
2340
|
+
--button-tertiary-outline-hover-text: var(--state-color-tertiary-text-hover);
|
|
2341
|
+
/* Active State */
|
|
2342
|
+
--button-tertiary-outline-active-bg: var(--state-color-tertiary-hover-bg);
|
|
2343
|
+
--button-tertiary-outline-active-border: var(--state-color-tertiary-pressed);
|
|
2344
|
+
--button-tertiary-outline-active-text: var(--state-color-tertiary-text-pressed);
|
|
2345
|
+
/* Disabled State */
|
|
2346
|
+
--button-tertiary-outline-disabled-bg: transparent;
|
|
2347
|
+
--button-tertiary-outline-disabled-border: var(--state-color-disable-outline);
|
|
2348
|
+
--button-tertiary-outline-disabled-text: var(--state-color-disable-outline);
|
|
2349
|
+
/* ------------------------------------------------------------------ */
|
|
2350
|
+
/* Flat Mode Tokens - Tertiary Theme */
|
|
2351
|
+
/* ------------------------------------------------------------------ */
|
|
2352
|
+
/* Default State */
|
|
2353
|
+
--button-tertiary-flat-default-bg: transparent;
|
|
2354
|
+
--button-tertiary-flat-default-border: transparent;
|
|
2355
|
+
--button-tertiary-flat-default-text: var(--state-color-tertiary-text-outline);
|
|
2356
|
+
/* Hover State */
|
|
2357
|
+
--button-tertiary-flat-hover-bg: var(--state-color-tertiary-hover-bg);
|
|
2358
|
+
--button-tertiary-flat-hover-border: transparent;
|
|
2359
|
+
--button-tertiary-flat-hover-text: var(--state-color-tertiary-text-hover);
|
|
2360
|
+
/* Active State */
|
|
2361
|
+
--button-tertiary-flat-active-bg: transparent;
|
|
2362
|
+
--button-tertiary-flat-active-border: transparent;
|
|
2363
|
+
--button-tertiary-flat-active-text: var(--state-color-tertiary-text-pressed);
|
|
2364
|
+
/* Disabled State */
|
|
2365
|
+
--button-tertiary-flat-disabled-bg: transparent;
|
|
2366
|
+
--button-tertiary-flat-disabled-border: transparent;
|
|
2367
|
+
--button-tertiary-flat-disabled-text: var(--state-color-disable-outline);
|
|
2368
|
+
/* ------------------------------------------------------------------ */
|
|
2369
|
+
/* Solid Mode Tokens - Info Theme */
|
|
2370
|
+
/* ------------------------------------------------------------------ */
|
|
2371
|
+
/* Default State */
|
|
2372
|
+
--button-info-solid-default-bg: var(--state-color-info-default);
|
|
2373
|
+
--button-info-solid-default-border: var(--state-color-info-default);
|
|
2374
|
+
--button-info-solid-default-text: var(--state-color-info-text-solid);
|
|
2375
|
+
/* Hover State */
|
|
2376
|
+
--button-info-solid-hover-bg: var(--state-color-info-hover);
|
|
2377
|
+
--button-info-solid-hover-border: var(--state-color-info-hover);
|
|
2378
|
+
--button-info-solid-hover-text: var(--state-color-info-text-solid);
|
|
2379
|
+
/* Active State */
|
|
2380
|
+
--button-info-solid-active-bg: var(--state-color-info-pressed);
|
|
2381
|
+
--button-info-solid-active-border: var(--state-color-info-pressed);
|
|
2382
|
+
--button-info-solid-active-text: var(--state-color-info-text-solid);
|
|
2383
|
+
/* Disabled State */
|
|
2384
|
+
--button-info-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2385
|
+
--button-info-solid-disabled-border: var(--state-color-disable-solid);
|
|
2386
|
+
--button-info-solid-disabled-text: var(--state-color-disable-outline);
|
|
2387
|
+
/* ------------------------------------------------------------------ */
|
|
2388
|
+
/* Outline Mode Tokens - Info Theme */
|
|
2389
|
+
/* ------------------------------------------------------------------ */
|
|
2390
|
+
/* Default State */
|
|
2391
|
+
--button-info-outline-default-bg: transparent;
|
|
2392
|
+
--button-info-outline-default-border: var(--state-color-info-stroke);
|
|
2393
|
+
--button-info-outline-default-text: var(--state-color-info-text-outline);
|
|
2394
|
+
/* Hover State */
|
|
2395
|
+
--button-info-outline-hover-bg: var(--state-color-info-hover-bg);
|
|
2396
|
+
--button-info-outline-hover-border: var(--state-color-info-hover);
|
|
2397
|
+
--button-info-outline-hover-text: var(--state-color-info-text-hover);
|
|
2398
|
+
/* Active State */
|
|
2399
|
+
--button-info-outline-active-bg: var(--state-color-info-hover-bg);
|
|
2400
|
+
--button-info-outline-active-border: var(--state-color-info-pressed);
|
|
2401
|
+
--button-info-outline-active-text: var(--state-color-info-text-pressed);
|
|
2402
|
+
/* Disabled State */
|
|
2403
|
+
--button-info-outline-disabled-bg: transparent;
|
|
2404
|
+
--button-info-outline-disabled-border: var(--state-color-disable-outline);
|
|
2405
|
+
--button-info-outline-disabled-text: var(--state-color-disable-outline);
|
|
2406
|
+
/* ------------------------------------------------------------------ */
|
|
2407
|
+
/* Flat Mode Tokens - Info Theme */
|
|
2408
|
+
/* ------------------------------------------------------------------ */
|
|
2409
|
+
/* Default State */
|
|
2410
|
+
--button-info-flat-default-bg: transparent;
|
|
2411
|
+
--button-info-flat-default-border: transparent;
|
|
2412
|
+
--button-info-flat-default-text: var(--state-color-info-text-outline);
|
|
2413
|
+
/* Hover State */
|
|
2414
|
+
--button-info-flat-hover-bg: var(--state-color-info-hover-bg);
|
|
2415
|
+
--button-info-flat-hover-border: transparent;
|
|
2416
|
+
--button-info-flat-hover-text: var(--state-color-info-text-hover);
|
|
2417
|
+
/* Active State */
|
|
2418
|
+
--button-info-flat-active-bg: transparent;
|
|
2419
|
+
--button-info-flat-active-border: transparent;
|
|
2420
|
+
--button-info-flat-active-text: var(--state-color-info-text-pressed);
|
|
2421
|
+
/* Disabled State */
|
|
2422
|
+
--button-info-flat-disabled-bg: transparent;
|
|
2423
|
+
--button-info-flat-disabled-border: transparent;
|
|
2424
|
+
--button-info-flat-disabled-text: var(--state-color-disable-outline);
|
|
2425
|
+
/* ------------------------------------------------------------------ */
|
|
2426
|
+
/* Solid Mode Tokens - Success Theme */
|
|
2427
|
+
/* ------------------------------------------------------------------ */
|
|
2428
|
+
/* Default State */
|
|
2429
|
+
--button-success-solid-default-bg: var(--state-color-success-default);
|
|
2430
|
+
--button-success-solid-default-border: var(--state-color-success-default);
|
|
2431
|
+
--button-success-solid-default-text: var(--state-color-success-text-solid);
|
|
2432
|
+
/* Hover State */
|
|
2433
|
+
--button-success-solid-hover-bg: var(--state-color-success-hover);
|
|
2434
|
+
--button-success-solid-hover-border: var(--state-color-success-hover);
|
|
2435
|
+
--button-success-solid-hover-text: var(--state-color-success-text-solid);
|
|
2436
|
+
/* Active State */
|
|
2437
|
+
--button-success-solid-active-bg: var(--state-color-success-pressed);
|
|
2438
|
+
--button-success-solid-active-border: var(--state-color-success-pressed);
|
|
2439
|
+
--button-success-solid-active-text: var(--state-color-success-text-solid);
|
|
2440
|
+
/* Disabled State */
|
|
2441
|
+
--button-success-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2442
|
+
--button-success-solid-disabled-border: var(--state-color-disable-solid);
|
|
2443
|
+
--button-success-solid-disabled-text: var(--state-color-disable-outline);
|
|
2444
|
+
/* ------------------------------------------------------------------ */
|
|
2445
|
+
/* Outline Mode Tokens - Success Theme */
|
|
2446
|
+
/* ------------------------------------------------------------------ */
|
|
2447
|
+
/* Default State */
|
|
2448
|
+
--button-success-outline-default-bg: transparent;
|
|
2449
|
+
--button-success-outline-default-border: var(--state-color-success-stroke);
|
|
2450
|
+
--button-success-outline-default-text: var(--state-color-success-text-outline);
|
|
2451
|
+
/* Hover State */
|
|
2452
|
+
--button-success-outline-hover-bg: var(--state-color-success-hover-bg);
|
|
2453
|
+
--button-success-outline-hover-border: var(--state-color-success-hover);
|
|
2454
|
+
--button-success-outline-hover-text: var(--state-color-success-text-hover);
|
|
2455
|
+
/* Active State */
|
|
2456
|
+
--button-success-outline-active-bg: var(--state-color-success-hover-bg);
|
|
2457
|
+
--button-success-outline-active-border: var(--state-color-success-pressed);
|
|
2458
|
+
--button-success-outline-active-text: var(--state-color-success-text-pressed);
|
|
2459
|
+
/* Disabled State */
|
|
2460
|
+
--button-success-outline-disabled-bg: transparent;
|
|
2461
|
+
--button-success-outline-disabled-border: var(--state-color-disable-outline);
|
|
2462
|
+
--button-success-outline-disabled-text: var(--state-color-disable-outline);
|
|
2463
|
+
/* ------------------------------------------------------------------ */
|
|
2464
|
+
/* Flat Mode Tokens - Success Theme */
|
|
2465
|
+
/* ------------------------------------------------------------------ */
|
|
2466
|
+
/* Default State */
|
|
2467
|
+
--button-success-flat-default-bg: transparent;
|
|
2468
|
+
--button-success-flat-default-border: transparent;
|
|
2469
|
+
--button-success-flat-default-text: var(--state-color-success-text-outline);
|
|
2470
|
+
/* Hover State */
|
|
2471
|
+
--button-success-flat-hover-bg: var(--state-color-success-hover-bg);
|
|
2472
|
+
--button-success-flat-hover-border: transparent;
|
|
2473
|
+
--button-success-flat-hover-text: var(--state-color-success-text-hover);
|
|
2474
|
+
/* Active State */
|
|
2475
|
+
--button-success-flat-active-bg: transparent;
|
|
2476
|
+
--button-success-flat-active-border: transparent;
|
|
2477
|
+
--button-success-flat-active-text: var(--state-color-success-text-pressed);
|
|
2478
|
+
/* Disabled State */
|
|
2479
|
+
--button-success-flat-disabled-bg: transparent;
|
|
2480
|
+
--button-success-flat-disabled-border: transparent;
|
|
2481
|
+
--button-success-flat-disabled-text: var(--state-color-disable-outline);
|
|
2482
|
+
/* ------------------------------------------------------------------ */
|
|
2483
|
+
/* Solid Mode Tokens - Warning Theme */
|
|
2484
|
+
/* ------------------------------------------------------------------ */
|
|
2485
|
+
/* Default State */
|
|
2486
|
+
--button-warning-solid-default-bg: var(--state-color-warning-default);
|
|
2487
|
+
--button-warning-solid-default-border: var(--state-color-warning-default);
|
|
2488
|
+
--button-warning-solid-default-text: var(--state-color-warning-text-solid);
|
|
2489
|
+
/* Hover State */
|
|
2490
|
+
--button-warning-solid-hover-bg: var(--state-color-warning-hover);
|
|
2491
|
+
--button-warning-solid-hover-border: var(--state-color-warning-hover);
|
|
2492
|
+
--button-warning-solid-hover-text: var(--state-color-warning-text-solid);
|
|
2493
|
+
/* Active State */
|
|
2494
|
+
--button-warning-solid-active-bg: var(--state-color-warning-pressed);
|
|
2495
|
+
--button-warning-solid-active-border: var(--state-color-warning-pressed);
|
|
2496
|
+
--button-warning-solid-active-text: var(--state-color-warning-text-solid);
|
|
2497
|
+
/* Disabled State */
|
|
2498
|
+
--button-warning-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2499
|
+
--button-warning-solid-disabled-border: var(--state-color-disable-solid);
|
|
2500
|
+
--button-warning-solid-disabled-text: var(--state-color-disable-outline);
|
|
2501
|
+
/* ------------------------------------------------------------------ */
|
|
2502
|
+
/* Outline Mode Tokens - Warning Theme */
|
|
2503
|
+
/* ------------------------------------------------------------------ */
|
|
2504
|
+
/* Default State */
|
|
2505
|
+
--button-warning-outline-default-bg: transparent;
|
|
2506
|
+
--button-warning-outline-default-border: var(--state-color-warning-stroke);
|
|
2507
|
+
--button-warning-outline-default-text: var(--state-color-warning-text-outline);
|
|
2508
|
+
/* Hover State */
|
|
2509
|
+
--button-warning-outline-hover-bg: var(--state-color-warning-hover-bg);
|
|
2510
|
+
--button-warning-outline-hover-border: var(--state-color-warning-hover);
|
|
2511
|
+
--button-warning-outline-hover-text: var(--state-color-warning-text-hover);
|
|
2512
|
+
/* Active State */
|
|
2513
|
+
--button-warning-outline-active-bg: var(--state-color-warning-hover-bg);
|
|
2514
|
+
--button-warning-outline-active-border: var(--state-color-warning-pressed);
|
|
2515
|
+
--button-warning-outline-active-text: var(--state-color-warning-text-pressed);
|
|
2516
|
+
/* Disabled State */
|
|
2517
|
+
--button-warning-outline-disabled-bg: transparent;
|
|
2518
|
+
--button-warning-outline-disabled-border: var(--state-color-disable-outline);
|
|
2519
|
+
--button-warning-outline-disabled-text: var(--state-color-disable-outline);
|
|
2520
|
+
/* ------------------------------------------------------------------ */
|
|
2521
|
+
/* Flat Mode Tokens - Warning Theme */
|
|
2522
|
+
/* ------------------------------------------------------------------ */
|
|
2523
|
+
/* Default State */
|
|
2524
|
+
--button-warning-flat-default-bg: transparent;
|
|
2525
|
+
--button-warning-flat-default-border: transparent;
|
|
2526
|
+
--button-warning-flat-default-text: var(--state-color-warning-text-outline);
|
|
2527
|
+
/* Hover State */
|
|
2528
|
+
--button-warning-flat-hover-bg: var(--state-color-warning-hover-bg);
|
|
2529
|
+
--button-warning-flat-hover-border: transparent;
|
|
2530
|
+
--button-warning-flat-hover-text: var(--state-color-warning-text-hover);
|
|
2531
|
+
/* Active State */
|
|
2532
|
+
--button-warning-flat-active-bg: transparent;
|
|
2533
|
+
--button-warning-flat-active-border: transparent;
|
|
2534
|
+
--button-warning-flat-active-text: var(--state-color-warning-text-pressed);
|
|
2535
|
+
/* Disabled State */
|
|
2536
|
+
--button-warning-flat-disabled-bg: transparent;
|
|
2537
|
+
--button-warning-flat-disabled-border: transparent;
|
|
2538
|
+
--button-warning-flat-disabled-text: var(--state-color-disable-outline);
|
|
2539
|
+
/* ------------------------------------------------------------------ */
|
|
2540
|
+
/* Solid Mode Tokens - Error Theme */
|
|
2541
|
+
/* ------------------------------------------------------------------ */
|
|
2542
|
+
/* Default State */
|
|
2543
|
+
--button-error-solid-default-bg: var(--state-color-error-default);
|
|
2544
|
+
--button-error-solid-default-border: var(--state-color-error-default);
|
|
2545
|
+
--button-error-solid-default-text: var(--state-color-error-text-solid);
|
|
2546
|
+
/* Hover State */
|
|
2547
|
+
--button-error-solid-hover-bg: var(--state-color-error-hover);
|
|
2548
|
+
--button-error-solid-hover-border: var(--state-color-error-hover);
|
|
2549
|
+
--button-error-solid-hover-text: var(--state-color-error-text-solid);
|
|
2550
|
+
/* Active State */
|
|
2551
|
+
--button-error-solid-active-bg: var(--state-color-error-pressed);
|
|
2552
|
+
--button-error-solid-active-border: var(--state-color-error-pressed);
|
|
2553
|
+
--button-error-solid-active-text: var(--state-color-error-text-solid);
|
|
2554
|
+
/* Disabled State */
|
|
2555
|
+
--button-error-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2556
|
+
--button-error-solid-disabled-border: var(--state-color-disable-solid);
|
|
2557
|
+
--button-error-solid-disabled-text: var(--state-color-disable-outline);
|
|
2558
|
+
/* ------------------------------------------------------------------ */
|
|
2559
|
+
/* Outline Mode Tokens - Error Theme */
|
|
2560
|
+
/* ------------------------------------------------------------------ */
|
|
2561
|
+
/* Default State */
|
|
2562
|
+
--button-error-outline-default-bg: transparent;
|
|
2563
|
+
--button-error-outline-default-border: var(--state-color-error-stroke);
|
|
2564
|
+
--button-error-outline-default-text: var(--state-color-error-text-outline);
|
|
2565
|
+
/* Hover State */
|
|
2566
|
+
--button-error-outline-hover-bg: var(--state-color-error-hover-bg);
|
|
2567
|
+
--button-error-outline-hover-border: var(--state-color-error-hover);
|
|
2568
|
+
--button-error-outline-hover-text: var(--state-color-error-text-hover);
|
|
2569
|
+
/* Active State */
|
|
2570
|
+
--button-error-outline-active-bg: var(--state-color-error-hover-bg);
|
|
2571
|
+
--button-error-outline-active-border: var(--state-color-error-pressed);
|
|
2572
|
+
--button-error-outline-active-text: var(--state-color-error-text-pressed);
|
|
2573
|
+
/* Disabled State */
|
|
2574
|
+
--button-error-outline-disabled-bg: transparent;
|
|
2575
|
+
--button-error-outline-disabled-border: var(--state-color-disable-outline);
|
|
2576
|
+
--button-error-outline-disabled-text: var(--state-color-disable-outline);
|
|
2577
|
+
/* ------------------------------------------------------------------ */
|
|
2578
|
+
/* Flat Mode Tokens - Error Theme */
|
|
2579
|
+
/* ------------------------------------------------------------------ */
|
|
2580
|
+
/* Default State */
|
|
2581
|
+
--button-error-flat-default-bg: transparent;
|
|
2582
|
+
--button-error-flat-default-border: transparent;
|
|
2583
|
+
--button-error-flat-default-text: var(--state-color-error-text-outline);
|
|
2584
|
+
/* Hover State */
|
|
2585
|
+
--button-error-flat-hover-bg: var(--state-color-error-hover-bg);
|
|
2586
|
+
--button-error-flat-hover-border: transparent;
|
|
2587
|
+
--button-error-flat-hover-text: var(--state-color-error-text-hover);
|
|
2588
|
+
/* Active State */
|
|
2589
|
+
--button-error-flat-active-bg: transparent;
|
|
2590
|
+
--button-error-flat-active-border: transparent;
|
|
2591
|
+
--button-error-flat-active-text: var(--state-color-error-text-pressed);
|
|
2592
|
+
/* Disabled State */
|
|
2593
|
+
--button-error-flat-disabled-bg: transparent;
|
|
2594
|
+
--button-error-flat-disabled-border: transparent;
|
|
2595
|
+
--button-error-flat-disabled-text: var(--state-color-disable-outline);
|
|
2596
|
+
/* --------------------------------------------------------------------------------- */
|
|
2597
|
+
/* Action Button Component Tokens */
|
|
2598
|
+
/* --------------------------------------------------------------------------------- */
|
|
2599
|
+
/* Naming Convention: --[component]-[mode]-[state]-[property] */
|
|
2600
|
+
/* Mone: [solid, outline, icon] */
|
|
2601
|
+
/* States: [default, hover, pressed, active, active-pressed active-hover disabled] */
|
|
2602
|
+
/* --------------------------------------------------------------------------------- */
|
|
2603
|
+
/* ------------------------------------------------------------------ */
|
|
2604
|
+
/* Solid Mode Tokens */
|
|
2605
|
+
/* ------------------------------------------------------------------ */
|
|
2606
|
+
/* Default State */
|
|
2607
|
+
--action-button-solid-default-bg: var(--function-default-solid);
|
|
2608
|
+
--action-button-solid-default-border: var(--function-default-solid);
|
|
2609
|
+
--action-button-solid-default-text: var(--function-default-icon);
|
|
2610
|
+
/* Hover State */
|
|
2611
|
+
--action-button-solid-hover-bg: var(--function-default-hover);
|
|
2612
|
+
--action-button-solid-hover-border: var(--function-default-hover);
|
|
2613
|
+
--action-button-solid-hover-text: var(--function-default-icon);
|
|
2614
|
+
/* Pressed State */
|
|
2615
|
+
--action-button-solid-pressed-bg: var(--function-default-solid);
|
|
2616
|
+
--action-button-solid-pressed-border: var(--function-default-solid);
|
|
2617
|
+
--action-button-solid-pressed-text: var(--function-default-icon);
|
|
2618
|
+
/* Active State */
|
|
2619
|
+
--action-button-solid-active-bg: var(--function-active-solid);
|
|
2620
|
+
--action-button-solid-active-border: var(--function-active-solid);
|
|
2621
|
+
--action-button-solid-active-text: var(--function-active-icon);
|
|
2622
|
+
/* Active Hover State */
|
|
2623
|
+
--action-button-solid-active-hover-bg: var(--function-active-hover);
|
|
2624
|
+
--action-button-solid-active-hover-border: var(--function-active-hover);
|
|
2625
|
+
--action-button-solid-active-hover-text: var(--function-active-icon);
|
|
2626
|
+
/* Active Pressed State */
|
|
2627
|
+
--action-button-solid-active-pressed-bg: var(--function-active-solid);
|
|
2628
|
+
--action-button-solid-active-pressed-border: var(--function-active-solid);
|
|
2629
|
+
--action-button-solid-active-pressed-text: var(--function-active-icon);
|
|
2630
|
+
/* Disabled State */
|
|
2631
|
+
--action-button-solid-disabled-bg: var(--state-color-disable-solid);
|
|
2632
|
+
--action-button-solid-disabled-border: var(--state-color-disable-solid);
|
|
2633
|
+
--action-button-solid-disabled-text: var(--state-color-disable-outline);
|
|
2634
|
+
/* ------------------------------------------------------------------ */
|
|
2635
|
+
/* Outline Mode Tokens */
|
|
2636
|
+
/* ------------------------------------------------------------------ */
|
|
2637
|
+
/* Default State */
|
|
2638
|
+
--action-button-outline-default-bg: transparent;
|
|
2639
|
+
--action-button-outline-default-border: var(--function-default-stroke);
|
|
2640
|
+
--action-button-outline-default-text: var(--function-default-outline-icon);
|
|
2641
|
+
/* Hover State */
|
|
2642
|
+
--action-button-outline-hover-bg: var(--function-default-hover-bg);
|
|
2643
|
+
--action-button-outline-hover-border: var(--function-default-hover);
|
|
2644
|
+
--action-button-outline-hover-text: var(--function-default-hover);
|
|
2645
|
+
/* Pressed State */
|
|
2646
|
+
--action-button-outline-pressed-bg: var(--function-default-hover-bg);
|
|
2647
|
+
--action-button-outline-pressed-border: var(--function-default-stroke);
|
|
2648
|
+
--action-button-outline-pressed-text: var(--function-default-outline-icon);
|
|
2649
|
+
/* Active State */
|
|
2650
|
+
--action-button-outline-active-bg: transparent;
|
|
2651
|
+
--action-button-outline-active-border: var(--function-active-stroke);
|
|
2652
|
+
--action-button-outline-active-text: var(--function-active-solid);
|
|
2653
|
+
/* Active Hover State */
|
|
2654
|
+
--action-button-outline-active-hover-bg: var(--function-active-hover-bg);
|
|
2655
|
+
--action-button-outline-active-hover-border: var(--function-active-hover);
|
|
2656
|
+
--action-button-outline-active-hover-text: var(--function-active-hover);
|
|
2657
|
+
/* Active Pressed State */
|
|
2658
|
+
--action-button-outline-active-pressed-bg: var(--function-active-hover-bg);
|
|
2659
|
+
--action-button-outline-active-pressed-border: var(--function-active-stroke);
|
|
2660
|
+
--action-button-outline-active-pressed-text: var(--function-active-solid);
|
|
2661
|
+
/* Disabled State */
|
|
2662
|
+
--action-button-outline-disabled-bg: transparent;
|
|
2663
|
+
--action-button-outline-disabled-border: var(--state-color-disable-outline);
|
|
2664
|
+
--action-button-outline-disabled-text: var(--state-color-disable-outline);
|
|
2665
|
+
/* ------------------------------------------------------------------ */
|
|
2666
|
+
/* Icon Mode Tokens */
|
|
2667
|
+
/* ------------------------------------------------------------------ */
|
|
2668
|
+
/* Default State */
|
|
2669
|
+
--action-button-icon-default-bg: transparent;
|
|
2670
|
+
--action-button-icon-default-border: transparent;
|
|
2671
|
+
--action-button-icon-default-text: var(--function-default-outline-icon);
|
|
2672
|
+
/* Hover State */
|
|
2673
|
+
--action-button-icon-hover-bg: var(--function-default-hover-bg);
|
|
2674
|
+
--action-button-icon-hover-border: transparent;
|
|
2675
|
+
--action-button-icon-hover-text: var(--function-default-hover);
|
|
2676
|
+
/* Pressed State */
|
|
2677
|
+
--action-button-icon-pressed-bg: transparent;
|
|
2678
|
+
--action-button-icon-pressed-border: transparent;
|
|
2679
|
+
--action-button-icon-pressed-text: var(--function-default-outline-icon);
|
|
2680
|
+
/* Active State */
|
|
2681
|
+
--action-button-icon-active-bg: transparent;
|
|
2682
|
+
--action-button-icon-active-border: transparent;
|
|
2683
|
+
--action-button-icon-active-text: var(--function-active-solid);
|
|
2684
|
+
/* Active Hover State */
|
|
2685
|
+
--action-button-icon-active-hover-bg: var(--function-active-hover-bg);
|
|
2686
|
+
--action-button-icon-active-hover-border: transparent;
|
|
2687
|
+
--action-button-icon-active-hover-text: var(--function-active-hover);
|
|
2688
|
+
/* Active Pressed State */
|
|
2689
|
+
--action-button-icon-active-pressed-bg: transparent;
|
|
2690
|
+
--action-button-icon-active-pressed-border: transparent;
|
|
2691
|
+
--action-button-icon-active-pressed-text: var(--function-active-solid);
|
|
2692
|
+
/* Disabled State */
|
|
2693
|
+
--action-button-icon-disabled-bg: transparent;
|
|
2694
|
+
--action-button-icon-disabled-border: transparent;
|
|
2695
|
+
--action-button-icon-disabled-text: var(--state-color-disable-outline);
|
|
2696
|
+
/* ------------------------------------------------------------------ */
|
|
2697
|
+
/* Loading Component Tokens */
|
|
2698
|
+
/* ------------------------------------------------------------------ */
|
|
2699
|
+
/* Naming Convention: --[component]-[element]-[property] */
|
|
2700
|
+
/* Element: [progress, track] */
|
|
2701
|
+
/* ------------------------------------------------------------------ */
|
|
2702
|
+
--loading-process-color: var(--secondary);
|
|
1534
2703
|
--loading-track-color: #9E9E9E7A;
|
|
2704
|
+
/* Navbar */
|
|
2705
|
+
--navbar-height: 58px;
|
|
2706
|
+
--navbar-bg-color: var(--primary-default);
|
|
2707
|
+
--navbar-text-color: var(--primary-foreground);
|
|
2708
|
+
--navbar-border-color: var(--primary-foreground);
|
|
2709
|
+
--navbar-gap: 16px;
|
|
1535
2710
|
/* ------------------------------------------------------------------ */
|
|
1536
2711
|
/* DropdownMenu Component Tokens */
|
|
1537
2712
|
/* ------------------------------------------------------------------ */
|
|
1538
2713
|
/* Naming Convention: --[component]-[state]-[property] */
|
|
1539
2714
|
/* Element: [default, hover, selected, disabled] */
|
|
1540
2715
|
/* ------------------------------------------------------------------ */
|
|
1541
|
-
--dropdown-menu-seperator-bg: var(--
|
|
1542
|
-
--dropdown-menu-shadow: 0px
|
|
2716
|
+
--dropdown-menu-seperator-bg: var(--base-color-workspace-stroke);
|
|
2717
|
+
--dropdown-menu-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
1543
2718
|
/* Default State */
|
|
1544
2719
|
--dropdown-menu-default-bg: transparent;
|
|
1545
2720
|
--dropdown-menu-default-text: inherit;
|
|
1546
2721
|
/* Hover State */
|
|
1547
|
-
--dropdown-menu-hover-bg: var(--
|
|
2722
|
+
--dropdown-menu-hover-bg: var(--state-color-primary-hover-bg);
|
|
1548
2723
|
--dropdown-menu-hover-text: inherit;
|
|
1549
2724
|
/* Selected State */
|
|
1550
|
-
--dropdown-menu-selected-bg:
|
|
2725
|
+
--dropdown-menu-selected-bg: transparent;
|
|
1551
2726
|
--dropdown-menu-selected-text: inherit;
|
|
1552
2727
|
/* Disabled State */
|
|
1553
2728
|
--dropdown-menu-disabled-bg: transparent;
|
|
1554
|
-
--dropdown-menu-disabled-text: var(--
|
|
2729
|
+
--dropdown-menu-disabled-text: var(--state-color-disable-outline);
|
|
2730
|
+
/* ------------------------------------------------------------------ */
|
|
2731
|
+
/* Switch Component Tokens */
|
|
2732
|
+
/* ------------------------------------------------------------------ */
|
|
2733
|
+
/* Naming Convention: --[component]-[element]-[state]-[property] */
|
|
2734
|
+
/* Element: [progress, track] */
|
|
2735
|
+
/* ------------------------------------------------------------------ */
|
|
2736
|
+
/* Default State */
|
|
2737
|
+
--switch-default-color: rgb(from var(--state-color-tertiary-active) r g b / 0.32);
|
|
2738
|
+
--switch-thumb-default-color: var(--state-color-tertiary-active);
|
|
2739
|
+
/* Hover State */
|
|
2740
|
+
--switch-hover-color: rgb(from var(--state-color-tertiary-active) r g b / 0.48);
|
|
2741
|
+
--switch-thumb-hover-color: var(--switch-thumb-default-color);
|
|
2742
|
+
--switch-thumb-hover-ring: var(--state-color-tertiary-hover-bg);
|
|
2743
|
+
/* Active State */
|
|
2744
|
+
--switch-active-color: rgb(from var(--state-color-secondary-default) r g b / 0.32);
|
|
2745
|
+
--switch-thumb-active-color: var(--state-color-secondary-default);
|
|
2746
|
+
/* Active Hover State */
|
|
2747
|
+
--switch-active-hover-color: rgb(from var(--state-color-secondary-default) r g b / 0.48);
|
|
2748
|
+
--switch-thumb-active-hover-color: var(--switch-thumb-active-color);
|
|
2749
|
+
--switch-thumb-active-hover-ring: var(--state-color-secondary-hover-bg);
|
|
2750
|
+
/* Disabled State */
|
|
2751
|
+
--switch-disabled-color: rgb(from var(--state-color-disable-solid) r g b / 0.32);
|
|
2752
|
+
--switch-thumb-disabled-color: var(--state-color-disable-solid)
|
|
2753
|
+
;
|
|
1555
2754
|
}
|
|
1556
2755
|
|
|
1557
2756
|
/* ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */
|
|
@@ -2343,6 +3542,10 @@ input[type=number] {
|
|
|
2343
3542
|
margin-right: 1rem;
|
|
2344
3543
|
}
|
|
2345
3544
|
|
|
3545
|
+
.mr-\[2px\] {
|
|
3546
|
+
margin-right: 2px;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
2346
3549
|
.mt-1 {
|
|
2347
3550
|
margin-top: 0.25rem;
|
|
2348
3551
|
}
|
|
@@ -2444,6 +3647,11 @@ input[type=number] {
|
|
|
2444
3647
|
height: 14px;
|
|
2445
3648
|
}
|
|
2446
3649
|
|
|
3650
|
+
.size-\[16pt\] {
|
|
3651
|
+
width: 16pt;
|
|
3652
|
+
height: 16pt;
|
|
3653
|
+
}
|
|
3654
|
+
|
|
2447
3655
|
.size-\[30px\] {
|
|
2448
3656
|
width: 30px;
|
|
2449
3657
|
height: 30px;
|
|
@@ -2459,6 +3667,10 @@ input[type=number] {
|
|
|
2459
3667
|
height: 100%;
|
|
2460
3668
|
}
|
|
2461
3669
|
|
|
3670
|
+
.h-1\/2 {
|
|
3671
|
+
height: 50%;
|
|
3672
|
+
}
|
|
3673
|
+
|
|
2462
3674
|
.h-10 {
|
|
2463
3675
|
height: 2.5rem;
|
|
2464
3676
|
}
|
|
@@ -2552,6 +3764,10 @@ input[type=number] {
|
|
|
2552
3764
|
max-height: 100vh;
|
|
2553
3765
|
}
|
|
2554
3766
|
|
|
3767
|
+
.min-h-10 {
|
|
3768
|
+
min-height: 2.5rem;
|
|
3769
|
+
}
|
|
3770
|
+
|
|
2555
3771
|
.w-1\/2 {
|
|
2556
3772
|
width: 50%;
|
|
2557
3773
|
}
|
|
@@ -2908,6 +4124,10 @@ input[type=number] {
|
|
|
2908
4124
|
white-space: nowrap;
|
|
2909
4125
|
}
|
|
2910
4126
|
|
|
4127
|
+
.text-ellipsis {
|
|
4128
|
+
text-overflow: ellipsis;
|
|
4129
|
+
}
|
|
4130
|
+
|
|
2911
4131
|
.rounded {
|
|
2912
4132
|
border-radius: 0.25rem;
|
|
2913
4133
|
}
|
|
@@ -4252,11 +5472,6 @@ input[type=number] {
|
|
|
4252
5472
|
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4253
5473
|
}
|
|
4254
5474
|
|
|
4255
|
-
.bg-secondary-active {
|
|
4256
|
-
--tw-bg-opacity: 1;
|
|
4257
|
-
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4258
|
-
}
|
|
4259
|
-
|
|
4260
5475
|
.bg-secondary-default {
|
|
4261
5476
|
--tw-bg-opacity: 1;
|
|
4262
5477
|
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -4913,6 +6128,10 @@ input[type=number] {
|
|
|
4913
6128
|
fill: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
4914
6129
|
}
|
|
4915
6130
|
|
|
6131
|
+
.fill-warning {
|
|
6132
|
+
fill: color-mix(in srgb, var(--state-color-warning-default) calc(100% * 1), transparent);
|
|
6133
|
+
}
|
|
6134
|
+
|
|
4916
6135
|
.stroke-input-default-stroke {
|
|
4917
6136
|
stroke: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * 1), transparent);
|
|
4918
6137
|
}
|
|
@@ -7751,9 +8970,8 @@ input[type=number] {
|
|
|
7751
8970
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
7752
8971
|
}
|
|
7753
8972
|
|
|
7754
|
-
.group:disabled .group-disabled
|
|
7755
|
-
--
|
|
7756
|
-
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
8973
|
+
.group:disabled .group-disabled\:\!bg-\[--switch-thumb-disabled-color\] {
|
|
8974
|
+
background-color: var(--switch-thumb-disabled-color) !important;
|
|
7757
8975
|
}
|
|
7758
8976
|
|
|
7759
8977
|
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:top-2 {
|
|
@@ -8086,8 +9304,8 @@ input[type=number] {
|
|
|
8086
9304
|
background-color: var(--dropdown-menu-disabled-bg) !important;
|
|
8087
9305
|
}
|
|
8088
9306
|
|
|
8089
|
-
.data-\[disabled\]
|
|
8090
|
-
background-color:
|
|
9307
|
+
.data-\[disabled\]\:\!bg-\[var\(--switch-disabled-color\)\][data-disabled] {
|
|
9308
|
+
background-color: var(--switch-disabled-color) !important;
|
|
8091
9309
|
}
|
|
8092
9310
|
|
|
8093
9311
|
.data-\[loading\=true\]\:bg-button-error-flat-active[data-loading=true] {
|
|
@@ -8199,15 +9417,19 @@ input[type=number] {
|
|
|
8199
9417
|
background-color: var(--dropdown-menu-selected-bg);
|
|
8200
9418
|
}
|
|
8201
9419
|
|
|
9420
|
+
.data-\[state\=checked\]\:bg-\[var\(--switch-active-color\)\][data-state=checked] {
|
|
9421
|
+
background-color: var(--switch-active-color);
|
|
9422
|
+
}
|
|
9423
|
+
|
|
9424
|
+
.data-\[state\=checked\]\:bg-\[var\(--switch-thumb-active-color\)\][data-state=checked] {
|
|
9425
|
+
background-color: var(--switch-thumb-active-color);
|
|
9426
|
+
}
|
|
9427
|
+
|
|
8202
9428
|
.data-\[state\=checked\]\:bg-function-active-solid[data-state=checked] {
|
|
8203
9429
|
--tw-bg-opacity: 1;
|
|
8204
9430
|
background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
8205
9431
|
}
|
|
8206
9432
|
|
|
8207
|
-
.data-\[state\=checked\]\:bg-secondary-active\/\[0\.32\][data-state=checked] {
|
|
8208
|
-
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * 0.32), transparent);
|
|
8209
|
-
}
|
|
8210
|
-
|
|
8211
9433
|
.data-\[state\=open\]\:bg-primary[data-state=open] {
|
|
8212
9434
|
--tw-bg-opacity: 1;
|
|
8213
9435
|
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -8218,13 +9440,12 @@ input[type=number] {
|
|
|
8218
9440
|
background-color: color-mix(in srgb, var(--grey-grey-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
8219
9441
|
}
|
|
8220
9442
|
|
|
8221
|
-
.data-\[state\=unchecked\]\:bg-
|
|
8222
|
-
--
|
|
8223
|
-
background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
9443
|
+
.data-\[state\=unchecked\]\:bg-\[var\(--switch-default-color\)\][data-state=unchecked] {
|
|
9444
|
+
background-color: var(--switch-default-color);
|
|
8224
9445
|
}
|
|
8225
9446
|
|
|
8226
|
-
.data-\[state\=unchecked\]\:bg-
|
|
8227
|
-
background-color:
|
|
9447
|
+
.data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-default-color\)\][data-state=unchecked] {
|
|
9448
|
+
background-color: var(--switch-thumb-default-color);
|
|
8228
9449
|
}
|
|
8229
9450
|
|
|
8230
9451
|
.data-\[disabled\]\:\!fill-state-disable-solid[data-disabled] {
|
|
@@ -8463,17 +9684,17 @@ input[type=number] {
|
|
|
8463
9684
|
border-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-border-opacity)), transparent);
|
|
8464
9685
|
}
|
|
8465
9686
|
|
|
9687
|
+
.hover\:data-\[state\=checked\]\:bg-\[var\(--switch-active-hover-color\)\][data-state=checked]:hover {
|
|
9688
|
+
background-color: var(--switch-active-hover-color);
|
|
9689
|
+
}
|
|
9690
|
+
|
|
8466
9691
|
.hover\:data-\[state\=checked\]\:bg-function-active-hover[data-state=checked]:hover {
|
|
8467
9692
|
--tw-bg-opacity: 1;
|
|
8468
9693
|
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
8469
9694
|
}
|
|
8470
9695
|
|
|
8471
|
-
.hover\:data-\[state\=
|
|
8472
|
-
background-color:
|
|
8473
|
-
}
|
|
8474
|
-
|
|
8475
|
-
.hover\:data-\[state\=unchecked\]\:bg-tertiary-active\/\[0\.48\][data-state=unchecked]:hover {
|
|
8476
|
-
background-color: color-mix(in srgb, var(--state-color-tertiary-active) calc(100% * 0.48), transparent);
|
|
9696
|
+
.hover\:data-\[state\=unchecked\]\:bg-\[var\(--switch-hover-color\)\][data-state=unchecked]:hover {
|
|
9697
|
+
background-color: var(--switch-hover-color);
|
|
8477
9698
|
}
|
|
8478
9699
|
|
|
8479
9700
|
.hover\:data-\[state\=checked\]\:text-function-active-hover[data-state=checked]:hover {
|
|
@@ -8481,14 +9702,20 @@ input[type=number] {
|
|
|
8481
9702
|
color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-text-opacity)), transparent);
|
|
8482
9703
|
}
|
|
8483
9704
|
|
|
8484
|
-
.group:hover .group-hover\:data-\[state\=checked\]\:
|
|
8485
|
-
--
|
|
8486
|
-
--tw-ring-color: color-mix(in srgb, var(--state-color-secondary-hover-bg) calc(100% * var(--tw-ring-opacity)), transparent);
|
|
9705
|
+
.group:hover .group-hover\:data-\[state\=checked\]\:bg-\[var\(--switch-thumb-active-hover-color\)\][data-state=checked] {
|
|
9706
|
+
background-color: var(--switch-thumb-active-hover-color);
|
|
8487
9707
|
}
|
|
8488
9708
|
|
|
8489
|
-
.group:hover .group-hover\:data-\[state\=unchecked\]\:
|
|
8490
|
-
--
|
|
8491
|
-
|
|
9709
|
+
.group:hover .group-hover\:data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-hover-color\)\][data-state=unchecked] {
|
|
9710
|
+
background-color: var(--switch-thumb-hover-color);
|
|
9711
|
+
}
|
|
9712
|
+
|
|
9713
|
+
.group:hover .group-hover\:data-\[state\=checked\]\:ring-\[var\(--switch-thumb-active-hover-ring\)\][data-state=checked] {
|
|
9714
|
+
--tw-ring-color: var(--switch-thumb-active-hover-ring);
|
|
9715
|
+
}
|
|
9716
|
+
|
|
9717
|
+
.group:hover .group-hover\:data-\[state\=unchecked\]\:ring-\[var\(--switch-thumb-hover-ring\)\][data-state=unchecked] {
|
|
9718
|
+
--tw-ring-color: var(--switch-thumb-hover-ring);
|
|
8492
9719
|
}
|
|
8493
9720
|
|
|
8494
9721
|
@media (min-width: 640px) {
|