@rash2x/bridge-widget 0.1.18 → 0.1.19
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 +47 -18
- package/dist/assets/fonts/Gilroy-Black.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Bold.ttf +0 -0
- package/dist/assets/fonts/Gilroy-ExtraBold.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Heavy.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Light.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Medium.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Regular.ttf +0 -0
- package/dist/assets/fonts/Gilroy-SemiBold.ttf +0 -0
- package/dist/assets/fonts/Gilroy-Thin.ttf +0 -0
- package/dist/assets/fonts/Gilroy-UltraLight.ttf +0 -0
- package/dist/assets/fonts/fonts.css +81 -0
- package/dist/assets/fonts/hanson-bold.woff +0 -0
- package/dist/assets/fonts/hanson-bold.woff2 +0 -0
- package/dist/styles.css +1 -259
- package/dist/tonconnect-manifest.json +7 -0
- package/dist/vite.svg +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -194,38 +194,67 @@ function App() {
|
|
|
194
194
|
|
|
195
195
|
## Styling
|
|
196
196
|
|
|
197
|
-
The widget
|
|
197
|
+
The widget comes with pre-compiled Tailwind CSS styles. **You don't need to have Tailwind installed** in your project for the widget to work.
|
|
198
198
|
|
|
199
|
-
###
|
|
199
|
+
### Basic Usage
|
|
200
200
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
'./src/**/*.{js,ts,jsx,tsx}',
|
|
206
|
-
'./node_modules/@evaa/bridge-widget/**/*.{js,mjs}',
|
|
207
|
-
],
|
|
208
|
-
// ... rest of your config
|
|
209
|
-
};
|
|
201
|
+
Simply import the styles and you're good to go:
|
|
202
|
+
|
|
203
|
+
```tsx
|
|
204
|
+
import '@evaa/bridge-widget/styles.css';
|
|
210
205
|
```
|
|
211
206
|
|
|
212
|
-
|
|
207
|
+
All Tailwind utility classes used by the widget are already included in the compiled CSS.
|
|
213
208
|
|
|
214
|
-
|
|
209
|
+
### Theme Customization
|
|
210
|
+
|
|
211
|
+
#### Option 1: CSS Variables (Simple)
|
|
212
|
+
|
|
213
|
+
Customize colors by overriding CSS variables in your own stylesheet:
|
|
215
214
|
|
|
216
215
|
```css
|
|
217
216
|
:root {
|
|
218
|
-
--primary: #
|
|
219
|
-
--background: #
|
|
220
|
-
/*
|
|
217
|
+
--primary: #0095f9; /* Primary brand color */
|
|
218
|
+
--background: #ffffff; /* Background color */
|
|
219
|
+
--foreground: #171717; /* Text color */
|
|
220
|
+
--card: #f2f2f2; /* Card background */
|
|
221
|
+
--border: #00000029; /* Border color */
|
|
222
|
+
/* ... see styles.css for all available variables */
|
|
221
223
|
}
|
|
222
224
|
|
|
223
225
|
[data-theme="dark"] {
|
|
224
|
-
--primary: #
|
|
225
|
-
|
|
226
|
+
--primary: #5200ff;
|
|
227
|
+
--background: #000000;
|
|
228
|
+
--foreground: #ffffff;
|
|
229
|
+
/* ... dark theme overrides */
|
|
226
230
|
}
|
|
227
231
|
```
|
|
228
232
|
|
|
233
|
+
#### Option 2: Tailwind Integration (Advanced)
|
|
234
|
+
|
|
235
|
+
If your project already uses Tailwind CSS and you want full control:
|
|
236
|
+
|
|
237
|
+
1. Add the widget to your Tailwind `content` configuration:
|
|
238
|
+
|
|
239
|
+
```js
|
|
240
|
+
// tailwind.config.js
|
|
241
|
+
module.exports = {
|
|
242
|
+
content: [
|
|
243
|
+
'./src/**/*.{js,ts,jsx,tsx}',
|
|
244
|
+
'./node_modules/@evaa/bridge-widget/**/*.{js,mjs}', // Add this line
|
|
245
|
+
],
|
|
246
|
+
theme: {
|
|
247
|
+
extend: {
|
|
248
|
+
// Your custom theme extensions will apply to the widget
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
};
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
2. The widget will use your project's Tailwind configuration in addition to its pre-compiled styles.
|
|
255
|
+
|
|
256
|
+
**Note:** The widget will work perfectly fine without Tailwind in your project.
|
|
257
|
+
|
|
229
258
|
## Advanced Usage
|
|
230
259
|
|
|
231
260
|
### Using Stores Directly
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* fonts.css */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Gilroy';
|
|
4
|
+
src: url('/assets/fonts/Gilroy-Thin.ttf') format('truetype');
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 100;
|
|
7
|
+
font-display: swap;
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: 'Gilroy';
|
|
11
|
+
src: url('/assets/fonts/Gilroy-UltraLight.ttf') format('truetype');
|
|
12
|
+
font-style: normal;
|
|
13
|
+
font-weight: 200;
|
|
14
|
+
font-display: swap;
|
|
15
|
+
}
|
|
16
|
+
@font-face {
|
|
17
|
+
font-family: 'Gilroy';
|
|
18
|
+
src: url('/assets/fonts/Gilroy-Light.ttf') format('truetype');
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-weight: 300;
|
|
21
|
+
font-display: swap;
|
|
22
|
+
}
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: 'Gilroy';
|
|
25
|
+
src: url('/assets/fonts/Gilroy-Regular.ttf') format('truetype');
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
font-display: swap;
|
|
29
|
+
}
|
|
30
|
+
@font-face {
|
|
31
|
+
font-family: 'Gilroy';
|
|
32
|
+
src: url('/assets/fonts/Gilroy-Medium.ttf') format('truetype');
|
|
33
|
+
font-style: normal;
|
|
34
|
+
font-weight: 500;
|
|
35
|
+
font-display: swap;
|
|
36
|
+
}
|
|
37
|
+
@font-face {
|
|
38
|
+
font-family: 'Gilroy';
|
|
39
|
+
src: url('/assets/fonts/Gilroy-SemiBold.ttf') format('truetype');
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
font-display: swap;
|
|
43
|
+
}
|
|
44
|
+
@font-face {
|
|
45
|
+
font-family: 'Gilroy';
|
|
46
|
+
src: url('/assets/fonts/Gilroy-Bold.ttf') format('truetype');
|
|
47
|
+
font-style: normal;
|
|
48
|
+
font-weight: 700;
|
|
49
|
+
font-display: swap;
|
|
50
|
+
}
|
|
51
|
+
@font-face {
|
|
52
|
+
font-family: 'Gilroy';
|
|
53
|
+
src: url('/assets/fonts/Gilroy-ExtraBold.ttf') format('truetype');
|
|
54
|
+
font-style: normal;
|
|
55
|
+
font-weight: 800;
|
|
56
|
+
font-display: swap;
|
|
57
|
+
}
|
|
58
|
+
@font-face {
|
|
59
|
+
font-family: 'Gilroy';
|
|
60
|
+
src: url('/assets/fonts/Gilroy-Black.ttf') format('truetype');
|
|
61
|
+
font-style: normal;
|
|
62
|
+
font-weight: 900;
|
|
63
|
+
font-display: swap;
|
|
64
|
+
}
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Gilroy';
|
|
67
|
+
src: url('/assets/fonts/Gilroy-Heavy.ttf') format('truetype');
|
|
68
|
+
font-style: normal;
|
|
69
|
+
font-weight: 900;
|
|
70
|
+
font-display: swap;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Hanson';
|
|
76
|
+
src:
|
|
77
|
+
url(/assets/fonts/hanson-bold.woff2) format('woff2'),
|
|
78
|
+
url(/assets/fonts/hanson-bold.woff) format('woff');
|
|
79
|
+
font-style: normal;
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
}
|
|
Binary file
|
|
Binary file
|
package/dist/styles.css
CHANGED
|
@@ -1,259 +1 @@
|
|
|
1
|
-
@import "tailwindcss";
|
|
2
|
-
@import "tw-animate-css";
|
|
3
|
-
|
|
4
|
-
@custom-variant dark (&:is([data-theme="dark"] *));
|
|
5
|
-
|
|
6
|
-
:root {
|
|
7
|
-
--radius: 0.625rem;
|
|
8
|
-
|
|
9
|
-
--background: #fff;
|
|
10
|
-
--foreground: #171717;
|
|
11
|
-
--card: #f2f2f2;
|
|
12
|
-
--card-foreground: #171717;
|
|
13
|
-
--popover: #ffffff;
|
|
14
|
-
--popover-foreground: #171717;
|
|
15
|
-
--dialog: #ffffff;
|
|
16
|
-
--dialog-foreground: #171717;
|
|
17
|
-
--primary: #0095f9;
|
|
18
|
-
--primary-foreground: #ffffff;
|
|
19
|
-
--secondary: #ffffffe5;
|
|
20
|
-
--secondary-foreground: #000000b2;
|
|
21
|
-
--muted: #e4e6e7;
|
|
22
|
-
--muted-focus: #d9dcde;
|
|
23
|
-
--muted-foreground: #000000b2;
|
|
24
|
-
--priority: #00000080;
|
|
25
|
-
--accent: #98aab426;
|
|
26
|
-
--accent-foreground: #171717;
|
|
27
|
-
--destructive: #ff3b30;
|
|
28
|
-
--destructive-foreground: #ffffff;
|
|
29
|
-
--border: #00000029;
|
|
30
|
-
--input: #98aab426;
|
|
31
|
-
--ring: #5200ff;
|
|
32
|
-
|
|
33
|
-
/* Custom semantic tokens */
|
|
34
|
-
--link: #0099ff;
|
|
35
|
-
--filter: #f2f2f2;
|
|
36
|
-
--filter-foreground: #000000b2;
|
|
37
|
-
--filter-active: #5100ff;
|
|
38
|
-
--filter-active-foreground: #ffffff;
|
|
39
|
-
--swap: #fff;
|
|
40
|
-
--swap-foreground: #171717;
|
|
41
|
-
--settings-button: #f2f2f2;
|
|
42
|
-
--settings-button-foreground: #000000cc;
|
|
43
|
-
--settings-active: #5200ff;
|
|
44
|
-
--settings-active-foreground: #ffffff;
|
|
45
|
-
--modal-x: #000000cc;
|
|
46
|
-
--modal-x-foreground: #ffffff;
|
|
47
|
-
--input-icon: #000000a6;
|
|
48
|
-
--input-text: #171717;
|
|
49
|
-
--input-placeholder: #000000a6;
|
|
50
|
-
--modal-group-label: #00000080;
|
|
51
|
-
--switch-active: #5200ff;
|
|
52
|
-
--switch-inactive: #cacfd3;
|
|
53
|
-
--input-button: #98aab440;
|
|
54
|
-
--input-button-hover: #98aab414;
|
|
55
|
-
--input-button-foreground: #515151;
|
|
56
|
-
--input-x-bg: #ffffff;
|
|
57
|
-
--input-x: #8a8a8a;
|
|
58
|
-
--receive-icon: #5b5c5d;
|
|
59
|
-
--receive-label: #00000080;
|
|
60
|
-
--receive-tip: #ffffff;
|
|
61
|
-
--modal-blur: #0a0a0a4d;
|
|
62
|
-
--balance-icon: #17171780;
|
|
63
|
-
--balance-text: #000000b2;
|
|
64
|
-
--section-focus-bg: #d9dcde;
|
|
65
|
-
--section-wallet-amount-usd: #000000b2;
|
|
66
|
-
--modal-item-subtext: #00000080;
|
|
67
|
-
--settings-label: #00000080;
|
|
68
|
-
--settings-amount: #000000;
|
|
69
|
-
--input-helper: #00000080;
|
|
70
|
-
--another-label: #000000b2;
|
|
71
|
-
--thumb-bg: #ffffff;
|
|
72
|
-
|
|
73
|
-
/* Modal item hover states */
|
|
74
|
-
--modal-item-hover: #98aab426;
|
|
75
|
-
--modal-item-selected: #5200ff;
|
|
76
|
-
|
|
77
|
-
/* Default chart colors */
|
|
78
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
79
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
80
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
81
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
82
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
83
|
-
--sidebar: oklch(0.985 0 0);
|
|
84
|
-
--sidebar-foreground: oklch(0.145 0 0);
|
|
85
|
-
--sidebar-primary: oklch(0.205 0 0);
|
|
86
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
87
|
-
--sidebar-accent: oklch(0.97 0 0);
|
|
88
|
-
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
89
|
-
--sidebar-border: oklch(0.922 0 0);
|
|
90
|
-
--sidebar-ring: oklch(0.708 0 0);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
@theme inline {
|
|
95
|
-
--rounded-custom: calc(value * 4);
|
|
96
|
-
--radius-sm: calc(var(--radius) - 4px);
|
|
97
|
-
--radius-md: calc(var(--radius) - 2px);
|
|
98
|
-
--radius-lg: var(--radius);
|
|
99
|
-
--radius-xl: calc(var(--radius) + 4px);
|
|
100
|
-
|
|
101
|
-
--color-background: var(--background);
|
|
102
|
-
--color-foreground: var(--foreground);
|
|
103
|
-
--color-card: var(--card);
|
|
104
|
-
--color-card-foreground: var(--card-foreground);
|
|
105
|
-
--color-popover: var(--popover);
|
|
106
|
-
--color-popover-foreground: var(--popover-foreground);
|
|
107
|
-
--color-dialog: var(--dialog);
|
|
108
|
-
--color-dialog-foreground: var(--dialog-foreground);
|
|
109
|
-
--color-primary: var(--primary);
|
|
110
|
-
--color-primary-foreground: var(--primary-foreground);
|
|
111
|
-
--color-secondary: var(--secondary);
|
|
112
|
-
--color-secondary-foreground: var(--secondary-foreground);
|
|
113
|
-
--color-muted: var(--muted);
|
|
114
|
-
--color-muted-foreground: var(--muted-foreground);
|
|
115
|
-
--color-muted-focus: var(--muted-focus);
|
|
116
|
-
--color-priority: var(--priority);
|
|
117
|
-
--color-accent: var(--accent);
|
|
118
|
-
--color-accent-foreground: var(--accent-foreground);
|
|
119
|
-
--color-destructive: var(--destructive);
|
|
120
|
-
--color-destructive-foreground: var(--destructive-foreground);
|
|
121
|
-
--color-border: var(--border);
|
|
122
|
-
--color-input: var(--input);
|
|
123
|
-
--color-ring: var(--ring);
|
|
124
|
-
|
|
125
|
-
/* Semantic tokens */
|
|
126
|
-
--color-link: var(--link);
|
|
127
|
-
--color-filter: var(--filter);
|
|
128
|
-
--color-filter-foreground: var(--filter-foreground);
|
|
129
|
-
--color-filter-active: var(--filter-active);
|
|
130
|
-
--color-filter-active-foreground: var(--filter-active-foreground);
|
|
131
|
-
--color-swap: var(--swap);
|
|
132
|
-
--color-swap-foreground: var(--swap-foreground);
|
|
133
|
-
--color-settings-button: var(--settings-button);
|
|
134
|
-
--color-settings-button-foreground: var(--settings-button-foreground);
|
|
135
|
-
--color-settings-active: var(--settings-active);
|
|
136
|
-
--color-settings-active-foreground: var(--settings-active-foreground);
|
|
137
|
-
--color-modal-x: var(--modal-x);
|
|
138
|
-
--color-modal-x-foreground: var(--modal-x-foreground);
|
|
139
|
-
--color-input-icon: var(--input-icon);
|
|
140
|
-
--color-input-text: var(--input-text);
|
|
141
|
-
--color-input-placeholder: var(--input-placeholder);
|
|
142
|
-
--color-modal-group-label: var(--modal-group-label);
|
|
143
|
-
--color-switch-active: var(--switch-active);
|
|
144
|
-
--color-switch-inactive: var(--switch-inactive);
|
|
145
|
-
--color-input-button: var(--input-button);
|
|
146
|
-
--color-input-button-hover: var(--input-button-hover);
|
|
147
|
-
--color-input-button-foreground: var(--input-button-foreground);
|
|
148
|
-
--color-input-x-bg: var(--input-x-bg);
|
|
149
|
-
--color-input-x: var(--input-x);
|
|
150
|
-
--color-receive-icon: var(--receive-icon);
|
|
151
|
-
--color-receive-label: var(--receive-label);
|
|
152
|
-
--color-receive-tip: var(--receive-tip);
|
|
153
|
-
--color-modal-blur: var(--modal-blur);
|
|
154
|
-
--color-balance-icon: var(--balance-icon);
|
|
155
|
-
--color-balance-text: var(--balance-text);
|
|
156
|
-
--color-section-focus-bg: var(--section-focus-bg);
|
|
157
|
-
--color-section-wallet-amount-usd: var(--section-wallet-amount-usd);
|
|
158
|
-
--color-modal-item-subtext: var(--modal-item-subtext);
|
|
159
|
-
--color-settings-label: var(--settings-label);
|
|
160
|
-
--color-settings-amount: var(--settings-amount);
|
|
161
|
-
--color-input-helper: var(--input-helper);
|
|
162
|
-
--color-another-label: var(--another-label);
|
|
163
|
-
--color-thumb-bg: var(--thumb-bg);
|
|
164
|
-
--color-modal-item-hover: var(--modal-item-hover);
|
|
165
|
-
--color-modal-item-selected: var(--modal-item-selected);
|
|
166
|
-
|
|
167
|
-
--color-chart-1: var(--chart-1);
|
|
168
|
-
--color-chart-2: var(--chart-2);
|
|
169
|
-
--color-chart-3: var(--chart-3);
|
|
170
|
-
--color-chart-4: var(--chart-4);
|
|
171
|
-
--color-chart-5: var(--chart-5);
|
|
172
|
-
|
|
173
|
-
--color-sidebar: var(--sidebar);
|
|
174
|
-
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
175
|
-
--color-sidebar-primary: var(--sidebar-primary);
|
|
176
|
-
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
177
|
-
--color-sidebar-accent: var(--sidebar-accent);
|
|
178
|
-
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
179
|
-
--color-sidebar-border: var(--sidebar-border);
|
|
180
|
-
--color-sidebar-ring: var(--sidebar-ring);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
[data-theme="dark"] {
|
|
184
|
-
--background: #000000;
|
|
185
|
-
--foreground: #ffffff;
|
|
186
|
-
--card: #000000;
|
|
187
|
-
--card-foreground: #ffffff;
|
|
188
|
-
--popover: #000000;
|
|
189
|
-
--popover-foreground: #ffffff;
|
|
190
|
-
--dialog: #000000;
|
|
191
|
-
--dialog-foreground: #ffffff;
|
|
192
|
-
--primary: #5200ff;
|
|
193
|
-
--primary-foreground: #ffffff;
|
|
194
|
-
--secondary: #ffffff1a;
|
|
195
|
-
--secondary-foreground: #d5d5d6;
|
|
196
|
-
--muted: #98aab414;
|
|
197
|
-
--muted-focus: #3c3d3f;
|
|
198
|
-
--muted-foreground: #ffffffb2;
|
|
199
|
-
--priority: #ffffff80;
|
|
200
|
-
--accent: #98aab426;
|
|
201
|
-
--accent-foreground: #ffffff;
|
|
202
|
-
--destructive: #ff3b30;
|
|
203
|
-
--destructive-foreground: #ffffff;
|
|
204
|
-
--border: #ffffff29;
|
|
205
|
-
--input: #98aab426;
|
|
206
|
-
--ring: #5200ff;
|
|
207
|
-
|
|
208
|
-
--link: #ffffff;
|
|
209
|
-
--filter: #1d1d1d;
|
|
210
|
-
--filter-foreground: #ffffffb2;
|
|
211
|
-
--filter-active: #5100ff;
|
|
212
|
-
--filter-active-foreground: #ffffff;
|
|
213
|
-
--swap: #2f3538;
|
|
214
|
-
--swap-foreground: #ffffff;
|
|
215
|
-
--settings-button: #191a1b;
|
|
216
|
-
--settings-button-foreground: #ffffffcc;
|
|
217
|
-
--settings-active: #5200ff;
|
|
218
|
-
--settings-active-foreground: #ffffff;
|
|
219
|
-
--modal-x: #ffffffcc;
|
|
220
|
-
--modal-x-foreground: #000000;
|
|
221
|
-
--input-icon: #ffffffa6;
|
|
222
|
-
--input-text: #ffffff;
|
|
223
|
-
--input-placeholder: #ffffffa6;
|
|
224
|
-
--modal-group-label: #ffffff80;
|
|
225
|
-
--switch-active: #5200ff;
|
|
226
|
-
--switch-inactive: #ffffff26;
|
|
227
|
-
--input-button: #ffffff1a;
|
|
228
|
-
--input-button-hover: #ffffff33;
|
|
229
|
-
--input-button-foreground: #d5d5d6;
|
|
230
|
-
--input-x-bg: #2b3033;
|
|
231
|
-
--input-x: #c4c4c4;
|
|
232
|
-
--receive-icon: #ffffffcc;
|
|
233
|
-
--receive-label: #ffffff80;
|
|
234
|
-
--receive-tip: #ffffff;
|
|
235
|
-
--modal-blur: #0a0a0a4d;
|
|
236
|
-
--balance-icon: #ffffffb2;
|
|
237
|
-
--balance-text: #ffffffb2;
|
|
238
|
-
--section-focus-bg: #98aab414;
|
|
239
|
-
--section-wallet-amount-usd: #ffffffb2;
|
|
240
|
-
--modal-item-subtext: #ffffff80;
|
|
241
|
-
--settings-label: #ffffff80;
|
|
242
|
-
--settings-amount: #ffffff;
|
|
243
|
-
--input-helper: #ffffff80;
|
|
244
|
-
--another-label: #ffffffb2;
|
|
245
|
-
--thumb-bg: #ffffff;
|
|
246
|
-
|
|
247
|
-
--modal-item-hover: #ffffff1a;
|
|
248
|
-
--modal-item-selected: #ffffff26;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
@layer base {
|
|
252
|
-
* {
|
|
253
|
-
@apply border-border outline-ring/50;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
body {
|
|
257
|
-
@apply bg-background text-foreground;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-animation-delay:0s;--tw-animation-direction:normal;--tw-animation-duration:initial;--tw-animation-fill-mode:none;--tw-animation-iteration-count:1;--tw-enter-blur:0;--tw-enter-opacity:1;--tw-enter-rotate:0;--tw-enter-scale:1;--tw-enter-translate-x:0;--tw-enter-translate-y:0;--tw-exit-blur:0;--tw-exit-opacity:1;--tw-exit-rotate:0;--tw-exit-scale:1;--tw-exit-translate-x:0;--tw-exit-translate-y:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-500:oklch(63.7% .237 25.331);--color-gray-300:oklch(87.2% .01 258.338);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-md:28rem;--container-lg:32rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--radius-xs:.125rem;--radius-sm:calc(var(--radius) - 4px);--radius-md:calc(var(--radius) - 2px);--radius-lg:var(--radius);--radius-xl:calc(var(--radius) + 4px);--radius-4xl:2rem;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--rounded-custom: calc(value*4) ;--color-background:var(--background);--color-foreground:var(--foreground);--color-card:var(--card);--color-card-foreground:var(--card-foreground);--color-popover:var(--popover);--color-popover-foreground:var(--popover-foreground);--color-dialog:var(--dialog);--color-dialog-foreground:var(--dialog-foreground);--color-primary:var(--primary);--color-primary-foreground:var(--primary-foreground);--color-secondary:var(--secondary);--color-secondary-foreground:var(--secondary-foreground);--color-muted:var(--muted);--color-muted-foreground:var(--muted-foreground);--color-muted-focus:var(--muted-focus);--color-priority:var(--priority);--color-accent:var(--accent);--color-accent-foreground:var(--accent-foreground);--color-destructive:var(--destructive);--color-destructive-foreground:var(--destructive-foreground);--color-border:var(--border);--color-input:var(--input);--color-ring:var(--ring);--color-link:var(--link);--color-filter:var(--filter);--color-filter-foreground:var(--filter-foreground);--color-filter-active:var(--filter-active);--color-filter-active-foreground:var(--filter-active-foreground);--color-swap:var(--swap);--color-swap-foreground:var(--swap-foreground);--color-settings-button:var(--settings-button);--color-settings-button-foreground:var(--settings-button-foreground);--color-settings-active:var(--settings-active);--color-settings-active-foreground:var(--settings-active-foreground);--color-modal-x:var(--modal-x);--color-input-icon:var(--input-icon);--color-input-text:var(--input-text);--color-input-placeholder:var(--input-placeholder);--color-modal-group-label:var(--modal-group-label);--color-switch-active:var(--switch-active);--color-switch-inactive:var(--switch-inactive);--color-input-button:var(--input-button);--color-input-button-hover:var(--input-button-hover);--color-input-button-foreground:var(--input-button-foreground);--color-input-x-bg:var(--input-x-bg);--color-input-x:var(--input-x);--color-receive-icon:var(--receive-icon);--color-receive-label:var(--receive-label);--color-receive-tip:var(--receive-tip);--color-modal-blur:var(--modal-blur);--color-balance-icon:var(--balance-icon);--color-balance-text:var(--balance-text);--color-section-focus-bg:var(--section-focus-bg);--color-section-wallet-amount-usd:var(--section-wallet-amount-usd);--color-modal-item-subtext:var(--modal-item-subtext);--color-settings-label:var(--settings-label);--color-settings-amount:var(--settings-amount);--color-input-helper:var(--input-helper);--color-another-label:var(--another-label);--color-thumb-bg:var(--thumb-bg);--color-modal-item-hover:var(--modal-item-hover);--color-modal-item-selected:var(--modal-item-selected);--color-chart-1:var(--chart-1);--color-chart-2:var(--chart-2);--color-chart-3:var(--chart-3);--color-chart-4:var(--chart-4);--color-chart-5:var(--chart-5);--color-sidebar:var(--sidebar);--color-sidebar-foreground:var(--sidebar-foreground);--color-sidebar-primary:var(--sidebar-primary);--color-sidebar-primary-foreground:var(--sidebar-primary-foreground);--color-sidebar-accent:var(--sidebar-accent);--color-sidebar-accent-foreground:var(--sidebar-accent-foreground);--color-sidebar-border:var(--sidebar-border);--color-sidebar-ring:var(--sidebar-ring)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:var(--ring)}@supports (color:color-mix(in lab,red,red)){*{outline-color:color-mix(in oklab,var(--ring)50%,transparent)}}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.\@container\/card-header{container:card-header/inline-size}.pointer-events-none{pointer-events:none}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.inset-0{inset:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.top-\[50\%\]{top:50%}.right-2{right:calc(var(--spacing)*2)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-1\/2{left:50%}.left-5{left:calc(var(--spacing)*5)}.left-\[50\%\]{left:50%}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-start-2{grid-column-start:2}.row-span-2{grid-row:span 2/span 2}.row-start-1{grid-row-start:1}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.-mx-5{margin-inline:calc(var(--spacing)*-5)}.mx-auto{margin-inline:auto}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.block{display:block}.flex{display:flex}.grid{display:grid}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-5{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.\!h-\[90dvh\]{height:90dvh!important}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-12{height:calc(var(--spacing)*12)}.h-13{height:calc(var(--spacing)*13)}.h-15{height:calc(var(--spacing)*15)}.h-\[1\.15rem\]{height:1.15rem}.h-\[90dvh\]{height:90dvh}.h-auto{height:auto}.h-dvh{height:100dvh}.h-full{height:100%}.max-h-dvh{max-height:100dvh}.min-h-\[540px\]{min-height:540px}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-1\/3{width:33.3333%}.w-4{width:calc(var(--spacing)*4)}.w-6{width:calc(var(--spacing)*6)}.w-8{width:calc(var(--spacing)*8)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-24{width:calc(var(--spacing)*24)}.w-35{width:calc(var(--spacing)*35)}.w-fit{width:fit-content}.w-full{width:100%}.max-w-\[410px\]{max-width:410px}.max-w-\[440px\]{max-width:440px}.max-w-\[calc\(100\%-2rem\)\]{max-width:calc(100% - 2rem)}.max-w-md{max-width:var(--container-md)}.min-w-0{min-width:calc(var(--spacing)*0)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.origin-\(--radix-tooltip-content-transform-origin\){transform-origin:var(--radix-tooltip-content-transform-origin)}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-\[-50\%\]{--tw-translate-x:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[-50\%\]{--tw-translate-y:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-in{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)}.animate-pulse{animation:var(--animate-pulse)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.appearance-none{appearance:none}.auto-rows-min{grid-auto-rows:min-content}.grid-rows-\[auto_auto\]{grid-template-rows:auto auto}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-start{justify-content:flex-start}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-10{gap:calc(var(--spacing)*10)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-\[1px\]>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(1px*var(--tw-space-y-reverse));margin-block-end:calc(1px*calc(1 - var(--tw-space-y-reverse)))}.gap-y-0{row-gap:calc(var(--spacing)*0)}.self-start{align-self:flex-start}.justify-self-end{justify-self:flex-end}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded-4xl{border-radius:var(--radius-4xl)}.rounded-\[2px\]{border-radius:2px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-none{border-radius:0}.rounded-xs{border-radius:var(--radius-xs)}.rounded-t-lg{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius)}.rounded-b-lg{border-bottom-right-radius:var(--radius);border-bottom-left-radius:var(--radius)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-dotted{--tw-border-style:dotted;border-style:dotted}.border-none{--tw-border-style:none;border-style:none}.border-destructive{border-color:var(--destructive)}.border-gray-300{border-color:var(--color-gray-300)}.border-input{border-color:var(--input)}.border-link{border-color:var(--link)}.border-primary{border-color:var(--primary)}.border-ring{border-color:var(--ring)}.border-transparent{border-color:#0000}.bg-\[\#999\]{background-color:#999}.bg-accent{background-color:var(--accent)}.bg-background{background-color:var(--background)}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-input{background-color:var(--input)}.bg-muted{background-color:var(--muted)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.bg-none{background-image:none}.fill-primary{fill:var(--primary)}.p-0{padding:calc(var(--spacing)*0)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.\!px-0{padding-inline:calc(var(--spacing)*0)!important}.px-0{padding-inline:calc(var(--spacing)*0)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-6{padding-block:calc(var(--spacing)*6)}.py-10{padding-block:calc(var(--spacing)*10)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-10{padding-top:calc(var(--spacing)*10)}.pr-8{padding-right:calc(var(--spacing)*8)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-10{padding-bottom:calc(var(--spacing)*10)}.text-center{text-align:center}.text-end{text-align:end}.text-left{text-align:left}.text-right{text-align:right}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[32px\]{font-size:32px}.leading-0{--tw-leading:calc(var(--spacing)*0);line-height:calc(var(--spacing)*0)}.leading-3{--tw-leading:calc(var(--spacing)*3);line-height:calc(var(--spacing)*3)}.leading-4{--tw-leading:calc(var(--spacing)*4);line-height:calc(var(--spacing)*4)}.leading-5{--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5)}.leading-9{--tw-leading:calc(var(--spacing)*9);line-height:calc(var(--spacing)*9)}.leading-\[100\%\]{--tw-leading:100%;line-height:100%}.leading-none{--tw-leading:1;line-height:1}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-nowrap{white-space:nowrap}.text-\[\#808080\]{color:gray}.text-accent-foreground{color:var(--accent-foreground)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-foreground{color:var(--foreground)}.text-input-icon{color:var(--input-icon)}.text-input-text{color:var(--input-text)}.text-link{color:var(--link)}.text-muted-foreground{color:var(--muted-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-priority{color:var(--priority)}.text-receive-icon{color:var(--receive-icon)}.text-red-500{color:var(--color-red-500)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-white{color:var(--color-white)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline-offset-4{text-underline-offset:4px}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[300\]{transition-property:300;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.fade-in-0{--tw-enter-opacity:0}.outline-none{--tw-outline-style:none;outline-style:none}.zoom-in-95{--tw-enter-scale:.95}.selection\:bg-primary ::selection{background-color:var(--primary)}.selection\:bg-primary::selection{background-color:var(--primary)}.selection\:text-primary-foreground ::selection{color:var(--primary-foreground)}.selection\:text-primary-foreground::selection{color:var(--primary-foreground)}.file\:inline-flex::file-selector-button{display:inline-flex}.file\:h-7::file-selector-button{height:calc(var(--spacing)*7)}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--foreground)}.placeholder\:text-input-placeholder::placeholder{color:var(--input-placeholder)}.placeholder\:text-muted-foreground::placeholder,.placeholder\:text-muted-foreground\/50::placeholder{color:var(--muted-foreground)}@supports (color:color-mix(in lab,red,red)){.placeholder\:text-muted-foreground\/50::placeholder{color:color-mix(in oklab,var(--muted-foreground)50%,transparent)}}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media (hover:hover){.hover\:scale-100:hover{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:scale-110:hover{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:bg-accent:hover,.hover\:bg-accent\/80:hover{background-color:var(--accent)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-accent\/80:hover{background-color:color-mix(in oklab,var(--accent)80%,transparent)}}.hover\:bg-destructive\/90:hover{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}}.hover\:bg-muted:hover{background-color:var(--muted)}.hover\:bg-primary\/80:hover{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/80:hover{background-color:color-mix(in oklab,var(--primary)80%,transparent)}}.hover\:bg-primary\/90:hover{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:var(--secondary)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}}.hover\:bg-transparent:hover{background-color:#0000}.hover\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:var(--ring)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.focus\:outline-hidden:focus{outline-offset:2px;outline:2px solid #0000}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}}.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:var(--ring)}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot=card-action]){grid-template-columns:1fr auto}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:calc(2*var(--spacing)*-1)}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:calc(2*var(--spacing))}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:calc(2*var(--spacing)*-1)}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:calc(2*var(--spacing))}.data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\][data-state=checked]{--tw-translate-x: calc(100% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=checked\]\:bg-\[\#0095F9\][data-state=checked]{background-color:#0095f9}.data-\[state\=checked\]\:bg-switch-active[data-state=checked]{background-color:var(--switch-active)}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:accordion-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=closed\]\:animate-out[data-state=closed]{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)}.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:accordion-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=open\]\:animate-in[data-state=open]{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)}.data-\[state\=open\]\:bg-accent[data-state=open]{background-color:var(--accent)}.data-\[state\=open\]\:pb-3[data-state=open]{padding-bottom:calc(var(--spacing)*3)}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{color:var(--muted-foreground)}.data-\[state\=open\]\:fade-in-0[data-state=open]{--tw-enter-opacity:0}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=unchecked\]\:bg-\[\#CACFD3\][data-state=unchecked]{background-color:#cacfd3}.data-\[state\=unchecked\]\:bg-switch-inactive[data-state=unchecked]{background-color:var(--switch-inactive)}@media (min-width:40rem){.sm\:max-w-lg{max-width:var(--container-lg)}.sm\:max-w-md{max-width:var(--container-md)}.sm\:flex-row{flex-direction:row}.sm\:justify-end{justify-content:flex-end}.sm\:text-left{text-align:left}}@media (min-width:48rem){.md\:rounded-lg{border-radius:var(--radius)}}.dark\:border-input:is([data-theme=dark] *){border-color:var(--input)}.dark\:bg-destructive\/60:is([data-theme=dark] *){background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:bg-destructive\/60:is([data-theme=dark] *){background-color:color-mix(in oklab,var(--destructive)60%,transparent)}}.dark\:bg-input\/30:is([data-theme=dark] *){background-color:var(--input)}@supports (color:color-mix(in lab,red,red)){.dark\:bg-input\/30:is([data-theme=dark] *){background-color:color-mix(in oklab,var(--input)30%,transparent)}}.dark\:bg-transparent:is([data-theme=dark] *){background-color:#0000}@media (hover:hover){.dark\:hover\:bg-accent\/50:is([data-theme=dark] *):hover{background-color:var(--accent)}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-accent\/50:is([data-theme=dark] *):hover{background-color:color-mix(in oklab,var(--accent)50%,transparent)}}.dark\:hover\:bg-input\/50:is([data-theme=dark] *):hover{background-color:var(--input)}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-input\/50:is([data-theme=dark] *):hover{background-color:color-mix(in oklab,var(--input)50%,transparent)}}}.dark\:focus-visible\:ring-destructive\/40:is([data-theme=dark] *):focus-visible{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:focus-visible\:ring-destructive\/40:is([data-theme=dark] *):focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.dark\:aria-invalid\:ring-destructive\/40:is([data-theme=dark] *)[aria-invalid=true]{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:aria-invalid\:ring-destructive\/40:is([data-theme=dark] *)[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.dark\:data-\[state\=checked\]\:bg-primary-foreground:is([data-theme=dark] *)[data-state=checked]{background-color:var(--primary-foreground)}.dark\:data-\[state\=unchecked\]\:bg-foreground:is([data-theme=dark] *)[data-state=unchecked]{background-color:var(--foreground)}.dark\:data-\[state\=unchecked\]\:bg-input\/80:is([data-theme=dark] *)[data-state=unchecked]{background-color:var(--input)}@supports (color:color-mix(in lab,red,red)){.dark\:data-\[state\=unchecked\]\:bg-input\/80:is([data-theme=dark] *)[data-state=unchecked]{background-color:color-mix(in oklab,var(--input)80%,transparent)}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\.border-b\]\:pb-4.border-b{padding-bottom:calc(var(--spacing)*4)}.\[\.border-t\]\:pt-4.border-t{padding-top:calc(var(--spacing)*4)}.\[\&\>svg\]\:pointer-events-none>svg{pointer-events:none}.\[\&\>svg\]\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{rotate:180deg}@media (hover:hover){a.\[a\&\]\:hover\:bg-accent:hover{background-color:var(--accent)}a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}}a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}}a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:var(--secondary)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}}a.\[a\&\]\:hover\:text-accent-foreground:hover{color:var(--accent-foreground)}}}@property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}@property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}@property --tw-animation-duration{syntax:"*";inherits:false}@property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}@property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}:root{--radius:.625rem;--background:#fff;--foreground:#171717;--card:#f2f2f2;--card-foreground:#171717;--popover:#fff;--popover-foreground:#171717;--dialog:#fff;--dialog-foreground:#171717;--primary:#0095f9;--primary-foreground:#fff;--secondary:#ffffffe5;--secondary-foreground:#000000b2;--muted:#e4e6e7;--muted-focus:#d9dcde;--muted-foreground:#000000b2;--priority:#00000080;--accent:#98aab426;--accent-foreground:#171717;--destructive:#ff3b30;--destructive-foreground:#fff;--border:#00000029;--input:#98aab426;--ring:#5200ff;--link:#09f;--filter:#f2f2f2;--filter-foreground:#000000b2;--filter-active:#5100ff;--filter-active-foreground:#fff;--swap:#fff;--swap-foreground:#171717;--settings-button:#f2f2f2;--settings-button-foreground:#000c;--settings-active:#5200ff;--settings-active-foreground:#fff;--modal-x:#000c;--modal-x-foreground:#fff;--input-icon:#000000a6;--input-text:#171717;--input-placeholder:#000000a6;--modal-group-label:#00000080;--switch-active:#5200ff;--switch-inactive:#cacfd3;--input-button:#98aab440;--input-button-hover:#98aab414;--input-button-foreground:#515151;--input-x-bg:#fff;--input-x:#8a8a8a;--receive-icon:#5b5c5d;--receive-label:#00000080;--receive-tip:#fff;--modal-blur:#0a0a0a4d;--balance-icon:#17171780;--balance-text:#000000b2;--section-focus-bg:#d9dcde;--section-wallet-amount-usd:#000000b2;--modal-item-subtext:#00000080;--settings-label:#00000080;--settings-amount:#000;--input-helper:#00000080;--another-label:#000000b2;--thumb-bg:#fff;--modal-item-hover:#98aab426;--modal-item-selected:#5200ff;--chart-1:oklch(64.6% .222 41.116);--chart-2:oklch(60% .118 184.704);--chart-3:oklch(39.8% .07 227.392);--chart-4:oklch(82.8% .189 84.429);--chart-5:oklch(76.9% .188 70.08);--sidebar:oklch(98.5% 0 0);--sidebar-foreground:oklch(14.5% 0 0);--sidebar-primary:oklch(20.5% 0 0);--sidebar-primary-foreground:oklch(98.5% 0 0);--sidebar-accent:oklch(97% 0 0);--sidebar-accent-foreground:oklch(20.5% 0 0);--sidebar-border:oklch(92.2% 0 0);--sidebar-ring:oklch(70.8% 0 0)}[data-theme=dark]{--background:#000;--foreground:#fff;--card:#000;--card-foreground:#fff;--popover:#000;--popover-foreground:#fff;--dialog:#000;--dialog-foreground:#fff;--primary:#5200ff;--primary-foreground:#fff;--secondary:#ffffff1a;--secondary-foreground:#d5d5d6;--muted:#98aab414;--muted-focus:#3c3d3f;--muted-foreground:#ffffffb2;--priority:#ffffff80;--accent:#98aab426;--accent-foreground:#fff;--destructive:#ff3b30;--destructive-foreground:#fff;--border:#ffffff29;--input:#98aab426;--ring:#5200ff;--link:#fff;--filter:#1d1d1d;--filter-foreground:#ffffffb2;--filter-active:#5100ff;--filter-active-foreground:#fff;--swap:#2f3538;--swap-foreground:#fff;--settings-button:#191a1b;--settings-button-foreground:#fffc;--settings-active:#5200ff;--settings-active-foreground:#fff;--modal-x:#fffc;--modal-x-foreground:#000;--input-icon:#ffffffa6;--input-text:#fff;--input-placeholder:#ffffffa6;--modal-group-label:#ffffff80;--switch-active:#5200ff;--switch-inactive:#ffffff26;--input-button:#ffffff1a;--input-button-hover:#fff3;--input-button-foreground:#d5d5d6;--input-x-bg:#2b3033;--input-x:#c4c4c4;--receive-icon:#fffc;--receive-label:#ffffff80;--receive-tip:#fff;--modal-blur:#0a0a0a4d;--balance-icon:#ffffffb2;--balance-text:#ffffffb2;--section-focus-bg:#98aab414;--section-wallet-amount-usd:#ffffffb2;--modal-item-subtext:#ffffff80;--settings-label:#ffffff80;--settings-amount:#fff;--input-helper:#ffffff80;--another-label:#ffffffb2;--thumb-bg:#fff;--modal-item-hover:#ffffff1a;--modal-item-selected:#ffffff26}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@keyframes pulse{50%{opacity:.5}}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));filter:blur(var(--tw-enter-blur,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));filter:blur(var(--tw-exit-blur,0))}}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))))}}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))))}to{height:0}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"url": "https://app.evaa.finance",
|
|
3
|
+
"name": "EVAA",
|
|
4
|
+
"iconUrl": "https://app.evaa.finance/evaa-logo.jpg",
|
|
5
|
+
"termsOfUseUrl": "https://app.evaa.finance/evaa_protocol_terms_of_use.pdf",
|
|
6
|
+
"privacyPolicyUrl": "https://app.evaa.finance/evaa_privacy_and_cookie_policy.pdf"
|
|
7
|
+
}
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
CHANGED