@nswds/tokens 2.7.0 → 2.9.0
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/css/colors/semantic/hex.css +78 -0
- package/dist/css/colors/semantic/hsl.css +78 -0
- package/dist/css/colors/semantic/oklch.css +78 -0
- package/dist/css/colors/semantic/rgb.css +78 -0
- package/dist/css/colors/themes/masterbrand/hex.css +57 -56
- package/dist/css/colors/themes/masterbrand/hsl.css +57 -56
- package/dist/css/colors/themes/masterbrand/oklch.css +57 -56
- package/dist/css/colors/themes/masterbrand/rgb.css +57 -56
- package/dist/figma/color/semantic/hex.json +314 -0
- package/dist/figma/color/semantic/hsl.json +618 -0
- package/dist/figma/color/semantic/oklch.json +618 -0
- package/dist/figma/color/semantic/rgb.json +618 -0
- package/dist/figma/color/themes/masterbrand/color/hex.json +236 -0
- package/dist/figma/color/themes/masterbrand/color/hsl.json +464 -0
- package/dist/figma/color/themes/masterbrand/color/oklch.json +464 -0
- package/dist/figma/color/themes/masterbrand/color/rgb.json +464 -0
- package/dist/index.cjs +2199 -2294
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +498 -770
- package/dist/index.d.ts +498 -770
- package/dist/index.js +2199 -2294
- package/dist/index.js.map +1 -1
- package/dist/js/colors/semantic/hex.js +87 -0
- package/dist/js/colors/semantic/hsl.js +87 -0
- package/dist/js/colors/semantic/oklch.js +87 -0
- package/dist/js/colors/semantic/rgb.js +87 -0
- package/dist/js/colors/themes/masterbrand/hex.js +59 -68
- package/dist/js/colors/themes/masterbrand/hsl.js +59 -68
- package/dist/js/colors/themes/masterbrand/oklch.js +59 -68
- package/dist/js/colors/themes/masterbrand/rgb.js +59 -68
- package/dist/json/colors/semantic/hex.json +86 -0
- package/dist/json/colors/semantic/hsl.json +86 -0
- package/dist/json/colors/semantic/oklch.json +86 -0
- package/dist/json/colors/semantic/rgb.json +86 -0
- package/dist/json/colors/themes/masterbrand/hex.json +58 -67
- package/dist/json/colors/themes/masterbrand/hsl.json +58 -67
- package/dist/json/colors/themes/masterbrand/oklch.json +58 -67
- package/dist/json/colors/themes/masterbrand/rgb.json +58 -67
- package/dist/less/colors/semantic/hex.less +76 -0
- package/dist/less/colors/semantic/hsl.less +76 -0
- package/dist/less/colors/semantic/oklch.less +76 -0
- package/dist/less/colors/semantic/rgb.less +76 -0
- package/dist/less/colors/themes/masterbrand/hex.less +57 -56
- package/dist/less/colors/themes/masterbrand/hsl.less +57 -56
- package/dist/less/colors/themes/masterbrand/oklch.less +57 -56
- package/dist/less/colors/themes/masterbrand/rgb.less +57 -56
- package/dist/scss/colors/semantic/hex.scss +76 -0
- package/dist/scss/colors/semantic/hsl.scss +76 -0
- package/dist/scss/colors/semantic/oklch.scss +76 -0
- package/dist/scss/colors/semantic/rgb.scss +76 -0
- package/dist/scss/colors/themes/masterbrand/hex.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/hsl.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/oklch.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/rgb.scss +57 -56
- package/dist/tailwind/colors/semantic/hex.css +78 -0
- package/dist/tailwind/colors/semantic/hsl.css +78 -0
- package/dist/tailwind/colors/semantic/oklch.css +78 -0
- package/dist/tailwind/colors/semantic/rgb.css +78 -0
- package/dist/tailwind/colors/themes/masterbrand/hex.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/hsl.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/oklch.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/rgb.css +57 -56
- package/dist/ts/colors/semantic/hex.ts +84 -0
- package/dist/ts/colors/semantic/hsl.ts +84 -0
- package/dist/ts/colors/semantic/oklch.ts +84 -0
- package/dist/ts/colors/semantic/rgb.ts +84 -0
- package/dist/ts/colors/themes/masterbrand/hex.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/hsl.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/oklch.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/rgb.ts +59 -68
- package/package.json +1 -1
- package/src/css/colors/semantic/hex.css +78 -0
- package/src/css/colors/semantic/hsl.css +78 -0
- package/src/css/colors/semantic/oklch.css +78 -0
- package/src/css/colors/semantic/rgb.css +78 -0
- package/src/css/colors/themes/masterbrand/hex.css +57 -56
- package/src/css/colors/themes/masterbrand/hsl.css +57 -56
- package/src/css/colors/themes/masterbrand/oklch.css +57 -56
- package/src/css/colors/themes/masterbrand/rgb.css +57 -56
- package/src/figma/color/semantic/hex.json +314 -0
- package/src/figma/color/semantic/hsl.json +618 -0
- package/src/figma/color/semantic/oklch.json +618 -0
- package/src/figma/color/semantic/rgb.json +618 -0
- package/src/figma/color/themes/masterbrand/color/hex.json +236 -0
- package/src/figma/color/themes/masterbrand/color/hsl.json +464 -0
- package/src/figma/color/themes/masterbrand/color/oklch.json +464 -0
- package/src/figma/color/themes/masterbrand/color/rgb.json +464 -0
- package/src/index.ts +4 -4
- package/src/js/colors/semantic/hex.js +87 -0
- package/src/js/colors/semantic/hsl.js +87 -0
- package/src/js/colors/semantic/oklch.js +87 -0
- package/src/js/colors/semantic/rgb.js +87 -0
- package/src/js/colors/themes/masterbrand/hex.js +59 -68
- package/src/js/colors/themes/masterbrand/hsl.js +59 -68
- package/src/js/colors/themes/masterbrand/oklch.js +59 -68
- package/src/js/colors/themes/masterbrand/rgb.js +59 -68
- package/src/json/colors/semantic/hex.json +86 -0
- package/src/json/colors/semantic/hsl.json +86 -0
- package/src/json/colors/semantic/oklch.json +86 -0
- package/src/json/colors/semantic/rgb.json +86 -0
- package/src/json/colors/themes/masterbrand/hex.json +58 -67
- package/src/json/colors/themes/masterbrand/hsl.json +58 -67
- package/src/json/colors/themes/masterbrand/oklch.json +58 -67
- package/src/json/colors/themes/masterbrand/rgb.json +58 -67
- package/src/less/colors/semantic/hex.less +76 -0
- package/src/less/colors/semantic/hsl.less +76 -0
- package/src/less/colors/semantic/oklch.less +76 -0
- package/src/less/colors/semantic/rgb.less +76 -0
- package/src/less/colors/themes/masterbrand/hex.less +57 -56
- package/src/less/colors/themes/masterbrand/hsl.less +57 -56
- package/src/less/colors/themes/masterbrand/oklch.less +57 -56
- package/src/less/colors/themes/masterbrand/rgb.less +57 -56
- package/src/scss/colors/semantic/hex.scss +76 -0
- package/src/scss/colors/semantic/hsl.scss +76 -0
- package/src/scss/colors/semantic/oklch.scss +76 -0
- package/src/scss/colors/semantic/rgb.scss +76 -0
- package/src/scss/colors/themes/masterbrand/hex.scss +57 -56
- package/src/scss/colors/themes/masterbrand/hsl.scss +57 -56
- package/src/scss/colors/themes/masterbrand/oklch.scss +57 -56
- package/src/scss/colors/themes/masterbrand/rgb.scss +57 -56
- package/src/tailwind/colors/semantic/hex.css +78 -0
- package/src/tailwind/colors/semantic/hsl.css +78 -0
- package/src/tailwind/colors/semantic/oklch.css +78 -0
- package/src/tailwind/colors/semantic/rgb.css +78 -0
- package/src/tailwind/colors/themes/masterbrand/hex.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/hsl.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/oklch.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/rgb.css +57 -56
- package/src/ts/colors/semantic/hex.ts +84 -0
- package/src/ts/colors/semantic/hsl.ts +84 -0
- package/src/ts/colors/semantic/oklch.ts +84 -0
- package/src/ts/colors/semantic/rgb.ts +84 -0
- package/src/ts/colors/themes/masterbrand/hex.ts +59 -68
- package/src/ts/colors/themes/masterbrand/hsl.ts +59 -68
- package/src/ts/colors/themes/masterbrand/oklch.ts +59 -68
- package/src/ts/colors/themes/masterbrand/rgb.ts +59 -68
- package/dist/figma/themes/masterbrand/color/hex.json +0 -226
- package/dist/figma/themes/masterbrand/color/hsl.json +0 -450
- package/dist/figma/themes/masterbrand/color/oklch.json +0 -450
- package/dist/figma/themes/masterbrand/color/rgb.json +0 -450
- package/src/figma/themes/masterbrand/color/hex.json +0 -226
- package/src/figma/themes/masterbrand/color/hsl.json +0 -450
- package/src/figma/themes/masterbrand/color/oklch.json +0 -450
- package/src/figma/themes/masterbrand/color/rgb.json +0 -450
- /package/dist/figma/{global/color → color/global}/hex.json +0 -0
- /package/dist/figma/{global/color → color/global}/hsl.json +0 -0
- /package/dist/figma/{global/color → color/global}/oklch.json +0 -0
- /package/dist/figma/{global/color → color/global}/rgb.json +0 -0
- /package/src/figma/{global/color → color/global}/hex.json +0 -0
- /package/src/figma/{global/color → color/global}/hsl.json +0 -0
- /package/src/figma/{global/color → color/global}/oklch.json +0 -0
- /package/src/figma/{global/color → color/global}/rgb.json +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1562,508 +1562,276 @@ declare namespace globalJsRgb {
|
|
|
1562
1562
|
export { nswAboriginalBlue$4 as nswAboriginalBlue, nswAboriginalBrown$4 as nswAboriginalBrown, nswAboriginalGreen$4 as nswAboriginalGreen, nswAboriginalGrey$4 as nswAboriginalGrey, nswAboriginalOrange$4 as nswAboriginalOrange, nswAboriginalPurple$4 as nswAboriginalPurple, nswAboriginalRed$4 as nswAboriginalRed, nswAboriginalYellow$4 as nswAboriginalYellow, nswBlue$4 as nswBlue, nswBrown$4 as nswBrown, nswFuchsia$4 as nswFuchsia, nswGreen$4 as nswGreen, nswGrey$4 as nswGrey, nswOrange$4 as nswOrange, nswPurple$4 as nswPurple, nswRed$4 as nswRed, nswTeal$4 as nswTeal, nswYellow$4 as nswYellow };
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
|
-
declare
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
export { light_4 as light };
|
|
1629
|
-
let DEFAULT_4: string;
|
|
1630
|
-
export { DEFAULT_4 as DEFAULT };
|
|
1631
|
-
let dark_4: string;
|
|
1632
|
-
export { dark_4 as dark };
|
|
1633
|
-
let darker_4: string;
|
|
1634
|
-
export { darker_4 as darker };
|
|
1635
|
-
let darkest_4: string;
|
|
1636
|
-
export { darkest_4 as darkest };
|
|
1637
|
-
}
|
|
1638
|
-
declare namespace warning$7 {
|
|
1639
|
-
let lightest_5: string;
|
|
1640
|
-
export { lightest_5 as lightest };
|
|
1641
|
-
let lighter_5: string;
|
|
1642
|
-
export { lighter_5 as lighter };
|
|
1643
|
-
let light_5: string;
|
|
1644
|
-
export { light_5 as light };
|
|
1645
|
-
let DEFAULT_5: string;
|
|
1646
|
-
export { DEFAULT_5 as DEFAULT };
|
|
1647
|
-
let dark_5: string;
|
|
1648
|
-
export { dark_5 as dark };
|
|
1649
|
-
let darker_5: string;
|
|
1650
|
-
export { darker_5 as darker };
|
|
1651
|
-
let darkest_5: string;
|
|
1652
|
-
export { darkest_5 as darkest };
|
|
1653
|
-
}
|
|
1654
|
-
declare namespace error$7 {
|
|
1655
|
-
let lightest_6: string;
|
|
1656
|
-
export { lightest_6 as lightest };
|
|
1657
|
-
let lighter_6: string;
|
|
1658
|
-
export { lighter_6 as lighter };
|
|
1659
|
-
let light_6: string;
|
|
1660
|
-
export { light_6 as light };
|
|
1661
|
-
let DEFAULT_6: string;
|
|
1662
|
-
export { DEFAULT_6 as DEFAULT };
|
|
1663
|
-
let dark_6: string;
|
|
1664
|
-
export { dark_6 as dark };
|
|
1665
|
-
let darker_6: string;
|
|
1666
|
-
export { darker_6 as darker };
|
|
1667
|
-
let darkest_6: string;
|
|
1668
|
-
export { darkest_6 as darkest };
|
|
1669
|
-
}
|
|
1670
|
-
declare namespace info$7 {
|
|
1671
|
-
let lightest_7: string;
|
|
1672
|
-
export { lightest_7 as lightest };
|
|
1673
|
-
let lighter_7: string;
|
|
1674
|
-
export { lighter_7 as lighter };
|
|
1675
|
-
let light_7: string;
|
|
1676
|
-
export { light_7 as light };
|
|
1677
|
-
let DEFAULT_7: string;
|
|
1678
|
-
export { DEFAULT_7 as DEFAULT };
|
|
1679
|
-
let dark_7: string;
|
|
1680
|
-
export { dark_7 as dark };
|
|
1681
|
-
let darker_7: string;
|
|
1682
|
-
export { darker_7 as darker };
|
|
1683
|
-
let darkest_7: string;
|
|
1684
|
-
export { darkest_7 as darkest };
|
|
1685
|
-
}
|
|
1565
|
+
declare const primary$7: {
|
|
1566
|
+
50: string;
|
|
1567
|
+
100: string;
|
|
1568
|
+
150: string;
|
|
1569
|
+
200: string;
|
|
1570
|
+
250: string;
|
|
1571
|
+
300: string;
|
|
1572
|
+
350: string;
|
|
1573
|
+
400: string;
|
|
1574
|
+
450: string;
|
|
1575
|
+
500: string;
|
|
1576
|
+
550: string;
|
|
1577
|
+
600: string;
|
|
1578
|
+
650: string;
|
|
1579
|
+
700: string;
|
|
1580
|
+
750: string;
|
|
1581
|
+
800: string;
|
|
1582
|
+
850: string;
|
|
1583
|
+
900: string;
|
|
1584
|
+
950: string;
|
|
1585
|
+
};
|
|
1586
|
+
declare const accent$7: {
|
|
1587
|
+
50: string;
|
|
1588
|
+
100: string;
|
|
1589
|
+
150: string;
|
|
1590
|
+
200: string;
|
|
1591
|
+
250: string;
|
|
1592
|
+
300: string;
|
|
1593
|
+
350: string;
|
|
1594
|
+
400: string;
|
|
1595
|
+
450: string;
|
|
1596
|
+
500: string;
|
|
1597
|
+
550: string;
|
|
1598
|
+
600: string;
|
|
1599
|
+
650: string;
|
|
1600
|
+
700: string;
|
|
1601
|
+
750: string;
|
|
1602
|
+
800: string;
|
|
1603
|
+
850: string;
|
|
1604
|
+
900: string;
|
|
1605
|
+
950: string;
|
|
1606
|
+
};
|
|
1607
|
+
declare const grey$7: {
|
|
1608
|
+
50: string;
|
|
1609
|
+
100: string;
|
|
1610
|
+
150: string;
|
|
1611
|
+
200: string;
|
|
1612
|
+
250: string;
|
|
1613
|
+
300: string;
|
|
1614
|
+
350: string;
|
|
1615
|
+
400: string;
|
|
1616
|
+
450: string;
|
|
1617
|
+
500: string;
|
|
1618
|
+
550: string;
|
|
1619
|
+
600: string;
|
|
1620
|
+
650: string;
|
|
1621
|
+
700: string;
|
|
1622
|
+
750: string;
|
|
1623
|
+
800: string;
|
|
1624
|
+
850: string;
|
|
1625
|
+
900: string;
|
|
1626
|
+
950: string;
|
|
1627
|
+
};
|
|
1686
1628
|
|
|
1687
1629
|
declare namespace masterbrandJsHex {
|
|
1688
|
-
export { accent$7 as accent,
|
|
1630
|
+
export { accent$7 as accent, grey$7 as grey, primary$7 as primary };
|
|
1689
1631
|
}
|
|
1690
1632
|
|
|
1691
|
-
declare
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
export { light_4 as light };
|
|
1755
|
-
let DEFAULT_4: string;
|
|
1756
|
-
export { DEFAULT_4 as DEFAULT };
|
|
1757
|
-
let dark_4: string;
|
|
1758
|
-
export { dark_4 as dark };
|
|
1759
|
-
let darker_4: string;
|
|
1760
|
-
export { darker_4 as darker };
|
|
1761
|
-
let darkest_4: string;
|
|
1762
|
-
export { darkest_4 as darkest };
|
|
1763
|
-
}
|
|
1764
|
-
declare namespace warning$6 {
|
|
1765
|
-
let lightest_5: string;
|
|
1766
|
-
export { lightest_5 as lightest };
|
|
1767
|
-
let lighter_5: string;
|
|
1768
|
-
export { lighter_5 as lighter };
|
|
1769
|
-
let light_5: string;
|
|
1770
|
-
export { light_5 as light };
|
|
1771
|
-
let DEFAULT_5: string;
|
|
1772
|
-
export { DEFAULT_5 as DEFAULT };
|
|
1773
|
-
let dark_5: string;
|
|
1774
|
-
export { dark_5 as dark };
|
|
1775
|
-
let darker_5: string;
|
|
1776
|
-
export { darker_5 as darker };
|
|
1777
|
-
let darkest_5: string;
|
|
1778
|
-
export { darkest_5 as darkest };
|
|
1779
|
-
}
|
|
1780
|
-
declare namespace error$6 {
|
|
1781
|
-
let lightest_6: string;
|
|
1782
|
-
export { lightest_6 as lightest };
|
|
1783
|
-
let lighter_6: string;
|
|
1784
|
-
export { lighter_6 as lighter };
|
|
1785
|
-
let light_6: string;
|
|
1786
|
-
export { light_6 as light };
|
|
1787
|
-
let DEFAULT_6: string;
|
|
1788
|
-
export { DEFAULT_6 as DEFAULT };
|
|
1789
|
-
let dark_6: string;
|
|
1790
|
-
export { dark_6 as dark };
|
|
1791
|
-
let darker_6: string;
|
|
1792
|
-
export { darker_6 as darker };
|
|
1793
|
-
let darkest_6: string;
|
|
1794
|
-
export { darkest_6 as darkest };
|
|
1795
|
-
}
|
|
1796
|
-
declare namespace info$6 {
|
|
1797
|
-
let lightest_7: string;
|
|
1798
|
-
export { lightest_7 as lightest };
|
|
1799
|
-
let lighter_7: string;
|
|
1800
|
-
export { lighter_7 as lighter };
|
|
1801
|
-
let light_7: string;
|
|
1802
|
-
export { light_7 as light };
|
|
1803
|
-
let DEFAULT_7: string;
|
|
1804
|
-
export { DEFAULT_7 as DEFAULT };
|
|
1805
|
-
let dark_7: string;
|
|
1806
|
-
export { dark_7 as dark };
|
|
1807
|
-
let darker_7: string;
|
|
1808
|
-
export { darker_7 as darker };
|
|
1809
|
-
let darkest_7: string;
|
|
1810
|
-
export { darkest_7 as darkest };
|
|
1811
|
-
}
|
|
1633
|
+
declare const primary$6: {
|
|
1634
|
+
50: string;
|
|
1635
|
+
100: string;
|
|
1636
|
+
150: string;
|
|
1637
|
+
200: string;
|
|
1638
|
+
250: string;
|
|
1639
|
+
300: string;
|
|
1640
|
+
350: string;
|
|
1641
|
+
400: string;
|
|
1642
|
+
450: string;
|
|
1643
|
+
500: string;
|
|
1644
|
+
550: string;
|
|
1645
|
+
600: string;
|
|
1646
|
+
650: string;
|
|
1647
|
+
700: string;
|
|
1648
|
+
750: string;
|
|
1649
|
+
800: string;
|
|
1650
|
+
850: string;
|
|
1651
|
+
900: string;
|
|
1652
|
+
950: string;
|
|
1653
|
+
};
|
|
1654
|
+
declare const accent$6: {
|
|
1655
|
+
50: string;
|
|
1656
|
+
100: string;
|
|
1657
|
+
150: string;
|
|
1658
|
+
200: string;
|
|
1659
|
+
250: string;
|
|
1660
|
+
300: string;
|
|
1661
|
+
350: string;
|
|
1662
|
+
400: string;
|
|
1663
|
+
450: string;
|
|
1664
|
+
500: string;
|
|
1665
|
+
550: string;
|
|
1666
|
+
600: string;
|
|
1667
|
+
650: string;
|
|
1668
|
+
700: string;
|
|
1669
|
+
750: string;
|
|
1670
|
+
800: string;
|
|
1671
|
+
850: string;
|
|
1672
|
+
900: string;
|
|
1673
|
+
950: string;
|
|
1674
|
+
};
|
|
1675
|
+
declare const grey$6: {
|
|
1676
|
+
50: string;
|
|
1677
|
+
100: string;
|
|
1678
|
+
150: string;
|
|
1679
|
+
200: string;
|
|
1680
|
+
250: string;
|
|
1681
|
+
300: string;
|
|
1682
|
+
350: string;
|
|
1683
|
+
400: string;
|
|
1684
|
+
450: string;
|
|
1685
|
+
500: string;
|
|
1686
|
+
550: string;
|
|
1687
|
+
600: string;
|
|
1688
|
+
650: string;
|
|
1689
|
+
700: string;
|
|
1690
|
+
750: string;
|
|
1691
|
+
800: string;
|
|
1692
|
+
850: string;
|
|
1693
|
+
900: string;
|
|
1694
|
+
950: string;
|
|
1695
|
+
};
|
|
1812
1696
|
|
|
1813
1697
|
declare namespace masterbrandJsHsl {
|
|
1814
|
-
export { accent$6 as accent,
|
|
1698
|
+
export { accent$6 as accent, grey$6 as grey, primary$6 as primary };
|
|
1815
1699
|
}
|
|
1816
1700
|
|
|
1817
|
-
declare
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
export { light_4 as light };
|
|
1881
|
-
let DEFAULT_4: string;
|
|
1882
|
-
export { DEFAULT_4 as DEFAULT };
|
|
1883
|
-
let dark_4: string;
|
|
1884
|
-
export { dark_4 as dark };
|
|
1885
|
-
let darker_4: string;
|
|
1886
|
-
export { darker_4 as darker };
|
|
1887
|
-
let darkest_4: string;
|
|
1888
|
-
export { darkest_4 as darkest };
|
|
1889
|
-
}
|
|
1890
|
-
declare namespace warning$5 {
|
|
1891
|
-
let lightest_5: string;
|
|
1892
|
-
export { lightest_5 as lightest };
|
|
1893
|
-
let lighter_5: string;
|
|
1894
|
-
export { lighter_5 as lighter };
|
|
1895
|
-
let light_5: string;
|
|
1896
|
-
export { light_5 as light };
|
|
1897
|
-
let DEFAULT_5: string;
|
|
1898
|
-
export { DEFAULT_5 as DEFAULT };
|
|
1899
|
-
let dark_5: string;
|
|
1900
|
-
export { dark_5 as dark };
|
|
1901
|
-
let darker_5: string;
|
|
1902
|
-
export { darker_5 as darker };
|
|
1903
|
-
let darkest_5: string;
|
|
1904
|
-
export { darkest_5 as darkest };
|
|
1905
|
-
}
|
|
1906
|
-
declare namespace error$5 {
|
|
1907
|
-
let lightest_6: string;
|
|
1908
|
-
export { lightest_6 as lightest };
|
|
1909
|
-
let lighter_6: string;
|
|
1910
|
-
export { lighter_6 as lighter };
|
|
1911
|
-
let light_6: string;
|
|
1912
|
-
export { light_6 as light };
|
|
1913
|
-
let DEFAULT_6: string;
|
|
1914
|
-
export { DEFAULT_6 as DEFAULT };
|
|
1915
|
-
let dark_6: string;
|
|
1916
|
-
export { dark_6 as dark };
|
|
1917
|
-
let darker_6: string;
|
|
1918
|
-
export { darker_6 as darker };
|
|
1919
|
-
let darkest_6: string;
|
|
1920
|
-
export { darkest_6 as darkest };
|
|
1921
|
-
}
|
|
1922
|
-
declare namespace info$5 {
|
|
1923
|
-
let lightest_7: string;
|
|
1924
|
-
export { lightest_7 as lightest };
|
|
1925
|
-
let lighter_7: string;
|
|
1926
|
-
export { lighter_7 as lighter };
|
|
1927
|
-
let light_7: string;
|
|
1928
|
-
export { light_7 as light };
|
|
1929
|
-
let DEFAULT_7: string;
|
|
1930
|
-
export { DEFAULT_7 as DEFAULT };
|
|
1931
|
-
let dark_7: string;
|
|
1932
|
-
export { dark_7 as dark };
|
|
1933
|
-
let darker_7: string;
|
|
1934
|
-
export { darker_7 as darker };
|
|
1935
|
-
let darkest_7: string;
|
|
1936
|
-
export { darkest_7 as darkest };
|
|
1937
|
-
}
|
|
1701
|
+
declare const primary$5: {
|
|
1702
|
+
50: string;
|
|
1703
|
+
100: string;
|
|
1704
|
+
150: string;
|
|
1705
|
+
200: string;
|
|
1706
|
+
250: string;
|
|
1707
|
+
300: string;
|
|
1708
|
+
350: string;
|
|
1709
|
+
400: string;
|
|
1710
|
+
450: string;
|
|
1711
|
+
500: string;
|
|
1712
|
+
550: string;
|
|
1713
|
+
600: string;
|
|
1714
|
+
650: string;
|
|
1715
|
+
700: string;
|
|
1716
|
+
750: string;
|
|
1717
|
+
800: string;
|
|
1718
|
+
850: string;
|
|
1719
|
+
900: string;
|
|
1720
|
+
950: string;
|
|
1721
|
+
};
|
|
1722
|
+
declare const accent$5: {
|
|
1723
|
+
50: string;
|
|
1724
|
+
100: string;
|
|
1725
|
+
150: string;
|
|
1726
|
+
200: string;
|
|
1727
|
+
250: string;
|
|
1728
|
+
300: string;
|
|
1729
|
+
350: string;
|
|
1730
|
+
400: string;
|
|
1731
|
+
450: string;
|
|
1732
|
+
500: string;
|
|
1733
|
+
550: string;
|
|
1734
|
+
600: string;
|
|
1735
|
+
650: string;
|
|
1736
|
+
700: string;
|
|
1737
|
+
750: string;
|
|
1738
|
+
800: string;
|
|
1739
|
+
850: string;
|
|
1740
|
+
900: string;
|
|
1741
|
+
950: string;
|
|
1742
|
+
};
|
|
1743
|
+
declare const grey$5: {
|
|
1744
|
+
50: string;
|
|
1745
|
+
100: string;
|
|
1746
|
+
150: string;
|
|
1747
|
+
200: string;
|
|
1748
|
+
250: string;
|
|
1749
|
+
300: string;
|
|
1750
|
+
350: string;
|
|
1751
|
+
400: string;
|
|
1752
|
+
450: string;
|
|
1753
|
+
500: string;
|
|
1754
|
+
550: string;
|
|
1755
|
+
600: string;
|
|
1756
|
+
650: string;
|
|
1757
|
+
700: string;
|
|
1758
|
+
750: string;
|
|
1759
|
+
800: string;
|
|
1760
|
+
850: string;
|
|
1761
|
+
900: string;
|
|
1762
|
+
950: string;
|
|
1763
|
+
};
|
|
1938
1764
|
|
|
1939
1765
|
declare namespace masterbrandJsOklch {
|
|
1940
|
-
export { accent$5 as accent,
|
|
1766
|
+
export { accent$5 as accent, grey$5 as grey, primary$5 as primary };
|
|
1941
1767
|
}
|
|
1942
1768
|
|
|
1943
|
-
declare
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
export { light_4 as light };
|
|
2007
|
-
let DEFAULT_4: string;
|
|
2008
|
-
export { DEFAULT_4 as DEFAULT };
|
|
2009
|
-
let dark_4: string;
|
|
2010
|
-
export { dark_4 as dark };
|
|
2011
|
-
let darker_4: string;
|
|
2012
|
-
export { darker_4 as darker };
|
|
2013
|
-
let darkest_4: string;
|
|
2014
|
-
export { darkest_4 as darkest };
|
|
2015
|
-
}
|
|
2016
|
-
declare namespace warning$4 {
|
|
2017
|
-
let lightest_5: string;
|
|
2018
|
-
export { lightest_5 as lightest };
|
|
2019
|
-
let lighter_5: string;
|
|
2020
|
-
export { lighter_5 as lighter };
|
|
2021
|
-
let light_5: string;
|
|
2022
|
-
export { light_5 as light };
|
|
2023
|
-
let DEFAULT_5: string;
|
|
2024
|
-
export { DEFAULT_5 as DEFAULT };
|
|
2025
|
-
let dark_5: string;
|
|
2026
|
-
export { dark_5 as dark };
|
|
2027
|
-
let darker_5: string;
|
|
2028
|
-
export { darker_5 as darker };
|
|
2029
|
-
let darkest_5: string;
|
|
2030
|
-
export { darkest_5 as darkest };
|
|
2031
|
-
}
|
|
2032
|
-
declare namespace error$4 {
|
|
2033
|
-
let lightest_6: string;
|
|
2034
|
-
export { lightest_6 as lightest };
|
|
2035
|
-
let lighter_6: string;
|
|
2036
|
-
export { lighter_6 as lighter };
|
|
2037
|
-
let light_6: string;
|
|
2038
|
-
export { light_6 as light };
|
|
2039
|
-
let DEFAULT_6: string;
|
|
2040
|
-
export { DEFAULT_6 as DEFAULT };
|
|
2041
|
-
let dark_6: string;
|
|
2042
|
-
export { dark_6 as dark };
|
|
2043
|
-
let darker_6: string;
|
|
2044
|
-
export { darker_6 as darker };
|
|
2045
|
-
let darkest_6: string;
|
|
2046
|
-
export { darkest_6 as darkest };
|
|
2047
|
-
}
|
|
2048
|
-
declare namespace info$4 {
|
|
2049
|
-
let lightest_7: string;
|
|
2050
|
-
export { lightest_7 as lightest };
|
|
2051
|
-
let lighter_7: string;
|
|
2052
|
-
export { lighter_7 as lighter };
|
|
2053
|
-
let light_7: string;
|
|
2054
|
-
export { light_7 as light };
|
|
2055
|
-
let DEFAULT_7: string;
|
|
2056
|
-
export { DEFAULT_7 as DEFAULT };
|
|
2057
|
-
let dark_7: string;
|
|
2058
|
-
export { dark_7 as dark };
|
|
2059
|
-
let darker_7: string;
|
|
2060
|
-
export { darker_7 as darker };
|
|
2061
|
-
let darkest_7: string;
|
|
2062
|
-
export { darkest_7 as darkest };
|
|
2063
|
-
}
|
|
1769
|
+
declare const primary$4: {
|
|
1770
|
+
50: string;
|
|
1771
|
+
100: string;
|
|
1772
|
+
150: string;
|
|
1773
|
+
200: string;
|
|
1774
|
+
250: string;
|
|
1775
|
+
300: string;
|
|
1776
|
+
350: string;
|
|
1777
|
+
400: string;
|
|
1778
|
+
450: string;
|
|
1779
|
+
500: string;
|
|
1780
|
+
550: string;
|
|
1781
|
+
600: string;
|
|
1782
|
+
650: string;
|
|
1783
|
+
700: string;
|
|
1784
|
+
750: string;
|
|
1785
|
+
800: string;
|
|
1786
|
+
850: string;
|
|
1787
|
+
900: string;
|
|
1788
|
+
950: string;
|
|
1789
|
+
};
|
|
1790
|
+
declare const accent$4: {
|
|
1791
|
+
50: string;
|
|
1792
|
+
100: string;
|
|
1793
|
+
150: string;
|
|
1794
|
+
200: string;
|
|
1795
|
+
250: string;
|
|
1796
|
+
300: string;
|
|
1797
|
+
350: string;
|
|
1798
|
+
400: string;
|
|
1799
|
+
450: string;
|
|
1800
|
+
500: string;
|
|
1801
|
+
550: string;
|
|
1802
|
+
600: string;
|
|
1803
|
+
650: string;
|
|
1804
|
+
700: string;
|
|
1805
|
+
750: string;
|
|
1806
|
+
800: string;
|
|
1807
|
+
850: string;
|
|
1808
|
+
900: string;
|
|
1809
|
+
950: string;
|
|
1810
|
+
};
|
|
1811
|
+
declare const grey$4: {
|
|
1812
|
+
50: string;
|
|
1813
|
+
100: string;
|
|
1814
|
+
150: string;
|
|
1815
|
+
200: string;
|
|
1816
|
+
250: string;
|
|
1817
|
+
300: string;
|
|
1818
|
+
350: string;
|
|
1819
|
+
400: string;
|
|
1820
|
+
450: string;
|
|
1821
|
+
500: string;
|
|
1822
|
+
550: string;
|
|
1823
|
+
600: string;
|
|
1824
|
+
650: string;
|
|
1825
|
+
700: string;
|
|
1826
|
+
750: string;
|
|
1827
|
+
800: string;
|
|
1828
|
+
850: string;
|
|
1829
|
+
900: string;
|
|
1830
|
+
950: string;
|
|
1831
|
+
};
|
|
2064
1832
|
|
|
2065
1833
|
declare namespace masterbrandJsRgb {
|
|
2066
|
-
export { accent$4 as accent,
|
|
1834
|
+
export { accent$4 as accent, grey$4 as grey, primary$4 as primary };
|
|
2067
1835
|
}
|
|
2068
1836
|
|
|
2069
1837
|
declare namespace globalLessHex {
|
|
@@ -3713,319 +3481,278 @@ declare namespace globalTsRgb {
|
|
|
3713
3481
|
}
|
|
3714
3482
|
|
|
3715
3483
|
declare const primary$3: {
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
lighter: string;
|
|
3736
|
-
light: string;
|
|
3737
|
-
DEFAULT: string;
|
|
3738
|
-
dark: string;
|
|
3739
|
-
darker: string;
|
|
3740
|
-
darkest: string;
|
|
3484
|
+
'50': string;
|
|
3485
|
+
'100': string;
|
|
3486
|
+
'150': string;
|
|
3487
|
+
'200': string;
|
|
3488
|
+
'250': string;
|
|
3489
|
+
'300': string;
|
|
3490
|
+
'350': string;
|
|
3491
|
+
'400': string;
|
|
3492
|
+
'450': string;
|
|
3493
|
+
'500': string;
|
|
3494
|
+
'550': string;
|
|
3495
|
+
'600': string;
|
|
3496
|
+
'650': string;
|
|
3497
|
+
'700': string;
|
|
3498
|
+
'750': string;
|
|
3499
|
+
'800': string;
|
|
3500
|
+
'850': string;
|
|
3501
|
+
'900': string;
|
|
3502
|
+
'950': string;
|
|
3741
3503
|
};
|
|
3742
3504
|
declare const accent$3: {
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
dark: string;
|
|
3784
|
-
darker: string;
|
|
3785
|
-
darkest: string;
|
|
3505
|
+
'50': string;
|
|
3506
|
+
'100': string;
|
|
3507
|
+
'150': string;
|
|
3508
|
+
'200': string;
|
|
3509
|
+
'250': string;
|
|
3510
|
+
'300': string;
|
|
3511
|
+
'350': string;
|
|
3512
|
+
'400': string;
|
|
3513
|
+
'450': string;
|
|
3514
|
+
'500': string;
|
|
3515
|
+
'550': string;
|
|
3516
|
+
'600': string;
|
|
3517
|
+
'650': string;
|
|
3518
|
+
'700': string;
|
|
3519
|
+
'750': string;
|
|
3520
|
+
'800': string;
|
|
3521
|
+
'850': string;
|
|
3522
|
+
'900': string;
|
|
3523
|
+
'950': string;
|
|
3524
|
+
};
|
|
3525
|
+
declare const grey$3: {
|
|
3526
|
+
'50': string;
|
|
3527
|
+
'100': string;
|
|
3528
|
+
'150': string;
|
|
3529
|
+
'200': string;
|
|
3530
|
+
'250': string;
|
|
3531
|
+
'300': string;
|
|
3532
|
+
'350': string;
|
|
3533
|
+
'400': string;
|
|
3534
|
+
'450': string;
|
|
3535
|
+
'500': string;
|
|
3536
|
+
'550': string;
|
|
3537
|
+
'600': string;
|
|
3538
|
+
'650': string;
|
|
3539
|
+
'700': string;
|
|
3540
|
+
'750': string;
|
|
3541
|
+
'800': string;
|
|
3542
|
+
'850': string;
|
|
3543
|
+
'900': string;
|
|
3544
|
+
'950': string;
|
|
3786
3545
|
};
|
|
3787
3546
|
|
|
3788
3547
|
declare namespace masterbrandTsHex {
|
|
3789
|
-
export { accent$3 as accent,
|
|
3548
|
+
export { accent$3 as accent, grey$3 as grey, primary$3 as primary };
|
|
3790
3549
|
}
|
|
3791
3550
|
|
|
3792
3551
|
declare const primary$2: {
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
lighter: string;
|
|
3813
|
-
light: string;
|
|
3814
|
-
DEFAULT: string;
|
|
3815
|
-
dark: string;
|
|
3816
|
-
darker: string;
|
|
3817
|
-
darkest: string;
|
|
3552
|
+
'50': string;
|
|
3553
|
+
'100': string;
|
|
3554
|
+
'150': string;
|
|
3555
|
+
'200': string;
|
|
3556
|
+
'250': string;
|
|
3557
|
+
'300': string;
|
|
3558
|
+
'350': string;
|
|
3559
|
+
'400': string;
|
|
3560
|
+
'450': string;
|
|
3561
|
+
'500': string;
|
|
3562
|
+
'550': string;
|
|
3563
|
+
'600': string;
|
|
3564
|
+
'650': string;
|
|
3565
|
+
'700': string;
|
|
3566
|
+
'750': string;
|
|
3567
|
+
'800': string;
|
|
3568
|
+
'850': string;
|
|
3569
|
+
'900': string;
|
|
3570
|
+
'950': string;
|
|
3818
3571
|
};
|
|
3819
3572
|
declare const accent$2: {
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
dark: string;
|
|
3861
|
-
darker: string;
|
|
3862
|
-
darkest: string;
|
|
3573
|
+
'50': string;
|
|
3574
|
+
'100': string;
|
|
3575
|
+
'150': string;
|
|
3576
|
+
'200': string;
|
|
3577
|
+
'250': string;
|
|
3578
|
+
'300': string;
|
|
3579
|
+
'350': string;
|
|
3580
|
+
'400': string;
|
|
3581
|
+
'450': string;
|
|
3582
|
+
'500': string;
|
|
3583
|
+
'550': string;
|
|
3584
|
+
'600': string;
|
|
3585
|
+
'650': string;
|
|
3586
|
+
'700': string;
|
|
3587
|
+
'750': string;
|
|
3588
|
+
'800': string;
|
|
3589
|
+
'850': string;
|
|
3590
|
+
'900': string;
|
|
3591
|
+
'950': string;
|
|
3592
|
+
};
|
|
3593
|
+
declare const grey$2: {
|
|
3594
|
+
'50': string;
|
|
3595
|
+
'100': string;
|
|
3596
|
+
'150': string;
|
|
3597
|
+
'200': string;
|
|
3598
|
+
'250': string;
|
|
3599
|
+
'300': string;
|
|
3600
|
+
'350': string;
|
|
3601
|
+
'400': string;
|
|
3602
|
+
'450': string;
|
|
3603
|
+
'500': string;
|
|
3604
|
+
'550': string;
|
|
3605
|
+
'600': string;
|
|
3606
|
+
'650': string;
|
|
3607
|
+
'700': string;
|
|
3608
|
+
'750': string;
|
|
3609
|
+
'800': string;
|
|
3610
|
+
'850': string;
|
|
3611
|
+
'900': string;
|
|
3612
|
+
'950': string;
|
|
3863
3613
|
};
|
|
3864
3614
|
|
|
3865
3615
|
declare namespace masterbrandTsHsl {
|
|
3866
|
-
export { accent$2 as accent,
|
|
3616
|
+
export { accent$2 as accent, grey$2 as grey, primary$2 as primary };
|
|
3867
3617
|
}
|
|
3868
3618
|
|
|
3869
3619
|
declare const primary$1: {
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
lighter: string;
|
|
3890
|
-
light: string;
|
|
3891
|
-
DEFAULT: string;
|
|
3892
|
-
dark: string;
|
|
3893
|
-
darker: string;
|
|
3894
|
-
darkest: string;
|
|
3620
|
+
'50': string;
|
|
3621
|
+
'100': string;
|
|
3622
|
+
'150': string;
|
|
3623
|
+
'200': string;
|
|
3624
|
+
'250': string;
|
|
3625
|
+
'300': string;
|
|
3626
|
+
'350': string;
|
|
3627
|
+
'400': string;
|
|
3628
|
+
'450': string;
|
|
3629
|
+
'500': string;
|
|
3630
|
+
'550': string;
|
|
3631
|
+
'600': string;
|
|
3632
|
+
'650': string;
|
|
3633
|
+
'700': string;
|
|
3634
|
+
'750': string;
|
|
3635
|
+
'800': string;
|
|
3636
|
+
'850': string;
|
|
3637
|
+
'900': string;
|
|
3638
|
+
'950': string;
|
|
3895
3639
|
};
|
|
3896
3640
|
declare const accent$1: {
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
dark: string;
|
|
3938
|
-
darker: string;
|
|
3939
|
-
darkest: string;
|
|
3641
|
+
'50': string;
|
|
3642
|
+
'100': string;
|
|
3643
|
+
'150': string;
|
|
3644
|
+
'200': string;
|
|
3645
|
+
'250': string;
|
|
3646
|
+
'300': string;
|
|
3647
|
+
'350': string;
|
|
3648
|
+
'400': string;
|
|
3649
|
+
'450': string;
|
|
3650
|
+
'500': string;
|
|
3651
|
+
'550': string;
|
|
3652
|
+
'600': string;
|
|
3653
|
+
'650': string;
|
|
3654
|
+
'700': string;
|
|
3655
|
+
'750': string;
|
|
3656
|
+
'800': string;
|
|
3657
|
+
'850': string;
|
|
3658
|
+
'900': string;
|
|
3659
|
+
'950': string;
|
|
3660
|
+
};
|
|
3661
|
+
declare const grey$1: {
|
|
3662
|
+
'50': string;
|
|
3663
|
+
'100': string;
|
|
3664
|
+
'150': string;
|
|
3665
|
+
'200': string;
|
|
3666
|
+
'250': string;
|
|
3667
|
+
'300': string;
|
|
3668
|
+
'350': string;
|
|
3669
|
+
'400': string;
|
|
3670
|
+
'450': string;
|
|
3671
|
+
'500': string;
|
|
3672
|
+
'550': string;
|
|
3673
|
+
'600': string;
|
|
3674
|
+
'650': string;
|
|
3675
|
+
'700': string;
|
|
3676
|
+
'750': string;
|
|
3677
|
+
'800': string;
|
|
3678
|
+
'850': string;
|
|
3679
|
+
'900': string;
|
|
3680
|
+
'950': string;
|
|
3940
3681
|
};
|
|
3941
3682
|
|
|
3942
3683
|
declare namespace masterbrandTsOklch {
|
|
3943
|
-
export { accent$1 as accent,
|
|
3684
|
+
export { accent$1 as accent, grey$1 as grey, primary$1 as primary };
|
|
3944
3685
|
}
|
|
3945
3686
|
|
|
3946
3687
|
declare const primary: {
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
lighter: string;
|
|
3967
|
-
light: string;
|
|
3968
|
-
DEFAULT: string;
|
|
3969
|
-
dark: string;
|
|
3970
|
-
darker: string;
|
|
3971
|
-
darkest: string;
|
|
3688
|
+
'50': string;
|
|
3689
|
+
'100': string;
|
|
3690
|
+
'150': string;
|
|
3691
|
+
'200': string;
|
|
3692
|
+
'250': string;
|
|
3693
|
+
'300': string;
|
|
3694
|
+
'350': string;
|
|
3695
|
+
'400': string;
|
|
3696
|
+
'450': string;
|
|
3697
|
+
'500': string;
|
|
3698
|
+
'550': string;
|
|
3699
|
+
'600': string;
|
|
3700
|
+
'650': string;
|
|
3701
|
+
'700': string;
|
|
3702
|
+
'750': string;
|
|
3703
|
+
'800': string;
|
|
3704
|
+
'850': string;
|
|
3705
|
+
'900': string;
|
|
3706
|
+
'950': string;
|
|
3972
3707
|
};
|
|
3973
3708
|
declare const accent: {
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
dark: string;
|
|
4015
|
-
darker: string;
|
|
4016
|
-
darkest: string;
|
|
3709
|
+
'50': string;
|
|
3710
|
+
'100': string;
|
|
3711
|
+
'150': string;
|
|
3712
|
+
'200': string;
|
|
3713
|
+
'250': string;
|
|
3714
|
+
'300': string;
|
|
3715
|
+
'350': string;
|
|
3716
|
+
'400': string;
|
|
3717
|
+
'450': string;
|
|
3718
|
+
'500': string;
|
|
3719
|
+
'550': string;
|
|
3720
|
+
'600': string;
|
|
3721
|
+
'650': string;
|
|
3722
|
+
'700': string;
|
|
3723
|
+
'750': string;
|
|
3724
|
+
'800': string;
|
|
3725
|
+
'850': string;
|
|
3726
|
+
'900': string;
|
|
3727
|
+
'950': string;
|
|
3728
|
+
};
|
|
3729
|
+
declare const grey: {
|
|
3730
|
+
'50': string;
|
|
3731
|
+
'100': string;
|
|
3732
|
+
'150': string;
|
|
3733
|
+
'200': string;
|
|
3734
|
+
'250': string;
|
|
3735
|
+
'300': string;
|
|
3736
|
+
'350': string;
|
|
3737
|
+
'400': string;
|
|
3738
|
+
'450': string;
|
|
3739
|
+
'500': string;
|
|
3740
|
+
'550': string;
|
|
3741
|
+
'600': string;
|
|
3742
|
+
'650': string;
|
|
3743
|
+
'700': string;
|
|
3744
|
+
'750': string;
|
|
3745
|
+
'800': string;
|
|
3746
|
+
'850': string;
|
|
3747
|
+
'900': string;
|
|
3748
|
+
'950': string;
|
|
4017
3749
|
};
|
|
4018
3750
|
|
|
4019
3751
|
declare const masterbrandTsRgb_accent: typeof accent;
|
|
4020
|
-
declare const
|
|
4021
|
-
declare const masterbrandTsRgb_info: typeof info;
|
|
3752
|
+
declare const masterbrandTsRgb_grey: typeof grey;
|
|
4022
3753
|
declare const masterbrandTsRgb_primary: typeof primary;
|
|
4023
|
-
declare const masterbrandTsRgb_secondary: typeof secondary;
|
|
4024
|
-
declare const masterbrandTsRgb_success: typeof success;
|
|
4025
|
-
declare const masterbrandTsRgb_tertiary: typeof tertiary;
|
|
4026
|
-
declare const masterbrandTsRgb_warning: typeof warning;
|
|
4027
3754
|
declare namespace masterbrandTsRgb {
|
|
4028
|
-
export { masterbrandTsRgb_accent as accent,
|
|
3755
|
+
export { masterbrandTsRgb_accent as accent, masterbrandTsRgb_grey as grey, masterbrandTsRgb_primary as primary };
|
|
4029
3756
|
}
|
|
4030
3757
|
|
|
4031
3758
|
declare const tokens: {
|
|
@@ -4288,6 +4015,7 @@ declare const tsTokens: {
|
|
|
4288
4015
|
};
|
|
4289
4016
|
declare const icons: {
|
|
4290
4017
|
accountCircle: string;
|
|
4018
|
+
add: string;
|
|
4291
4019
|
attachFile: string;
|
|
4292
4020
|
cancel: string;
|
|
4293
4021
|
check: string;
|