@sandurtech/sandui 0.0.1 → 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 +84 -37
- package/dist/SandurTech-Logo-PNG.png +0 -0
- package/dist/SandurTech-Logo-SVG.svg +1 -0
- package/dist/index.css +1 -0
- package/dist/index.js +1064 -0
- package/dist/index.umd.cjs +2 -0
- package/dist/robots.txt +125 -0
- package/dist/sitemap.xml +142 -0
- package/package.json +53 -31
- package/dist/index.d.ts +0 -161
- package/dist/sandui.js +0 -875
- package/dist/sandui.umd.js +0 -6
- package/dist/style.css +0 -1
package/README.md
CHANGED
|
@@ -1,64 +1,111 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<strong>SandUI</strong><br/>
|
|
3
|
+
The design system powering the SandurTech ecosystem.
|
|
4
|
+
</p>
|
|
2
5
|
|
|
3
|
-
|
|
6
|
+
---
|
|
4
7
|
|
|
5
|
-
##
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
SandUI is a modern, Inter-font based React component library built for consistency across every SandurTech microservice. It follows the **Atomic Design** methodology — organizing components from Atoms to Templates — and ships with a comprehensive Storybook for documentation and visual testing.
|
|
11
|
+
|
|
12
|
+
## Tech Stack
|
|
13
|
+
|
|
14
|
+
| Layer | Technology |
|
|
15
|
+
|---|---|
|
|
16
|
+
| **Framework** | React 18+ |
|
|
17
|
+
| **Build Tool** | Vite 7 |
|
|
18
|
+
| **Styling** | SCSS Modules |
|
|
19
|
+
| **Documentation** | Storybook 8 |
|
|
20
|
+
| **Architecture** | Atomic Design |
|
|
21
|
+
| **Typography** | Inter (Google Fonts) |
|
|
22
|
+
| **Icons** | Material Symbols Rounded |
|
|
23
|
+
| **CI/CD** | GitHub Actions → GitHub Pages |
|
|
24
|
+
|
|
25
|
+
## Getting Started
|
|
26
|
+
|
|
27
|
+
To use SandUI in your React project, install the package via npm:
|
|
6
28
|
|
|
7
29
|
```bash
|
|
30
|
+
# Install
|
|
8
31
|
npm install @sandurtech/sandui
|
|
9
32
|
```
|
|
10
33
|
|
|
11
|
-
|
|
34
|
+
Then, you can import and use the components, like the `<Button />` component, as shown below:
|
|
12
35
|
|
|
13
|
-
|
|
14
|
-
|
|
36
|
+
```jsx
|
|
37
|
+
import React from 'react';
|
|
38
|
+
import { SandButton, SandThemeProvider } from '@sandurtech/sandui';
|
|
39
|
+
import '@sandurtech/sandui/dist/style.css'; // Make sure to import the styles!
|
|
15
40
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
```tsx
|
|
19
|
-
import { SandButton, SandCard, SandInputGroup } from '@sandurtech/sandui';
|
|
20
|
-
import '@sandurtech/sandui/style.css';
|
|
21
|
-
|
|
22
|
-
export function Example() {
|
|
41
|
+
function App() {
|
|
23
42
|
return (
|
|
24
|
-
<
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
43
|
+
<SandThemeProvider defaultTheme="light">
|
|
44
|
+
<SandButton variant="primary" onClick={() => alert('Clicked!')}>
|
|
45
|
+
Click Me
|
|
46
|
+
</SandButton>
|
|
47
|
+
</SandThemeProvider>
|
|
28
48
|
);
|
|
29
49
|
}
|
|
50
|
+
|
|
51
|
+
export default App;
|
|
30
52
|
```
|
|
31
53
|
|
|
32
|
-
|
|
54
|
+
### Development Scripts
|
|
33
55
|
|
|
34
56
|
```bash
|
|
35
|
-
|
|
36
|
-
npm run
|
|
57
|
+
# Development
|
|
58
|
+
npm run dev
|
|
59
|
+
|
|
60
|
+
# Build library
|
|
37
61
|
npm run build
|
|
62
|
+
|
|
63
|
+
# Run Storybook
|
|
64
|
+
npm run storybook
|
|
65
|
+
|
|
66
|
+
# Build Storybook for deployment
|
|
67
|
+
npm run build-storybook
|
|
38
68
|
```
|
|
39
69
|
|
|
40
|
-
##
|
|
70
|
+
## Component Inventory
|
|
71
|
+
|
|
72
|
+
| Layer | Components |
|
|
73
|
+
|---|---|
|
|
74
|
+
| **Atoms** | `SandButton`, `SandLink`, `SandBadge`, `SandIcon` |
|
|
75
|
+
| **Molecules** | `SandInputGroup`, `SandCard`, `SandToast`, `SandBox` |
|
|
76
|
+
| **Organisms** | `SandNavbar`, `SandSidebar`, `SandFooter` |
|
|
77
|
+
| **Templates** | `StandardLayout`, `AuthLayout` |
|
|
78
|
+
| **Context** | `SandThemeProvider`, `useSandTheme` |
|
|
41
79
|
|
|
42
|
-
|
|
80
|
+
## Usage
|
|
43
81
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
82
|
+
```jsx
|
|
83
|
+
import { SandButton, SandCard, SandThemeProvider } from '@sandurtech/sandui';
|
|
84
|
+
|
|
85
|
+
function App() {
|
|
86
|
+
return (
|
|
87
|
+
<SandThemeProvider>
|
|
88
|
+
<SandCard>
|
|
89
|
+
<h2>Welcome</h2>
|
|
90
|
+
<SandButton variant="primary">Get Started</SandButton>
|
|
91
|
+
</SandCard>
|
|
92
|
+
</SandThemeProvider>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
```
|
|
48
96
|
|
|
49
|
-
##
|
|
97
|
+
## Design Tokens
|
|
50
98
|
|
|
51
|
-
|
|
99
|
+
- **Colors**: Primary `#262626`, Accent `orange`, Background `#F2F2F2`
|
|
100
|
+
- **Spacing**: Strict 8px grid (`8, 16, 24, 32, 40, 48`)
|
|
101
|
+
- **Radius**: `4px`, `6px`, `8px`, `12px`, `9999px`
|
|
102
|
+
- **Shadows**: `sm`, `md`, `lg` + `glow`
|
|
103
|
+
- **Fonts**: Inter (body), Outfit (display)
|
|
52
104
|
|
|
53
|
-
|
|
105
|
+
## Keywords
|
|
54
106
|
|
|
55
|
-
|
|
56
|
-
- The public barrel is now explicit and only exposes `Sand*` components and `Sand*` types from the root package entry.
|
|
57
|
-
- The build output changed from app/docs-oriented assets to library artifacts plus a single bundled stylesheet.
|
|
58
|
-
- React and React DOM are now peer dependencies instead of bundled runtime dependencies.
|
|
107
|
+
React 18, Vite, SCSS Modules, Design System, Atomic Design, Component Library, UI Kit, Storybook, Material Icons, Inter Font, SandurTech, GitHub Pages, Glassmorphism, Theme System, Dark Mode, Light Mode
|
|
59
108
|
|
|
60
|
-
|
|
109
|
+
## License
|
|
61
110
|
|
|
62
|
-
|
|
63
|
-
npm deprecate @sandurtech/sandui@0.1.0 "This version is deprecated. Please use 0.0.1 or higher."
|
|
64
|
-
```
|
|
111
|
+
MIT — Built by [Amogha Raj Sandur](https://www.linkedin.com/in/amogharajsandur/) | [SandurTech](https://sandurtech.vercel.app)
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1080" zoomAndPan="magnify" viewBox="0 0 810 809.999993" height="1080" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><g/><clipPath id="ee37907914"><rect x="0" width="651" y="0" height="210"/></clipPath></defs><rect x="-81" width="972" fill="#ffffff" y="-80.999999" height="971.999992" fill-opacity="1"/><rect x="-81" width="972" fill="#292929" y="-80.999999" height="971.999992" fill-opacity="1"/><g transform="matrix(1, 0, 0, 1, 76, 269)"><g clip-path="url(#ee37907914)"><g fill="#ffa31a" fill-opacity="1"><g transform="translate(4.999999, 170.946447)"><g><path d="M 92.671875 -28.515625 C 92.671875 -22.304688 91.273438 -17.257812 88.484375 -13.375 C 85.691406 -9.5 82.097656 -6.367188 77.703125 -3.984375 C 73.316406 -1.597656 68.414062 0.0507812 63 0.96875 C 57.582031 1.882812 52.285156 2.34375 47.109375 2.34375 C 38.453125 2.34375 29.832031 1.082031 21.25 -1.4375 C 12.664062 -3.957031 5.242188 -7.257812 -1.015625 -11.34375 L 7.765625 -28.71875 C 15.253906 -24.351562 22.113281 -21.265625 28.34375 -19.453125 C 34.582031 -17.648438 40.835938 -16.75 47.109375 -16.75 C 55.617188 -16.75 61.816406 -17.648438 65.703125 -19.453125 C 69.585938 -21.265625 71.53125 -23.769531 71.53125 -26.96875 C 71.53125 -28.539062 70.984375 -29.835938 69.890625 -30.859375 C 68.796875 -31.878906 66.988281 -32.816406 64.46875 -33.671875 C 61.945312 -34.523438 58.625 -35.375 54.5 -36.21875 C 50.382812 -37.070312 45.265625 -37.976562 39.140625 -38.9375 C 34.234375 -39.75 29.582031 -40.75 25.1875 -41.9375 C 20.789062 -43.132812 16.921875 -44.820312 13.578125 -47 C 10.242188 -49.175781 7.570312 -51.929688 5.5625 -55.265625 C 3.550781 -58.609375 2.546875 -62.800781 2.546875 -67.84375 C 2.546875 -72.957031 3.859375 -77.40625 6.484375 -81.1875 C 9.109375 -84.96875 12.546875 -88.082031 16.796875 -90.53125 C 21.054688 -92.976562 25.84375 -94.75 31.15625 -95.84375 C 36.476562 -96.9375 41.796875 -97.484375 47.109375 -97.484375 C 54.597656 -97.484375 61.867188 -96.507812 68.921875 -94.5625 C 75.972656 -92.625 82.15625 -89.847656 87.46875 -86.234375 L 79.09375 -69.890625 C 73.78125 -73.222656 68.617188 -75.484375 63.609375 -76.671875 C 58.597656 -77.867188 53.097656 -78.46875 47.109375 -78.46875 C 44.585938 -78.46875 41.960938 -78.332031 39.234375 -78.0625 C 36.515625 -77.789062 33.992188 -77.265625 31.671875 -76.484375 C 29.359375 -75.703125 27.4375 -74.644531 25.90625 -73.3125 C 24.375 -71.988281 23.609375 -70.367188 23.609375 -68.453125 C 23.609375 -65.941406 25.835938 -63.882812 30.296875 -62.28125 C 34.753906 -60.675781 42.367188 -59.09375 53.140625 -57.53125 C 58.992188 -56.707031 64.335938 -55.664062 69.171875 -54.40625 C 74.015625 -53.144531 78.171875 -51.441406 81.640625 -49.296875 C 85.117188 -47.148438 87.828125 -44.390625 89.765625 -41.015625 C 91.703125 -37.648438 92.671875 -33.484375 92.671875 -28.515625 Z M 92.671875 -28.515625 "/></g></g></g><g fill="#ffa31a" fill-opacity="1"><g transform="translate(112.544777, 170.946447)"><g><path d="M -0.40625 -27.390625 C -0.40625 -32.972656 1.085938 -37.859375 4.078125 -42.046875 C 7.078125 -46.234375 11.007812 -49.722656 15.875 -52.515625 C 20.75 -55.304688 26.335938 -57.398438 32.640625 -58.796875 C 38.941406 -60.203125 45.363281 -60.90625 51.90625 -60.90625 C 55.519531 -60.90625 58.617188 -60.832031 61.203125 -60.6875 C 63.796875 -60.550781 66.421875 -60.347656 69.078125 -60.078125 L 69.078125 -63.859375 C 69.078125 -68.835938 67.148438 -72.550781 63.296875 -75 C 59.453125 -77.445312 54.394531 -78.671875 48.125 -78.671875 C 42.40625 -78.671875 36.582031 -77.867188 30.65625 -76.265625 C 24.726562 -74.671875 19.109375 -72.34375 13.796875 -69.28125 L 5.21875 -85.828125 C 11.476562 -89.441406 18.203125 -92.285156 25.390625 -94.359375 C 32.578125 -96.441406 40.15625 -97.484375 48.125 -97.484375 C 53.300781 -97.484375 58.390625 -96.898438 63.390625 -95.734375 C 68.398438 -94.578125 72.898438 -92.671875 76.890625 -90.015625 C 80.878906 -87.359375 84.0625 -83.898438 86.4375 -79.640625 C 88.820312 -75.390625 90.015625 -70.128906 90.015625 -63.859375 L 90.015625 0 L 69.078125 0 L 69.078125 -14 C 65.734375 -8.820312 60.804688 -4.800781 54.296875 -1.9375 C 47.796875 0.914062 40.800781 2.34375 33.3125 2.34375 C 28.675781 2.34375 24.296875 1.710938 20.171875 0.453125 C 16.054688 -0.804688 12.5 -2.691406 9.5 -5.203125 C 6.5 -7.722656 4.097656 -10.835938 2.296875 -14.546875 C 0.492188 -18.265625 -0.40625 -22.546875 -0.40625 -27.390625 Z M 38.71875 -16.546875 C 42.875 -16.546875 46.773438 -17.070312 50.421875 -18.125 C 54.066406 -19.1875 57.285156 -20.65625 60.078125 -22.53125 C 62.867188 -24.40625 65.066406 -26.671875 66.671875 -29.328125 C 68.273438 -31.984375 69.078125 -34.910156 69.078125 -38.109375 L 69.078125 -41.6875 C 65.734375 -42.226562 62.597656 -42.535156 59.671875 -42.609375 C 56.742188 -42.679688 54.15625 -42.71875 51.90625 -42.71875 C 41.550781 -42.71875 33.734375 -41.351562 28.453125 -38.625 C 23.171875 -35.894531 20.53125 -32.523438 20.53125 -28.515625 C 20.53125 -20.535156 26.59375 -16.546875 38.71875 -16.546875 Z M 38.71875 -16.546875 "/></g></g></g><g fill="#ffa31a" fill-opacity="1"><g transform="translate(220.089555, 170.946447)"><g><path d="M 90.21875 0 L 69.078125 0 L 69.078125 -58.75 C 69.078125 -66.175781 67.675781 -71.316406 64.875 -74.171875 C 62.082031 -77.035156 58.03125 -78.46875 52.71875 -78.46875 C 44.882812 -78.46875 38.5 -75.300781 33.5625 -68.96875 C 28.625 -62.632812 26.15625 -53.882812 26.15625 -42.71875 L 26.15625 0 L 5 0 L 5 -95.234375 L 26.15625 -95.234375 L 26.15625 -71.328125 C 28.269531 -79.566406 32.1875 -85.984375 37.90625 -90.578125 C 43.625 -95.179688 50.675781 -97.484375 59.0625 -97.484375 C 68.800781 -97.484375 76.425781 -94.3125 81.9375 -87.96875 C 87.457031 -81.632812 90.21875 -71.894531 90.21875 -58.75 Z M 90.21875 0 "/></g></g></g><g fill="#ffa31a" fill-opacity="1"><g transform="translate(327.634345, 170.946447)"><g><path d="M 90.21875 0 L 69.078125 0 L 69.078125 -8.78125 C 64.984375 -5.175781 60.859375 -2.421875 56.703125 -0.515625 C 52.554688 1.390625 47.820312 2.34375 42.5 2.34375 C 36.375 2.34375 30.6875 1.117188 25.4375 -1.328125 C 20.195312 -3.773438 15.6875 -7.195312 11.90625 -11.59375 C 8.125 -15.988281 5.160156 -21.25 3.015625 -27.375 C 0.867188 -33.507812 -0.203125 -40.222656 -0.203125 -47.515625 C -0.203125 -54.734375 0.867188 -61.425781 3.015625 -67.59375 C 5.160156 -73.757812 8.125 -79.035156 11.90625 -83.421875 C 15.6875 -87.816406 20.195312 -91.257812 25.4375 -93.75 C 30.6875 -96.238281 36.375 -97.484375 42.5 -97.484375 C 47.820312 -97.484375 52.554688 -96.578125 56.703125 -94.765625 C 60.859375 -92.960938 64.984375 -90.257812 69.078125 -86.65625 L 69.078125 -114.234375 L 50.6875 -114.234375 L 50.6875 -133.34375 L 90.21875 -133.34375 Z M 69.078125 -69.890625 C 66.554688 -72.679688 63.300781 -74.804688 59.3125 -76.265625 C 55.332031 -77.734375 51.535156 -78.46875 47.921875 -78.46875 C 39.953125 -78.46875 33.460938 -75.609375 28.453125 -69.890625 C 23.453125 -64.171875 20.953125 -56.710938 20.953125 -47.515625 C 20.953125 -38.316406 23.453125 -30.890625 28.453125 -25.234375 C 33.460938 -19.578125 39.953125 -16.75 47.921875 -16.75 C 51.535156 -16.75 55.332031 -17.484375 59.3125 -18.953125 C 63.300781 -20.421875 66.554688 -22.550781 69.078125 -25.34375 Z M 69.078125 -69.890625 "/></g></g></g><g fill="#ffa31a" fill-opacity="1"><g transform="translate(435.17911, 170.946447)"><g><path d="M 5 -95.234375 L 26.15625 -95.234375 L 26.15625 -36.375 C 26.15625 -29.019531 27.550781 -23.910156 30.34375 -21.046875 C 33.132812 -18.179688 37.1875 -16.75 42.5 -16.75 C 50.269531 -16.75 56.640625 -19.914062 61.609375 -26.25 C 66.585938 -32.59375 69.078125 -41.347656 69.078125 -52.515625 L 69.078125 -95.234375 L 90.21875 -95.234375 L 90.21875 0 L 69.078125 0 L 69.078125 -23.8125 C 66.960938 -15.632812 63.039062 -9.226562 57.3125 -4.59375 C 51.59375 0.03125 44.546875 2.34375 36.171875 2.34375 C 26.429688 2.34375 18.800781 -0.835938 13.28125 -7.203125 C 7.757812 -13.566406 5 -23.289062 5 -36.375 Z M 5 -95.234375 "/></g></g></g><g fill="#ffa31a" fill-opacity="1"><g transform="translate(542.723876, 170.946447)"><g><path d="M 92.875 -72.65625 C 90.351562 -73.875 87.78125 -74.804688 85.15625 -75.453125 C 82.539062 -76.109375 79.53125 -76.4375 76.125 -76.4375 C 71.425781 -76.4375 67.015625 -75.734375 62.890625 -74.328125 C 58.765625 -72.929688 55.203125 -70.835938 52.203125 -68.046875 C 49.210938 -65.253906 46.882812 -61.765625 45.21875 -57.578125 C 43.550781 -53.390625 42.71875 -48.4375 42.71875 -42.71875 L 42.71875 -19 L 64.0625 -19 L 64.0625 0 L 0 0 L 0 -19 L 21.5625 -19 L 21.5625 -76.125 L 0 -76.125 L 0 -95.234375 L 42.71875 -95.234375 L 42.71875 -71.328125 C 46.1875 -80.859375 51.304688 -87.597656 58.078125 -91.546875 C 64.859375 -95.503906 72.914062 -97.484375 82.25 -97.484375 C 85.1875 -97.484375 88.253906 -97.175781 91.453125 -96.5625 C 94.648438 -95.945312 97.785156 -94.859375 100.859375 -93.296875 Z M 92.875 -72.65625 "/></g></g></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(80.999999, 531.479417)"><g><path d="M 48.25 -15.21875 C 47.707031 -10.195312 45.734375 -6.207031 42.328125 -3.25 C 38.929688 -0.300781 34.691406 1.171875 29.609375 1.171875 C 26.804688 1.171875 24.242188 0.710938 21.921875 -0.203125 C 19.597656 -1.128906 17.613281 -2.410156 15.96875 -4.046875 C 14.332031 -5.679688 13.0625 -7.648438 12.15625 -9.953125 C 11.257812 -12.265625 10.8125 -14.785156 10.8125 -17.515625 L 10.8125 -38.15625 L 0 -38.15625 L 0 -47.734375 L 10.8125 -47.734375 L 10.8125 -66.84375 L 21.40625 -66.84375 L 21.40625 -47.734375 L 41.4375 -47.734375 L 41.4375 -38.15625 L 21.40625 -38.15625 L 21.40625 -17.515625 C 21.40625 -14.441406 22.15625 -12.15625 23.65625 -10.65625 C 25.164062 -9.15625 27.148438 -8.40625 29.609375 -8.40625 C 32.609375 -8.40625 34.84375 -9.273438 36.3125 -11.015625 C 37.78125 -12.753906 38.65625 -14.851562 38.9375 -17.3125 Z M 48.25 -15.21875 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(134.910996, 531.479417)"><g><path d="M 9.734375 -19.828125 C 10.242188 -16.546875 11.804688 -13.820312 14.421875 -11.65625 C 17.035156 -9.488281 20.546875 -8.40625 24.953125 -8.40625 C 28.398438 -8.40625 31.394531 -8.941406 33.9375 -10.015625 C 36.476562 -11.085938 38.671875 -12.515625 40.515625 -14.296875 L 45.953125 -6.8125 C 42.878906 -3.738281 39.625 -1.640625 36.1875 -0.515625 C 32.757812 0.609375 29.015625 1.171875 24.953125 1.171875 C 21.253906 1.171875 17.816406 0.554688 14.640625 -0.671875 C 11.472656 -1.898438 8.726562 -3.613281 6.40625 -5.8125 C 4.082031 -8.019531 2.257812 -10.640625 0.9375 -13.671875 C -0.375 -16.710938 -1.03125 -20.09375 -1.03125 -23.8125 C -1.03125 -27.4375 -0.425781 -30.773438 0.78125 -33.828125 C 2 -36.890625 3.707031 -39.535156 5.90625 -41.765625 C 8.113281 -44.003906 10.753906 -45.75 13.828125 -47 C 16.898438 -48.25 20.300781 -48.875 24.03125 -48.875 C 27.882812 -48.875 31.378906 -48.210938 34.515625 -46.890625 C 37.660156 -45.578125 40.351562 -43.671875 42.59375 -41.171875 C 44.832031 -38.679688 46.582031 -35.632812 47.84375 -32.03125 C 49.101562 -28.4375 49.734375 -24.367188 49.734375 -19.828125 Z M 37.75 -29.140625 C 37.207031 -32.210938 35.617188 -34.679688 32.984375 -36.546875 C 30.359375 -38.410156 27.375 -39.34375 24.03125 -39.34375 C 20.675781 -39.34375 17.664062 -38.410156 15 -36.546875 C 12.34375 -34.679688 10.738281 -32.210938 10.1875 -29.140625 Z M 37.75 -29.140625 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(188.821992, 531.479417)"><g><path d="M 45.953125 -6.8125 C 42.878906 -3.738281 39.640625 -1.640625 36.234375 -0.515625 C 32.835938 0.609375 29.160156 1.171875 25.203125 1.171875 C 21.203125 1.171875 17.570312 0.578125 14.3125 -0.609375 C 11.050781 -1.804688 8.285156 -3.488281 6.015625 -5.65625 C 3.742188 -7.820312 2 -10.441406 0.78125 -13.515625 C -0.425781 -16.597656 -1.03125 -20.03125 -1.03125 -23.8125 C -1.03125 -27.4375 -0.425781 -30.789062 0.78125 -33.875 C 2 -36.96875 3.640625 -39.613281 5.703125 -41.8125 C 7.773438 -44.019531 10.210938 -45.75 13.015625 -47 C 15.816406 -48.25 18.785156 -48.875 21.921875 -48.875 C 25.203125 -48.875 28.050781 -48.1875 30.46875 -46.8125 C 32.894531 -45.445312 34.65625 -43.453125 35.75 -40.828125 L 35.75 -47.734375 L 45.234375 -47.734375 L 45.234375 -25.515625 L 35.75 -25.515625 C 35.75 -29.710938 34.597656 -33.066406 32.296875 -35.578125 C 29.992188 -38.085938 27 -39.34375 23.3125 -39.34375 C 21.84375 -39.34375 20.296875 -39.039062 18.671875 -38.4375 C 17.046875 -37.84375 15.554688 -36.910156 14.203125 -35.640625 C 12.859375 -34.378906 11.742188 -32.773438 10.859375 -30.828125 C 9.972656 -28.890625 9.53125 -26.550781 9.53125 -23.8125 C 9.53125 -21.15625 9.957031 -18.859375 10.8125 -16.921875 C 11.664062 -14.992188 12.78125 -13.40625 14.15625 -12.15625 C 15.539062 -10.914062 17.179688 -9.976562 19.078125 -9.34375 C 20.972656 -8.71875 22.929688 -8.40625 24.953125 -8.40625 C 28.398438 -8.40625 31.394531 -8.941406 33.9375 -10.015625 C 36.476562 -11.085938 38.671875 -12.515625 40.515625 -14.296875 Z M 45.953125 -6.8125 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(242.732988, 531.479417)"><g><path d="M 45.234375 0 L 34.625 0 L 34.625 -29.453125 C 34.625 -33.171875 33.921875 -35.75 32.515625 -37.1875 C 31.117188 -38.625 29.09375 -39.34375 26.4375 -39.34375 C 22.507812 -39.34375 19.304688 -37.753906 16.828125 -34.578125 C 14.347656 -31.398438 13.109375 -27.007812 13.109375 -21.40625 L 13.109375 0 L 2.515625 0 L 2.515625 -66.84375 L 13.109375 -66.84375 L 13.109375 -35.75 C 14.171875 -39.882812 16.132812 -43.101562 19 -45.40625 C 21.875 -47.71875 25.410156 -48.875 29.609375 -48.875 C 34.492188 -48.875 38.316406 -47.285156 41.078125 -44.109375 C 43.847656 -40.929688 45.234375 -36.046875 45.234375 -29.453125 Z M 45.234375 0 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(296.643985, 531.479417)"><g><path d="M 45.234375 0 L 34.625 0 L 34.625 -29.453125 C 34.625 -33.171875 33.921875 -35.75 32.515625 -37.1875 C 31.117188 -38.625 29.09375 -39.34375 26.4375 -39.34375 C 22.507812 -39.34375 19.304688 -37.753906 16.828125 -34.578125 C 14.347656 -31.398438 13.109375 -27.007812 13.109375 -21.40625 L 13.109375 0 L 2.515625 0 L 2.515625 -47.734375 L 13.109375 -47.734375 L 13.109375 -35.75 C 14.171875 -39.882812 16.132812 -43.101562 19 -45.40625 C 21.875 -47.71875 25.410156 -48.875 29.609375 -48.875 C 34.492188 -48.875 38.316406 -47.285156 41.078125 -44.109375 C 43.847656 -40.929688 45.234375 -36.046875 45.234375 -29.453125 Z M 45.234375 0 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(350.554993, 531.479417)"><g><path d="M 48.96875 -23.8125 C 48.96875 -20.09375 48.378906 -16.710938 47.203125 -13.671875 C 46.023438 -10.640625 44.332031 -8.019531 42.125 -5.8125 C 39.925781 -3.613281 37.289062 -1.898438 34.21875 -0.671875 C 31.144531 0.554688 27.710938 1.171875 23.921875 1.171875 C 20.203125 1.171875 16.804688 0.554688 13.734375 -0.671875 C 10.660156 -1.898438 8.019531 -3.613281 5.8125 -5.8125 C 3.613281 -8.019531 1.921875 -10.640625 0.734375 -13.671875 C -0.441406 -16.710938 -1.03125 -20.09375 -1.03125 -23.8125 C -1.03125 -27.4375 -0.441406 -30.789062 0.734375 -33.875 C 1.921875 -36.96875 3.613281 -39.632812 5.8125 -41.875 C 8.019531 -44.113281 10.660156 -45.835938 13.734375 -47.046875 C 16.804688 -48.265625 20.203125 -48.875 23.921875 -48.875 C 27.710938 -48.875 31.144531 -48.265625 34.21875 -47.046875 C 37.289062 -45.835938 39.925781 -44.113281 42.125 -41.875 C 44.332031 -39.632812 46.023438 -36.96875 47.203125 -33.875 C 48.378906 -30.789062 48.96875 -27.4375 48.96875 -23.8125 Z M 38.421875 -23.8125 C 38.421875 -25.96875 38.085938 -28.007812 37.421875 -29.9375 C 36.753906 -31.863281 35.785156 -33.507812 34.515625 -34.875 C 33.253906 -36.25 31.726562 -37.335938 29.9375 -38.140625 C 28.144531 -38.941406 26.140625 -39.34375 23.921875 -39.34375 C 21.671875 -39.34375 19.65625 -38.941406 17.875 -38.140625 C 16.101562 -37.335938 14.601562 -36.25 13.375 -34.875 C 12.144531 -33.507812 11.195312 -31.863281 10.53125 -29.9375 C 9.863281 -28.007812 9.53125 -25.96875 9.53125 -23.8125 C 9.53125 -21.5625 9.863281 -19.515625 10.53125 -17.671875 C 11.195312 -15.828125 12.144531 -14.203125 13.375 -12.796875 C 14.601562 -11.398438 16.101562 -10.316406 17.875 -9.546875 C 19.65625 -8.785156 21.671875 -8.40625 23.921875 -8.40625 C 26.140625 -8.40625 28.144531 -8.785156 29.9375 -9.546875 C 31.726562 -10.316406 33.253906 -11.398438 34.515625 -12.796875 C 35.785156 -14.203125 36.753906 -15.828125 37.421875 -17.671875 C 38.085938 -19.515625 38.421875 -21.5625 38.421875 -23.8125 Z M 38.421875 -23.8125 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(404.465978, 531.479417)"><g><path d="M 40.15625 0 L 8.09375 0 L 8.09375 -9.53125 L 18.546875 -9.53125 L 18.546875 -57.265625 L 8.09375 -57.265625 L 8.09375 -66.84375 L 29.140625 -66.84375 L 29.140625 -9.53125 L 40.15625 -9.53125 Z M 40.15625 0 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(458.376963, 531.479417)"><g><path d="M 48.96875 -23.8125 C 48.96875 -20.09375 48.378906 -16.710938 47.203125 -13.671875 C 46.023438 -10.640625 44.332031 -8.019531 42.125 -5.8125 C 39.925781 -3.613281 37.289062 -1.898438 34.21875 -0.671875 C 31.144531 0.554688 27.710938 1.171875 23.921875 1.171875 C 20.203125 1.171875 16.804688 0.554688 13.734375 -0.671875 C 10.660156 -1.898438 8.019531 -3.613281 5.8125 -5.8125 C 3.613281 -8.019531 1.921875 -10.640625 0.734375 -13.671875 C -0.441406 -16.710938 -1.03125 -20.09375 -1.03125 -23.8125 C -1.03125 -27.4375 -0.441406 -30.789062 0.734375 -33.875 C 1.921875 -36.96875 3.613281 -39.632812 5.8125 -41.875 C 8.019531 -44.113281 10.660156 -45.835938 13.734375 -47.046875 C 16.804688 -48.265625 20.203125 -48.875 23.921875 -48.875 C 27.710938 -48.875 31.144531 -48.265625 34.21875 -47.046875 C 37.289062 -45.835938 39.925781 -44.113281 42.125 -41.875 C 44.332031 -39.632812 46.023438 -36.96875 47.203125 -33.875 C 48.378906 -30.789062 48.96875 -27.4375 48.96875 -23.8125 Z M 38.421875 -23.8125 C 38.421875 -25.96875 38.085938 -28.007812 37.421875 -29.9375 C 36.753906 -31.863281 35.785156 -33.507812 34.515625 -34.875 C 33.253906 -36.25 31.726562 -37.335938 29.9375 -38.140625 C 28.144531 -38.941406 26.140625 -39.34375 23.921875 -39.34375 C 21.671875 -39.34375 19.65625 -38.941406 17.875 -38.140625 C 16.101562 -37.335938 14.601562 -36.25 13.375 -34.875 C 12.144531 -33.507812 11.195312 -31.863281 10.53125 -29.9375 C 9.863281 -28.007812 9.53125 -25.96875 9.53125 -23.8125 C 9.53125 -21.5625 9.863281 -19.515625 10.53125 -17.671875 C 11.195312 -15.828125 12.144531 -14.203125 13.375 -12.796875 C 14.601562 -11.398438 16.101562 -10.316406 17.875 -9.546875 C 19.65625 -8.785156 21.671875 -8.40625 23.921875 -8.40625 C 26.140625 -8.40625 28.144531 -8.785156 29.9375 -9.546875 C 31.726562 -10.316406 33.253906 -11.398438 34.515625 -12.796875 C 35.785156 -14.203125 36.753906 -15.828125 37.421875 -17.671875 C 38.085938 -19.515625 38.421875 -21.5625 38.421875 -23.8125 Z M 38.421875 -23.8125 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(512.287971, 531.479417)"><g><path d="M 45.234375 -0.515625 C 45.234375 2.765625 44.664062 5.6875 43.53125 8.25 C 42.40625 10.8125 40.828125 12.976562 38.796875 14.75 C 36.765625 16.53125 34.375 17.890625 31.625 18.828125 C 28.875 19.765625 25.8125 20.234375 22.4375 20.234375 C 14.132812 20.234375 7.046875 17.722656 1.171875 12.703125 L 6.203125 4.5 C 11.078125 8.707031 16.488281 10.8125 22.4375 10.8125 C 26.09375 10.8125 29.035156 9.914062 31.265625 8.125 C 33.503906 6.332031 34.625 3.519531 34.625 -0.3125 L 34.625 -5.4375 C 32.4375 -3.550781 30.332031 -2.15625 28.3125 -1.25 C 26.300781 -0.34375 23.96875 0.109375 21.3125 0.109375 C 18.238281 0.109375 15.382812 -0.539062 12.75 -1.84375 C 10.125 -3.144531 7.863281 -4.910156 5.96875 -7.140625 C 4.070312 -9.378906 2.582031 -11.984375 1.5 -14.953125 C 0.425781 -17.921875 -0.109375 -21.082031 -0.109375 -24.4375 C -0.109375 -27.78125 0.425781 -30.945312 1.5 -33.9375 C 2.582031 -36.925781 4.070312 -39.519531 5.96875 -41.71875 C 7.863281 -43.925781 10.125 -45.671875 12.75 -46.953125 C 15.382812 -48.234375 18.238281 -48.875 21.3125 -48.875 C 23.96875 -48.875 26.335938 -48.421875 28.421875 -47.515625 C 30.503906 -46.609375 32.570312 -45.25 34.625 -43.4375 L 34.625 -47.734375 L 45.234375 -47.734375 Z M 34.625 -35.03125 C 33.363281 -36.4375 31.734375 -37.503906 29.734375 -38.234375 C 27.734375 -38.972656 25.796875 -39.34375 23.921875 -39.34375 C 19.921875 -39.34375 16.679688 -37.941406 14.203125 -35.140625 C 11.734375 -32.335938 10.5 -28.769531 10.5 -24.4375 C 10.5 -22.28125 10.832031 -20.285156 11.5 -18.453125 C 12.164062 -16.628906 13.085938 -15.050781 14.265625 -13.71875 C 15.441406 -12.394531 16.859375 -11.347656 18.515625 -10.578125 C 20.171875 -9.804688 21.972656 -9.421875 23.921875 -9.421875 C 25.796875 -9.421875 27.734375 -9.804688 29.734375 -10.578125 C 31.734375 -11.347656 33.363281 -12.429688 34.625 -13.828125 Z M 34.625 -35.03125 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(566.19898, 531.479417)"><g><path d="M 30.328125 -53.9375 L 17.421875 -53.9375 L 17.421875 -66.84375 L 30.328125 -66.84375 Z M 40.0625 0 L 7.984375 0 L 7.984375 -9.53125 L 18.546875 -9.53125 L 18.546875 -38.15625 L 7.984375 -38.15625 L 7.984375 -47.734375 L 29.140625 -47.734375 L 29.140625 -9.53125 L 40.0625 -9.53125 Z M 40.0625 0 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(620.109988, 531.479417)"><g><path d="M 9.734375 -19.828125 C 10.242188 -16.546875 11.804688 -13.820312 14.421875 -11.65625 C 17.035156 -9.488281 20.546875 -8.40625 24.953125 -8.40625 C 28.398438 -8.40625 31.394531 -8.941406 33.9375 -10.015625 C 36.476562 -11.085938 38.671875 -12.515625 40.515625 -14.296875 L 45.953125 -6.8125 C 42.878906 -3.738281 39.625 -1.640625 36.1875 -0.515625 C 32.757812 0.609375 29.015625 1.171875 24.953125 1.171875 C 21.253906 1.171875 17.816406 0.554688 14.640625 -0.671875 C 11.472656 -1.898438 8.726562 -3.613281 6.40625 -5.8125 C 4.082031 -8.019531 2.257812 -10.640625 0.9375 -13.671875 C -0.375 -16.710938 -1.03125 -20.09375 -1.03125 -23.8125 C -1.03125 -27.4375 -0.425781 -30.773438 0.78125 -33.828125 C 2 -36.890625 3.707031 -39.535156 5.90625 -41.765625 C 8.113281 -44.003906 10.753906 -45.75 13.828125 -47 C 16.898438 -48.25 20.300781 -48.875 24.03125 -48.875 C 27.882812 -48.875 31.378906 -48.210938 34.515625 -46.890625 C 37.660156 -45.578125 40.351562 -43.671875 42.59375 -41.171875 C 44.832031 -38.679688 46.582031 -35.632812 47.84375 -32.03125 C 49.101562 -28.4375 49.734375 -24.367188 49.734375 -19.828125 Z M 37.75 -29.140625 C 37.207031 -32.210938 35.617188 -34.679688 32.984375 -36.546875 C 30.359375 -38.410156 27.375 -39.34375 24.03125 -39.34375 C 20.675781 -39.34375 17.664062 -38.410156 15 -36.546875 C 12.34375 -34.679688 10.738281 -32.210938 10.1875 -29.140625 Z M 37.75 -29.140625 "/></g></g></g><g fill="#ffffff" fill-opacity="1"><g transform="translate(674.02095, 531.479417)"><g><path d="M 46.453125 -14.296875 C 46.453125 -11.179688 45.753906 -8.648438 44.359375 -6.703125 C 42.960938 -4.765625 41.160156 -3.195312 38.953125 -2 C 36.753906 -0.800781 34.296875 0.0234375 31.578125 0.484375 C 28.859375 0.941406 26.203125 1.171875 23.609375 1.171875 C 19.273438 1.171875 14.957031 0.539062 10.65625 -0.71875 C 6.351562 -1.976562 2.628906 -3.632812 -0.515625 -5.6875 L 3.890625 -14.390625 C 7.648438 -12.203125 11.09375 -10.65625 14.21875 -9.75 C 17.34375 -8.851562 20.472656 -8.40625 23.609375 -8.40625 C 27.878906 -8.40625 30.988281 -8.851562 32.9375 -9.75 C 34.882812 -10.65625 35.859375 -11.910156 35.859375 -13.515625 C 35.859375 -14.304688 35.582031 -14.957031 35.03125 -15.46875 C 34.488281 -15.976562 33.582031 -16.445312 32.3125 -16.875 C 31.050781 -17.300781 29.390625 -17.726562 27.328125 -18.15625 C 25.265625 -18.582031 22.695312 -19.035156 19.625 -19.515625 C 17.164062 -19.921875 14.832031 -20.421875 12.625 -21.015625 C 10.425781 -21.617188 8.488281 -22.46875 6.8125 -23.5625 C 5.132812 -24.65625 3.789062 -26.035156 2.78125 -27.703125 C 1.78125 -29.378906 1.28125 -31.484375 1.28125 -34.015625 C 1.28125 -36.578125 1.9375 -38.804688 3.25 -40.703125 C 4.5625 -42.597656 6.285156 -44.160156 8.421875 -45.390625 C 10.554688 -46.617188 12.957031 -47.503906 15.625 -48.046875 C 18.289062 -48.597656 20.953125 -48.875 23.609375 -48.875 C 27.367188 -48.875 31.015625 -48.382812 34.546875 -47.40625 C 38.085938 -46.4375 41.1875 -45.046875 43.84375 -43.234375 L 39.640625 -35.03125 C 36.984375 -36.707031 34.398438 -37.84375 31.890625 -38.4375 C 29.378906 -39.039062 26.617188 -39.34375 23.609375 -39.34375 C 22.347656 -39.34375 21.035156 -39.273438 19.671875 -39.140625 C 18.304688 -39.003906 17.039062 -38.738281 15.875 -38.34375 C 14.71875 -37.945312 13.753906 -37.414062 12.984375 -36.75 C 12.210938 -36.082031 11.828125 -35.269531 11.828125 -34.3125 C 11.828125 -33.050781 12.945312 -32.019531 15.1875 -31.21875 C 17.425781 -30.414062 21.242188 -29.625 26.640625 -28.84375 C 29.578125 -28.425781 32.253906 -27.898438 34.671875 -27.265625 C 37.097656 -26.640625 39.179688 -25.789062 40.921875 -24.71875 C 42.671875 -23.644531 44.03125 -22.257812 45 -20.5625 C 45.96875 -18.875 46.453125 -16.785156 46.453125 -14.296875 Z M 46.453125 -14.296875 "/></g></g></g></svg>
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._button_1vhs7_51{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;border-radius:6px;padding:10px 16px;font-family:Inter,system-ui,-apple-system,sans-serif;font-weight:600;font-size:.875rem;letter-spacing:.01em;cursor:pointer;-webkit-user-select:none;user-select:none;transition:all .3s ease}._button_1vhs7_51:active{transform:scale(.98);transition-duration:.1s}._button_1vhs7_51:focus-visible{outline:2px solid var(--sandui-accent);outline-offset:3px}._button_1vhs7_51:disabled,._button_1vhs7_51[disabled]{opacity:.45;cursor:not-allowed;pointer-events:none}._primary_1vhs7_81{background-color:var(--sandui-accent);color:#fff;box-shadow:0 4px 12px #0000000d}._primary_1vhs7_81:hover{background-color:var(--sandui-accent-dark);box-shadow:0 12px 30px #0000001a;transform:translateY(-1px)}._secondary_1vhs7_92{background-color:var(--sandui-primary);color:#fff;box-shadow:0 4px 12px #0000000d}._secondary_1vhs7_92:hover{background-color:var(--sandui-primary-light);box-shadow:0 12px 30px #0000001a;transform:translateY(-1px)}._ghost_1vhs7_103{background-color:transparent;color:var(--theme-text);border:1px solid var(--theme-border)}._ghost_1vhs7_103:hover{background-color:var(--sandui-accent-soft);border-color:var(--sandui-accent);color:var(--sandui-accent)}._link_1xqus_1{font-family:Inter,system-ui,-apple-system,sans-serif;font-size:.875rem;font-weight:500;text-decoration:none;cursor:pointer;transition:all .3s ease}._link_1xqus_1:hover{text-decoration:underline}._link_1xqus_1:focus-visible{outline:2px solid var(--sandui-accent);outline-offset:2px}._default_1xqus_17{color:var(--sandui-accent)}._muted_1xqus_21{color:var(--theme-text-muted)}._muted_1xqus_21:hover{color:var(--theme-text)}._accent_1xqus_28{color:var(--sandui-accent);font-weight:600}._badge_1432t_1{display:inline-flex;align-items:center;gap:4px;font-family:Inter,system-ui,-apple-system,sans-serif;font-size:.75rem;font-weight:600;padding:2px 8px;border-radius:9999px;line-height:1.4;letter-spacing:.02em;text-transform:uppercase}._default_1432t_15{background:var(--theme-border);color:var(--theme-text)}._info_1432t_20{background:#3b82f626;color:var(--sandui-info);border:1px solid rgba(59,130,246,.3)}._success_1432t_26{background:#10b98126;color:var(--sandui-success);border:1px solid rgba(16,185,129,.3)}._warning_1432t_32{background:#f59e0b26;color:var(--sandui-warning);border:1px solid rgba(245,158,11,.3)}._error_1432t_38{background:#ef444426;color:var(--sandui-error);border:1px solid rgba(239,68,68,.3)}._wrapper_cf5v8_51{display:flex;flex-direction:column;width:100%;position:relative;font-family:Inter,system-ui,-apple-system,sans-serif}._label_cf5v8_59{font-size:.875rem;font-weight:500;color:var(--theme-text);margin-bottom:6px;display:inline-block}._input_cf5v8_67{width:100%;padding:12px 16px;font-family:Inter,system-ui,-apple-system,sans-serif;font-size:.875rem;color:var(--theme-text);background-color:var(--theme-input-bg);border:1px solid var(--theme-border);border-radius:6px;outline:none;transition:all .15s ease;box-shadow:0 1px 2px #0000000d}._input_cf5v8_67::placeholder{color:var(--theme-text-muted);opacity:.8}._input_cf5v8_67:hover:not(:disabled){border-color:var(--theme-border);opacity:.8}._input_cf5v8_67:focus{border-color:var(--sandui-accent);box-shadow:0 0 0 3px var(--sandui-accent-soft),0 1px 2px #0000000d;background-color:var(--theme-surface)}._input_cf5v8_67:disabled{opacity:.6;cursor:not-allowed;background-color:var(--theme-surface-variant)}._input_cf5v8_67._error_cf5v8_98{border-color:var(--sandui-error)}._input_cf5v8_67._error_cf5v8_98:focus{box-shadow:0 0 0 3px #ef444426}._errorText_cf5v8_105{font-size:.75rem;color:var(--sandui-error);margin-top:6px;font-weight:500}._card_1oe83_51{background-color:var(--theme-surface);border:1px solid var(--theme-border);border-radius:8px;padding:24px;font-family:Inter,system-ui,-apple-system,sans-serif;box-shadow:0 4px 12px #0000000d;transition:all .3s ease}._card_1oe83_51:hover{border-color:var(--sandui-accent);box-shadow:0 12px 30px #0000001a;transform:translateY(-2px)}._box_160ue_51{background-color:var(--sandui-secondary);display:block;font-family:inherit}._toast_oq8z7_1{display:flex;align-items:center;gap:8px;padding:10px 16px;border-radius:8px;font-family:Inter,system-ui,-apple-system,sans-serif;font-size:.875rem;box-shadow:0 12px 30px #0000001a;animation:_slideIn_oq8z7_1 .25s ease}._message_oq8z7_13{flex:1}._close_oq8z7_17{display:flex;cursor:pointer;background:none;border:none;color:inherit;opacity:.6;padding:2px}._close_oq8z7_17:hover{opacity:1}._info_oq8z7_30{background:var(--theme-surface);color:var(--theme-text);border:1px solid var(--theme-border);border-left:4px solid var(--sandui-info)}._success_oq8z7_37{background:var(--theme-surface);color:var(--theme-text);border:1px solid var(--theme-border);border-left:4px solid var(--sandui-success)}._warning_oq8z7_44{background:var(--theme-surface);color:var(--theme-text);border:1px solid var(--theme-border);border-left:4px solid var(--sandui-warning)}._error_oq8z7_51{background:var(--theme-surface);color:var(--theme-text);border:1px solid var(--theme-border);border-left:4px solid var(--sandui-error)}@keyframes _slideIn_oq8z7_1{0%{transform:translateY(-8px);opacity:0}to{transform:translateY(0);opacity:1}}:root{--sandui-primary: #262626;--sandui-accent: orange;--sandui-secondary: #F2F2F2;--sandui-accent-dark: #cc8400;--sandui-accent-light: #ffb733;--sandui-accent-soft: rgba(255, 165, 0, .15);--sandui-accent-glow: rgba(255, 165, 0, .4);--sandui-primary-dark: rgb(25.25, 25.25, 25.25);--sandui-primary-light: rgb(63.5, 63.5, 63.5);--sandui-primary-muted: rgba(38, 38, 38, .6);--sandui-secondary-dark: rgb(221.6, 221.6, 221.6);--sandui-secondary-light: #FFFFFF;--sandui-success: #10B981;--sandui-warning: #F59E0B;--sandui-error: #EF4444;--sandui-info: #3B82F6;--sandui-shadow-sm: 0 4px 12px rgba(0, 0, 0, .05);--sandui-shadow-md: 0 12px 30px rgba(0, 0, 0, .1);--theme-bg: #F2F2F2;--theme-surface: #FFFFFF;--theme-surface-variant: rgb(221.6, 221.6, 221.6);--theme-text: #262626;--theme-text-muted: rgba(38, 38, 38, .65);--theme-border: rgba(38, 38, 38, .12);--theme-input-bg: #FFFFFF;--theme-button-bg: #262626;--theme-button-text: #FFFFFF;--theme-footer-bg: #262626;--theme-footer-text: rgba(255, 255, 255, .8);--theme-footer-heading: #FFFFFF;--theme-header-bg: rgba(255, 255, 255, .85)}[data-theme=dark]{--theme-bg: #111111;--theme-surface: #262626;--theme-surface-variant: rgb(63.5, 63.5, 63.5);--theme-text: #FFFFFF;--theme-text-muted: rgba(255, 255, 255, .6);--theme-border: rgba(255, 255, 255, .1);--theme-input-bg: rgba(0, 0, 0, .2);--theme-button-bg: #FFFFFF;--theme-button-text: #262626;--theme-footer-bg: #0a0a0a;--theme-footer-text: rgba(255, 255, 255, .6);--theme-footer-heading: #FFFFFF;--theme-header-bg: rgba(38, 38, 38, .85)}._navbar_fpxv0_51{background-color:#262626cc;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.1);position:sticky;top:0;z-index:100;color:var(--sandui-secondary);padding:12px 16px;display:flex;align-items:center;justify-content:space-between;transition:all .3s ease}._navbar_fpxv0_51._fixed_fpxv0_66{position:fixed;left:0;right:0}._navbar_fpxv0_51 ._logo_fpxv0_71{display:flex;align-items:center;gap:8px}._navbar_fpxv0_51 ._logo_fpxv0_71 img{height:28px;width:auto}._navbar_fpxv0_51 h1{color:var(--sandui-accent);margin:0;font-family:Outfit,Inter,system-ui,sans-serif;font-size:1.25rem;font-weight:600;letter-spacing:-.01em}._navbar_fpxv0_51>div{display:flex;align-items:center;gap:16px}._sidebar_12xgb_1{width:240px;min-height:100vh;background:var(--theme-surface);border-right:1px solid var(--theme-border);padding:16px 0;font-family:Inter,system-ui,-apple-system,sans-serif}._item_12xgb_10{display:flex;align-items:center;gap:8px;padding:8px 16px;color:var(--theme-text-muted);text-decoration:none;font-size:.875rem;transition:all .3s ease;border-left:3px solid transparent}._item_12xgb_10:hover{background:var(--sandui-accent-soft);color:var(--theme-text)}._item_12xgb_10._active_12xgb_25{color:var(--sandui-accent);font-weight:600;border-left-color:var(--sandui-accent);background:var(--sandui-accent-soft)}._footer_ujqx6_1{background:var(--theme-footer-bg);color:var(--theme-footer-text);font-family:Inter,system-ui,-apple-system,sans-serif;overflow:hidden}._main_ujqx6_8{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px;padding:48px 24px}._brandCol_ujqx6_17{display:flex;flex-direction:column;gap:16px}._brandLink_ujqx6_23{text-decoration:none;display:inline-flex;align-items:center;gap:16px}._brandLogoImage_ujqx6_30{width:48px;height:48px;object-fit:contain;border-radius:4px}._brandName_ujqx6_37{font-family:Outfit,Inter,system-ui,sans-serif;font-size:1.25rem;font-weight:600;color:var(--theme-footer-heading)}._brandAccent_ujqx6_44{color:orange}._description_ujqx6_48{font-size:.875rem;line-height:1.6;color:var(--theme-footer-text);max-width:380px;margin:0}._linkCol_ujqx6_56{display:flex;flex-direction:column;gap:10px}._colTitle_ujqx6_62{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--theme-footer-heading);margin:0 0 8px}._footerLink_ujqx6_71{font-size:.875rem;color:var(--theme-footer-text);text-decoration:none;transition:all .3s ease}._footerLink_ujqx6_71:hover{color:var(--theme-footer-heading)}._bottom_ujqx6_81{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid var(--theme-border)}._copyright_ujqx6_91{font-size:.75rem;color:var(--theme-footer-text);opacity:.7}._copyright_ujqx6_91 a{color:var(--theme-footer-text);text-decoration:none}._copyright_ujqx6_91 a:hover{color:var(--theme-footer-heading)}._socials_ujqx6_104{display:flex;gap:8px}._socialIcon_ujqx6_109{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;border:1px solid var(--theme-border);color:var(--theme-footer-text);text-decoration:none;transition:all .3s ease}._socialIcon_ujqx6_109:hover{border-color:var(--sandui-accent);color:var(--sandui-accent);background:var(--sandui-accent-soft)}._watermark_ujqx6_127{text-align:center;font-family:Outfit,Inter,system-ui,sans-serif;font-size:clamp(48px,10vw,120px);font-weight:800;letter-spacing:.08em;line-height:1;padding:24px 0 32px;background:linear-gradient(180deg,var(--sandui-accent-glow) 0%,var(--sandui-accent-soft) 40%,transparent 100%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-user-select:none;user-select:none}@media(max-width:768px){._main_ujqx6_8{grid-template-columns:1fr;gap:32px;padding:32px 16px}._bottom_ujqx6_81{flex-direction:column;gap:16px;text-align:center;padding:16px}}
|