biggerui 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/biggerui.css CHANGED
@@ -1,3 +1,63 @@
1
+ :root {
2
+ /* Colors */
3
+ --primary-color: #4338ca;
4
+ --primary-color-hover: #3d33b8;
5
+ --primary-color-alpha: rgba(67, 56, 202, 0.4);
6
+
7
+ --destructive-color: #991b1b;
8
+ --destructive-color-hover: #8a1919;
9
+ --destructive-color-alpha: rgba(153, 27, 27, 0.4);
10
+
11
+ --text-color: #fafafa;
12
+ --text-color-secondary: #d4d4d4;
13
+ --text-color-placeholder: #737373;
14
+ --text-color-error: #fecaca;
15
+
16
+ --background-color: #171717;
17
+ --background-color-light: rgba(250, 250, 250, 0.05);
18
+ --background-color-light-hover: rgba(250, 250, 250, 0.08);
19
+ --background-color-overlay: rgba(0, 0, 0, 0.5);
20
+
21
+ --border-color: rgba(250, 250, 250, 0.15);
22
+ --border-color-dark: #404040;
23
+
24
+ --shadow-color: rgba(10, 10, 10, 0.05);
25
+ --shadow-color-dark: rgba(10, 10, 10, 0.1);
26
+
27
+ /* Spacing */
28
+ --spacing-xs: 4px;
29
+ --spacing-sm: 8px;
30
+ --spacing-md: 16px;
31
+ --spacing-lg: 24px;
32
+ --spacing-xl: 32px;
33
+
34
+ /* Typography */
35
+ --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
36
+ --font-size-xs: 12px;
37
+ --font-size-sm: 14px;
38
+ --font-size-md: 16px;
39
+ --font-size-lg: 18px;
40
+ --font-size-xl: 20px;
41
+ --font-weight-regular: 400;
42
+ --font-weight-medium: 500;
43
+ --font-weight-bold: 700;
44
+
45
+ /* Border radius */
46
+ --border-radius-sm: 4px;
47
+ --border-radius-md: 8px;
48
+ --border-radius-lg: 12px;
49
+ --border-radius-full: 9999px;
50
+
51
+ /* Shadows */
52
+ --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
53
+ --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
54
+ --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
55
+
56
+ /* Transitions */
57
+ --transition-fast: 150ms;
58
+ --transition-normal: 250ms;
59
+ --transition-slow: 350ms;
60
+ }
1
61
  ._button_1cxsm_1 {
2
62
  display: inline-flex;
3
63
  align-items: center;