@tuwaio/nova-core 0.0.9 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -5
- package/dist/index.cjs +48 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +590 -70
- package/dist/index.d.cts +86 -1
- package/dist/index.d.ts +86 -1
- package/dist/index.js +48 -1
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
package/dist/index.css
CHANGED
|
@@ -1,73 +1,593 @@
|
|
|
1
|
+
/*! tailwindcss v4.1.15 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--novacore-color-black: #000;
|
|
7
|
+
--novacore-spacing: 0.25rem;
|
|
8
|
+
--novacore-text-sm: 0.875rem;
|
|
9
|
+
--novacore-text-sm--line-height: calc(1.25 / 0.875);
|
|
10
|
+
--novacore-text-lg: 1.125rem;
|
|
11
|
+
--novacore-text-lg--line-height: calc(1.75 / 1.125);
|
|
12
|
+
--novacore-font-weight-semibold: 600;
|
|
13
|
+
--novacore-font-weight-bold: 700;
|
|
14
|
+
--novacore-tracking-tight: -0.025em;
|
|
15
|
+
--novacore-radius-md: 0.375rem;
|
|
16
|
+
--novacore-radius-2xl: 1rem;
|
|
17
|
+
--novacore-blur-sm: 8px;
|
|
18
|
+
--novacore-default-transition-duration: 150ms;
|
|
19
|
+
--novacore-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@layer utilities {
|
|
23
|
+
.novacore\:absolute {
|
|
24
|
+
position: absolute;
|
|
25
|
+
}
|
|
26
|
+
.novacore\:fixed {
|
|
27
|
+
position: fixed;
|
|
28
|
+
}
|
|
29
|
+
.novacore\:relative {
|
|
30
|
+
position: relative;
|
|
31
|
+
}
|
|
32
|
+
.novacore\:sticky {
|
|
33
|
+
position: sticky;
|
|
34
|
+
}
|
|
35
|
+
.novacore\:inset-0 {
|
|
36
|
+
inset: calc(var(--novacore-spacing) * 0);
|
|
37
|
+
}
|
|
38
|
+
.novacore\:top-0 {
|
|
39
|
+
top: calc(var(--novacore-spacing) * 0);
|
|
40
|
+
}
|
|
41
|
+
.novacore\:top-2 {
|
|
42
|
+
top: calc(var(--novacore-spacing) * 2);
|
|
43
|
+
}
|
|
44
|
+
.novacore\:right-2 {
|
|
45
|
+
right: calc(var(--novacore-spacing) * 2);
|
|
46
|
+
}
|
|
47
|
+
.novacore\:bottom-0 {
|
|
48
|
+
bottom: calc(var(--novacore-spacing) * 0);
|
|
49
|
+
}
|
|
50
|
+
.novacore\:left-0 {
|
|
51
|
+
left: calc(var(--novacore-spacing) * 0);
|
|
52
|
+
}
|
|
53
|
+
.novacore\:z-1 {
|
|
54
|
+
z-index: 1;
|
|
55
|
+
}
|
|
56
|
+
.novacore\:z-11 {
|
|
57
|
+
z-index: 11;
|
|
58
|
+
}
|
|
59
|
+
.novacore\:z-50 {
|
|
60
|
+
z-index: 50;
|
|
61
|
+
}
|
|
62
|
+
.novacore\:m-0 {
|
|
63
|
+
margin: calc(var(--novacore-spacing) * 0);
|
|
64
|
+
}
|
|
65
|
+
.novacore\:flex {
|
|
66
|
+
display: flex;
|
|
67
|
+
}
|
|
68
|
+
.novacore\:h-4 {
|
|
69
|
+
height: calc(var(--novacore-spacing) * 4);
|
|
70
|
+
}
|
|
71
|
+
.novacore\:h-5 {
|
|
72
|
+
height: calc(var(--novacore-spacing) * 5);
|
|
73
|
+
}
|
|
74
|
+
.novacore\:h-full {
|
|
75
|
+
height: 100%;
|
|
76
|
+
}
|
|
77
|
+
.novacore\:max-h-\[98dvh\] {
|
|
78
|
+
max-height: 98dvh;
|
|
79
|
+
}
|
|
80
|
+
.novacore\:w-4 {
|
|
81
|
+
width: calc(var(--novacore-spacing) * 4);
|
|
82
|
+
}
|
|
83
|
+
.novacore\:w-5 {
|
|
84
|
+
width: calc(var(--novacore-spacing) * 5);
|
|
85
|
+
}
|
|
86
|
+
.novacore\:w-full {
|
|
87
|
+
width: 100%;
|
|
88
|
+
}
|
|
89
|
+
.novacore\:cursor-pointer {
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
}
|
|
92
|
+
.novacore\:flex-col {
|
|
93
|
+
flex-direction: column;
|
|
94
|
+
}
|
|
95
|
+
.novacore\:flex-col-reverse {
|
|
96
|
+
flex-direction: column-reverse;
|
|
97
|
+
}
|
|
98
|
+
.novacore\:flex-row {
|
|
99
|
+
flex-direction: row;
|
|
100
|
+
}
|
|
101
|
+
.novacore\:items-center {
|
|
102
|
+
align-items: center;
|
|
103
|
+
}
|
|
104
|
+
.novacore\:justify-between {
|
|
105
|
+
justify-content: space-between;
|
|
106
|
+
}
|
|
107
|
+
.novacore\:gap-1 {
|
|
108
|
+
gap: calc(var(--novacore-spacing) * 1);
|
|
109
|
+
}
|
|
110
|
+
.novacore\:gap-3 {
|
|
111
|
+
gap: calc(var(--novacore-spacing) * 3);
|
|
112
|
+
}
|
|
113
|
+
.novacore\:overflow-hidden {
|
|
114
|
+
overflow: hidden;
|
|
115
|
+
}
|
|
116
|
+
.novacore\:overflow-y-auto {
|
|
117
|
+
overflow-y: auto;
|
|
118
|
+
}
|
|
119
|
+
.novacore\:rounded-full {
|
|
120
|
+
border-radius: calc(infinity * 1px);
|
|
121
|
+
}
|
|
122
|
+
.novacore\:rounded-md {
|
|
123
|
+
border-radius: var(--novacore-radius-md);
|
|
124
|
+
}
|
|
125
|
+
.novacore\:rounded-t-2xl {
|
|
126
|
+
border-top-left-radius: var(--novacore-radius-2xl);
|
|
127
|
+
border-top-right-radius: var(--novacore-radius-2xl);
|
|
128
|
+
}
|
|
129
|
+
.novacore\:border {
|
|
130
|
+
border-style: var(--tw-border-style);
|
|
131
|
+
border-width: 1px;
|
|
132
|
+
}
|
|
133
|
+
.novacore\:border-b {
|
|
134
|
+
border-bottom-style: var(--tw-border-style);
|
|
135
|
+
border-bottom-width: 1px;
|
|
136
|
+
}
|
|
137
|
+
.novacore\:border-\[var\(--tuwa-border-primary\)\] {
|
|
138
|
+
border-color: var(--tuwa-border-primary);
|
|
139
|
+
}
|
|
140
|
+
.novacore\:bg-\[var\(--tuwa-bg-primary\)\] {
|
|
141
|
+
background-color: var(--tuwa-bg-primary);
|
|
142
|
+
}
|
|
143
|
+
.novacore\:bg-\[var\(--tuwa-standart-button-bg\)\] {
|
|
144
|
+
background-color: var(--tuwa-standart-button-bg);
|
|
145
|
+
}
|
|
146
|
+
.novacore\:bg-black\/55 {
|
|
147
|
+
background-color: var(--novacore-color-black);
|
|
148
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
149
|
+
& {
|
|
150
|
+
background-color: color-mix(in oklab, var(--novacore-color-black) 55%, transparent);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.novacore\:p-0 {
|
|
155
|
+
padding: calc(var(--novacore-spacing) * 0);
|
|
156
|
+
}
|
|
157
|
+
.novacore\:p-1 {
|
|
158
|
+
padding: calc(var(--novacore-spacing) * 1);
|
|
159
|
+
}
|
|
160
|
+
.novacore\:p-4 {
|
|
161
|
+
padding: calc(var(--novacore-spacing) * 4);
|
|
162
|
+
}
|
|
163
|
+
.novacore\:px-3 {
|
|
164
|
+
padding-inline: calc(var(--novacore-spacing) * 3);
|
|
165
|
+
}
|
|
166
|
+
.novacore\:py-2 {
|
|
167
|
+
padding-block: calc(var(--novacore-spacing) * 2);
|
|
168
|
+
}
|
|
169
|
+
.novacore\:text-lg {
|
|
170
|
+
font-size: var(--novacore-text-lg);
|
|
171
|
+
line-height: var(--tw-leading, var(--novacore-text-lg--line-height));
|
|
172
|
+
}
|
|
173
|
+
.novacore\:text-sm {
|
|
174
|
+
font-size: var(--novacore-text-sm);
|
|
175
|
+
line-height: var(--tw-leading, var(--novacore-text-sm--line-height));
|
|
176
|
+
}
|
|
177
|
+
.novacore\:leading-none {
|
|
178
|
+
--tw-leading: 1;
|
|
179
|
+
line-height: 1;
|
|
180
|
+
}
|
|
181
|
+
.novacore\:font-bold {
|
|
182
|
+
--tw-font-weight: var(--novacore-font-weight-bold);
|
|
183
|
+
font-weight: var(--novacore-font-weight-bold);
|
|
184
|
+
}
|
|
185
|
+
.novacore\:font-semibold {
|
|
186
|
+
--tw-font-weight: var(--novacore-font-weight-semibold);
|
|
187
|
+
font-weight: var(--novacore-font-weight-semibold);
|
|
188
|
+
}
|
|
189
|
+
.novacore\:tracking-tight {
|
|
190
|
+
--tw-tracking: var(--novacore-tracking-tight);
|
|
191
|
+
letter-spacing: var(--novacore-tracking-tight);
|
|
192
|
+
}
|
|
193
|
+
.novacore\:text-\[var\(--tuwa-text-primary\)\] {
|
|
194
|
+
color: var(--tuwa-text-primary);
|
|
195
|
+
}
|
|
196
|
+
.novacore\:text-\[var\(--tuwa-text-secondary\)\] {
|
|
197
|
+
color: var(--tuwa-text-secondary);
|
|
198
|
+
}
|
|
199
|
+
.novacore\:text-\[var\(--tuwa-text-tertiary\)\] {
|
|
200
|
+
color: var(--tuwa-text-tertiary);
|
|
201
|
+
}
|
|
202
|
+
.novacore\:shadow-2xl {
|
|
203
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
204
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
205
|
+
}
|
|
206
|
+
.novacore\:backdrop-blur-sm {
|
|
207
|
+
--tw-backdrop-blur: blur(var(--novacore-blur-sm));
|
|
208
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
209
|
+
}
|
|
210
|
+
.novacore\:backdrop-saturate-150 {
|
|
211
|
+
--tw-backdrop-saturate: saturate(150%);
|
|
212
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
213
|
+
}
|
|
214
|
+
.novacore\:transition-colors {
|
|
215
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
216
|
+
transition-timing-function: var(--tw-ease, var(--novacore-default-transition-timing-function));
|
|
217
|
+
transition-duration: var(--tw-duration, var(--novacore-default-transition-duration));
|
|
218
|
+
}
|
|
219
|
+
.novacore\:outline-none {
|
|
220
|
+
--tw-outline-style: none;
|
|
221
|
+
outline-style: none;
|
|
222
|
+
}
|
|
223
|
+
.novacore\:hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
224
|
+
&:hover {
|
|
225
|
+
@media (hover: hover) {
|
|
226
|
+
background-color: var(--tuwa-bg-muted);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.novacore\:hover\:bg-\[var\(--tuwa-standart-button-hover\)\] {
|
|
231
|
+
&:hover {
|
|
232
|
+
@media (hover: hover) {
|
|
233
|
+
background-color: var(--tuwa-standart-button-hover);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
.novacore\:hover\:text-\[var\(--tuwa-text-primary\)\] {
|
|
238
|
+
&:hover {
|
|
239
|
+
@media (hover: hover) {
|
|
240
|
+
color: var(--tuwa-text-primary);
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
.novacore\:disabled\:cursor-not-allowed {
|
|
245
|
+
&:disabled {
|
|
246
|
+
cursor: not-allowed;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
.novacore\:disabled\:opacity-50 {
|
|
250
|
+
&:disabled {
|
|
251
|
+
opacity: 50%;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
.novacore\:sm\:top-\[50\%\] {
|
|
255
|
+
@media (width >= 40rem) {
|
|
256
|
+
top: 50%;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
.novacore\:sm\:bottom-auto {
|
|
260
|
+
@media (width >= 40rem) {
|
|
261
|
+
bottom: auto;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
.novacore\:sm\:left-\[50\%\] {
|
|
265
|
+
@media (width >= 40rem) {
|
|
266
|
+
left: 50%;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
.novacore\:sm\:translate-x-\[-50\%\] {
|
|
270
|
+
@media (width >= 40rem) {
|
|
271
|
+
--tw-translate-x: -50%;
|
|
272
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
.novacore\:sm\:translate-y-\[-50\%\] {
|
|
276
|
+
@media (width >= 40rem) {
|
|
277
|
+
--tw-translate-y: -50%;
|
|
278
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
.novacore\:sm\:flex-row {
|
|
282
|
+
@media (width >= 40rem) {
|
|
283
|
+
flex-direction: row;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
.novacore\:sm\:justify-end {
|
|
287
|
+
@media (width >= 40rem) {
|
|
288
|
+
justify-content: flex-end;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
.novacore\:sm\:space-x-2 {
|
|
292
|
+
@media (width >= 40rem) {
|
|
293
|
+
:where(& > :not(:last-child)) {
|
|
294
|
+
--tw-space-x-reverse: 0;
|
|
295
|
+
margin-inline-start: calc(calc(var(--novacore-spacing) * 2) * var(--tw-space-x-reverse));
|
|
296
|
+
margin-inline-end: calc(calc(var(--novacore-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
.novacore\:sm\:rounded-2xl {
|
|
301
|
+
@media (width >= 40rem) {
|
|
302
|
+
border-radius: var(--novacore-radius-2xl);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
.novacore\:sm\:p-4 {
|
|
306
|
+
@media (width >= 40rem) {
|
|
307
|
+
padding: calc(var(--novacore-spacing) * 4);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
1
311
|
:root {
|
|
2
|
-
--tuwa-success-bg:
|
|
3
|
-
--tuwa-success-text:
|
|
4
|
-
--tuwa-success-icon:
|
|
5
|
-
|
|
6
|
-
--tuwa-error-
|
|
7
|
-
--tuwa-error-
|
|
8
|
-
--tuwa-
|
|
9
|
-
|
|
10
|
-
--tuwa-pending-
|
|
11
|
-
--tuwa-
|
|
12
|
-
--tuwa-
|
|
13
|
-
|
|
14
|
-
--tuwa-
|
|
15
|
-
--tuwa-
|
|
16
|
-
--tuwa-
|
|
17
|
-
|
|
18
|
-
--tuwa-text-
|
|
19
|
-
--tuwa-
|
|
20
|
-
--tuwa-
|
|
21
|
-
--tuwa-
|
|
22
|
-
--tuwa-
|
|
23
|
-
|
|
24
|
-
--tuwa-
|
|
25
|
-
--tuwa-
|
|
26
|
-
--tuwa-
|
|
27
|
-
|
|
28
|
-
--tuwa-
|
|
29
|
-
--tuwa-
|
|
30
|
-
|
|
31
|
-
--tuwa-button-gradient-from: theme('colors.blue.600');
|
|
32
|
-
--tuwa-button-gradient-to: theme('colors.purple.600');
|
|
33
|
-
|
|
34
|
-
--tuwa-button-gradient-from-hover: theme('colors.blue.700');
|
|
35
|
-
--tuwa-button-gradient-to-hover: theme('colors.purple.700');
|
|
36
|
-
}
|
|
37
|
-
|
|
312
|
+
--tuwa-success-bg: oklch(96.2% 0.044 156.743);
|
|
313
|
+
--tuwa-success-text: oklch(52.7% 0.154 150.069);
|
|
314
|
+
--tuwa-success-icon: oklch(72.3% 0.219 149.579);
|
|
315
|
+
--tuwa-error-bg: oklch(93.6% 0.032 17.717);
|
|
316
|
+
--tuwa-error-text: oklch(50.5% 0.213 27.518);
|
|
317
|
+
--tuwa-error-icon: oklch(63.7% 0.237 25.331);
|
|
318
|
+
--tuwa-pending-bg: oklch(97.3% 0.071 103.193);
|
|
319
|
+
--tuwa-pending-text: oklch(47.6% 0.114 61.907);
|
|
320
|
+
--tuwa-pending-icon: oklch(68.1% 0.162 75.834);
|
|
321
|
+
--tuwa-info-bg: oklch(96.7% 0.003 264.542);
|
|
322
|
+
--tuwa-info-text: oklch(44.6% 0.03 256.802);
|
|
323
|
+
--tuwa-info-icon: oklch(55.1% 0.027 264.364);
|
|
324
|
+
--tuwa-text-primary: oklch(21% 0.034 264.665);
|
|
325
|
+
--tuwa-text-secondary: oklch(55.1% 0.027 264.364);
|
|
326
|
+
--tuwa-text-tertiary: oklch(70.7% 0.022 261.325);
|
|
327
|
+
--tuwa-text-accent: oklch(54.6% 0.245 262.881);
|
|
328
|
+
--tuwa-text-on-accent: #fff;
|
|
329
|
+
--tuwa-bg-primary: #fff;
|
|
330
|
+
--tuwa-bg-secondary: oklch(98.5% 0.002 247.839);
|
|
331
|
+
--tuwa-bg-muted: oklch(96.7% 0.003 264.542);
|
|
332
|
+
--tuwa-border-primary: oklch(92.8% 0.006 264.531);
|
|
333
|
+
--tuwa-border-secondary: oklch(96.7% 0.003 264.542);
|
|
334
|
+
--tuwa-button-gradient-from: oklch(54.6% 0.245 262.881);
|
|
335
|
+
--tuwa-button-gradient-to: oklch(55.8% 0.288 302.321);
|
|
336
|
+
--tuwa-button-gradient-from-hover: oklch(48.8% 0.243 264.376);
|
|
337
|
+
--tuwa-button-gradient-to-hover: oklch(49.6% 0.265 301.924);
|
|
338
|
+
--tuwa-standart-button-bg: oklch(96.7% 0.003 264.542);
|
|
339
|
+
--tuwa-standart-button-hover: oklch(92.8% 0.006 264.531);
|
|
340
|
+
}
|
|
38
341
|
.dark {
|
|
39
|
-
--tuwa-success-bg:
|
|
40
|
-
--tuwa-success-text:
|
|
41
|
-
--tuwa-success-icon:
|
|
42
|
-
|
|
43
|
-
--tuwa-error-
|
|
44
|
-
--tuwa-error-
|
|
45
|
-
--tuwa-
|
|
46
|
-
|
|
47
|
-
--tuwa-pending-
|
|
48
|
-
--tuwa-
|
|
49
|
-
--tuwa-
|
|
50
|
-
|
|
51
|
-
--tuwa-
|
|
52
|
-
--tuwa-
|
|
53
|
-
--tuwa-
|
|
54
|
-
|
|
55
|
-
--tuwa-text-
|
|
56
|
-
--tuwa-
|
|
57
|
-
--tuwa-
|
|
58
|
-
--tuwa-
|
|
59
|
-
--tuwa-
|
|
60
|
-
|
|
61
|
-
--tuwa-
|
|
62
|
-
--tuwa-
|
|
63
|
-
--tuwa-
|
|
64
|
-
|
|
65
|
-
--tuwa-
|
|
66
|
-
--tuwa-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
342
|
+
--tuwa-success-bg: oklch(39.3% 0.095 152.535);
|
|
343
|
+
--tuwa-success-text: oklch(87.1% 0.15 154.449);
|
|
344
|
+
--tuwa-success-icon: oklch(79.2% 0.209 151.711);
|
|
345
|
+
--tuwa-error-bg: oklch(39.6% 0.141 25.723);
|
|
346
|
+
--tuwa-error-text: oklch(80.8% 0.114 19.571);
|
|
347
|
+
--tuwa-error-icon: oklch(70.4% 0.191 22.216);
|
|
348
|
+
--tuwa-pending-bg: oklch(42.1% 0.095 57.708);
|
|
349
|
+
--tuwa-pending-text: oklch(90.5% 0.182 98.111);
|
|
350
|
+
--tuwa-pending-icon: oklch(85.2% 0.199 91.936);
|
|
351
|
+
--tuwa-info-bg: oklch(37.3% 0.034 259.733);
|
|
352
|
+
--tuwa-info-text: oklch(87.2% 0.01 258.338);
|
|
353
|
+
--tuwa-info-icon: oklch(70.7% 0.022 261.325);
|
|
354
|
+
--tuwa-text-primary: oklch(98.5% 0.002 247.839);
|
|
355
|
+
--tuwa-text-secondary: oklch(70.7% 0.022 261.325);
|
|
356
|
+
--tuwa-text-tertiary: oklch(55.1% 0.027 264.364);
|
|
357
|
+
--tuwa-text-accent: oklch(70.7% 0.165 254.624);
|
|
358
|
+
--tuwa-text-on-accent: #fff;
|
|
359
|
+
--tuwa-bg-primary: oklch(21% 0.034 264.665);
|
|
360
|
+
--tuwa-bg-secondary: oklch(27.8% 0.033 256.848);
|
|
361
|
+
--tuwa-bg-muted: oklch(37.3% 0.034 259.733);
|
|
362
|
+
--tuwa-border-primary: oklch(37.3% 0.034 259.733);
|
|
363
|
+
--tuwa-border-secondary: oklch(27.8% 0.033 256.848);
|
|
364
|
+
--tuwa-button-gradient-from: oklch(62.3% 0.214 259.815);
|
|
365
|
+
--tuwa-button-gradient-to: oklch(62.7% 0.265 303.9);
|
|
366
|
+
--tuwa-button-gradient-from-hover: oklch(54.6% 0.245 262.881);
|
|
367
|
+
--tuwa-button-gradient-to-hover: oklch(55.8% 0.288 302.321);
|
|
368
|
+
--tuwa-standart-button-bg: oklch(37.3% 0.034 259.733);
|
|
369
|
+
--tuwa-standart-button-hover: oklch(27.8% 0.033 256.848);
|
|
370
|
+
}
|
|
371
|
+
.Toastify {
|
|
372
|
+
pointer-events: auto;
|
|
373
|
+
}
|
|
374
|
+
.Toastify__toast {
|
|
375
|
+
padding: 0;
|
|
376
|
+
background: transparent;
|
|
377
|
+
}
|
|
378
|
+
@media (hover: hover) {
|
|
379
|
+
.NovaNoScrolling {
|
|
380
|
+
scrollbar-width: none;
|
|
381
|
+
}
|
|
382
|
+
.NovaCustomScroll {
|
|
383
|
+
animation: scrolling forwards;
|
|
384
|
+
animation-timeline: scroll(self);
|
|
385
|
+
}
|
|
386
|
+
.NovaCustomScroll::-webkit-scrollbar {
|
|
387
|
+
width: 4px;
|
|
388
|
+
border-radius: 4px;
|
|
389
|
+
background-color: var(--tuwa-border-primary);
|
|
390
|
+
}
|
|
391
|
+
.NovaCustomScroll::-webkit-scrollbar-thumb {
|
|
392
|
+
background-color: var(--tuwa-text-secondary);
|
|
393
|
+
border-radius: 4px;
|
|
394
|
+
}
|
|
395
|
+
.NovaCustomScroll::-webkit-scrollbar-thumb:hover {
|
|
396
|
+
background-color: var(--tuwa-text-primary);
|
|
397
|
+
}
|
|
398
|
+
@keyframes scrolling {
|
|
399
|
+
0%,to {
|
|
400
|
+
padding-right: 2px;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
.NovaCustomScrollNoPadding::-webkit-scrollbar {
|
|
404
|
+
width: 4px;
|
|
405
|
+
border-radius: 4px;
|
|
406
|
+
background-color: var(--tuwa-border-primary);
|
|
407
|
+
}
|
|
408
|
+
.NovaCustomScrollNoPadding::-webkit-scrollbar-thumb {
|
|
409
|
+
background-color: var(--tuwa-text-secondary);
|
|
410
|
+
border-radius: 4px;
|
|
411
|
+
}
|
|
412
|
+
.NovaCustomScrollNoPadding::-webkit-scrollbar-thumb:hover {
|
|
413
|
+
background-color: var(--tuwa-text-primary);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
.NovaModalOpen {
|
|
417
|
+
overflow: hidden;
|
|
418
|
+
}
|
|
419
|
+
@property --tw-border-style {
|
|
420
|
+
syntax: "*";
|
|
421
|
+
inherits: false;
|
|
422
|
+
initial-value: solid;
|
|
423
|
+
}
|
|
424
|
+
@property --tw-leading {
|
|
425
|
+
syntax: "*";
|
|
426
|
+
inherits: false;
|
|
427
|
+
}
|
|
428
|
+
@property --tw-font-weight {
|
|
429
|
+
syntax: "*";
|
|
430
|
+
inherits: false;
|
|
431
|
+
}
|
|
432
|
+
@property --tw-tracking {
|
|
433
|
+
syntax: "*";
|
|
434
|
+
inherits: false;
|
|
435
|
+
}
|
|
436
|
+
@property --tw-shadow {
|
|
437
|
+
syntax: "*";
|
|
438
|
+
inherits: false;
|
|
439
|
+
initial-value: 0 0 #0000;
|
|
440
|
+
}
|
|
441
|
+
@property --tw-shadow-color {
|
|
442
|
+
syntax: "*";
|
|
443
|
+
inherits: false;
|
|
444
|
+
}
|
|
445
|
+
@property --tw-shadow-alpha {
|
|
446
|
+
syntax: "<percentage>";
|
|
447
|
+
inherits: false;
|
|
448
|
+
initial-value: 100%;
|
|
449
|
+
}
|
|
450
|
+
@property --tw-inset-shadow {
|
|
451
|
+
syntax: "*";
|
|
452
|
+
inherits: false;
|
|
453
|
+
initial-value: 0 0 #0000;
|
|
454
|
+
}
|
|
455
|
+
@property --tw-inset-shadow-color {
|
|
456
|
+
syntax: "*";
|
|
457
|
+
inherits: false;
|
|
458
|
+
}
|
|
459
|
+
@property --tw-inset-shadow-alpha {
|
|
460
|
+
syntax: "<percentage>";
|
|
461
|
+
inherits: false;
|
|
462
|
+
initial-value: 100%;
|
|
463
|
+
}
|
|
464
|
+
@property --tw-ring-color {
|
|
465
|
+
syntax: "*";
|
|
466
|
+
inherits: false;
|
|
467
|
+
}
|
|
468
|
+
@property --tw-ring-shadow {
|
|
469
|
+
syntax: "*";
|
|
470
|
+
inherits: false;
|
|
471
|
+
initial-value: 0 0 #0000;
|
|
472
|
+
}
|
|
473
|
+
@property --tw-inset-ring-color {
|
|
474
|
+
syntax: "*";
|
|
475
|
+
inherits: false;
|
|
476
|
+
}
|
|
477
|
+
@property --tw-inset-ring-shadow {
|
|
478
|
+
syntax: "*";
|
|
479
|
+
inherits: false;
|
|
480
|
+
initial-value: 0 0 #0000;
|
|
481
|
+
}
|
|
482
|
+
@property --tw-ring-inset {
|
|
483
|
+
syntax: "*";
|
|
484
|
+
inherits: false;
|
|
485
|
+
}
|
|
486
|
+
@property --tw-ring-offset-width {
|
|
487
|
+
syntax: "<length>";
|
|
488
|
+
inherits: false;
|
|
489
|
+
initial-value: 0px;
|
|
490
|
+
}
|
|
491
|
+
@property --tw-ring-offset-color {
|
|
492
|
+
syntax: "*";
|
|
493
|
+
inherits: false;
|
|
494
|
+
initial-value: #fff;
|
|
495
|
+
}
|
|
496
|
+
@property --tw-ring-offset-shadow {
|
|
497
|
+
syntax: "*";
|
|
498
|
+
inherits: false;
|
|
499
|
+
initial-value: 0 0 #0000;
|
|
500
|
+
}
|
|
501
|
+
@property --tw-backdrop-blur {
|
|
502
|
+
syntax: "*";
|
|
503
|
+
inherits: false;
|
|
504
|
+
}
|
|
505
|
+
@property --tw-backdrop-brightness {
|
|
506
|
+
syntax: "*";
|
|
507
|
+
inherits: false;
|
|
508
|
+
}
|
|
509
|
+
@property --tw-backdrop-contrast {
|
|
510
|
+
syntax: "*";
|
|
511
|
+
inherits: false;
|
|
512
|
+
}
|
|
513
|
+
@property --tw-backdrop-grayscale {
|
|
514
|
+
syntax: "*";
|
|
515
|
+
inherits: false;
|
|
516
|
+
}
|
|
517
|
+
@property --tw-backdrop-hue-rotate {
|
|
518
|
+
syntax: "*";
|
|
519
|
+
inherits: false;
|
|
520
|
+
}
|
|
521
|
+
@property --tw-backdrop-invert {
|
|
522
|
+
syntax: "*";
|
|
523
|
+
inherits: false;
|
|
524
|
+
}
|
|
525
|
+
@property --tw-backdrop-opacity {
|
|
526
|
+
syntax: "*";
|
|
527
|
+
inherits: false;
|
|
528
|
+
}
|
|
529
|
+
@property --tw-backdrop-saturate {
|
|
530
|
+
syntax: "*";
|
|
531
|
+
inherits: false;
|
|
532
|
+
}
|
|
533
|
+
@property --tw-backdrop-sepia {
|
|
534
|
+
syntax: "*";
|
|
535
|
+
inherits: false;
|
|
536
|
+
}
|
|
537
|
+
@property --tw-translate-x {
|
|
538
|
+
syntax: "*";
|
|
539
|
+
inherits: false;
|
|
540
|
+
initial-value: 0;
|
|
541
|
+
}
|
|
542
|
+
@property --tw-translate-y {
|
|
543
|
+
syntax: "*";
|
|
544
|
+
inherits: false;
|
|
545
|
+
initial-value: 0;
|
|
546
|
+
}
|
|
547
|
+
@property --tw-translate-z {
|
|
548
|
+
syntax: "*";
|
|
549
|
+
inherits: false;
|
|
550
|
+
initial-value: 0;
|
|
551
|
+
}
|
|
552
|
+
@property --tw-space-x-reverse {
|
|
553
|
+
syntax: "*";
|
|
554
|
+
inherits: false;
|
|
555
|
+
initial-value: 0;
|
|
556
|
+
}
|
|
557
|
+
@layer properties {
|
|
558
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
559
|
+
*, ::before, ::after, ::backdrop {
|
|
560
|
+
--tw-border-style: solid;
|
|
561
|
+
--tw-leading: initial;
|
|
562
|
+
--tw-font-weight: initial;
|
|
563
|
+
--tw-tracking: initial;
|
|
564
|
+
--tw-shadow: 0 0 #0000;
|
|
565
|
+
--tw-shadow-color: initial;
|
|
566
|
+
--tw-shadow-alpha: 100%;
|
|
567
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
568
|
+
--tw-inset-shadow-color: initial;
|
|
569
|
+
--tw-inset-shadow-alpha: 100%;
|
|
570
|
+
--tw-ring-color: initial;
|
|
571
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
572
|
+
--tw-inset-ring-color: initial;
|
|
573
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
574
|
+
--tw-ring-inset: initial;
|
|
575
|
+
--tw-ring-offset-width: 0px;
|
|
576
|
+
--tw-ring-offset-color: #fff;
|
|
577
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
578
|
+
--tw-backdrop-blur: initial;
|
|
579
|
+
--tw-backdrop-brightness: initial;
|
|
580
|
+
--tw-backdrop-contrast: initial;
|
|
581
|
+
--tw-backdrop-grayscale: initial;
|
|
582
|
+
--tw-backdrop-hue-rotate: initial;
|
|
583
|
+
--tw-backdrop-invert: initial;
|
|
584
|
+
--tw-backdrop-opacity: initial;
|
|
585
|
+
--tw-backdrop-saturate: initial;
|
|
586
|
+
--tw-backdrop-sepia: initial;
|
|
587
|
+
--tw-translate-x: 0;
|
|
588
|
+
--tw-translate-y: 0;
|
|
589
|
+
--tw-translate-z: 0;
|
|
590
|
+
--tw-space-x-reverse: 0;
|
|
591
|
+
}
|
|
592
|
+
}
|
|
73
593
|
}
|