le-kit 0.1.12 → 0.1.13

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.
Files changed (121) hide show
  1. package/custom-elements.json +1268 -1268
  2. package/dist/collection/assets/custom-elements.json +750 -750
  3. package/dist/components/index.d.ts +33 -0
  4. package/dist/components/index.js +113 -0
  5. package/dist/components/index.js.map +1 -0
  6. package/dist/components/le-box.d.ts +11 -0
  7. package/dist/components/le-box.js +257 -0
  8. package/dist/components/le-box.js.map +1 -0
  9. package/dist/components/le-button.d.ts +11 -0
  10. package/dist/components/le-button.js +9 -0
  11. package/dist/components/le-button.js.map +1 -0
  12. package/dist/components/le-button2.js +1149 -0
  13. package/dist/components/le-button2.js.map +1 -0
  14. package/dist/components/le-card.d.ts +11 -0
  15. package/dist/components/le-card.js +84 -0
  16. package/dist/components/le-card.js.map +1 -0
  17. package/dist/components/le-checkbox.d.ts +11 -0
  18. package/dist/components/le-checkbox.js +9 -0
  19. package/dist/components/le-checkbox.js.map +1 -0
  20. package/dist/components/le-component.d.ts +11 -0
  21. package/dist/components/le-component.js +9 -0
  22. package/dist/components/le-component.js.map +1 -0
  23. package/dist/components/le-number-input.d.ts +11 -0
  24. package/dist/components/le-number-input.js +272 -0
  25. package/dist/components/le-number-input.js.map +1 -0
  26. package/dist/components/le-popover.d.ts +11 -0
  27. package/dist/components/le-popover.js +9 -0
  28. package/dist/components/le-popover.js.map +1 -0
  29. package/dist/components/le-popover2.js +382 -0
  30. package/dist/components/le-popover2.js.map +1 -0
  31. package/dist/components/le-popup.d.ts +11 -0
  32. package/dist/components/le-popup.js +279 -0
  33. package/dist/components/le-popup.js.map +1 -0
  34. package/dist/components/le-round-progress.d.ts +11 -0
  35. package/dist/components/le-round-progress.js +135 -0
  36. package/dist/components/le-round-progress.js.map +1 -0
  37. package/dist/components/le-slot.d.ts +11 -0
  38. package/dist/components/le-slot.js +9 -0
  39. package/dist/components/le-slot.js.map +1 -0
  40. package/dist/components/le-stack.d.ts +11 -0
  41. package/dist/components/le-stack.js +199 -0
  42. package/dist/components/le-stack.js.map +1 -0
  43. package/dist/components/le-string-input.d.ts +11 -0
  44. package/dist/components/le-string-input.js +9 -0
  45. package/dist/components/le-string-input.js.map +1 -0
  46. package/dist/components/le-text.d.ts +11 -0
  47. package/dist/components/le-text.js +399 -0
  48. package/dist/components/le-text.js.map +1 -0
  49. package/dist/components/le-turntable.d.ts +11 -0
  50. package/dist/components/le-turntable.js +164 -0
  51. package/dist/components/le-turntable.js.map +1 -0
  52. package/dist/components/utils.js +310 -0
  53. package/dist/components/utils.js.map +1 -0
  54. package/dist/core/collection/assets/custom-elements.json +4305 -0
  55. package/dist/core/collection/themes/base.css +89 -0
  56. package/dist/core/collection/themes/dark.css +100 -0
  57. package/dist/core/collection/themes/default.css +108 -0
  58. package/dist/core/collection/themes/gradient.css +100 -0
  59. package/dist/core/collection/themes/index.css +413 -0
  60. package/dist/core/collection/themes/minimal.css +100 -0
  61. package/dist/core/collection/themes/warm.css +100 -0
  62. package/dist/core/components/index.d.ts +33 -0
  63. package/dist/core/components/index.js +113 -0
  64. package/dist/core/components/index.js.map +1 -0
  65. package/dist/core/components/le-box.d.ts +11 -0
  66. package/dist/core/components/le-box.js +225 -0
  67. package/dist/core/components/le-box.js.map +1 -0
  68. package/dist/core/components/le-button.d.ts +11 -0
  69. package/dist/core/components/le-button.js +9 -0
  70. package/dist/core/components/le-button.js.map +1 -0
  71. package/dist/core/components/le-button2.js +121 -0
  72. package/dist/core/components/le-button2.js.map +1 -0
  73. package/dist/core/components/le-card.d.ts +11 -0
  74. package/dist/core/components/le-card.js +52 -0
  75. package/dist/core/components/le-card.js.map +1 -0
  76. package/dist/core/components/le-checkbox.d.ts +11 -0
  77. package/dist/core/components/le-checkbox.js +87 -0
  78. package/dist/core/components/le-checkbox.js.map +1 -0
  79. package/dist/core/components/le-number-input.d.ts +11 -0
  80. package/dist/core/components/le-number-input.js +246 -0
  81. package/dist/core/components/le-number-input.js.map +1 -0
  82. package/dist/core/components/le-popover.d.ts +11 -0
  83. package/dist/core/components/le-popover.js +385 -0
  84. package/dist/core/components/le-popover.js.map +1 -0
  85. package/dist/core/components/le-popup.d.ts +11 -0
  86. package/dist/core/components/le-popup.js +253 -0
  87. package/dist/core/components/le-popup.js.map +1 -0
  88. package/dist/core/components/le-round-progress.d.ts +11 -0
  89. package/dist/core/components/le-round-progress.js +135 -0
  90. package/dist/core/components/le-round-progress.js.map +1 -0
  91. package/dist/core/components/le-stack.d.ts +11 -0
  92. package/dist/core/components/le-stack.js +167 -0
  93. package/dist/core/components/le-stack.js.map +1 -0
  94. package/dist/core/components/le-string-input.d.ts +11 -0
  95. package/dist/core/components/le-string-input.js +127 -0
  96. package/dist/core/components/le-string-input.js.map +1 -0
  97. package/dist/core/components/le-text.d.ts +11 -0
  98. package/dist/core/components/le-text.js +367 -0
  99. package/dist/core/components/le-text.js.map +1 -0
  100. package/dist/core/components/le-turntable.d.ts +11 -0
  101. package/dist/core/components/le-turntable.js +164 -0
  102. package/dist/core/components/le-turntable.js.map +1 -0
  103. package/dist/core/components/utils.js +310 -0
  104. package/dist/core/components/utils.js.map +1 -0
  105. package/dist/docs.json +1 -1
  106. package/dist/le-kit/assets/custom-elements.json +750 -750
  107. package/dist/le-kit/dist/collection/themes/base.css +89 -0
  108. package/dist/le-kit/dist/collection/themes/dark.css +100 -0
  109. package/dist/le-kit/dist/collection/themes/default.css +108 -0
  110. package/dist/le-kit/dist/collection/themes/gradient.css +100 -0
  111. package/dist/le-kit/dist/collection/themes/index.css +413 -0
  112. package/dist/le-kit/dist/collection/themes/minimal.css +100 -0
  113. package/dist/le-kit/dist/collection/themes/warm.css +100 -0
  114. package/package.json +2 -2
  115. /package/dist/{le-kit → collection/dist/collection}/themes/base.css +0 -0
  116. /package/dist/{le-kit → collection/dist/collection}/themes/dark.css +0 -0
  117. /package/dist/{le-kit → collection/dist/collection}/themes/default.css +0 -0
  118. /package/dist/{le-kit → collection/dist/collection}/themes/gradient.css +0 -0
  119. /package/dist/{le-kit → collection/dist/collection}/themes/index.css +0 -0
  120. /package/dist/{le-kit → collection/dist/collection}/themes/minimal.css +0 -0
  121. /package/dist/{le-kit → collection/dist/collection}/themes/warm.css +0 -0
@@ -0,0 +1,89 @@
1
+ /**
2
+ * Le-Kit Base Design Tokens
3
+ *
4
+ * Structural tokens that rarely change between themes:
5
+ * - Spacing scale
6
+ * - Typography (font families, sizes, weights, line heights)
7
+ * - Transitions
8
+ * - Z-index layers
9
+ *
10
+ * Import this file along with a theme file (default.css, dark.css, etc.)
11
+ */
12
+
13
+ :root {
14
+ -webkit-font-smoothing: antialiased;
15
+ -moz-osx-font-smoothing: grayscale;
16
+
17
+ /* ============================================
18
+ * SPACING SCALE
19
+ * ============================================ */
20
+ --le-spacing-0: 0;
21
+ --le-spacing-1: 0.25rem; /* 4px */
22
+ --le-spacing-2: 0.5rem; /* 8px */
23
+ --le-spacing-3: 0.75rem; /* 12px */
24
+ --le-spacing-4: 1rem; /* 16px */
25
+ --le-spacing-5: 1.25rem; /* 20px */
26
+ --le-spacing-6: 1.5rem; /* 24px */
27
+ --le-spacing-8: 2rem; /* 32px */
28
+ --le-spacing-10: 2.5rem; /* 40px */
29
+ --le-spacing-12: 3rem; /* 48px */
30
+ --le-spacing-16: 4rem; /* 64px */
31
+
32
+ /* ============================================
33
+ * TYPOGRAPHY
34
+ * ============================================ */
35
+ --le-font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
36
+ --le-font-family-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
37
+
38
+ /* Font sizes */
39
+ --le-font-size-xs: 0.75rem; /* 12px */
40
+ --le-font-size-sm: 0.875rem; /* 14px */
41
+ --le-font-size-md: 1rem; /* 16px */
42
+ --le-font-size-lg: 1.125rem; /* 18px */
43
+ --le-font-size-xl: 1.25rem; /* 20px */
44
+ --le-font-size-2xl: 1.5rem; /* 24px */
45
+ --le-font-size-3xl: 1.875rem; /* 30px */
46
+ --le-font-size-4xl: 2.25rem; /* 36px */
47
+
48
+ /* Font weights */
49
+ --le-font-weight-normal: 400;
50
+ --le-font-weight-medium: 500;
51
+ --le-font-weight-semibold: 600;
52
+ --le-font-weight-bold: 700;
53
+
54
+ /* Line heights */
55
+ --le-line-height-tight: 1.25;
56
+ --le-line-height-normal: 1.5;
57
+ --le-line-height-relaxed: 1.75;
58
+
59
+ /* ============================================
60
+ * RADIUSES
61
+ * ============================================ */
62
+ --le-radius-none: 0;
63
+ --le-radius-xs: 0.066rem; /* 1px */
64
+ --le-radius-sm: 0.125rem; /* 2px */
65
+ --le-radius-md: 0.25rem; /* 4px */
66
+ --le-radius-lg: 0.5rem; /* 8px */
67
+ --le-radius-xl: 0.75rem; /* 12px */
68
+ --le-radius-2xl: 1rem; /* 16px */
69
+ --le-radius-full: 9999px;
70
+
71
+ /* ============================================
72
+ * TRANSITIONS
73
+ * ============================================ */
74
+ --le-transition-fast: 100ms;
75
+ --le-transition-normal: 200ms;
76
+ --le-transition-slow: 300ms;
77
+ --le-transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
78
+
79
+ /* ============================================
80
+ * Z-INDEX LAYERS
81
+ * ============================================ */
82
+ --le-z-dropdown: 1000;
83
+ --le-z-sticky: 1020;
84
+ --le-z-fixed: 1030;
85
+ --le-z-modal-backdrop: 1040;
86
+ --le-z-modal: 1050;
87
+ --le-z-popover: 1060;
88
+ --le-z-tooltip: 1070;
89
+ }
@@ -0,0 +1,100 @@
1
+ /**
2
+ * Le-Kit Dark Theme
3
+ *
4
+ * Dark mode with light text on dark backgrounds.
5
+ *
6
+ * Usage: set theme="dark" on any element, or import as your default.
7
+ */
8
+
9
+ [theme="dark"] {
10
+ /* Primary brand color - lighter for dark backgrounds */
11
+ --le-color-primary: #4da6ff;
12
+ --le-color-primary-light: #80c1ff;
13
+ --le-color-primary-dark: #0088ff;
14
+ --le-color-primary-contrast: #000000;
15
+
16
+ /* Secondary accent color */
17
+ --le-color-secondary: #868e96;
18
+ --le-color-secondary-light: #adb5bd;
19
+ --le-color-secondary-dark: #6c757d;
20
+ --le-color-secondary-contrast: #000000;
21
+
22
+ /* Semantic colors - adjusted for dark mode */
23
+ --le-color-success: #48c764;
24
+ --le-color-success-light: #6dd587;
25
+ --le-color-success-dark: #28a745;
26
+ --le-color-success-contrast: #000000;
27
+
28
+ --le-color-warning: #ffcd39;
29
+ --le-color-warning-light: #ffda6a;
30
+ --le-color-warning-dark: #ffc107;
31
+ --le-color-warning-contrast: #000000;
32
+
33
+ --le-color-danger: #e4606d;
34
+ --le-color-danger-light: #ea868f;
35
+ --le-color-danger-dark: #dc3545;
36
+ --le-color-danger-contrast: #000000;
37
+
38
+ --le-color-info: #3ab0c3;
39
+ --le-color-info-light: #6dc4d3;
40
+ --le-color-info-dark: #17a2b8;
41
+ --le-color-info-contrast: #000000;
42
+
43
+ /* Neutral colors - inverted */
44
+ --le-color-white: #ffffff;
45
+ --le-color-black: #000000;
46
+ --le-color-gray-50: #212121;
47
+ --le-color-gray-100: #424242;
48
+ --le-color-gray-200: #616161;
49
+ --le-color-gray-300: #757575;
50
+ --le-color-gray-400: #9e9e9e;
51
+ --le-color-gray-500: #bdbdbd;
52
+ --le-color-gray-600: #e0e0e0;
53
+ --le-color-gray-700: #eeeeee;
54
+ --le-color-gray-800: #f5f5f5;
55
+ --le-color-gray-900: #fafafa;
56
+
57
+ /* Background colors */
58
+ --le-color-background: #121212;
59
+ --le-color-background-secondary: #1e1e1e;
60
+ --le-color-background-tertiary: #2d2d2d;
61
+
62
+ /* Surface colors */
63
+ --le-color-surface: #1e1e1e;
64
+ --le-color-surface-elevated: #2d2d2d;
65
+
66
+ /* Text colors */
67
+ --le-color-text-primary: #ffffff;
68
+ --le-color-text-secondary: #b3b3b3;
69
+ --le-color-text-disabled: #666666;
70
+ --le-color-text-inverse: #121212;
71
+
72
+ /* Border colors */
73
+ --le-color-border: #333333;
74
+ --le-color-border-light: #2d2d2d;
75
+ --le-color-border-dark: #444444;
76
+
77
+ /** Input borders */
78
+ --le-border-width: 2px;
79
+ --le-color-border-input: #515c6b;
80
+
81
+ /* Focus ring */
82
+ --le-color-focus: rgba(77, 166, 255, 0.5);
83
+
84
+ /* Border radius - same as default */
85
+ --le-radius-none: 0;
86
+ --le-radius-sm: 0.125rem;
87
+ --le-radius-md: 0.25rem;
88
+ --le-radius-lg: 0.5rem;
89
+ --le-radius-xl: 0.75rem;
90
+ --le-radius-2xl: 1rem;
91
+ --le-radius-full: 9999px;
92
+
93
+ /* Shadows - darker for dark mode */
94
+ --le-shadow-none: none;
95
+ --le-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
96
+ --le-shadow-md: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
97
+ --le-shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
98
+ --le-shadow-xl: 0 10px 15px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
99
+ --le-shadow-2xl: 0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.3);
100
+ }
@@ -0,0 +1,108 @@
1
+ /**
2
+ * Le-Kit Default Theme
3
+ *
4
+ * Clean, professional light theme with blue primary color.
5
+ *
6
+ * Usage:
7
+ * 1. As default: import alongside base.css
8
+ * 2. For switching: set theme="default" on any element
9
+ *
10
+ * To create a custom theme:
11
+ * 1. Copy this file
12
+ * 2. Change selector to :root or [theme="your-theme"]
13
+ * 3. Modify the variables you need
14
+ */
15
+
16
+ :root,
17
+ [theme="default"] {
18
+ /* Primary brand color */
19
+ --le-color-primary: #0088ff;
20
+ --le-color-primary-light: #4da6ff;
21
+ --le-color-primary-dark: #0066cc;
22
+ --le-color-primary-contrast: #ffffff;
23
+
24
+ /* Secondary accent color */
25
+ --le-color-secondary: #6c757d;
26
+ --le-color-secondary-light: #868e96;
27
+ --le-color-secondary-dark: #545b62;
28
+ --le-color-secondary-contrast: #ffffff;
29
+
30
+ /* Semantic colors */
31
+ --le-color-success: #28a745;
32
+ --le-color-success-light: #48c764;
33
+ --le-color-success-dark: #1e7e34;
34
+ --le-color-success-contrast: #ffffff;
35
+
36
+ --le-color-warning: #ffc107;
37
+ --le-color-warning-light: #ffcd39;
38
+ --le-color-warning-dark: #d39e00;
39
+ --le-color-warning-contrast: #212529;
40
+
41
+ --le-color-danger: #dc3545;
42
+ --le-color-danger-light: #e4606d;
43
+ --le-color-danger-dark: #bd2130;
44
+ --le-color-danger-contrast: #ffffff;
45
+
46
+ --le-color-info: #17a2b8;
47
+ --le-color-info-light: #3ab0c3;
48
+ --le-color-info-dark: #117a8b;
49
+ --le-color-info-contrast: #ffffff;
50
+
51
+ /* Neutral colors */
52
+ --le-color-white: #ffffff;
53
+ --le-color-black: #000000;
54
+ --le-color-gray-50: #fafafa;
55
+ --le-color-gray-100: #f5f5f5;
56
+ --le-color-gray-200: #eeeeee;
57
+ --le-color-gray-300: #e0e0e0;
58
+ --le-color-gray-400: #bdbdbd;
59
+ --le-color-gray-500: #9e9e9e;
60
+ --le-color-gray-600: #757575;
61
+ --le-color-gray-700: #616161;
62
+ --le-color-gray-800: #424242;
63
+ --le-color-gray-900: #212121;
64
+
65
+ /* Background colors */
66
+ --le-color-background: #ffffff;
67
+ --le-color-background-secondary: #f5f5f5;
68
+ --le-color-background-tertiary: #eeeeee;
69
+
70
+ /* Surface colors (cards, modals, etc.) */
71
+ --le-color-surface: #ffffff;
72
+ --le-color-surface-elevated: #ffffff;
73
+
74
+ /* Text colors */
75
+ --le-color-text-primary: #212121;
76
+ --le-color-text-secondary: #757575;
77
+ --le-color-text-disabled: #9e9e9e;
78
+ --le-color-text-inverse: #ffffff;
79
+
80
+ /* Border colors */
81
+ --le-color-border: #e0e0e0;
82
+ --le-color-border-light: #eeeeee;
83
+ --le-color-border-dark: #bdbdbd;
84
+
85
+ /** Input borders */
86
+ --le-border-width: 2px;
87
+ --le-color-border-input: #c4d6e6;
88
+
89
+ /* Focus ring */
90
+ --le-color-focus: rgba(0, 136, 255, 0.5);
91
+
92
+ /* Border radius */
93
+ --le-radius-none: 0;
94
+ --le-radius-sm: 0.125rem; /* 2px */
95
+ --le-radius-md: 0.25rem; /* 4px */
96
+ --le-radius-lg: 0.5rem; /* 8px */
97
+ --le-radius-xl: 0.75rem; /* 12px */
98
+ --le-radius-2xl: 1rem; /* 16px */
99
+ --le-radius-full: 9999px;
100
+
101
+ /* Shadows */
102
+ --le-shadow-none: none;
103
+ --le-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
104
+ --le-shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
105
+ --le-shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
106
+ --le-shadow-xl: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
107
+ --le-shadow-2xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
108
+ }
@@ -0,0 +1,100 @@
1
+ /**
2
+ * Le-Kit Gradient Theme
3
+ *
4
+ * Modern gradient style with purple accents and rounded corners.
5
+ *
6
+ * Usage: set theme="gradient" on any element, or import as your default.
7
+ */
8
+
9
+ [theme="gradient"] {
10
+ /* Primary brand color - purple */
11
+ --le-color-primary: #8b5cf6;
12
+ --le-color-primary-light: #a78bfa;
13
+ --le-color-primary-dark: #7c3aed;
14
+ --le-color-primary-contrast: #ffffff;
15
+
16
+ /* Secondary accent color - pink */
17
+ --le-color-secondary: #ec4899;
18
+ --le-color-secondary-light: #f472b6;
19
+ --le-color-secondary-dark: #db2777;
20
+ --le-color-secondary-contrast: #ffffff;
21
+
22
+ /* Semantic colors */
23
+ --le-color-success: #10b981;
24
+ --le-color-success-light: #34d399;
25
+ --le-color-success-dark: #059669;
26
+ --le-color-success-contrast: #ffffff;
27
+
28
+ --le-color-warning: #f59e0b;
29
+ --le-color-warning-light: #fbbf24;
30
+ --le-color-warning-dark: #d97706;
31
+ --le-color-warning-contrast: #000000;
32
+
33
+ --le-color-danger: #ef4444;
34
+ --le-color-danger-light: #f87171;
35
+ --le-color-danger-dark: #dc2626;
36
+ --le-color-danger-contrast: #ffffff;
37
+
38
+ --le-color-info: #06b6d4;
39
+ --le-color-info-light: #22d3ee;
40
+ --le-color-info-dark: #0891b2;
41
+ --le-color-info-contrast: #ffffff;
42
+
43
+ /* Neutral colors */
44
+ --le-color-white: #ffffff;
45
+ --le-color-black: #000000;
46
+ --le-color-gray-50: #faf5ff;
47
+ --le-color-gray-100: #f3e8ff;
48
+ --le-color-gray-200: #e9d5ff;
49
+ --le-color-gray-300: #d8b4fe;
50
+ --le-color-gray-400: #c084fc;
51
+ --le-color-gray-500: #a855f7;
52
+ --le-color-gray-600: #9333ea;
53
+ --le-color-gray-700: #7e22ce;
54
+ --le-color-gray-800: #6b21a8;
55
+ --le-color-gray-900: #581c87;
56
+
57
+ /* Background colors */
58
+ --le-color-background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
59
+ --le-color-background-secondary: rgba(255, 255, 255, 0.1);
60
+ --le-color-background-tertiary: rgba(255, 255, 255, 0.05);
61
+
62
+ /* Surface colors */
63
+ --le-color-surface: rgba(255, 255, 255, 0.95);
64
+ --le-color-surface-elevated: #ffffff;
65
+
66
+ /* Text colors */
67
+ --le-color-text-primary: #1f2937;
68
+ --le-color-text-secondary: #6b7280;
69
+ --le-color-text-disabled: #9ca3af;
70
+ --le-color-text-inverse: #ffffff;
71
+
72
+ /* Border colors */
73
+ --le-color-border: rgba(139, 92, 246, 0.3);
74
+ --le-color-border-light: rgba(139, 92, 246, 0.1);
75
+ --le-color-border-dark: rgba(139, 92, 246, 0.5);
76
+
77
+ /** Input borders */
78
+ --le-border-width: 2px;
79
+ --le-color-border-input: #eccddd;
80
+
81
+ /* Focus ring */
82
+ --le-color-focus: rgba(139, 92, 246, 0.5);
83
+
84
+ /* Border radius - more rounded */
85
+ --le-radius-none: 0;
86
+ --le-radius-sm: 0.25rem;
87
+ --le-radius-md: 0.5rem;
88
+ --le-radius-lg: 1rem;
89
+ --le-radius-xl: 1.5rem;
90
+ --le-radius-2xl: 2rem;
91
+ --le-radius-full: 9999px;
92
+
93
+ /* Shadows - purple tinted */
94
+ --le-shadow-none: none;
95
+ --le-shadow-sm: 0 1px 2px rgba(139, 92, 246, 0.1);
96
+ --le-shadow-md: 0 4px 6px rgba(139, 92, 246, 0.15), 0 2px 4px rgba(139, 92, 246, 0.1);
97
+ --le-shadow-lg: 0 10px 20px rgba(139, 92, 246, 0.2), 0 4px 8px rgba(139, 92, 246, 0.1);
98
+ --le-shadow-xl: 0 20px 40px rgba(139, 92, 246, 0.25), 0 8px 16px rgba(139, 92, 246, 0.15);
99
+ --le-shadow-2xl: 0 30px 60px rgba(139, 92, 246, 0.3), 0 15px 30px rgba(139, 92, 246, 0.2);
100
+ }