@rovula/ui 0.0.31 → 0.0.32
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 +920 -20
- package/dist/cjs/types/stories/ColorPreview.d.ts +9 -5
- package/dist/cjs/types/utils/colors.d.ts +1 -0
- package/dist/components/Text/Text.stories.js +5 -1
- package/dist/esm/bundle.css +920 -20
- package/dist/esm/types/stories/ColorPreview.d.ts +9 -5
- package/dist/esm/types/utils/colors.d.ts +1 -0
- package/dist/src/theme/global.css +1343 -217
- package/dist/stories/ColorGroupPreview.js +282 -472
- package/dist/stories/ColorPreview.js +76 -6
- package/dist/theme/main-preset.js +8 -0
- package/dist/theme/plugins/utilities/typography.js +3 -0
- package/dist/theme/presets/colors.js +0 -3
- package/dist/utils/colors.js +31 -0
- package/package.json +1 -1
- package/src/components/Text/Text.stories.tsx +5 -1
- package/src/stories/ColorGroupPreview.tsx +394 -486
- package/src/stories/ColorPreview.tsx +122 -33
- package/src/theme/main-preset.js +8 -0
- package/src/theme/plugins/utilities/typography.js +3 -0
- package/src/theme/presets/colors.js +0 -3
- package/src/utils/colors.ts +33 -0
package/dist/esm/bundle.css
CHANGED
|
@@ -685,6 +685,9 @@ body {
|
|
|
685
685
|
.mt-2{
|
|
686
686
|
margin-top: 0.5rem;
|
|
687
687
|
}
|
|
688
|
+
.mt-3{
|
|
689
|
+
margin-top: 0.75rem;
|
|
690
|
+
}
|
|
688
691
|
.mt-4{
|
|
689
692
|
margin-top: 1rem;
|
|
690
693
|
}
|
|
@@ -790,12 +793,6 @@ body {
|
|
|
790
793
|
.h-60{
|
|
791
794
|
height: 15rem;
|
|
792
795
|
}
|
|
793
|
-
.h-\[120px\]{
|
|
794
|
-
height: 120px;
|
|
795
|
-
}
|
|
796
|
-
.h-\[160px\]{
|
|
797
|
-
height: 160px;
|
|
798
|
-
}
|
|
799
796
|
.h-\[1px\]{
|
|
800
797
|
height: 1px;
|
|
801
798
|
}
|
|
@@ -893,6 +890,10 @@ body {
|
|
|
893
890
|
.w-auto{
|
|
894
891
|
width: auto;
|
|
895
892
|
}
|
|
893
|
+
.w-fit{
|
|
894
|
+
width: -moz-fit-content;
|
|
895
|
+
width: fit-content;
|
|
896
|
+
}
|
|
896
897
|
.w-full{
|
|
897
898
|
width: 100%;
|
|
898
899
|
}
|
|
@@ -902,6 +903,10 @@ body {
|
|
|
902
903
|
.min-w-\[154px\]{
|
|
903
904
|
min-width: 154px;
|
|
904
905
|
}
|
|
906
|
+
.min-w-fit{
|
|
907
|
+
min-width: -moz-fit-content;
|
|
908
|
+
min-width: fit-content;
|
|
909
|
+
}
|
|
905
910
|
.max-w-lg{
|
|
906
911
|
max-width: 32rem;
|
|
907
912
|
}
|
|
@@ -967,9 +972,33 @@ body {
|
|
|
967
972
|
.grid-cols-1{
|
|
968
973
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
969
974
|
}
|
|
975
|
+
.grid-cols-10{
|
|
976
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
977
|
+
}
|
|
978
|
+
.grid-cols-2{
|
|
979
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
980
|
+
}
|
|
981
|
+
.grid-cols-3{
|
|
982
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
983
|
+
}
|
|
970
984
|
.grid-cols-4{
|
|
971
985
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
972
986
|
}
|
|
987
|
+
.grid-cols-5{
|
|
988
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
989
|
+
}
|
|
990
|
+
.grid-cols-6{
|
|
991
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
992
|
+
}
|
|
993
|
+
.grid-cols-7{
|
|
994
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
995
|
+
}
|
|
996
|
+
.grid-cols-8{
|
|
997
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
998
|
+
}
|
|
999
|
+
.grid-cols-9{
|
|
1000
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
1001
|
+
}
|
|
973
1002
|
.flex-row{
|
|
974
1003
|
flex-direction: row;
|
|
975
1004
|
}
|
|
@@ -1012,12 +1041,12 @@ body {
|
|
|
1012
1041
|
.gap-1\.5{
|
|
1013
1042
|
gap: 0.375rem;
|
|
1014
1043
|
}
|
|
1044
|
+
.gap-10{
|
|
1045
|
+
gap: 2.5rem;
|
|
1046
|
+
}
|
|
1015
1047
|
.gap-2{
|
|
1016
1048
|
gap: 0.5rem;
|
|
1017
1049
|
}
|
|
1018
|
-
.gap-20{
|
|
1019
|
-
gap: 5rem;
|
|
1020
|
-
}
|
|
1021
1050
|
.gap-3{
|
|
1022
1051
|
gap: 0.75rem;
|
|
1023
1052
|
}
|
|
@@ -1401,6 +1430,10 @@ body {
|
|
|
1401
1430
|
--tw-bg-opacity: 1;
|
|
1402
1431
|
background-color: color-mix(in srgb, var(--base-color-bg2) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1403
1432
|
}
|
|
1433
|
+
.bg-base-bg3{
|
|
1434
|
+
--tw-bg-opacity: 1;
|
|
1435
|
+
background-color: color-mix(in srgb, var(--base-color-bg3) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1436
|
+
}
|
|
1404
1437
|
.bg-base-popup{
|
|
1405
1438
|
--tw-bg-opacity: 1;
|
|
1406
1439
|
background-color: color-mix(in srgb, var(--base-color-popup) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1417,6 +1450,30 @@ body {
|
|
|
1417
1450
|
--tw-bg-opacity: 1;
|
|
1418
1451
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1419
1452
|
}
|
|
1453
|
+
.bg-black-transparent-12{
|
|
1454
|
+
--tw-bg-opacity: 1;
|
|
1455
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1456
|
+
}
|
|
1457
|
+
.bg-black-transparent-16{
|
|
1458
|
+
--tw-bg-opacity: 1;
|
|
1459
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1460
|
+
}
|
|
1461
|
+
.bg-black-transparent-24{
|
|
1462
|
+
--tw-bg-opacity: 1;
|
|
1463
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1464
|
+
}
|
|
1465
|
+
.bg-black-transparent-32{
|
|
1466
|
+
--tw-bg-opacity: 1;
|
|
1467
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1468
|
+
}
|
|
1469
|
+
.bg-black-transparent-48{
|
|
1470
|
+
--tw-bg-opacity: 1;
|
|
1471
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1472
|
+
}
|
|
1473
|
+
.bg-black-transparent-8{
|
|
1474
|
+
--tw-bg-opacity: 1;
|
|
1475
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1476
|
+
}
|
|
1420
1477
|
.bg-button-error-flat-default{
|
|
1421
1478
|
--tw-bg-opacity: 1;
|
|
1422
1479
|
background-color: color-mix(in srgb, var(--button-error-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1505,38 +1562,406 @@ body {
|
|
|
1505
1562
|
--tw-bg-opacity: 1;
|
|
1506
1563
|
background-color: color-mix(in srgb, var(--common-black) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1507
1564
|
}
|
|
1565
|
+
.bg-common-white{
|
|
1566
|
+
--tw-bg-opacity: 1;
|
|
1567
|
+
background-color: color-mix(in srgb, var(--common-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1568
|
+
}
|
|
1569
|
+
.bg-error{
|
|
1570
|
+
--tw-bg-opacity: 1;
|
|
1571
|
+
background-color: color-mix(in srgb, var(--state-color-error-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1572
|
+
}
|
|
1573
|
+
.bg-error-100{
|
|
1574
|
+
--tw-bg-opacity: 1;
|
|
1575
|
+
background-color: color-mix(in srgb, var(--error-error-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1576
|
+
}
|
|
1577
|
+
.bg-error-200{
|
|
1578
|
+
--tw-bg-opacity: 1;
|
|
1579
|
+
background-color: color-mix(in srgb, var(--error-error-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1580
|
+
}
|
|
1581
|
+
.bg-error-300{
|
|
1582
|
+
--tw-bg-opacity: 1;
|
|
1583
|
+
background-color: color-mix(in srgb, var(--error-error-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1584
|
+
}
|
|
1585
|
+
.bg-error-400{
|
|
1586
|
+
--tw-bg-opacity: 1;
|
|
1587
|
+
background-color: color-mix(in srgb, var(--error-error-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1588
|
+
}
|
|
1589
|
+
.bg-error-50{
|
|
1590
|
+
--tw-bg-opacity: 1;
|
|
1591
|
+
background-color: color-mix(in srgb, var(--error-error-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1592
|
+
}
|
|
1593
|
+
.bg-error-500{
|
|
1594
|
+
--tw-bg-opacity: 1;
|
|
1595
|
+
background-color: color-mix(in srgb, var(--error-error-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1596
|
+
}
|
|
1597
|
+
.bg-error-600{
|
|
1598
|
+
--tw-bg-opacity: 1;
|
|
1599
|
+
background-color: color-mix(in srgb, var(--error-error-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1600
|
+
}
|
|
1601
|
+
.bg-error-700{
|
|
1602
|
+
--tw-bg-opacity: 1;
|
|
1603
|
+
background-color: color-mix(in srgb, var(--error-error-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1604
|
+
}
|
|
1605
|
+
.bg-error-800{
|
|
1606
|
+
--tw-bg-opacity: 1;
|
|
1607
|
+
background-color: color-mix(in srgb, var(--error-error-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1608
|
+
}
|
|
1609
|
+
.bg-error-900{
|
|
1610
|
+
--tw-bg-opacity: 1;
|
|
1611
|
+
background-color: color-mix(in srgb, var(--error-error-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1612
|
+
}
|
|
1613
|
+
.bg-error-foreground{
|
|
1614
|
+
--tw-bg-opacity: 1;
|
|
1615
|
+
background-color: color-mix(in srgb, var(--error-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1616
|
+
}
|
|
1617
|
+
.bg-error-transparent-12{
|
|
1618
|
+
--tw-bg-opacity: 1;
|
|
1619
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1620
|
+
}
|
|
1621
|
+
.bg-error-transparent-16{
|
|
1622
|
+
--tw-bg-opacity: 1;
|
|
1623
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1624
|
+
}
|
|
1625
|
+
.bg-error-transparent-24{
|
|
1626
|
+
--tw-bg-opacity: 1;
|
|
1627
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1628
|
+
}
|
|
1629
|
+
.bg-error-transparent-32{
|
|
1630
|
+
--tw-bg-opacity: 1;
|
|
1631
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1632
|
+
}
|
|
1633
|
+
.bg-error-transparent-48{
|
|
1634
|
+
--tw-bg-opacity: 1;
|
|
1635
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1636
|
+
}
|
|
1508
1637
|
.bg-error-transparent-8{
|
|
1509
1638
|
--tw-bg-opacity: 1;
|
|
1510
1639
|
background-color: color-mix(in srgb, var(--other-transparency-error-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1511
1640
|
}
|
|
1641
|
+
.bg-foreground{
|
|
1642
|
+
--tw-bg-opacity: 1;
|
|
1643
|
+
background-color: color-mix(in srgb, var(--foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1644
|
+
}
|
|
1512
1645
|
.bg-function-active-hover{
|
|
1513
1646
|
--tw-bg-opacity: 1;
|
|
1514
1647
|
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1515
1648
|
}
|
|
1649
|
+
.bg-function-active-hover-bg{
|
|
1650
|
+
--tw-bg-opacity: 1;
|
|
1651
|
+
background-color: color-mix(in srgb, var(--function-active-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1652
|
+
}
|
|
1653
|
+
.bg-function-active-icon{
|
|
1654
|
+
--tw-bg-opacity: 1;
|
|
1655
|
+
background-color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1656
|
+
}
|
|
1657
|
+
.bg-function-active-solid{
|
|
1658
|
+
--tw-bg-opacity: 1;
|
|
1659
|
+
background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1660
|
+
}
|
|
1661
|
+
.bg-function-active-stroke{
|
|
1662
|
+
--tw-bg-opacity: 1;
|
|
1663
|
+
background-color: color-mix(in srgb, var(--function-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1664
|
+
}
|
|
1665
|
+
.bg-function-default-hover{
|
|
1666
|
+
--tw-bg-opacity: 1;
|
|
1667
|
+
background-color: color-mix(in srgb, var(--function-default-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1668
|
+
}
|
|
1669
|
+
.bg-function-default-hover-bg{
|
|
1670
|
+
--tw-bg-opacity: 1;
|
|
1671
|
+
background-color: color-mix(in srgb, var(--function-default-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1672
|
+
}
|
|
1673
|
+
.bg-function-default-icon{
|
|
1674
|
+
--tw-bg-opacity: 1;
|
|
1675
|
+
background-color: color-mix(in srgb, var(--function-default-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1676
|
+
}
|
|
1677
|
+
.bg-function-default-outline{
|
|
1678
|
+
--tw-bg-opacity: 1;
|
|
1679
|
+
background-color: color-mix(in srgb, var(--function-default-outline-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1680
|
+
}
|
|
1681
|
+
.bg-function-default-solid{
|
|
1682
|
+
--tw-bg-opacity: 1;
|
|
1683
|
+
background-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1684
|
+
}
|
|
1685
|
+
.bg-function-default-stroke{
|
|
1686
|
+
--tw-bg-opacity: 1;
|
|
1687
|
+
background-color: color-mix(in srgb, var(--function-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1688
|
+
}
|
|
1516
1689
|
.bg-gray-200{
|
|
1517
1690
|
--tw-bg-opacity: 1;
|
|
1518
1691
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1519
1692
|
}
|
|
1693
|
+
.bg-grey{
|
|
1694
|
+
--tw-bg-opacity: 1;
|
|
1695
|
+
background-color: color-mix(in srgb, var(--state-color-grey-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1696
|
+
}
|
|
1697
|
+
.bg-grey-10{
|
|
1698
|
+
--tw-bg-opacity: 1;
|
|
1699
|
+
background-color: color-mix(in srgb, var(--grey-grey-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1700
|
+
}
|
|
1701
|
+
.bg-grey-100{
|
|
1702
|
+
--tw-bg-opacity: 1;
|
|
1703
|
+
background-color: color-mix(in srgb, var(--grey-grey-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1704
|
+
}
|
|
1705
|
+
.bg-grey-110{
|
|
1706
|
+
--tw-bg-opacity: 1;
|
|
1707
|
+
background-color: color-mix(in srgb, var(--grey-grey-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1708
|
+
}
|
|
1709
|
+
.bg-grey-120{
|
|
1710
|
+
--tw-bg-opacity: 1;
|
|
1711
|
+
background-color: color-mix(in srgb, var(--grey-grey-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1712
|
+
}
|
|
1713
|
+
.bg-grey-130{
|
|
1714
|
+
--tw-bg-opacity: 1;
|
|
1715
|
+
background-color: color-mix(in srgb, var(--grey-grey-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1716
|
+
}
|
|
1717
|
+
.bg-grey-140{
|
|
1718
|
+
--tw-bg-opacity: 1;
|
|
1719
|
+
background-color: color-mix(in srgb, var(--grey-grey-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1720
|
+
}
|
|
1721
|
+
.bg-grey-150{
|
|
1722
|
+
--tw-bg-opacity: 1;
|
|
1723
|
+
background-color: color-mix(in srgb, var(--grey-grey-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1724
|
+
}
|
|
1725
|
+
.bg-grey-20{
|
|
1726
|
+
--tw-bg-opacity: 1;
|
|
1727
|
+
background-color: color-mix(in srgb, var(--grey-grey-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1728
|
+
}
|
|
1729
|
+
.bg-grey-30{
|
|
1730
|
+
--tw-bg-opacity: 1;
|
|
1731
|
+
background-color: color-mix(in srgb, var(--grey-grey-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1732
|
+
}
|
|
1733
|
+
.bg-grey-40{
|
|
1734
|
+
--tw-bg-opacity: 1;
|
|
1735
|
+
background-color: color-mix(in srgb, var(--grey-grey-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1736
|
+
}
|
|
1737
|
+
.bg-grey-5{
|
|
1738
|
+
--tw-bg-opacity: 1;
|
|
1739
|
+
background-color: color-mix(in srgb, var(--grey-grey-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1740
|
+
}
|
|
1520
1741
|
.bg-grey-50{
|
|
1521
1742
|
--tw-bg-opacity: 1;
|
|
1522
1743
|
background-color: color-mix(in srgb, var(--grey-grey-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1523
1744
|
}
|
|
1745
|
+
.bg-grey-60{
|
|
1746
|
+
--tw-bg-opacity: 1;
|
|
1747
|
+
background-color: color-mix(in srgb, var(--grey-grey-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1748
|
+
}
|
|
1749
|
+
.bg-grey-70{
|
|
1750
|
+
--tw-bg-opacity: 1;
|
|
1751
|
+
background-color: color-mix(in srgb, var(--grey-grey-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1752
|
+
}
|
|
1753
|
+
.bg-grey-80{
|
|
1754
|
+
--tw-bg-opacity: 1;
|
|
1755
|
+
background-color: color-mix(in srgb, var(--grey-grey-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1756
|
+
}
|
|
1757
|
+
.bg-grey-90{
|
|
1758
|
+
--tw-bg-opacity: 1;
|
|
1759
|
+
background-color: color-mix(in srgb, var(--grey-grey-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1760
|
+
}
|
|
1761
|
+
.bg-grey-foreground{
|
|
1762
|
+
--tw-bg-opacity: 1;
|
|
1763
|
+
background-color: color-mix(in srgb, var(--grey-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1764
|
+
}
|
|
1765
|
+
.bg-grey-transparent-12{
|
|
1766
|
+
--tw-bg-opacity: 1;
|
|
1767
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1768
|
+
}
|
|
1769
|
+
.bg-grey-transparent-16{
|
|
1770
|
+
--tw-bg-opacity: 1;
|
|
1771
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1772
|
+
}
|
|
1773
|
+
.bg-grey-transparent-24{
|
|
1774
|
+
--tw-bg-opacity: 1;
|
|
1775
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1776
|
+
}
|
|
1777
|
+
.bg-grey-transparent-32{
|
|
1778
|
+
--tw-bg-opacity: 1;
|
|
1779
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1780
|
+
}
|
|
1781
|
+
.bg-grey-transparent-48{
|
|
1782
|
+
--tw-bg-opacity: 1;
|
|
1783
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1784
|
+
}
|
|
1785
|
+
.bg-grey-transparent-8{
|
|
1786
|
+
--tw-bg-opacity: 1;
|
|
1787
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1788
|
+
}
|
|
1789
|
+
.bg-grey2{
|
|
1790
|
+
--tw-bg-opacity: 1;
|
|
1791
|
+
background-color: color-mix(in srgb, var(--state-color-grey2-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1792
|
+
}
|
|
1793
|
+
.bg-grey2-100{
|
|
1794
|
+
--tw-bg-opacity: 1;
|
|
1795
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1796
|
+
}
|
|
1797
|
+
.bg-grey2-200{
|
|
1798
|
+
--tw-bg-opacity: 1;
|
|
1799
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1800
|
+
}
|
|
1801
|
+
.bg-grey2-300{
|
|
1802
|
+
--tw-bg-opacity: 1;
|
|
1803
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1804
|
+
}
|
|
1805
|
+
.bg-grey2-400{
|
|
1806
|
+
--tw-bg-opacity: 1;
|
|
1807
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1808
|
+
}
|
|
1809
|
+
.bg-grey2-50{
|
|
1810
|
+
--tw-bg-opacity: 1;
|
|
1811
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1812
|
+
}
|
|
1813
|
+
.bg-grey2-500{
|
|
1814
|
+
--tw-bg-opacity: 1;
|
|
1815
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1816
|
+
}
|
|
1817
|
+
.bg-grey2-600{
|
|
1818
|
+
--tw-bg-opacity: 1;
|
|
1819
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1820
|
+
}
|
|
1524
1821
|
.bg-grey2-700{
|
|
1525
1822
|
--tw-bg-opacity: 1;
|
|
1526
1823
|
background-color: color-mix(in srgb, var(--grey2-grey2-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1527
1824
|
}
|
|
1825
|
+
.bg-grey2-800{
|
|
1826
|
+
--tw-bg-opacity: 1;
|
|
1827
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1828
|
+
}
|
|
1829
|
+
.bg-grey2-900{
|
|
1830
|
+
--tw-bg-opacity: 1;
|
|
1831
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1832
|
+
}
|
|
1833
|
+
.bg-grey2-foreground{
|
|
1834
|
+
--tw-bg-opacity: 1;
|
|
1835
|
+
background-color: color-mix(in srgb, var(--grey2-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1836
|
+
}
|
|
1837
|
+
.bg-grey2-transparent-12{
|
|
1838
|
+
--tw-bg-opacity: 1;
|
|
1839
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1840
|
+
}
|
|
1528
1841
|
.bg-grey2-transparent-16{
|
|
1529
1842
|
--tw-bg-opacity: 1;
|
|
1530
1843
|
background-color: color-mix(in srgb, var(--other-transparency-grey2-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1531
1844
|
}
|
|
1845
|
+
.bg-grey2-transparent-24{
|
|
1846
|
+
--tw-bg-opacity: 1;
|
|
1847
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1848
|
+
}
|
|
1849
|
+
.bg-grey2-transparent-32{
|
|
1850
|
+
--tw-bg-opacity: 1;
|
|
1851
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1852
|
+
}
|
|
1853
|
+
.bg-grey2-transparent-48{
|
|
1854
|
+
--tw-bg-opacity: 1;
|
|
1855
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1856
|
+
}
|
|
1857
|
+
.bg-grey2-transparent-8{
|
|
1858
|
+
--tw-bg-opacity: 1;
|
|
1859
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1860
|
+
}
|
|
1861
|
+
.bg-info{
|
|
1862
|
+
--tw-bg-opacity: 1;
|
|
1863
|
+
background-color: color-mix(in srgb, var(--state-color-info-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1864
|
+
}
|
|
1865
|
+
.bg-info-100{
|
|
1866
|
+
--tw-bg-opacity: 1;
|
|
1867
|
+
background-color: color-mix(in srgb, var(--info-info-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1868
|
+
}
|
|
1869
|
+
.bg-info-200{
|
|
1870
|
+
--tw-bg-opacity: 1;
|
|
1871
|
+
background-color: color-mix(in srgb, var(--info-info-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1872
|
+
}
|
|
1873
|
+
.bg-info-300{
|
|
1874
|
+
--tw-bg-opacity: 1;
|
|
1875
|
+
background-color: color-mix(in srgb, var(--info-info-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1876
|
+
}
|
|
1877
|
+
.bg-info-400{
|
|
1878
|
+
--tw-bg-opacity: 1;
|
|
1879
|
+
background-color: color-mix(in srgb, var(--info-info-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1880
|
+
}
|
|
1881
|
+
.bg-info-50{
|
|
1882
|
+
--tw-bg-opacity: 1;
|
|
1883
|
+
background-color: color-mix(in srgb, var(--info-info-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1884
|
+
}
|
|
1885
|
+
.bg-info-500{
|
|
1886
|
+
--tw-bg-opacity: 1;
|
|
1887
|
+
background-color: color-mix(in srgb, var(--info-info-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1888
|
+
}
|
|
1889
|
+
.bg-info-600{
|
|
1890
|
+
--tw-bg-opacity: 1;
|
|
1891
|
+
background-color: color-mix(in srgb, var(--info-info-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1892
|
+
}
|
|
1893
|
+
.bg-info-700{
|
|
1894
|
+
--tw-bg-opacity: 1;
|
|
1895
|
+
background-color: color-mix(in srgb, var(--info-info-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1896
|
+
}
|
|
1897
|
+
.bg-info-800{
|
|
1898
|
+
--tw-bg-opacity: 1;
|
|
1899
|
+
background-color: color-mix(in srgb, var(--info-info-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1900
|
+
}
|
|
1901
|
+
.bg-info-900{
|
|
1902
|
+
--tw-bg-opacity: 1;
|
|
1903
|
+
background-color: color-mix(in srgb, var(--info-info-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1904
|
+
}
|
|
1905
|
+
.bg-info-foreground{
|
|
1906
|
+
--tw-bg-opacity: 1;
|
|
1907
|
+
background-color: color-mix(in srgb, var(--info-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1908
|
+
}
|
|
1909
|
+
.bg-info-transparent-12{
|
|
1910
|
+
--tw-bg-opacity: 1;
|
|
1911
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1912
|
+
}
|
|
1913
|
+
.bg-info-transparent-16{
|
|
1914
|
+
--tw-bg-opacity: 1;
|
|
1915
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1916
|
+
}
|
|
1917
|
+
.bg-info-transparent-24{
|
|
1918
|
+
--tw-bg-opacity: 1;
|
|
1919
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1920
|
+
}
|
|
1921
|
+
.bg-info-transparent-32{
|
|
1922
|
+
--tw-bg-opacity: 1;
|
|
1923
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1924
|
+
}
|
|
1925
|
+
.bg-info-transparent-48{
|
|
1926
|
+
--tw-bg-opacity: 1;
|
|
1927
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1928
|
+
}
|
|
1532
1929
|
.bg-info-transparent-8{
|
|
1533
1930
|
--tw-bg-opacity: 1;
|
|
1534
1931
|
background-color: color-mix(in srgb, var(--other-transparency-info-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1535
1932
|
}
|
|
1933
|
+
.bg-input-active-stroke{
|
|
1934
|
+
--tw-bg-opacity: 1;
|
|
1935
|
+
background-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1936
|
+
}
|
|
1937
|
+
.bg-input-default-stroke{
|
|
1938
|
+
--tw-bg-opacity: 1;
|
|
1939
|
+
background-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1940
|
+
}
|
|
1941
|
+
.bg-input-default-text{
|
|
1942
|
+
--tw-bg-opacity: 1;
|
|
1943
|
+
background-color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1944
|
+
}
|
|
1536
1945
|
.bg-input-disable-bg{
|
|
1537
1946
|
--tw-bg-opacity: 1;
|
|
1538
1947
|
background-color: color-mix(in srgb, var(--input-color-disable-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1539
1948
|
}
|
|
1949
|
+
.bg-input-disable-stroke{
|
|
1950
|
+
--tw-bg-opacity: 1;
|
|
1951
|
+
background-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1952
|
+
}
|
|
1953
|
+
.bg-input-disable-text{
|
|
1954
|
+
--tw-bg-opacity: 1;
|
|
1955
|
+
background-color: color-mix(in srgb, var(--input-color-disable-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1956
|
+
}
|
|
1957
|
+
.bg-input-error{
|
|
1958
|
+
--tw-bg-opacity: 1;
|
|
1959
|
+
background-color: color-mix(in srgb, var(--input-color-error) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1960
|
+
}
|
|
1961
|
+
.bg-input-filled-text{
|
|
1962
|
+
--tw-bg-opacity: 1;
|
|
1963
|
+
background-color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1964
|
+
}
|
|
1540
1965
|
.bg-input-label-bg{
|
|
1541
1966
|
--tw-bg-opacity: 1;
|
|
1542
1967
|
background-color: color-mix(in srgb, var(--input-color-label-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1545,14 +1970,186 @@ body {
|
|
|
1545
1970
|
--tw-bg-opacity: 1;
|
|
1546
1971
|
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1547
1972
|
}
|
|
1973
|
+
.bg-primary-10{
|
|
1974
|
+
--tw-bg-opacity: 1;
|
|
1975
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1976
|
+
}
|
|
1977
|
+
.bg-primary-100{
|
|
1978
|
+
--tw-bg-opacity: 1;
|
|
1979
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1980
|
+
}
|
|
1981
|
+
.bg-primary-110{
|
|
1982
|
+
--tw-bg-opacity: 1;
|
|
1983
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1984
|
+
}
|
|
1985
|
+
.bg-primary-120{
|
|
1986
|
+
--tw-bg-opacity: 1;
|
|
1987
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1988
|
+
}
|
|
1989
|
+
.bg-primary-130{
|
|
1990
|
+
--tw-bg-opacity: 1;
|
|
1991
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1992
|
+
}
|
|
1993
|
+
.bg-primary-140{
|
|
1994
|
+
--tw-bg-opacity: 1;
|
|
1995
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1996
|
+
}
|
|
1997
|
+
.bg-primary-150{
|
|
1998
|
+
--tw-bg-opacity: 1;
|
|
1999
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2000
|
+
}
|
|
2001
|
+
.bg-primary-20{
|
|
2002
|
+
--tw-bg-opacity: 1;
|
|
2003
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2004
|
+
}
|
|
2005
|
+
.bg-primary-30{
|
|
2006
|
+
--tw-bg-opacity: 1;
|
|
2007
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2008
|
+
}
|
|
2009
|
+
.bg-primary-40{
|
|
2010
|
+
--tw-bg-opacity: 1;
|
|
2011
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2012
|
+
}
|
|
2013
|
+
.bg-primary-5{
|
|
2014
|
+
--tw-bg-opacity: 1;
|
|
2015
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2016
|
+
}
|
|
2017
|
+
.bg-primary-50{
|
|
2018
|
+
--tw-bg-opacity: 1;
|
|
2019
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2020
|
+
}
|
|
2021
|
+
.bg-primary-60{
|
|
2022
|
+
--tw-bg-opacity: 1;
|
|
2023
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2024
|
+
}
|
|
2025
|
+
.bg-primary-70{
|
|
2026
|
+
--tw-bg-opacity: 1;
|
|
2027
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2028
|
+
}
|
|
2029
|
+
.bg-primary-80{
|
|
2030
|
+
--tw-bg-opacity: 1;
|
|
2031
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2032
|
+
}
|
|
2033
|
+
.bg-primary-90{
|
|
2034
|
+
--tw-bg-opacity: 1;
|
|
2035
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2036
|
+
}
|
|
2037
|
+
.bg-primary-default{
|
|
2038
|
+
--tw-bg-opacity: 1;
|
|
2039
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2040
|
+
}
|
|
2041
|
+
.bg-primary-foreground{
|
|
2042
|
+
--tw-bg-opacity: 1;
|
|
2043
|
+
background-color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2044
|
+
}
|
|
2045
|
+
.bg-primary-hover{
|
|
2046
|
+
--tw-bg-opacity: 1;
|
|
2047
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2048
|
+
}
|
|
2049
|
+
.bg-primary-hover-bg{
|
|
2050
|
+
--tw-bg-opacity: 1;
|
|
2051
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2052
|
+
}
|
|
2053
|
+
.bg-primary-pressed{
|
|
2054
|
+
--tw-bg-opacity: 1;
|
|
2055
|
+
background-color: color-mix(in srgb, var(--state-color-primary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2056
|
+
}
|
|
2057
|
+
.bg-primary-stroke{
|
|
2058
|
+
--tw-bg-opacity: 1;
|
|
2059
|
+
background-color: color-mix(in srgb, var(--state-color-primary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2060
|
+
}
|
|
2061
|
+
.bg-primary-transparent-12{
|
|
2062
|
+
--tw-bg-opacity: 1;
|
|
2063
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2064
|
+
}
|
|
2065
|
+
.bg-primary-transparent-16{
|
|
2066
|
+
--tw-bg-opacity: 1;
|
|
2067
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2068
|
+
}
|
|
2069
|
+
.bg-primary-transparent-24{
|
|
2070
|
+
--tw-bg-opacity: 1;
|
|
2071
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2072
|
+
}
|
|
2073
|
+
.bg-primary-transparent-32{
|
|
2074
|
+
--tw-bg-opacity: 1;
|
|
2075
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2076
|
+
}
|
|
2077
|
+
.bg-primary-transparent-48{
|
|
2078
|
+
--tw-bg-opacity: 1;
|
|
2079
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2080
|
+
}
|
|
1548
2081
|
.bg-primary-transparent-8{
|
|
1549
2082
|
--tw-bg-opacity: 1;
|
|
1550
2083
|
background-color: color-mix(in srgb, var(--main-transparency-primary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1551
2084
|
}
|
|
2085
|
+
.bg-secondary{
|
|
2086
|
+
--tw-bg-opacity: 1;
|
|
2087
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2088
|
+
}
|
|
2089
|
+
.bg-secondary-10{
|
|
2090
|
+
--tw-bg-opacity: 1;
|
|
2091
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2092
|
+
}
|
|
2093
|
+
.bg-secondary-100{
|
|
2094
|
+
--tw-bg-opacity: 1;
|
|
2095
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2096
|
+
}
|
|
2097
|
+
.bg-secondary-110{
|
|
2098
|
+
--tw-bg-opacity: 1;
|
|
2099
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2100
|
+
}
|
|
2101
|
+
.bg-secondary-120{
|
|
2102
|
+
--tw-bg-opacity: 1;
|
|
2103
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2104
|
+
}
|
|
2105
|
+
.bg-secondary-130{
|
|
2106
|
+
--tw-bg-opacity: 1;
|
|
2107
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2108
|
+
}
|
|
2109
|
+
.bg-secondary-140{
|
|
2110
|
+
--tw-bg-opacity: 1;
|
|
2111
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2112
|
+
}
|
|
2113
|
+
.bg-secondary-150{
|
|
2114
|
+
--tw-bg-opacity: 1;
|
|
2115
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2116
|
+
}
|
|
2117
|
+
.bg-secondary-20{
|
|
2118
|
+
--tw-bg-opacity: 1;
|
|
2119
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2120
|
+
}
|
|
2121
|
+
.bg-secondary-30{
|
|
2122
|
+
--tw-bg-opacity: 1;
|
|
2123
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2124
|
+
}
|
|
2125
|
+
.bg-secondary-40{
|
|
2126
|
+
--tw-bg-opacity: 1;
|
|
2127
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2128
|
+
}
|
|
2129
|
+
.bg-secondary-5{
|
|
2130
|
+
--tw-bg-opacity: 1;
|
|
2131
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2132
|
+
}
|
|
2133
|
+
.bg-secondary-50{
|
|
2134
|
+
--tw-bg-opacity: 1;
|
|
2135
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2136
|
+
}
|
|
2137
|
+
.bg-secondary-60{
|
|
2138
|
+
--tw-bg-opacity: 1;
|
|
2139
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2140
|
+
}
|
|
2141
|
+
.bg-secondary-70{
|
|
2142
|
+
--tw-bg-opacity: 1;
|
|
2143
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2144
|
+
}
|
|
1552
2145
|
.bg-secondary-80{
|
|
1553
2146
|
--tw-bg-opacity: 1;
|
|
1554
2147
|
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1555
2148
|
}
|
|
2149
|
+
.bg-secondary-90{
|
|
2150
|
+
--tw-bg-opacity: 1;
|
|
2151
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2152
|
+
}
|
|
1556
2153
|
.bg-secondary-active{
|
|
1557
2154
|
--tw-bg-opacity: 1;
|
|
1558
2155
|
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1561,10 +2158,78 @@ body {
|
|
|
1561
2158
|
--tw-bg-opacity: 1;
|
|
1562
2159
|
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1563
2160
|
}
|
|
2161
|
+
.bg-secondary-foreground{
|
|
2162
|
+
--tw-bg-opacity: 1;
|
|
2163
|
+
background-color: color-mix(in srgb, var(--secondary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2164
|
+
}
|
|
2165
|
+
.bg-secondary-hover{
|
|
2166
|
+
--tw-bg-opacity: 1;
|
|
2167
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2168
|
+
}
|
|
2169
|
+
.bg-secondary-hover-bg{
|
|
2170
|
+
--tw-bg-opacity: 1;
|
|
2171
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2172
|
+
}
|
|
2173
|
+
.bg-secondary-pressed{
|
|
2174
|
+
--tw-bg-opacity: 1;
|
|
2175
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2176
|
+
}
|
|
2177
|
+
.bg-secondary-stroke{
|
|
2178
|
+
--tw-bg-opacity: 1;
|
|
2179
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2180
|
+
}
|
|
2181
|
+
.bg-secondary-transparent-12{
|
|
2182
|
+
--tw-bg-opacity: 1;
|
|
2183
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2184
|
+
}
|
|
2185
|
+
.bg-secondary-transparent-16{
|
|
2186
|
+
--tw-bg-opacity: 1;
|
|
2187
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2188
|
+
}
|
|
2189
|
+
.bg-secondary-transparent-24{
|
|
2190
|
+
--tw-bg-opacity: 1;
|
|
2191
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2192
|
+
}
|
|
2193
|
+
.bg-secondary-transparent-32{
|
|
2194
|
+
--tw-bg-opacity: 1;
|
|
2195
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2196
|
+
}
|
|
2197
|
+
.bg-secondary-transparent-48{
|
|
2198
|
+
--tw-bg-opacity: 1;
|
|
2199
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2200
|
+
}
|
|
2201
|
+
.bg-secondary-transparent-8{
|
|
2202
|
+
--tw-bg-opacity: 1;
|
|
2203
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2204
|
+
}
|
|
2205
|
+
.bg-state-disable-outline{
|
|
2206
|
+
--tw-bg-opacity: 1;
|
|
2207
|
+
background-color: color-mix(in srgb, var(--state-color-disable-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2208
|
+
}
|
|
1564
2209
|
.bg-state-disable-solid{
|
|
1565
2210
|
--tw-bg-opacity: 1;
|
|
1566
2211
|
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1567
2212
|
}
|
|
2213
|
+
.bg-success-transparent-12{
|
|
2214
|
+
--tw-bg-opacity: 1;
|
|
2215
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2216
|
+
}
|
|
2217
|
+
.bg-success-transparent-16{
|
|
2218
|
+
--tw-bg-opacity: 1;
|
|
2219
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2220
|
+
}
|
|
2221
|
+
.bg-success-transparent-24{
|
|
2222
|
+
--tw-bg-opacity: 1;
|
|
2223
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2224
|
+
}
|
|
2225
|
+
.bg-success-transparent-32{
|
|
2226
|
+
--tw-bg-opacity: 1;
|
|
2227
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2228
|
+
}
|
|
2229
|
+
.bg-success-transparent-48{
|
|
2230
|
+
--tw-bg-opacity: 1;
|
|
2231
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2232
|
+
}
|
|
1568
2233
|
.bg-success-transparent-8{
|
|
1569
2234
|
--tw-bg-opacity: 1;
|
|
1570
2235
|
background-color: color-mix(in srgb, var(--other-transparency-success-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -1573,16 +2238,240 @@ body {
|
|
|
1573
2238
|
--tw-bg-opacity: 1;
|
|
1574
2239
|
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1575
2240
|
}
|
|
2241
|
+
.bg-tertiary-10{
|
|
2242
|
+
--tw-bg-opacity: 1;
|
|
2243
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2244
|
+
}
|
|
2245
|
+
.bg-tertiary-100{
|
|
2246
|
+
--tw-bg-opacity: 1;
|
|
2247
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2248
|
+
}
|
|
2249
|
+
.bg-tertiary-110{
|
|
2250
|
+
--tw-bg-opacity: 1;
|
|
2251
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2252
|
+
}
|
|
2253
|
+
.bg-tertiary-120{
|
|
2254
|
+
--tw-bg-opacity: 1;
|
|
2255
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2256
|
+
}
|
|
2257
|
+
.bg-tertiary-130{
|
|
2258
|
+
--tw-bg-opacity: 1;
|
|
2259
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2260
|
+
}
|
|
2261
|
+
.bg-tertiary-140{
|
|
2262
|
+
--tw-bg-opacity: 1;
|
|
2263
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2264
|
+
}
|
|
2265
|
+
.bg-tertiary-150{
|
|
2266
|
+
--tw-bg-opacity: 1;
|
|
2267
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2268
|
+
}
|
|
2269
|
+
.bg-tertiary-20{
|
|
2270
|
+
--tw-bg-opacity: 1;
|
|
2271
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2272
|
+
}
|
|
2273
|
+
.bg-tertiary-30{
|
|
2274
|
+
--tw-bg-opacity: 1;
|
|
2275
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2276
|
+
}
|
|
2277
|
+
.bg-tertiary-40{
|
|
2278
|
+
--tw-bg-opacity: 1;
|
|
2279
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2280
|
+
}
|
|
2281
|
+
.bg-tertiary-5{
|
|
2282
|
+
--tw-bg-opacity: 1;
|
|
2283
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2284
|
+
}
|
|
2285
|
+
.bg-tertiary-50{
|
|
2286
|
+
--tw-bg-opacity: 1;
|
|
2287
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2288
|
+
}
|
|
2289
|
+
.bg-tertiary-60{
|
|
2290
|
+
--tw-bg-opacity: 1;
|
|
2291
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2292
|
+
}
|
|
2293
|
+
.bg-tertiary-70{
|
|
2294
|
+
--tw-bg-opacity: 1;
|
|
2295
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2296
|
+
}
|
|
2297
|
+
.bg-tertiary-80{
|
|
2298
|
+
--tw-bg-opacity: 1;
|
|
2299
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2300
|
+
}
|
|
2301
|
+
.bg-tertiary-90{
|
|
2302
|
+
--tw-bg-opacity: 1;
|
|
2303
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2304
|
+
}
|
|
2305
|
+
.bg-tertiary-default{
|
|
2306
|
+
--tw-bg-opacity: 1;
|
|
2307
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2308
|
+
}
|
|
2309
|
+
.bg-tertiary-hover{
|
|
2310
|
+
--tw-bg-opacity: 1;
|
|
2311
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2312
|
+
}
|
|
2313
|
+
.bg-tertiary-hover-bg{
|
|
2314
|
+
--tw-bg-opacity: 1;
|
|
2315
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2316
|
+
}
|
|
2317
|
+
.bg-tertiary-pressed{
|
|
2318
|
+
--tw-bg-opacity: 1;
|
|
2319
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2320
|
+
}
|
|
2321
|
+
.bg-tertiary-stroke{
|
|
2322
|
+
--tw-bg-opacity: 1;
|
|
2323
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2324
|
+
}
|
|
2325
|
+
.bg-tertiary-transparent-12{
|
|
2326
|
+
--tw-bg-opacity: 1;
|
|
2327
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2328
|
+
}
|
|
2329
|
+
.bg-tertiary-transparent-16{
|
|
2330
|
+
--tw-bg-opacity: 1;
|
|
2331
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2332
|
+
}
|
|
2333
|
+
.bg-tertiary-transparent-24{
|
|
2334
|
+
--tw-bg-opacity: 1;
|
|
2335
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2336
|
+
}
|
|
2337
|
+
.bg-tertiary-transparent-32{
|
|
2338
|
+
--tw-bg-opacity: 1;
|
|
2339
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2340
|
+
}
|
|
2341
|
+
.bg-tertiary-transparent-48{
|
|
2342
|
+
--tw-bg-opacity: 1;
|
|
2343
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2344
|
+
}
|
|
2345
|
+
.bg-tertiary-transparent-8{
|
|
2346
|
+
--tw-bg-opacity: 1;
|
|
2347
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2348
|
+
}
|
|
2349
|
+
.bg-text-dark{
|
|
2350
|
+
--tw-bg-opacity: 1;
|
|
2351
|
+
background-color: color-mix(in srgb, var(--text-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2352
|
+
}
|
|
2353
|
+
.bg-text-grey-dark{
|
|
2354
|
+
--tw-bg-opacity: 1;
|
|
2355
|
+
background-color: color-mix(in srgb, var(--text-grey-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2356
|
+
}
|
|
2357
|
+
.bg-text-grey-light{
|
|
2358
|
+
--tw-bg-opacity: 1;
|
|
2359
|
+
background-color: color-mix(in srgb, var(--text-grey-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2360
|
+
}
|
|
2361
|
+
.bg-text-grey-medium{
|
|
2362
|
+
--tw-bg-opacity: 1;
|
|
2363
|
+
background-color: color-mix(in srgb, var(--text-grey-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2364
|
+
}
|
|
2365
|
+
.bg-text-light{
|
|
2366
|
+
--tw-bg-opacity: 1;
|
|
2367
|
+
background-color: color-mix(in srgb, var(--text-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2368
|
+
}
|
|
2369
|
+
.bg-text-medium{
|
|
2370
|
+
--tw-bg-opacity: 1;
|
|
2371
|
+
background-color: color-mix(in srgb, var(--text-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2372
|
+
}
|
|
2373
|
+
.bg-text-white{
|
|
2374
|
+
--tw-bg-opacity: 1;
|
|
2375
|
+
background-color: color-mix(in srgb, var(--text-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2376
|
+
}
|
|
1576
2377
|
.bg-transparent{
|
|
1577
2378
|
background-color: transparent;
|
|
1578
2379
|
}
|
|
2380
|
+
.bg-warning{
|
|
2381
|
+
--tw-bg-opacity: 1;
|
|
2382
|
+
background-color: color-mix(in srgb, var(--state-color-warning-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2383
|
+
}
|
|
2384
|
+
.bg-warning-100{
|
|
2385
|
+
--tw-bg-opacity: 1;
|
|
2386
|
+
background-color: color-mix(in srgb, var(--warning-warning-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2387
|
+
}
|
|
2388
|
+
.bg-warning-200{
|
|
2389
|
+
--tw-bg-opacity: 1;
|
|
2390
|
+
background-color: color-mix(in srgb, var(--warning-warning-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2391
|
+
}
|
|
2392
|
+
.bg-warning-300{
|
|
2393
|
+
--tw-bg-opacity: 1;
|
|
2394
|
+
background-color: color-mix(in srgb, var(--warning-warning-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2395
|
+
}
|
|
2396
|
+
.bg-warning-400{
|
|
2397
|
+
--tw-bg-opacity: 1;
|
|
2398
|
+
background-color: color-mix(in srgb, var(--warning-warning-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2399
|
+
}
|
|
2400
|
+
.bg-warning-50{
|
|
2401
|
+
--tw-bg-opacity: 1;
|
|
2402
|
+
background-color: color-mix(in srgb, var(--warning-warning-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2403
|
+
}
|
|
2404
|
+
.bg-warning-500{
|
|
2405
|
+
--tw-bg-opacity: 1;
|
|
2406
|
+
background-color: color-mix(in srgb, var(--warning-warning-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2407
|
+
}
|
|
2408
|
+
.bg-warning-600{
|
|
2409
|
+
--tw-bg-opacity: 1;
|
|
2410
|
+
background-color: color-mix(in srgb, var(--warning-warning-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2411
|
+
}
|
|
2412
|
+
.bg-warning-700{
|
|
2413
|
+
--tw-bg-opacity: 1;
|
|
2414
|
+
background-color: color-mix(in srgb, var(--warning-warning-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2415
|
+
}
|
|
2416
|
+
.bg-warning-800{
|
|
2417
|
+
--tw-bg-opacity: 1;
|
|
2418
|
+
background-color: color-mix(in srgb, var(--warning-warning-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2419
|
+
}
|
|
2420
|
+
.bg-warning-900{
|
|
2421
|
+
--tw-bg-opacity: 1;
|
|
2422
|
+
background-color: color-mix(in srgb, var(--warning-warning-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2423
|
+
}
|
|
2424
|
+
.bg-warning-foreground{
|
|
2425
|
+
--tw-bg-opacity: 1;
|
|
2426
|
+
background-color: color-mix(in srgb, var(--warning-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2427
|
+
}
|
|
2428
|
+
.bg-warning-transparent-12{
|
|
2429
|
+
--tw-bg-opacity: 1;
|
|
2430
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2431
|
+
}
|
|
2432
|
+
.bg-warning-transparent-16{
|
|
2433
|
+
--tw-bg-opacity: 1;
|
|
2434
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2435
|
+
}
|
|
2436
|
+
.bg-warning-transparent-24{
|
|
2437
|
+
--tw-bg-opacity: 1;
|
|
2438
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2439
|
+
}
|
|
2440
|
+
.bg-warning-transparent-32{
|
|
2441
|
+
--tw-bg-opacity: 1;
|
|
2442
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2443
|
+
}
|
|
2444
|
+
.bg-warning-transparent-48{
|
|
2445
|
+
--tw-bg-opacity: 1;
|
|
2446
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2447
|
+
}
|
|
1579
2448
|
.bg-warning-transparent-8{
|
|
1580
2449
|
--tw-bg-opacity: 1;
|
|
1581
2450
|
background-color: color-mix(in srgb, var(--other-transparency-warning-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1582
2451
|
}
|
|
1583
|
-
.bg-white{
|
|
2452
|
+
.bg-white-transparent-12{
|
|
2453
|
+
--tw-bg-opacity: 1;
|
|
2454
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2455
|
+
}
|
|
2456
|
+
.bg-white-transparent-16{
|
|
2457
|
+
--tw-bg-opacity: 1;
|
|
2458
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2459
|
+
}
|
|
2460
|
+
.bg-white-transparent-24{
|
|
1584
2461
|
--tw-bg-opacity: 1;
|
|
1585
|
-
background-color:
|
|
2462
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2463
|
+
}
|
|
2464
|
+
.bg-white-transparent-32{
|
|
2465
|
+
--tw-bg-opacity: 1;
|
|
2466
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2467
|
+
}
|
|
2468
|
+
.bg-white-transparent-48{
|
|
2469
|
+
--tw-bg-opacity: 1;
|
|
2470
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
2471
|
+
}
|
|
2472
|
+
.bg-white-transparent-8{
|
|
2473
|
+
--tw-bg-opacity: 1;
|
|
2474
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
1586
2475
|
}
|
|
1587
2476
|
.fill-action-button-icon-active{
|
|
1588
2477
|
fill: color-mix(in srgb, var(--action-button-icon-active-text) calc(100% * 1), transparent);
|
|
@@ -2015,6 +2904,11 @@ body {
|
|
|
2015
2904
|
line-height: var(--small8-line-height, 10px);
|
|
2016
2905
|
font-weight: var(--small8-weight, 700);
|
|
2017
2906
|
}
|
|
2907
|
+
.text-small9{
|
|
2908
|
+
font-size: var(--small9-size, 8px);
|
|
2909
|
+
line-height: var(--small9-line-height, 10px);
|
|
2910
|
+
font-weight: var(--small9-weight, 400);
|
|
2911
|
+
}
|
|
2018
2912
|
.text-subtitile1{
|
|
2019
2913
|
font-size: var(--subtitle1-size, 16px);
|
|
2020
2914
|
line-height: var(--subtitle1-line-height, 24px);
|
|
@@ -2059,12 +2953,12 @@ body {
|
|
|
2059
2953
|
.font-medium{
|
|
2060
2954
|
font-weight: 500;
|
|
2061
2955
|
}
|
|
2956
|
+
.uppercase{
|
|
2957
|
+
text-transform: uppercase;
|
|
2958
|
+
}
|
|
2062
2959
|
.capitalize{
|
|
2063
2960
|
text-transform: capitalize;
|
|
2064
2961
|
}
|
|
2065
|
-
.leading-3{
|
|
2066
|
-
line-height: .75rem;
|
|
2067
|
-
}
|
|
2068
2962
|
.leading-none{
|
|
2069
2963
|
line-height: 1;
|
|
2070
2964
|
}
|
|
@@ -2133,10 +3027,6 @@ body {
|
|
|
2133
3027
|
--tw-text-opacity: 1;
|
|
2134
3028
|
color: color-mix(in srgb, var(--base-color-popup-foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
2135
3029
|
}
|
|
2136
|
-
.text-black{
|
|
2137
|
-
--tw-text-opacity: 1;
|
|
2138
|
-
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
2139
|
-
}
|
|
2140
3030
|
.text-button-error-flat-default{
|
|
2141
3031
|
--tw-text-opacity: 1;
|
|
2142
3032
|
color: color-mix(in srgb, var(--button-error-flat-default-text) calc(100% * var(--tw-text-opacity)), transparent);
|
|
@@ -2248,9 +3138,9 @@ body {
|
|
|
2248
3138
|
--tw-text-opacity: 1;
|
|
2249
3139
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
2250
3140
|
}
|
|
2251
|
-
.text-gray-
|
|
3141
|
+
.text-gray-500{
|
|
2252
3142
|
--tw-text-opacity: 1;
|
|
2253
|
-
color: rgb(
|
|
3143
|
+
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
2254
3144
|
}
|
|
2255
3145
|
.text-info{
|
|
2256
3146
|
--tw-text-opacity: 1;
|
|
@@ -2342,6 +3232,11 @@ body {
|
|
|
2342
3232
|
.opacity-70{
|
|
2343
3233
|
opacity: 0.7;
|
|
2344
3234
|
}
|
|
3235
|
+
.shadow{
|
|
3236
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
3237
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
3238
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3239
|
+
}
|
|
2345
3240
|
.shadow-\[0px_2px_24px_0px_rgba\(145\2c _158\2c _171\2c _0\.24\)\]{
|
|
2346
3241
|
--tw-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
2347
3242
|
--tw-shadow-colored: 0px 2px 24px 0px var(--tw-shadow-color);
|
|
@@ -2573,6 +3468,11 @@ body {
|
|
|
2573
3468
|
line-height: var(--small8-line-height, 10px);
|
|
2574
3469
|
font-weight: var(--small8-weight, 700);
|
|
2575
3470
|
}
|
|
3471
|
+
.typography-small9{
|
|
3472
|
+
font-size: var(--small9-size, 8px);
|
|
3473
|
+
line-height: var(--small9-line-height, 10px);
|
|
3474
|
+
font-weight: var(--small9-weight, 400);
|
|
3475
|
+
}
|
|
2576
3476
|
.typography-label1{
|
|
2577
3477
|
font-size: var(--label-label1-size, 12px);
|
|
2578
3478
|
line-height: var(--label-label1-line-height, 12px);
|