@turtleclub/earn-widget 0.3.0-beta.23 → 0.3.0-beta.25
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/styles.css +233 -215
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
--tracking-tight: -0.025em;
|
|
50
50
|
--tracking-widest: 0.1em;
|
|
51
51
|
--radius-xs: 0.125rem;
|
|
52
|
+
--radius-sm: 0.25rem;
|
|
52
53
|
--radius-md: 0.375rem;
|
|
53
54
|
--radius-lg: 0.5rem;
|
|
54
55
|
--radius-xl: 0.75rem;
|
|
@@ -768,6 +769,7 @@
|
|
|
768
769
|
--tracking-tight: -.025em;
|
|
769
770
|
--tracking-widest: .1em;
|
|
770
771
|
--radius-xs: .125rem;
|
|
772
|
+
--radius-sm: calc(var(--radius) - 4px);
|
|
771
773
|
--radius-md: calc(var(--radius) - 2px);
|
|
772
774
|
--radius-lg: var(--radius);
|
|
773
775
|
--radius-xl: calc(var(--radius) + 4px);
|
|
@@ -782,10 +784,26 @@
|
|
|
782
784
|
--default-mono-font-family: var(--font-mono);
|
|
783
785
|
--radius-turtle: var(--radius-turtle);
|
|
784
786
|
--radius-info-card: var(--radius-info-card);
|
|
787
|
+
--color-background: var(--background);
|
|
788
|
+
--color-foreground: var(--foreground);
|
|
789
|
+
--color-card: var(--card);
|
|
790
|
+
--color-popover: var(--popover);
|
|
791
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
792
|
+
--color-primary: var(--primary);
|
|
793
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
794
|
+
--color-secondary: var(--secondary);
|
|
795
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
796
|
+
--color-muted: var(--muted);
|
|
797
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
785
798
|
--color-neutral-alpha-2: var(--color-neutral-alpha-2);
|
|
786
799
|
--color-neutral-alpha-5: var(--color-neutral-alpha-5);
|
|
787
800
|
--color-neutral-alpha-10: var(--color-neutral-alpha-10);
|
|
801
|
+
--color-accent: var(--accent);
|
|
802
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
803
|
+
--color-destructive: var(--destructive);
|
|
788
804
|
--color-border: var(--border);
|
|
805
|
+
--color-input: var(--input);
|
|
806
|
+
--color-ring: var(--ring);
|
|
789
807
|
}
|
|
790
808
|
}
|
|
791
809
|
@layer base {
|
|
@@ -999,8 +1017,8 @@
|
|
|
999
1017
|
-moz-osx-font-smoothing: grayscale;
|
|
1000
1018
|
}
|
|
1001
1019
|
.turtle-widget-root {
|
|
1002
|
-
background-color: var(--background);
|
|
1003
|
-
color: var(--foreground);
|
|
1020
|
+
background-color: var(--color-background);
|
|
1021
|
+
color: var(--color-foreground);
|
|
1004
1022
|
}
|
|
1005
1023
|
}
|
|
1006
1024
|
@layer components {
|
|
@@ -1025,17 +1043,17 @@
|
|
|
1025
1043
|
line-height: var(--tw-leading,var(--text-xs--line-height));
|
|
1026
1044
|
--tw-font-weight: var(--font-weight-normal);
|
|
1027
1045
|
font-weight: var(--font-weight-normal);
|
|
1028
|
-
color: var(--muted-foreground);
|
|
1046
|
+
color: var(--color-muted-foreground);
|
|
1029
1047
|
}
|
|
1030
1048
|
.turtle-widget-root .managed-table tbody tr>td {
|
|
1031
|
-
background-color: var(--muted);
|
|
1049
|
+
background-color: var(--color-muted);
|
|
1032
1050
|
height: 38px;
|
|
1033
1051
|
}
|
|
1034
1052
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1035
1053
|
.turtle-widget-root .managed-table tbody tr>td {
|
|
1036
|
-
background-color: var(--muted);
|
|
1054
|
+
background-color: var(--color-muted);
|
|
1037
1055
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1038
|
-
background-color: color-mix(in oklab,var(--muted)5%,transparent);
|
|
1056
|
+
background-color: color-mix(in oklab,var(--color-muted)5%,transparent);
|
|
1039
1057
|
}
|
|
1040
1058
|
}
|
|
1041
1059
|
}
|
|
@@ -1059,13 +1077,13 @@
|
|
|
1059
1077
|
border-bottom-right-radius: 3.40282e38px;
|
|
1060
1078
|
}
|
|
1061
1079
|
.turtle-widget-root .managed-table tbody tr:hover>td {
|
|
1062
|
-
background-color: var(--muted);
|
|
1080
|
+
background-color: var(--color-muted);
|
|
1063
1081
|
}
|
|
1064
1082
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1065
1083
|
.turtle-widget-root .managed-table tbody tr:hover>td {
|
|
1066
|
-
background-color: var(--muted);
|
|
1084
|
+
background-color: var(--color-muted);
|
|
1067
1085
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1068
|
-
background-color: color-mix(in oklab,var(--muted)40%,transparent);
|
|
1086
|
+
background-color: color-mix(in oklab,var(--color-muted)40%,transparent);
|
|
1069
1087
|
}
|
|
1070
1088
|
}
|
|
1071
1089
|
}
|
|
@@ -1777,22 +1795,22 @@
|
|
|
1777
1795
|
border-radius: var(--radius-info-card);
|
|
1778
1796
|
}
|
|
1779
1797
|
.turtle-widget-root .rounded-lg {
|
|
1780
|
-
border-radius: var(--radius);
|
|
1798
|
+
border-radius: var(--radius-lg);
|
|
1781
1799
|
}
|
|
1782
1800
|
.turtle-widget-root .rounded-md {
|
|
1783
|
-
border-radius:
|
|
1801
|
+
border-radius: var(--radius-md);
|
|
1784
1802
|
}
|
|
1785
1803
|
.turtle-widget-root .rounded-none {
|
|
1786
1804
|
border-radius: 0;
|
|
1787
1805
|
}
|
|
1788
1806
|
.turtle-widget-root .rounded-sm {
|
|
1789
|
-
border-radius:
|
|
1807
|
+
border-radius: var(--radius-sm);
|
|
1790
1808
|
}
|
|
1791
1809
|
.turtle-widget-root .rounded-turtle {
|
|
1792
1810
|
border-radius: var(--radius-turtle);
|
|
1793
1811
|
}
|
|
1794
1812
|
.turtle-widget-root .rounded-xl {
|
|
1795
|
-
border-radius:
|
|
1813
|
+
border-radius: var(--radius-xl);
|
|
1796
1814
|
}
|
|
1797
1815
|
.turtle-widget-root .rounded-xs {
|
|
1798
1816
|
border-radius: var(--radius-xs);
|
|
@@ -1802,7 +1820,7 @@
|
|
|
1802
1820
|
border-top-right-radius: 0;
|
|
1803
1821
|
}
|
|
1804
1822
|
.turtle-widget-root .rounded-tl-sm {
|
|
1805
|
-
border-top-left-radius:
|
|
1823
|
+
border-top-left-radius: var(--radius-sm);
|
|
1806
1824
|
}
|
|
1807
1825
|
.turtle-widget-root .rounded-b-turtle {
|
|
1808
1826
|
border-bottom-right-radius: var(--radius-turtle);
|
|
@@ -1840,38 +1858,38 @@
|
|
|
1840
1858
|
border-color: var(--color-border);
|
|
1841
1859
|
}
|
|
1842
1860
|
.turtle-widget-root .border-background {
|
|
1843
|
-
border-color: var(--background);
|
|
1861
|
+
border-color: var(--color-background);
|
|
1844
1862
|
}
|
|
1845
1863
|
.turtle-widget-root .border-border, .turtle-widget-root .border-border\/50 {
|
|
1846
|
-
border-color: var(--border);
|
|
1864
|
+
border-color: var(--color-border);
|
|
1847
1865
|
}
|
|
1848
1866
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1849
1867
|
.turtle-widget-root .border-border\/50 {
|
|
1850
|
-
border-color: var(--border);
|
|
1868
|
+
border-color: var(--color-border);
|
|
1851
1869
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1852
|
-
border-color: color-mix(in oklab,var(--border)50%,transparent);
|
|
1870
|
+
border-color: color-mix(in oklab,var(--color-border)50%,transparent);
|
|
1853
1871
|
}
|
|
1854
1872
|
}
|
|
1855
1873
|
}
|
|
1856
1874
|
.turtle-widget-root .border-input {
|
|
1857
|
-
border-color: var(--input);
|
|
1875
|
+
border-color: var(--color-input);
|
|
1858
1876
|
}
|
|
1859
1877
|
.turtle-widget-root .border-muted {
|
|
1860
|
-
border-color: var(--muted);
|
|
1878
|
+
border-color: var(--color-muted);
|
|
1861
1879
|
}
|
|
1862
1880
|
.turtle-widget-root .border-muted-foreground\/30 {
|
|
1863
|
-
border-color: var(--muted-foreground);
|
|
1881
|
+
border-color: var(--color-muted-foreground);
|
|
1864
1882
|
}
|
|
1865
1883
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1866
1884
|
.turtle-widget-root .border-muted-foreground\/30 {
|
|
1867
|
-
border-color: var(--muted-foreground);
|
|
1885
|
+
border-color: var(--color-muted-foreground);
|
|
1868
1886
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1869
|
-
border-color: color-mix(in oklab,var(--muted-foreground)30%,transparent);
|
|
1887
|
+
border-color: color-mix(in oklab,var(--color-muted-foreground)30%,transparent);
|
|
1870
1888
|
}
|
|
1871
1889
|
}
|
|
1872
1890
|
}
|
|
1873
1891
|
.turtle-widget-root .border-primary {
|
|
1874
|
-
border-color: var(--primary);
|
|
1892
|
+
border-color: var(--color-primary);
|
|
1875
1893
|
}
|
|
1876
1894
|
.turtle-widget-root .border-transparent {
|
|
1877
1895
|
border-color: #0000;
|
|
@@ -1886,7 +1904,7 @@
|
|
|
1886
1904
|
background-color: var(--color-bg);
|
|
1887
1905
|
}
|
|
1888
1906
|
.turtle-widget-root .bg-background {
|
|
1889
|
-
background-color: var(--background);
|
|
1907
|
+
background-color: var(--color-background);
|
|
1890
1908
|
}
|
|
1891
1909
|
.turtle-widget-root .bg-black\/50 {
|
|
1892
1910
|
background-color: #00000080;
|
|
@@ -1900,36 +1918,36 @@
|
|
|
1900
1918
|
}
|
|
1901
1919
|
}
|
|
1902
1920
|
.turtle-widget-root .bg-border {
|
|
1903
|
-
background-color: var(--border);
|
|
1921
|
+
background-color: var(--color-border);
|
|
1904
1922
|
}
|
|
1905
1923
|
.turtle-widget-root .bg-card {
|
|
1906
|
-
background-color: var(--card);
|
|
1924
|
+
background-color: var(--color-card);
|
|
1907
1925
|
}
|
|
1908
1926
|
.turtle-widget-root .bg-foreground {
|
|
1909
|
-
background-color: var(--foreground);
|
|
1927
|
+
background-color: var(--color-foreground);
|
|
1910
1928
|
}
|
|
1911
1929
|
.turtle-widget-root .bg-muted {
|
|
1912
|
-
background-color: var(--muted);
|
|
1930
|
+
background-color: var(--color-muted);
|
|
1913
1931
|
}
|
|
1914
1932
|
.turtle-widget-root .bg-muted-foreground, .turtle-widget-root .bg-muted-foreground\/30 {
|
|
1915
|
-
background-color: var(--muted-foreground);
|
|
1933
|
+
background-color: var(--color-muted-foreground);
|
|
1916
1934
|
}
|
|
1917
1935
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1918
1936
|
.turtle-widget-root .bg-muted-foreground\/30 {
|
|
1919
|
-
background-color: var(--muted-foreground);
|
|
1937
|
+
background-color: var(--color-muted-foreground);
|
|
1920
1938
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1921
|
-
background-color: color-mix(in oklab,var(--muted-foreground)30%,transparent);
|
|
1939
|
+
background-color: color-mix(in oklab,var(--color-muted-foreground)30%,transparent);
|
|
1922
1940
|
}
|
|
1923
1941
|
}
|
|
1924
1942
|
}
|
|
1925
1943
|
.turtle-widget-root .bg-muted\/50 {
|
|
1926
|
-
background-color: var(--muted);
|
|
1944
|
+
background-color: var(--color-muted);
|
|
1927
1945
|
}
|
|
1928
1946
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1929
1947
|
.turtle-widget-root .bg-muted\/50 {
|
|
1930
|
-
background-color: var(--muted);
|
|
1948
|
+
background-color: var(--color-muted);
|
|
1931
1949
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1932
|
-
background-color: color-mix(in oklab,var(--muted)50%,transparent);
|
|
1950
|
+
background-color: color-mix(in oklab,var(--color-muted)50%,transparent);
|
|
1933
1951
|
}
|
|
1934
1952
|
}
|
|
1935
1953
|
}
|
|
@@ -1940,21 +1958,21 @@
|
|
|
1940
1958
|
background-color: var(--color-neutral-alpha-5);
|
|
1941
1959
|
}
|
|
1942
1960
|
.turtle-widget-root .bg-popover {
|
|
1943
|
-
background-color: var(--popover);
|
|
1961
|
+
background-color: var(--color-popover);
|
|
1944
1962
|
}
|
|
1945
1963
|
.turtle-widget-root .bg-primary, .turtle-widget-root .bg-primary\/20 {
|
|
1946
|
-
background-color: var(--primary);
|
|
1964
|
+
background-color: var(--color-primary);
|
|
1947
1965
|
}
|
|
1948
1966
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1949
1967
|
.turtle-widget-root .bg-primary\/20 {
|
|
1950
|
-
background-color: var(--primary);
|
|
1968
|
+
background-color: var(--color-primary);
|
|
1951
1969
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1952
|
-
background-color: color-mix(in oklab,var(--primary)20%,transparent);
|
|
1970
|
+
background-color: color-mix(in oklab,var(--color-primary)20%,transparent);
|
|
1953
1971
|
}
|
|
1954
1972
|
}
|
|
1955
1973
|
}
|
|
1956
1974
|
.turtle-widget-root .bg-secondary {
|
|
1957
|
-
background-color: var(--secondary);
|
|
1975
|
+
background-color: var(--color-secondary);
|
|
1958
1976
|
}
|
|
1959
1977
|
.turtle-widget-root .bg-transparent {
|
|
1960
1978
|
background-color: #0000;
|
|
@@ -1972,13 +1990,13 @@
|
|
|
1972
1990
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1973
1991
|
}
|
|
1974
1992
|
.turtle-widget-root .from-foreground\/40 {
|
|
1975
|
-
--tw-gradient-from: var(--foreground);
|
|
1993
|
+
--tw-gradient-from: var(--color-foreground);
|
|
1976
1994
|
}
|
|
1977
1995
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1978
1996
|
.turtle-widget-root .from-foreground\/40 {
|
|
1979
|
-
--tw-gradient-from: var(--foreground);
|
|
1997
|
+
--tw-gradient-from: var(--color-foreground);
|
|
1980
1998
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1981
|
-
--tw-gradient-from: color-mix(in oklab,var(--foreground)40%,transparent);
|
|
1999
|
+
--tw-gradient-from: color-mix(in oklab,var(--color-foreground)40%,transparent);
|
|
1982
2000
|
}
|
|
1983
2001
|
}
|
|
1984
2002
|
}
|
|
@@ -1986,7 +2004,7 @@
|
|
|
1986
2004
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
1987
2005
|
}
|
|
1988
2006
|
.turtle-widget-root .from-primary {
|
|
1989
|
-
--tw-gradient-from: var(--primary);
|
|
2007
|
+
--tw-gradient-from: var(--color-primary);
|
|
1990
2008
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
1991
2009
|
}
|
|
1992
2010
|
.turtle-widget-root .from-transparent {
|
|
@@ -1994,13 +2012,13 @@
|
|
|
1994
2012
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
1995
2013
|
}
|
|
1996
2014
|
.turtle-widget-root .via-foreground\/10 {
|
|
1997
|
-
--tw-gradient-via: var(--foreground);
|
|
2015
|
+
--tw-gradient-via: var(--color-foreground);
|
|
1998
2016
|
}
|
|
1999
2017
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2000
2018
|
.turtle-widget-root .via-foreground\/10 {
|
|
2001
|
-
--tw-gradient-via: var(--foreground);
|
|
2019
|
+
--tw-gradient-via: var(--color-foreground);
|
|
2002
2020
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2003
|
-
--tw-gradient-via: color-mix(in oklab,var(--foreground)10%,transparent);
|
|
2021
|
+
--tw-gradient-via: color-mix(in oklab,var(--color-foreground)10%,transparent);
|
|
2004
2022
|
}
|
|
2005
2023
|
}
|
|
2006
2024
|
}
|
|
@@ -2009,18 +2027,18 @@
|
|
|
2009
2027
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2010
2028
|
}
|
|
2011
2029
|
.turtle-widget-root .via-primary {
|
|
2012
|
-
--tw-gradient-via: var(--primary);
|
|
2030
|
+
--tw-gradient-via: var(--color-primary);
|
|
2013
2031
|
--tw-gradient-via-stops: var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);
|
|
2014
2032
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2015
2033
|
}
|
|
2016
2034
|
.turtle-widget-root .via-primary\/20 {
|
|
2017
|
-
--tw-gradient-via: var(--primary);
|
|
2035
|
+
--tw-gradient-via: var(--color-primary);
|
|
2018
2036
|
}
|
|
2019
2037
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2020
2038
|
.turtle-widget-root .via-primary\/20 {
|
|
2021
|
-
--tw-gradient-via: var(--primary);
|
|
2039
|
+
--tw-gradient-via: var(--color-primary);
|
|
2022
2040
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2023
|
-
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
2041
|
+
--tw-gradient-via: color-mix(in oklab,var(--color-primary)20%,transparent);
|
|
2024
2042
|
}
|
|
2025
2043
|
}
|
|
2026
2044
|
}
|
|
@@ -2029,13 +2047,13 @@
|
|
|
2029
2047
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2030
2048
|
}
|
|
2031
2049
|
.turtle-widget-root .to-foreground\/20 {
|
|
2032
|
-
--tw-gradient-to: var(--foreground);
|
|
2050
|
+
--tw-gradient-to: var(--color-foreground);
|
|
2033
2051
|
}
|
|
2034
2052
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2035
2053
|
.turtle-widget-root .to-foreground\/20 {
|
|
2036
|
-
--tw-gradient-to: var(--foreground);
|
|
2054
|
+
--tw-gradient-to: var(--color-foreground);
|
|
2037
2055
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2038
|
-
--tw-gradient-to: color-mix(in oklab,var(--foreground)20%,transparent);
|
|
2056
|
+
--tw-gradient-to: color-mix(in oklab,var(--color-foreground)20%,transparent);
|
|
2039
2057
|
}
|
|
2040
2058
|
}
|
|
2041
2059
|
}
|
|
@@ -2043,13 +2061,13 @@
|
|
|
2043
2061
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
2044
2062
|
}
|
|
2045
2063
|
.turtle-widget-root .to-primary\/30 {
|
|
2046
|
-
--tw-gradient-to: var(--primary);
|
|
2064
|
+
--tw-gradient-to: var(--color-primary);
|
|
2047
2065
|
}
|
|
2048
2066
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2049
2067
|
.turtle-widget-root .to-primary\/30 {
|
|
2050
|
-
--tw-gradient-to: var(--primary);
|
|
2068
|
+
--tw-gradient-to: var(--color-primary);
|
|
2051
2069
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2052
|
-
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
2070
|
+
--tw-gradient-to: color-mix(in oklab,var(--color-primary)30%,transparent);
|
|
2053
2071
|
}
|
|
2054
2072
|
}
|
|
2055
2073
|
}
|
|
@@ -2330,7 +2348,7 @@
|
|
|
2330
2348
|
white-space: nowrap;
|
|
2331
2349
|
}
|
|
2332
2350
|
.turtle-widget-root .text-accent {
|
|
2333
|
-
color: var(--accent);
|
|
2351
|
+
color: var(--color-accent);
|
|
2334
2352
|
}
|
|
2335
2353
|
.turtle-widget-root .text-amber-600 {
|
|
2336
2354
|
color: var(--color-amber-600);
|
|
@@ -2339,39 +2357,39 @@
|
|
|
2339
2357
|
color: currentColor;
|
|
2340
2358
|
}
|
|
2341
2359
|
.turtle-widget-root .text-destructive {
|
|
2342
|
-
color: var(--destructive);
|
|
2360
|
+
color: var(--color-destructive);
|
|
2343
2361
|
}
|
|
2344
2362
|
.turtle-widget-root .text-foreground {
|
|
2345
|
-
color: var(--foreground);
|
|
2363
|
+
color: var(--color-foreground);
|
|
2346
2364
|
}
|
|
2347
2365
|
.turtle-widget-root .text-green-600 {
|
|
2348
2366
|
color: var(--color-green-600);
|
|
2349
2367
|
}
|
|
2350
2368
|
.turtle-widget-root .text-muted-foreground, .turtle-widget-root .text-muted-foreground\/70 {
|
|
2351
|
-
color: var(--muted-foreground);
|
|
2369
|
+
color: var(--color-muted-foreground);
|
|
2352
2370
|
}
|
|
2353
2371
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2354
2372
|
.turtle-widget-root .text-muted-foreground\/70 {
|
|
2355
|
-
color: var(--muted-foreground);
|
|
2373
|
+
color: var(--color-muted-foreground);
|
|
2356
2374
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2357
|
-
color: color-mix(in oklab,var(--muted-foreground)70%,transparent);
|
|
2375
|
+
color: color-mix(in oklab,var(--color-muted-foreground)70%,transparent);
|
|
2358
2376
|
}
|
|
2359
2377
|
}
|
|
2360
2378
|
}
|
|
2361
2379
|
.turtle-widget-root .text-popover-foreground {
|
|
2362
|
-
color: var(--popover-foreground);
|
|
2380
|
+
color: var(--color-popover-foreground);
|
|
2363
2381
|
}
|
|
2364
2382
|
.turtle-widget-root .text-primary {
|
|
2365
|
-
color: var(--primary);
|
|
2383
|
+
color: var(--color-primary);
|
|
2366
2384
|
}
|
|
2367
2385
|
.turtle-widget-root .text-primary-foreground {
|
|
2368
|
-
color: var(--primary-foreground);
|
|
2386
|
+
color: var(--color-primary-foreground);
|
|
2369
2387
|
}
|
|
2370
2388
|
.turtle-widget-root .text-red-600 {
|
|
2371
2389
|
color: var(--color-red-600);
|
|
2372
2390
|
}
|
|
2373
2391
|
.turtle-widget-root .text-secondary-foreground {
|
|
2374
|
-
color: var(--secondary-foreground);
|
|
2392
|
+
color: var(--color-secondary-foreground);
|
|
2375
2393
|
}
|
|
2376
2394
|
.turtle-widget-root .text-white\/80 {
|
|
2377
2395
|
color: #fffc;
|
|
@@ -2395,13 +2413,13 @@
|
|
|
2395
2413
|
font-variant-numeric: var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,);
|
|
2396
2414
|
}
|
|
2397
2415
|
.turtle-widget-root .caret-foreground {
|
|
2398
|
-
caret-color: var(--foreground);
|
|
2416
|
+
caret-color: var(--color-foreground);
|
|
2399
2417
|
}
|
|
2400
2418
|
.turtle-widget-root .caret-green-500 {
|
|
2401
2419
|
caret-color: var(--color-green-500);
|
|
2402
2420
|
}
|
|
2403
2421
|
.turtle-widget-root .caret-primary {
|
|
2404
|
-
caret-color: var(--primary);
|
|
2422
|
+
caret-color: var(--color-primary);
|
|
2405
2423
|
}
|
|
2406
2424
|
.turtle-widget-root .caret-white {
|
|
2407
2425
|
caret-color: var(--color-white);
|
|
@@ -2471,27 +2489,27 @@
|
|
|
2471
2489
|
}
|
|
2472
2490
|
}
|
|
2473
2491
|
.turtle-widget-root .shadow-primary {
|
|
2474
|
-
--tw-shadow-color: var(--primary);
|
|
2492
|
+
--tw-shadow-color: var(--color-primary);
|
|
2475
2493
|
}
|
|
2476
2494
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2477
2495
|
.turtle-widget-root .shadow-primary {
|
|
2478
|
-
--tw-shadow-color: var(--primary);
|
|
2496
|
+
--tw-shadow-color: var(--color-primary);
|
|
2479
2497
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2480
|
-
--tw-shadow-color: color-mix(in oklab,var(--primary)var(--tw-shadow-alpha),transparent);
|
|
2498
|
+
--tw-shadow-color: color-mix(in oklab,var(--color-primary)var(--tw-shadow-alpha),transparent);
|
|
2481
2499
|
}
|
|
2482
2500
|
}
|
|
2483
2501
|
}
|
|
2484
2502
|
.turtle-widget-root .ring-primary {
|
|
2485
|
-
--tw-ring-color: var(--primary);
|
|
2503
|
+
--tw-ring-color: var(--color-primary);
|
|
2486
2504
|
}
|
|
2487
2505
|
.turtle-widget-root .ring-ring\/50 {
|
|
2488
|
-
--tw-ring-color: var(--ring);
|
|
2506
|
+
--tw-ring-color: var(--color-ring);
|
|
2489
2507
|
}
|
|
2490
2508
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2491
2509
|
.turtle-widget-root .ring-ring\/50 {
|
|
2492
|
-
--tw-ring-color: var(--ring);
|
|
2510
|
+
--tw-ring-color: var(--color-ring);
|
|
2493
2511
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2494
|
-
--tw-ring-color: color-mix(in oklab,var(--ring)50%,transparent);
|
|
2512
|
+
--tw-ring-color: color-mix(in oklab,var(--color-ring)50%,transparent);
|
|
2495
2513
|
}
|
|
2496
2514
|
}
|
|
2497
2515
|
}
|
|
@@ -2500,7 +2518,7 @@
|
|
|
2500
2518
|
--tw-ring-offset-shadow: var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
|
|
2501
2519
|
}
|
|
2502
2520
|
.turtle-widget-root .ring-offset-background {
|
|
2503
|
-
--tw-ring-offset-color: var(--background);
|
|
2521
|
+
--tw-ring-offset-color: var(--color-background);
|
|
2504
2522
|
}
|
|
2505
2523
|
.turtle-widget-root .outline-hidden {
|
|
2506
2524
|
--tw-outline-style: none;
|
|
@@ -2614,17 +2632,17 @@
|
|
|
2614
2632
|
overflow: hidden;
|
|
2615
2633
|
}
|
|
2616
2634
|
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:rounded-md:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2617
|
-
border-radius:
|
|
2635
|
+
border-radius: var(--radius-md);
|
|
2618
2636
|
}
|
|
2619
2637
|
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:border:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2620
2638
|
border-style: var(--tw-border-style);
|
|
2621
2639
|
border-width: 1px;
|
|
2622
2640
|
}
|
|
2623
2641
|
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:bg-popover:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2624
|
-
background-color: var(--popover);
|
|
2642
|
+
background-color: var(--color-popover);
|
|
2625
2643
|
}
|
|
2626
2644
|
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2627
|
-
color: var(--popover-foreground);
|
|
2645
|
+
color: var(--color-popover-foreground);
|
|
2628
2646
|
}
|
|
2629
2647
|
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:shadow:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2630
2648
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
@@ -2641,19 +2659,19 @@
|
|
|
2641
2659
|
opacity: .5;
|
|
2642
2660
|
}
|
|
2643
2661
|
.turtle-widget-root .selection\:bg-primary ::selection {
|
|
2644
|
-
background-color: var(--primary);
|
|
2662
|
+
background-color: var(--color-primary);
|
|
2645
2663
|
}
|
|
2646
2664
|
.turtle-widget-root .selection\:bg-primary::selection {
|
|
2647
|
-
background-color: var(--primary);
|
|
2665
|
+
background-color: var(--color-primary);
|
|
2648
2666
|
}
|
|
2649
2667
|
.turtle-widget-root .selection\:text-primary-foreground ::selection {
|
|
2650
|
-
color: var(--primary-foreground);
|
|
2668
|
+
color: var(--color-primary-foreground);
|
|
2651
2669
|
}
|
|
2652
2670
|
.turtle-widget-root .selection\:text-primary-foreground::selection {
|
|
2653
|
-
color: var(--primary-foreground);
|
|
2671
|
+
color: var(--color-primary-foreground);
|
|
2654
2672
|
}
|
|
2655
2673
|
.turtle-widget-root .placeholder\:text-muted-foreground::placeholder {
|
|
2656
|
-
color: var(--muted-foreground);
|
|
2674
|
+
color: var(--color-muted-foreground);
|
|
2657
2675
|
}
|
|
2658
2676
|
.turtle-widget-root .before\:pointer-events-none:before {
|
|
2659
2677
|
content: var(--tw-content);
|
|
@@ -2745,8 +2763,8 @@
|
|
|
2745
2763
|
border-bottom-left-radius: 3.40282e38px;
|
|
2746
2764
|
}
|
|
2747
2765
|
.turtle-widget-root .first\:rounded-l-md:first-child {
|
|
2748
|
-
border-top-left-radius:
|
|
2749
|
-
border-bottom-left-radius:
|
|
2766
|
+
border-top-left-radius: var(--radius-md);
|
|
2767
|
+
border-bottom-left-radius: var(--radius-md);
|
|
2750
2768
|
}
|
|
2751
2769
|
.turtle-widget-root .first\:pl-4:first-child {
|
|
2752
2770
|
padding-left: calc(var(--spacing)*4);
|
|
@@ -2756,8 +2774,8 @@
|
|
|
2756
2774
|
border-bottom-right-radius: 3.40282e38px;
|
|
2757
2775
|
}
|
|
2758
2776
|
.turtle-widget-root .last\:rounded-r-md:last-child {
|
|
2759
|
-
border-top-right-radius:
|
|
2760
|
-
border-bottom-right-radius:
|
|
2777
|
+
border-top-right-radius: var(--radius-md);
|
|
2778
|
+
border-bottom-right-radius: var(--radius-md);
|
|
2761
2779
|
}
|
|
2762
2780
|
.turtle-widget-root .last\:pr-4:last-child {
|
|
2763
2781
|
padding-right: calc(var(--spacing)*4);
|
|
@@ -2773,67 +2791,67 @@
|
|
|
2773
2791
|
scale: var(--tw-scale-x)var(--tw-scale-y);
|
|
2774
2792
|
}
|
|
2775
2793
|
.turtle-widget-root .hover\:bg-accent:hover {
|
|
2776
|
-
background-color: var(--accent);
|
|
2794
|
+
background-color: var(--color-accent);
|
|
2777
2795
|
}
|
|
2778
2796
|
.turtle-widget-root .hover\:bg-background:hover {
|
|
2779
|
-
background-color: var(--background);
|
|
2797
|
+
background-color: var(--color-background);
|
|
2780
2798
|
}
|
|
2781
2799
|
.turtle-widget-root .hover\:bg-muted:hover, .turtle-widget-root .hover\:bg-muted\/80:hover {
|
|
2782
|
-
background-color: var(--muted);
|
|
2800
|
+
background-color: var(--color-muted);
|
|
2783
2801
|
}
|
|
2784
2802
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2785
2803
|
.turtle-widget-root .hover\:bg-muted\/80:hover {
|
|
2786
|
-
background-color: var(--muted);
|
|
2804
|
+
background-color: var(--color-muted);
|
|
2787
2805
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2788
|
-
background-color: color-mix(in oklab,var(--muted)80%,transparent);
|
|
2806
|
+
background-color: color-mix(in oklab,var(--color-muted)80%,transparent);
|
|
2789
2807
|
}
|
|
2790
2808
|
}
|
|
2791
2809
|
}
|
|
2792
2810
|
.turtle-widget-root .hover\:bg-primary:hover, .turtle-widget-root .hover\:bg-primary\/90:hover {
|
|
2793
|
-
background-color: var(--primary);
|
|
2811
|
+
background-color: var(--color-primary);
|
|
2794
2812
|
}
|
|
2795
2813
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2796
2814
|
.turtle-widget-root .hover\:bg-primary\/90:hover {
|
|
2797
|
-
background-color: var(--primary);
|
|
2815
|
+
background-color: var(--color-primary);
|
|
2798
2816
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2799
|
-
background-color: color-mix(in oklab,var(--primary)90%,transparent);
|
|
2817
|
+
background-color: color-mix(in oklab,var(--color-primary)90%,transparent);
|
|
2800
2818
|
}
|
|
2801
2819
|
}
|
|
2802
2820
|
}
|
|
2803
2821
|
.turtle-widget-root .hover\:bg-secondary:hover, .turtle-widget-root .hover\:bg-secondary\/80:hover {
|
|
2804
|
-
background-color: var(--secondary);
|
|
2822
|
+
background-color: var(--color-secondary);
|
|
2805
2823
|
}
|
|
2806
2824
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2807
2825
|
.turtle-widget-root .hover\:bg-secondary\/80:hover {
|
|
2808
|
-
background-color: var(--secondary);
|
|
2826
|
+
background-color: var(--color-secondary);
|
|
2809
2827
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2810
|
-
background-color: color-mix(in oklab,var(--secondary)80%,transparent);
|
|
2828
|
+
background-color: color-mix(in oklab,var(--color-secondary)80%,transparent);
|
|
2811
2829
|
}
|
|
2812
2830
|
}
|
|
2813
2831
|
}
|
|
2814
2832
|
.turtle-widget-root .hover\:text-accent-foreground:hover {
|
|
2815
|
-
color: var(--accent-foreground);
|
|
2833
|
+
color: var(--color-accent-foreground);
|
|
2816
2834
|
}
|
|
2817
2835
|
.turtle-widget-root .hover\:text-foreground:hover {
|
|
2818
|
-
color: var(--foreground);
|
|
2836
|
+
color: var(--color-foreground);
|
|
2819
2837
|
}
|
|
2820
2838
|
.turtle-widget-root .hover\:text-muted-foreground:hover {
|
|
2821
|
-
color: var(--muted-foreground);
|
|
2839
|
+
color: var(--color-muted-foreground);
|
|
2822
2840
|
}
|
|
2823
2841
|
.turtle-widget-root .hover\:text-primary:hover {
|
|
2824
|
-
color: var(--primary);
|
|
2842
|
+
color: var(--color-primary);
|
|
2825
2843
|
}
|
|
2826
2844
|
.turtle-widget-root .hover\:text-primary-foreground:hover {
|
|
2827
|
-
color: var(--primary-foreground);
|
|
2845
|
+
color: var(--color-primary-foreground);
|
|
2828
2846
|
}
|
|
2829
2847
|
.turtle-widget-root .hover\:text-primary\/80:hover {
|
|
2830
|
-
color: var(--primary);
|
|
2848
|
+
color: var(--color-primary);
|
|
2831
2849
|
}
|
|
2832
2850
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2833
2851
|
.turtle-widget-root .hover\:text-primary\/80:hover {
|
|
2834
|
-
color: var(--primary);
|
|
2852
|
+
color: var(--color-primary);
|
|
2835
2853
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2836
|
-
color: color-mix(in oklab,var(--primary)80%,transparent);
|
|
2854
|
+
color: color-mix(in oklab,var(--color-primary)80%,transparent);
|
|
2837
2855
|
}
|
|
2838
2856
|
}
|
|
2839
2857
|
}
|
|
@@ -2857,28 +2875,28 @@
|
|
|
2857
2875
|
border-style: none;
|
|
2858
2876
|
}
|
|
2859
2877
|
.turtle-widget-root .focus\:border-primary:focus {
|
|
2860
|
-
border-color: var(--primary);
|
|
2878
|
+
border-color: var(--color-primary);
|
|
2861
2879
|
}
|
|
2862
2880
|
.turtle-widget-root .focus\:border-transparent:focus {
|
|
2863
2881
|
border-color: #0000;
|
|
2864
2882
|
}
|
|
2865
2883
|
.turtle-widget-root .focus\:bg-accent:focus {
|
|
2866
|
-
background-color: var(--accent);
|
|
2884
|
+
background-color: var(--color-accent);
|
|
2867
2885
|
}
|
|
2868
2886
|
.turtle-widget-root .focus\:bg-neutral-alpha-2:focus {
|
|
2869
2887
|
background-color: var(--color-neutral-alpha-2);
|
|
2870
2888
|
}
|
|
2871
2889
|
.turtle-widget-root .focus\:bg-secondary:focus {
|
|
2872
|
-
background-color: var(--secondary);
|
|
2890
|
+
background-color: var(--color-secondary);
|
|
2873
2891
|
}
|
|
2874
2892
|
.turtle-widget-root .focus\:text-accent-foreground:focus {
|
|
2875
|
-
color: var(--accent-foreground);
|
|
2893
|
+
color: var(--color-accent-foreground);
|
|
2876
2894
|
}
|
|
2877
2895
|
.turtle-widget-root .focus\:text-foreground:focus {
|
|
2878
|
-
color: var(--foreground);
|
|
2896
|
+
color: var(--color-foreground);
|
|
2879
2897
|
}
|
|
2880
2898
|
.turtle-widget-root .focus\:text-secondary-foreground:focus {
|
|
2881
|
-
color: var(--secondary-foreground);
|
|
2899
|
+
color: var(--color-secondary-foreground);
|
|
2882
2900
|
}
|
|
2883
2901
|
.turtle-widget-root .focus\:ring-0:focus {
|
|
2884
2902
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
@@ -2889,18 +2907,18 @@
|
|
|
2889
2907
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2890
2908
|
}
|
|
2891
2909
|
.turtle-widget-root .focus\:ring-primary:focus, .turtle-widget-root .focus\:ring-primary\/20:focus {
|
|
2892
|
-
--tw-ring-color: var(--primary);
|
|
2910
|
+
--tw-ring-color: var(--color-primary);
|
|
2893
2911
|
}
|
|
2894
2912
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2895
2913
|
.turtle-widget-root .focus\:ring-primary\/20:focus {
|
|
2896
|
-
--tw-ring-color: var(--primary);
|
|
2914
|
+
--tw-ring-color: var(--color-primary);
|
|
2897
2915
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2898
|
-
--tw-ring-color: color-mix(in oklab,var(--primary)20%,transparent);
|
|
2916
|
+
--tw-ring-color: color-mix(in oklab,var(--color-primary)20%,transparent);
|
|
2899
2917
|
}
|
|
2900
2918
|
}
|
|
2901
2919
|
}
|
|
2902
2920
|
.turtle-widget-root .focus\:ring-ring:focus {
|
|
2903
|
-
--tw-ring-color: var(--ring);
|
|
2921
|
+
--tw-ring-color: var(--color-ring);
|
|
2904
2922
|
}
|
|
2905
2923
|
.turtle-widget-root .focus\:ring-offset-2:focus {
|
|
2906
2924
|
--tw-ring-offset-width: 2px;
|
|
@@ -2924,7 +2942,7 @@
|
|
|
2924
2942
|
z-index: 10;
|
|
2925
2943
|
}
|
|
2926
2944
|
.turtle-widget-root .focus-visible\:border-ring:focus-visible {
|
|
2927
|
-
border-color: var(--ring);
|
|
2945
|
+
border-color: var(--color-ring);
|
|
2928
2946
|
}
|
|
2929
2947
|
.turtle-widget-root .focus-visible\:ring-4:focus-visible {
|
|
2930
2948
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
@@ -2935,24 +2953,24 @@
|
|
|
2935
2953
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2936
2954
|
}
|
|
2937
2955
|
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
2938
|
-
--tw-ring-color: var(--destructive);
|
|
2956
|
+
--tw-ring-color: var(--color-destructive);
|
|
2939
2957
|
}
|
|
2940
2958
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2941
2959
|
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
2942
|
-
--tw-ring-color: var(--destructive);
|
|
2960
|
+
--tw-ring-color: var(--color-destructive);
|
|
2943
2961
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2944
|
-
--tw-ring-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
2962
|
+
--tw-ring-color: color-mix(in oklab,var(--color-destructive)20%,transparent);
|
|
2945
2963
|
}
|
|
2946
2964
|
}
|
|
2947
2965
|
}
|
|
2948
2966
|
.turtle-widget-root .focus-visible\:ring-ring\/50:focus-visible {
|
|
2949
|
-
--tw-ring-color: var(--ring);
|
|
2967
|
+
--tw-ring-color: var(--color-ring);
|
|
2950
2968
|
}
|
|
2951
2969
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2952
2970
|
.turtle-widget-root .focus-visible\:ring-ring\/50:focus-visible {
|
|
2953
|
-
--tw-ring-color: var(--ring);
|
|
2971
|
+
--tw-ring-color: var(--color-ring);
|
|
2954
2972
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2955
|
-
--tw-ring-color: color-mix(in oklab,var(--ring)50%,transparent);
|
|
2973
|
+
--tw-ring-color: color-mix(in oklab,var(--color-ring)50%,transparent);
|
|
2956
2974
|
}
|
|
2957
2975
|
}
|
|
2958
2976
|
}
|
|
@@ -2971,17 +2989,17 @@
|
|
|
2971
2989
|
outline-width: 1px;
|
|
2972
2990
|
}
|
|
2973
2991
|
.turtle-widget-root .active\:from-primary:active {
|
|
2974
|
-
--tw-gradient-from: var(--primary);
|
|
2992
|
+
--tw-gradient-from: var(--color-primary);
|
|
2975
2993
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
2976
2994
|
}
|
|
2977
2995
|
.turtle-widget-root .active\:via-primary\/20:active {
|
|
2978
|
-
--tw-gradient-via: var(--primary);
|
|
2996
|
+
--tw-gradient-via: var(--color-primary);
|
|
2979
2997
|
}
|
|
2980
2998
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2981
2999
|
.turtle-widget-root .active\:via-primary\/20:active {
|
|
2982
|
-
--tw-gradient-via: var(--primary);
|
|
3000
|
+
--tw-gradient-via: var(--color-primary);
|
|
2983
3001
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2984
|
-
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
3002
|
+
--tw-gradient-via: color-mix(in oklab,var(--color-primary)20%,transparent);
|
|
2985
3003
|
}
|
|
2986
3004
|
}
|
|
2987
3005
|
}
|
|
@@ -2990,13 +3008,13 @@
|
|
|
2990
3008
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2991
3009
|
}
|
|
2992
3010
|
.turtle-widget-root .active\:to-primary\/30:active {
|
|
2993
|
-
--tw-gradient-to: var(--primary);
|
|
3011
|
+
--tw-gradient-to: var(--color-primary);
|
|
2994
3012
|
}
|
|
2995
3013
|
@supports (color:color-mix(in lab,red,red)) {
|
|
2996
3014
|
.turtle-widget-root .active\:to-primary\/30:active {
|
|
2997
|
-
--tw-gradient-to: var(--primary);
|
|
3015
|
+
--tw-gradient-to: var(--color-primary);
|
|
2998
3016
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2999
|
-
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
3017
|
+
--tw-gradient-to: color-mix(in oklab,var(--color-primary)30%,transparent);
|
|
3000
3018
|
}
|
|
3001
3019
|
}
|
|
3002
3020
|
}
|
|
@@ -3010,7 +3028,7 @@
|
|
|
3010
3028
|
cursor: not-allowed;
|
|
3011
3029
|
}
|
|
3012
3030
|
.turtle-widget-root .disabled\:text-muted-foreground:disabled {
|
|
3013
|
-
color: var(--muted-foreground);
|
|
3031
|
+
color: var(--color-muted-foreground);
|
|
3014
3032
|
}
|
|
3015
3033
|
.turtle-widget-root .disabled\:opacity-50:disabled {
|
|
3016
3034
|
opacity: .5;
|
|
@@ -3029,16 +3047,16 @@
|
|
|
3029
3047
|
padding-inline: calc(var(--spacing)*4);
|
|
3030
3048
|
}
|
|
3031
3049
|
.turtle-widget-root .aria-invalid\:border-destructive[aria-invalid=true] {
|
|
3032
|
-
border-color: var(--destructive);
|
|
3050
|
+
border-color: var(--color-destructive);
|
|
3033
3051
|
}
|
|
3034
3052
|
.turtle-widget-root .aria-invalid\:ring-destructive\/20[aria-invalid=true] {
|
|
3035
|
-
--tw-ring-color: var(--destructive);
|
|
3053
|
+
--tw-ring-color: var(--color-destructive);
|
|
3036
3054
|
}
|
|
3037
3055
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3038
3056
|
.turtle-widget-root .aria-invalid\:ring-destructive\/20[aria-invalid=true] {
|
|
3039
|
-
--tw-ring-color: var(--destructive);
|
|
3057
|
+
--tw-ring-color: var(--color-destructive);
|
|
3040
3058
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3041
|
-
--tw-ring-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
3059
|
+
--tw-ring-color: color-mix(in oklab,var(--color-destructive)20%,transparent);
|
|
3042
3060
|
}
|
|
3043
3061
|
}
|
|
3044
3062
|
}
|
|
@@ -3050,17 +3068,17 @@
|
|
|
3050
3068
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
3051
3069
|
}
|
|
3052
3070
|
.turtle-widget-root .data-\[active\=true\]\:from-primary[data-active=true] {
|
|
3053
|
-
--tw-gradient-from: var(--primary);
|
|
3071
|
+
--tw-gradient-from: var(--color-primary);
|
|
3054
3072
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
3055
3073
|
}
|
|
3056
3074
|
.turtle-widget-root .data-\[active\=true\]\:via-primary\/20[data-active=true] {
|
|
3057
|
-
--tw-gradient-via: var(--primary);
|
|
3075
|
+
--tw-gradient-via: var(--color-primary);
|
|
3058
3076
|
}
|
|
3059
3077
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3060
3078
|
.turtle-widget-root .data-\[active\=true\]\:via-primary\/20[data-active=true] {
|
|
3061
|
-
--tw-gradient-via: var(--primary);
|
|
3079
|
+
--tw-gradient-via: var(--color-primary);
|
|
3062
3080
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3063
|
-
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
3081
|
+
--tw-gradient-via: color-mix(in oklab,var(--color-primary)20%,transparent);
|
|
3064
3082
|
}
|
|
3065
3083
|
}
|
|
3066
3084
|
}
|
|
@@ -3069,13 +3087,13 @@
|
|
|
3069
3087
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
3070
3088
|
}
|
|
3071
3089
|
.turtle-widget-root .data-\[active\=true\]\:to-primary\/30[data-active=true] {
|
|
3072
|
-
--tw-gradient-to: var(--primary);
|
|
3090
|
+
--tw-gradient-to: var(--color-primary);
|
|
3073
3091
|
}
|
|
3074
3092
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3075
3093
|
.turtle-widget-root .data-\[active\=true\]\:to-primary\/30[data-active=true] {
|
|
3076
|
-
--tw-gradient-to: var(--primary);
|
|
3094
|
+
--tw-gradient-to: var(--color-primary);
|
|
3077
3095
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3078
|
-
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
3096
|
+
--tw-gradient-to: color-mix(in oklab,var(--color-primary)30%,transparent);
|
|
3079
3097
|
}
|
|
3080
3098
|
}
|
|
3081
3099
|
}
|
|
@@ -3083,10 +3101,10 @@
|
|
|
3083
3101
|
--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
|
|
3084
3102
|
}
|
|
3085
3103
|
.turtle-widget-root .data-\[active\=true\]\:text-foreground[data-active=true] {
|
|
3086
|
-
color: var(--foreground);
|
|
3104
|
+
color: var(--color-foreground);
|
|
3087
3105
|
}
|
|
3088
3106
|
.turtle-widget-root .data-\[active\=true\]\:text-primary[data-active=true] {
|
|
3089
|
-
color: var(--primary);
|
|
3107
|
+
color: var(--color-primary);
|
|
3090
3108
|
}
|
|
3091
3109
|
.turtle-widget-root .data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
3092
3110
|
pointer-events: none;
|
|
@@ -3155,7 +3173,7 @@
|
|
|
3155
3173
|
flex-direction: column;
|
|
3156
3174
|
}
|
|
3157
3175
|
.turtle-widget-root .data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
|
|
3158
|
-
color: var(--muted-foreground);
|
|
3176
|
+
color: var(--color-muted-foreground);
|
|
3159
3177
|
}
|
|
3160
3178
|
.turtle-widget-root .data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
|
|
3161
3179
|
--tw-translate-y: calc(var(--spacing)*1);
|
|
@@ -3223,19 +3241,19 @@
|
|
|
3223
3241
|
border-width: 1px;
|
|
3224
3242
|
}
|
|
3225
3243
|
.turtle-widget-root .data-\[state\=checked\]\:border-border[data-state=checked] {
|
|
3226
|
-
border-color: var(--border);
|
|
3244
|
+
border-color: var(--color-border);
|
|
3227
3245
|
}
|
|
3228
3246
|
.turtle-widget-root .data-\[state\=checked\]\:border-primary[data-state=checked] {
|
|
3229
|
-
border-color: var(--primary);
|
|
3247
|
+
border-color: var(--color-primary);
|
|
3230
3248
|
}
|
|
3231
3249
|
.turtle-widget-root .data-\[state\=checked\]\:bg-neutral-alpha-2[data-state=checked] {
|
|
3232
3250
|
background-color: var(--color-neutral-alpha-2);
|
|
3233
3251
|
}
|
|
3234
3252
|
.turtle-widget-root .data-\[state\=checked\]\:bg-primary[data-state=checked] {
|
|
3235
|
-
background-color: var(--primary);
|
|
3253
|
+
background-color: var(--color-primary);
|
|
3236
3254
|
}
|
|
3237
3255
|
.turtle-widget-root .data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
3238
|
-
color: var(--primary-foreground);
|
|
3256
|
+
color: var(--color-primary-foreground);
|
|
3239
3257
|
}
|
|
3240
3258
|
.turtle-widget-root .data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
3241
3259
|
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
@@ -3262,30 +3280,30 @@
|
|
|
3262
3280
|
--tw-exit-opacity: 0;
|
|
3263
3281
|
}
|
|
3264
3282
|
.turtle-widget-root .data-\[state\=on\]\:bg-accent[data-state=on] {
|
|
3265
|
-
background-color: var(--accent);
|
|
3283
|
+
background-color: var(--color-accent);
|
|
3266
3284
|
}
|
|
3267
3285
|
.turtle-widget-root .data-\[state\=on\]\:text-accent-foreground[data-state=on] {
|
|
3268
|
-
color: var(--accent-foreground);
|
|
3286
|
+
color: var(--color-accent-foreground);
|
|
3269
3287
|
}
|
|
3270
3288
|
.turtle-widget-root .data-\[state\=open\]\:animate-in[data-state=open] {
|
|
3271
3289
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3272
3290
|
}
|
|
3273
3291
|
.turtle-widget-root .data-\[state\=open\]\:bg-accent[data-state=open], .turtle-widget-root .data-\[state\=open\]\:bg-accent\/50[data-state=open] {
|
|
3274
|
-
background-color: var(--accent);
|
|
3292
|
+
background-color: var(--color-accent);
|
|
3275
3293
|
}
|
|
3276
3294
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3277
3295
|
.turtle-widget-root .data-\[state\=open\]\:bg-accent\/50[data-state=open] {
|
|
3278
|
-
background-color: var(--accent);
|
|
3296
|
+
background-color: var(--color-accent);
|
|
3279
3297
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3280
|
-
background-color: color-mix(in oklab,var(--accent)50%,transparent);
|
|
3298
|
+
background-color: color-mix(in oklab,var(--color-accent)50%,transparent);
|
|
3281
3299
|
}
|
|
3282
3300
|
}
|
|
3283
3301
|
}
|
|
3284
3302
|
.turtle-widget-root .data-\[state\=open\]\:text-accent-foreground[data-state=open] {
|
|
3285
|
-
color: var(--accent-foreground);
|
|
3303
|
+
color: var(--color-accent-foreground);
|
|
3286
3304
|
}
|
|
3287
3305
|
.turtle-widget-root .data-\[state\=open\]\:text-muted-foreground[data-state=open] {
|
|
3288
|
-
color: var(--muted-foreground);
|
|
3306
|
+
color: var(--color-muted-foreground);
|
|
3289
3307
|
}
|
|
3290
3308
|
.turtle-widget-root .data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
3291
3309
|
--tw-enter-opacity: 0;
|
|
@@ -3307,11 +3325,11 @@
|
|
|
3307
3325
|
}
|
|
3308
3326
|
@media (hover:hover) {
|
|
3309
3327
|
.turtle-widget-root .data-\[state\=open\]\:hover\:bg-accent[data-state=open]:hover {
|
|
3310
|
-
background-color: var(--accent);
|
|
3328
|
+
background-color: var(--color-accent);
|
|
3311
3329
|
}
|
|
3312
3330
|
}
|
|
3313
3331
|
.turtle-widget-root .data-\[state\=open\]\:focus\:bg-accent[data-state=open]:focus {
|
|
3314
|
-
background-color: var(--accent);
|
|
3332
|
+
background-color: var(--color-accent);
|
|
3315
3333
|
}
|
|
3316
3334
|
.turtle-widget-root .data-\[state\=selected\]\:bg-neutral-alpha-10[data-state=selected] {
|
|
3317
3335
|
background-color: var(--color-neutral-alpha-10);
|
|
@@ -3321,7 +3339,7 @@
|
|
|
3321
3339
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
3322
3340
|
}
|
|
3323
3341
|
.turtle-widget-root .data-\[state\=unchecked\]\:bg-input[data-state=unchecked] {
|
|
3324
|
-
background-color: var(--input);
|
|
3342
|
+
background-color: var(--color-input);
|
|
3325
3343
|
}
|
|
3326
3344
|
.turtle-widget-root .data-\[state\=visible\]\:animate-in[data-state=visible] {
|
|
3327
3345
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
@@ -3330,21 +3348,21 @@
|
|
|
3330
3348
|
--tw-enter-opacity: 0;
|
|
3331
3349
|
}
|
|
3332
3350
|
.turtle-widget-root .data-\[variant\=destructive\]\:text-destructive[data-variant=destructive] {
|
|
3333
|
-
color: var(--destructive);
|
|
3351
|
+
color: var(--color-destructive);
|
|
3334
3352
|
}
|
|
3335
3353
|
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus {
|
|
3336
|
-
background-color: var(--destructive);
|
|
3354
|
+
background-color: var(--color-destructive);
|
|
3337
3355
|
}
|
|
3338
3356
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3339
3357
|
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus {
|
|
3340
|
-
background-color: var(--destructive);
|
|
3358
|
+
background-color: var(--color-destructive);
|
|
3341
3359
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3342
|
-
background-color: color-mix(in oklab,var(--destructive)10%,transparent);
|
|
3360
|
+
background-color: color-mix(in oklab,var(--color-destructive)10%,transparent);
|
|
3343
3361
|
}
|
|
3344
3362
|
}
|
|
3345
3363
|
}
|
|
3346
3364
|
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:text-destructive[data-variant=destructive]:focus {
|
|
3347
|
-
color: var(--destructive);
|
|
3365
|
+
color: var(--color-destructive);
|
|
3348
3366
|
}
|
|
3349
3367
|
.turtle-widget-root .data-\[variant\=outline\]\:border-l-0[data-variant=outline] {
|
|
3350
3368
|
border-left-style: var(--tw-border-style);
|
|
@@ -3469,10 +3487,10 @@
|
|
|
3469
3487
|
min-width: calc(var(--spacing)*0);
|
|
3470
3488
|
}
|
|
3471
3489
|
.turtle-widget-root .lg\:rounded-lg {
|
|
3472
|
-
border-radius: var(--radius);
|
|
3490
|
+
border-radius: var(--radius-lg);
|
|
3473
3491
|
}
|
|
3474
3492
|
.turtle-widget-root .lg\:bg-background {
|
|
3475
|
-
background-color: var(--background);
|
|
3493
|
+
background-color: var(--color-background);
|
|
3476
3494
|
}
|
|
3477
3495
|
.turtle-widget-root .lg\:p-10 {
|
|
3478
3496
|
padding: calc(var(--spacing)*10);
|
|
@@ -3495,36 +3513,36 @@
|
|
|
3495
3513
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
3496
3514
|
}
|
|
3497
3515
|
.turtle-widget-root .lg\:ring-border {
|
|
3498
|
-
--tw-ring-color: var(--border);
|
|
3516
|
+
--tw-ring-color: var(--color-border);
|
|
3499
3517
|
}
|
|
3500
3518
|
}
|
|
3501
3519
|
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
3502
|
-
background-color: var(--destructive);
|
|
3520
|
+
background-color: var(--color-destructive);
|
|
3503
3521
|
}
|
|
3504
3522
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3505
3523
|
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
3506
|
-
background-color: var(--destructive);
|
|
3524
|
+
background-color: var(--color-destructive);
|
|
3507
3525
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3508
|
-
background-color: color-mix(in oklab,var(--destructive)60%,transparent);
|
|
3526
|
+
background-color: color-mix(in oklab,var(--color-destructive)60%,transparent);
|
|
3509
3527
|
}
|
|
3510
3528
|
}
|
|
3511
3529
|
}
|
|
3512
3530
|
.turtle-widget-root .dark\:bg-input\/30:is(.dark *) {
|
|
3513
|
-
background-color: var(--input);
|
|
3531
|
+
background-color: var(--color-input);
|
|
3514
3532
|
}
|
|
3515
3533
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3516
3534
|
.turtle-widget-root .dark\:bg-input\/30:is(.dark *) {
|
|
3517
|
-
background-color: var(--input);
|
|
3535
|
+
background-color: var(--color-input);
|
|
3518
3536
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3519
|
-
background-color: color-mix(in oklab,var(--input)30%,transparent);
|
|
3537
|
+
background-color: color-mix(in oklab,var(--color-input)30%,transparent);
|
|
3520
3538
|
}
|
|
3521
3539
|
}
|
|
3522
3540
|
}
|
|
3523
3541
|
.turtle-widget-root .dark\:group-data-\[state\=checked\]\:bg-primary:is(.dark *):is(:where(.group)[data-state=checked] *) {
|
|
3524
|
-
background-color: var(--primary);
|
|
3542
|
+
background-color: var(--color-primary);
|
|
3525
3543
|
}
|
|
3526
3544
|
.turtle-widget-root .dark\:group-data-\[state\=unchecked\]\:bg-foreground:is(.dark *):is(:where(.group)[data-state=unchecked] *) {
|
|
3527
|
-
background-color: var(--foreground);
|
|
3545
|
+
background-color: var(--color-foreground);
|
|
3528
3546
|
}
|
|
3529
3547
|
.turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
|
|
3530
3548
|
content: var(--tw-content);
|
|
@@ -3558,80 +3576,80 @@
|
|
|
3558
3576
|
}
|
|
3559
3577
|
@media (hover:hover) {
|
|
3560
3578
|
.turtle-widget-root .dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
3561
|
-
background-color: var(--input);
|
|
3579
|
+
background-color: var(--color-input);
|
|
3562
3580
|
}
|
|
3563
3581
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3564
3582
|
.turtle-widget-root .dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
3565
|
-
background-color: var(--input);
|
|
3583
|
+
background-color: var(--color-input);
|
|
3566
3584
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3567
|
-
background-color: color-mix(in oklab,var(--input)50%,transparent);
|
|
3585
|
+
background-color: color-mix(in oklab,var(--color-input)50%,transparent);
|
|
3568
3586
|
}
|
|
3569
3587
|
}
|
|
3570
3588
|
}
|
|
3571
3589
|
}
|
|
3572
3590
|
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
3573
|
-
--tw-ring-color: var(--destructive);
|
|
3591
|
+
--tw-ring-color: var(--color-destructive);
|
|
3574
3592
|
}
|
|
3575
3593
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3576
3594
|
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
3577
|
-
--tw-ring-color: var(--destructive);
|
|
3595
|
+
--tw-ring-color: var(--color-destructive);
|
|
3578
3596
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3579
|
-
--tw-ring-color: color-mix(in oklab,var(--destructive)40%,transparent);
|
|
3597
|
+
--tw-ring-color: color-mix(in oklab,var(--color-destructive)40%,transparent);
|
|
3580
3598
|
}
|
|
3581
3599
|
}
|
|
3582
3600
|
}
|
|
3583
3601
|
.turtle-widget-root .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true] {
|
|
3584
|
-
--tw-ring-color: var(--destructive);
|
|
3602
|
+
--tw-ring-color: var(--color-destructive);
|
|
3585
3603
|
}
|
|
3586
3604
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3587
3605
|
.turtle-widget-root .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true] {
|
|
3588
|
-
--tw-ring-color: var(--destructive);
|
|
3606
|
+
--tw-ring-color: var(--color-destructive);
|
|
3589
3607
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3590
|
-
--tw-ring-color: color-mix(in oklab,var(--destructive)40%,transparent);
|
|
3608
|
+
--tw-ring-color: color-mix(in oklab,var(--color-destructive)40%,transparent);
|
|
3591
3609
|
}
|
|
3592
3610
|
}
|
|
3593
3611
|
}
|
|
3594
3612
|
.turtle-widget-root .dark\:data-\[state\=checked\]\:bg-primary:is(.dark *)[data-state=checked] {
|
|
3595
|
-
background-color: var(--primary);
|
|
3613
|
+
background-color: var(--color-primary);
|
|
3596
3614
|
}
|
|
3597
3615
|
.turtle-widget-root .dark\:data-\[state\=unchecked\]\:bg-input\/80:is(.dark *)[data-state=unchecked] {
|
|
3598
|
-
background-color: var(--input);
|
|
3616
|
+
background-color: var(--color-input);
|
|
3599
3617
|
}
|
|
3600
3618
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3601
3619
|
.turtle-widget-root .dark\:data-\[state\=unchecked\]\:bg-input\/80:is(.dark *)[data-state=unchecked] {
|
|
3602
|
-
background-color: var(--input);
|
|
3620
|
+
background-color: var(--color-input);
|
|
3603
3621
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3604
|
-
background-color: color-mix(in oklab,var(--input)80%,transparent);
|
|
3622
|
+
background-color: color-mix(in oklab,var(--color-input)80%,transparent);
|
|
3605
3623
|
}
|
|
3606
3624
|
}
|
|
3607
3625
|
}
|
|
3608
3626
|
.turtle-widget-root .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant=destructive]:focus {
|
|
3609
|
-
background-color: var(--destructive);
|
|
3627
|
+
background-color: var(--color-destructive);
|
|
3610
3628
|
}
|
|
3611
3629
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3612
3630
|
.turtle-widget-root .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant=destructive]:focus {
|
|
3613
|
-
background-color: var(--destructive);
|
|
3631
|
+
background-color: var(--color-destructive);
|
|
3614
3632
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3615
|
-
background-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
3633
|
+
background-color: color-mix(in oklab,var(--color-destructive)20%,transparent);
|
|
3616
3634
|
}
|
|
3617
3635
|
}
|
|
3618
3636
|
}
|
|
3619
3637
|
.turtle-widget-root .\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text {
|
|
3620
|
-
fill: var(--muted-foreground);
|
|
3638
|
+
fill: var(--color-muted-foreground);
|
|
3621
3639
|
}
|
|
3622
3640
|
.turtle-widget-root .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
|
|
3623
|
-
stroke: var(--border);
|
|
3641
|
+
stroke: var(--color-border);
|
|
3624
3642
|
}
|
|
3625
3643
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3626
3644
|
.turtle-widget-root .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
|
|
3627
|
-
stroke: var(--border);
|
|
3645
|
+
stroke: var(--color-border);
|
|
3628
3646
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3629
|
-
stroke: color-mix(in oklab,var(--border)50%,transparent);
|
|
3647
|
+
stroke: color-mix(in oklab,var(--color-border)50%,transparent);
|
|
3630
3648
|
}
|
|
3631
3649
|
}
|
|
3632
3650
|
}
|
|
3633
3651
|
.turtle-widget-root .\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor {
|
|
3634
|
-
stroke: var(--border);
|
|
3652
|
+
stroke: var(--color-border);
|
|
3635
3653
|
}
|
|
3636
3654
|
.turtle-widget-root .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] {
|
|
3637
3655
|
stroke: #0000;
|
|
@@ -3647,13 +3665,13 @@
|
|
|
3647
3665
|
}
|
|
3648
3666
|
}
|
|
3649
3667
|
.turtle-widget-root .\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"] {
|
|
3650
|
-
stroke: var(--border);
|
|
3668
|
+
stroke: var(--color-border);
|
|
3651
3669
|
}
|
|
3652
3670
|
.turtle-widget-root .\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector, .turtle-widget-root .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor {
|
|
3653
|
-
fill: var(--muted);
|
|
3671
|
+
fill: var(--color-muted);
|
|
3654
3672
|
}
|
|
3655
3673
|
.turtle-widget-root .\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"] {
|
|
3656
|
-
stroke: var(--border);
|
|
3674
|
+
stroke: var(--color-border);
|
|
3657
3675
|
}
|
|
3658
3676
|
.turtle-widget-root .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector {
|
|
3659
3677
|
--tw-outline-style: none;
|
|
@@ -3689,7 +3707,7 @@
|
|
|
3689
3707
|
height: calc(var(--spacing)*4);
|
|
3690
3708
|
}
|
|
3691
3709
|
.turtle-widget-root .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]) {
|
|
3692
|
-
color: var(--muted-foreground);
|
|
3710
|
+
color: var(--color-muted-foreground);
|
|
3693
3711
|
}
|
|
3694
3712
|
.turtle-widget-root .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
3695
3713
|
padding-right: calc(var(--spacing)*0);
|
|
@@ -3704,7 +3722,7 @@
|
|
|
3704
3722
|
gap: calc(var(--spacing)*2);
|
|
3705
3723
|
}
|
|
3706
3724
|
.turtle-widget-root :is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive[data-variant=destructive]>*):is(svg) {
|
|
3707
|
-
color: var(--destructive) !important;
|
|
3725
|
+
color: var(--color-destructive) !important;
|
|
3708
3726
|
}
|
|
3709
3727
|
@media (hover:hover) {
|
|
3710
3728
|
.turtle-widget-root .hover\:\[\&\>\[data-slot\=\"table-cell\"\]\]\:bg-neutral-alpha-5:hover>[data-slot=table-cell] {
|
|
@@ -3738,7 +3756,7 @@
|
|
|
3738
3756
|
width: calc(var(--spacing)*3);
|
|
3739
3757
|
}
|
|
3740
3758
|
.turtle-widget-root .\[\&\>svg\]\:text-muted-foreground>svg {
|
|
3741
|
-
color: var(--muted-foreground);
|
|
3759
|
+
color: var(--color-muted-foreground);
|
|
3742
3760
|
}
|
|
3743
3761
|
.turtle-widget-root .\[\&\>tr\]\:last\:border-b-0>tr:last-child {
|
|
3744
3762
|
border-bottom-style: var(--tw-border-style);
|
|
@@ -3746,43 +3764,43 @@
|
|
|
3746
3764
|
}
|
|
3747
3765
|
@media (hover:hover) {
|
|
3748
3766
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-accent:hover {
|
|
3749
|
-
background-color: var(--accent);
|
|
3767
|
+
background-color: var(--color-accent);
|
|
3750
3768
|
}
|
|
3751
3769
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
3752
|
-
background-color: var(--destructive);
|
|
3770
|
+
background-color: var(--color-destructive);
|
|
3753
3771
|
}
|
|
3754
3772
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3755
3773
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
3756
|
-
background-color: var(--destructive);
|
|
3774
|
+
background-color: var(--color-destructive);
|
|
3757
3775
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3758
|
-
background-color: color-mix(in oklab,var(--destructive)90%,transparent);
|
|
3776
|
+
background-color: color-mix(in oklab,var(--color-destructive)90%,transparent);
|
|
3759
3777
|
}
|
|
3760
3778
|
}
|
|
3761
3779
|
}
|
|
3762
3780
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
3763
|
-
background-color: var(--primary);
|
|
3781
|
+
background-color: var(--color-primary);
|
|
3764
3782
|
}
|
|
3765
3783
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3766
3784
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
3767
|
-
background-color: var(--primary);
|
|
3785
|
+
background-color: var(--color-primary);
|
|
3768
3786
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3769
|
-
background-color: color-mix(in oklab,var(--primary)90%,transparent);
|
|
3787
|
+
background-color: color-mix(in oklab,var(--color-primary)90%,transparent);
|
|
3770
3788
|
}
|
|
3771
3789
|
}
|
|
3772
3790
|
}
|
|
3773
3791
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
3774
|
-
background-color: var(--secondary);
|
|
3792
|
+
background-color: var(--color-secondary);
|
|
3775
3793
|
}
|
|
3776
3794
|
@supports (color:color-mix(in lab,red,red)) {
|
|
3777
3795
|
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
3778
|
-
background-color: var(--secondary);
|
|
3796
|
+
background-color: var(--color-secondary);
|
|
3779
3797
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3780
|
-
background-color: color-mix(in oklab,var(--secondary)90%,transparent);
|
|
3798
|
+
background-color: color-mix(in oklab,var(--color-secondary)90%,transparent);
|
|
3781
3799
|
}
|
|
3782
3800
|
}
|
|
3783
3801
|
}
|
|
3784
3802
|
.turtle-widget-root a.\[a\&\]\:hover\:text-accent-foreground:hover {
|
|
3785
|
-
color: var(--accent-foreground);
|
|
3803
|
+
color: var(--color-accent-foreground);
|
|
3786
3804
|
}
|
|
3787
3805
|
}
|
|
3788
3806
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/earn-widget",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.25",
|
|
4
4
|
"description": "Configurable and self-contained Turtle Earn widget for third-party integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@tailwindcss/postcss": "^4.1.11",
|
|
43
43
|
"@turtleclub/hooks": "0.2.1-beta.3",
|
|
44
|
-
"@turtleclub/ui": "0.3.0-beta.
|
|
44
|
+
"@turtleclub/ui": "0.3.0-beta.19",
|
|
45
45
|
"class-variance-authority": "^0.7.1",
|
|
46
46
|
"clsx": "^2.1.1",
|
|
47
47
|
"jotai": "^2.10.5",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "b8f49dc83bd073af3083ee41976c3041e169845b"
|
|
83
83
|
}
|