solid-ui 3.0.1-4cafc12 → 3.0.1-cfddd49

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.
@@ -1,147 +0,0 @@
1
- /**
2
- * Accessibility Features for Solid-UI
3
- * WCAG 2.1 Level AA compliance
4
- */
5
-
6
- /* ========== Screen Reader Only ========== */
7
- .sr-only {
8
- position: absolute;
9
- width: 1px;
10
- height: 1px;
11
- padding: 0;
12
- margin: -1px;
13
- overflow: hidden;
14
- clip: rect(0, 0, 0, 0);
15
- white-space: nowrap;
16
- border-width: 0;
17
- }
18
-
19
- .sr-only-focusable:focus {
20
- position: static;
21
- width: auto;
22
- height: auto;
23
- padding: inherit;
24
- margin: inherit;
25
- overflow: visible;
26
- clip: auto;
27
- white-space: normal;
28
- }
29
-
30
- /* ========== Focus Indicators ========== */
31
- :focus-visible {
32
- outline: var(--sui-focus-width, 2px) solid var(--sui-focus-color, #667eea);
33
- outline-offset: var(--sui-focus-offset, 2px);
34
- }
35
-
36
- /* Don't hide focus for mouse users who might need it */
37
- :focus:not(:focus-visible) {
38
- outline: none;
39
- }
40
-
41
- /* ========== Skip Links ========== */
42
- .skip-link {
43
- position: absolute;
44
- top: -40px;
45
- left: 0;
46
- background: var(--sui-primary);
47
- color: white;
48
- padding: 0.5em 1em;
49
- text-decoration: none;
50
- z-index: var(--sui-z-tooltip, 200);
51
- }
52
-
53
- .skip-link:focus {
54
- top: 0;
55
- }
56
-
57
- /* ========== High Contrast Mode ========== */
58
- @media (prefers-contrast: high) {
59
- :root {
60
- --sui-border-color: #000;
61
- --sui-border-color-dark: #000;
62
- --sui-text: #000;
63
- --sui-bg-panel: #fff;
64
- --sui-bg: #fff;
65
- --sui-focus-color: #000;
66
- }
67
-
68
- button,
69
- input,
70
- select,
71
- textarea {
72
- border: 2px solid currentColor !important;
73
- }
74
-
75
- a {
76
- text-decoration: underline;
77
- }
78
- }
79
-
80
- /* ========== Reduced Motion ========== */
81
- @media (prefers-reduced-motion: reduce) {
82
- *,
83
- *::before,
84
- *::after {
85
- animation-duration: 0.01ms !important;
86
- animation-iteration-count: 1 !important;
87
- transition-duration: 0.01ms !important;
88
- scroll-behavior: auto !important;
89
- }
90
- }
91
-
92
- /* ========== Touch Targets ========== */
93
- /* Mobile/tablet: 44px minimum for touch targets */
94
- @media (max-width: 1024px) {
95
- button,
96
- a,
97
- input[type="checkbox"],
98
- input[type="radio"],
99
- select {
100
- min-height: var(--sui-touch-target-min, 44px);
101
- min-width: var(--sui-touch-target-min, 44px);
102
- }
103
- }
104
-
105
- /* Desktop: smaller targets are acceptable with precise mouse control */
106
- @media (min-width: 1025px) {
107
- button,
108
- a,
109
- select {
110
- min-height: var(--sui-touch-target-min-desktop, 32px);
111
- min-width: var(--sui-touch-target-min-desktop, 32px);
112
- }
113
-
114
- input[type="checkbox"],
115
- input[type="radio"] {
116
- min-height: auto;
117
- min-width: auto;
118
- }
119
- }
120
-
121
- /* Allow smaller targets when explicitly sized */
122
- .small-touch-target {
123
- min-height: auto;
124
- min-width: auto;
125
- }
126
-
127
- /* ========== Heading Styles ========== */
128
- /* Apply theme colors to headings */
129
- h1, h2, h3, h4, h5, h6 {
130
- color: var(--sui-primary, #7C4DFF);
131
- }
132
-
133
- /* Override for specific contexts where headings should use text color */
134
- .use-text-color h1,
135
- .use-text-color h2,
136
- .use-text-color h3,
137
- .use-text-color h4,
138
- .use-text-color h5,
139
- .use-text-color h6 {
140
- color: var(--sui-text, #333);
141
- }
142
-
143
- /* ========== Dark Mode Support ========== */
144
- @media (prefers-color-scheme: dark) {
145
- /* Dark mode variables can be defined here or in a dark theme preset */
146
- /* For now, themes will handle dark mode explicitly */
147
- }
@@ -1,70 +0,0 @@
1
- /**
2
- * Classic Theme - Preserves Original solid-ui Appearance
3
- *
4
- * This theme maintains backward compatibility by using the exact
5
- * colors and styling from the original solid-ui implementation.
6
- * Use this as the default to ensure no visual changes during migration.
7
- */
8
-
9
- :root {
10
- /* ========== Primary Colors (Original) ========== */
11
- --sui-primary: #3B5998;
12
- --sui-primary-dark: #2d4373;
13
- --sui-primary-light: #7C4DFF;
14
- --sui-accent: #01c9ea;
15
-
16
- /* ========== Gradients (Original) ========== */
17
- --sui-gradient-start: #7C4DFF;
18
- --sui-gradient-end: #01c9ea;
19
- --sui-gradient: linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%);
20
-
21
- /* ========== Backgrounds (Original) ========== */
22
- --sui-bg: #ffffff;
23
- --sui-bg-panel: #ffffff;
24
- --sui-bg-header: #eef;
25
- --sui-bg-input: #eef;
26
- --sui-bg-hover: #eef;
27
- --sui-bg-active: #dde;
28
- --sui-bg-button: #fff;
29
- --sui-bg-button-hover: #eef;
30
-
31
- /* ========== Text Colors (Original) ========== */
32
- --sui-text: #000000;
33
- --sui-text-secondary: #333333;
34
- --sui-text-muted: #888888;
35
- --sui-text-link: #3B5998;
36
- --sui-text-on-primary: #ffffff;
37
-
38
- /* ========== Borders (Original) ========== */
39
- --sui-border-color: #88c;
40
- --sui-border-color-dark: #888;
41
- --sui-border-width: 0.05em;
42
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
43
-
44
- /* ========== Border Radius (Original) ========== */
45
- --sui-border-radius: 0.2em;
46
- --sui-border-radius-sm: 0.2em;
47
- --sui-border-radius-lg: 1em;
48
- --sui-border-radius-full: 50%;
49
-
50
- /* ========== Shadows (Original - minimal) ========== */
51
- --sui-shadow-sm: 0 1px 2px #888;
52
- --sui-shadow: 0.5em 0.9em #888;
53
- --sui-shadow-lg: 0.7em 1.1em #888;
54
- --sui-shadow-colored: 0.5em 0.9em #888;
55
-
56
- /* ========== Forms (Original) ========== */
57
- --sui-form-border-color: #88c;
58
- --sui-form-group-border: var(--sui-border-width) solid var(--sui-form-border-color);
59
-
60
- /* ========== Status Colors (Original) ========== */
61
- --sui-success: green;
62
- --sui-warning: orange;
63
- --sui-error: red;
64
- --sui-info: #01c9ea;
65
-
66
- /* ========== Header (Original) ========== */
67
- --sui-header-gradient: linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%);
68
-
69
- /* Keep all other variables from foundation/variables.css */
70
- }
@@ -1,65 +0,0 @@
1
- /**
2
- * Default (Solid) Theme - Modern Purple Gradient
3
- *
4
- * Inspired by solid-chat's "Solid" theme.
5
- * Modern, clean design with purple gradient and improved spacing.
6
- */
7
-
8
- :root {
9
- /* ========== Primary Colors ========== */
10
- --sui-primary: #805ad5;
11
- --sui-primary-dark: #667eea;
12
- --sui-primary-light: #9f7aea;
13
- --sui-accent: #9f7aea;
14
-
15
- /* ========== Gradients ========== */
16
- --sui-gradient-start: #667eea;
17
- --sui-gradient-end: #9f7aea;
18
- --sui-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
19
-
20
- /* ========== Backgrounds ========== */
21
- --sui-bg: #f7f8fc;
22
- --sui-bg-panel: #ffffff;
23
- --sui-bg-header: #e9d8fd;
24
- --sui-bg-input: #ffffff;
25
- --sui-bg-hover: #f7f8fc;
26
- --sui-bg-active: #ede9fe;
27
- --sui-bg-button: #ffffff;
28
- --sui-bg-button-hover: #f7f8fc;
29
-
30
- /* ========== Text Colors ========== */
31
- --sui-text: #2d3748;
32
- --sui-text-secondary: #4a5568;
33
- --sui-text-muted: #a0aec0;
34
- --sui-text-link: #805ad5;
35
- --sui-text-on-primary: #ffffff;
36
-
37
- /* ========== Borders ========== */
38
- --sui-border-color: #e2e8f0;
39
- --sui-border-color-dark: #cbd5e0;
40
- --sui-border-width: 0.05em;
41
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
42
-
43
- /* ========== Border Radius ========== */
44
- --sui-border-radius: 0.5em;
45
- --sui-border-radius-sm: 0.3em;
46
- --sui-border-radius-lg: 1em;
47
- --sui-border-radius-full: 50%;
48
-
49
- /* ========== Shadows ========== */
50
- --sui-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
51
- --sui-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
52
- --sui-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
53
- --sui-shadow-colored: 0 4px 20px rgba(102, 126, 234, 0.3);
54
-
55
- /* ========== Status Colors ========== */
56
- --sui-success: #48bb78;
57
- --sui-warning: #ed8936;
58
- --sui-error: #f56565;
59
- --sui-info: #4299e1;
60
-
61
- /* ========== Header ========== */
62
- --sui-header-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
63
-
64
- /* All other variables inherit from foundation/variables.css */
65
- }
@@ -1,65 +0,0 @@
1
- /**
2
- * Signal Theme - Privacy-focused Dark Blue
3
- *
4
- * Inspired by solid-chat's "Signal" theme.
5
- * Clean, professional design with Signal's color palette.
6
- */
7
-
8
- :root {
9
- /* ========== Primary Colors ========== */
10
- --sui-primary: #2c6bed;
11
- --sui-primary-dark: #1851c4;
12
- --sui-primary-light: #5e94f5;
13
- --sui-accent: #5e94f5;
14
-
15
- /* ========== Gradients ========== */
16
- --sui-gradient-start: #2c6bed;
17
- --sui-gradient-end: #1851c4;
18
- --sui-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
19
-
20
- /* ========== Backgrounds ========== */
21
- --sui-bg: #f6f6f6;
22
- --sui-bg-panel: #ffffff;
23
- --sui-bg-header: #d9e6fc;
24
- --sui-bg-input: #ffffff;
25
- --sui-bg-hover: #f0f0f0;
26
- --sui-bg-active: #e8f1fd;
27
- --sui-bg-button: #ffffff;
28
- --sui-bg-button-hover: #f0f0f0;
29
-
30
- /* ========== Text Colors ========== */
31
- --sui-text: #1b1b1b;
32
- --sui-text-secondary: #5e5e5e;
33
- --sui-text-muted: #8e8e93;
34
- --sui-text-link: #2c6bed;
35
- --sui-text-on-primary: #ffffff;
36
-
37
- /* ========== Borders ========== */
38
- --sui-border-color: #d4d4d4;
39
- --sui-border-color-dark: #b8b8b8;
40
- --sui-border-width: 0.05em;
41
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
42
-
43
- /* ========== Border Radius ========== */
44
- --sui-border-radius: 0.5em;
45
- --sui-border-radius-sm: 0.3em;
46
- --sui-border-radius-lg: 1em;
47
- --sui-border-radius-full: 50%;
48
-
49
- /* ========== Shadows ========== */
50
- --sui-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
51
- --sui-shadow: 0 2px 8px rgba(44, 107, 237, 0.2);
52
- --sui-shadow-lg: 0 4px 12px rgba(44, 107, 237, 0.3);
53
- --sui-shadow-colored: 0 2px 8px rgba(44, 107, 237, 0.4);
54
-
55
- /* ========== Status Colors ========== */
56
- --sui-success: #00b433;
57
- --sui-warning: #ff9500;
58
- --sui-error: #e83535;
59
- --sui-info: #2c6bed;
60
-
61
- /* ========== Header ========== */
62
- --sui-header-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
63
-
64
- /* All other variables inherit from foundation/variables.css */
65
- }
@@ -1,65 +0,0 @@
1
- /**
2
- * Telegram Theme - Messenger-style Blue
3
- *
4
- * Inspired by solid-chat's "Telegram" theme.
5
- * Clean blue design reminiscent of Telegram/Messenger.
6
- */
7
-
8
- :root {
9
- /* ========== Primary Colors ========== */
10
- --sui-primary: #0088cc;
11
- --sui-primary-dark: #0078b8;
12
- --sui-primary-light: #54a9eb;
13
- --sui-accent: #54a9eb;
14
-
15
- /* ========== Gradients ========== */
16
- --sui-gradient-start: #0088cc;
17
- --sui-gradient-end: #0078b8;
18
- --sui-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
19
-
20
- /* ========== Backgrounds ========== */
21
- --sui-bg: #f4f4f5;
22
- --sui-bg-panel: #ffffff;
23
- --sui-bg-header: #d4e9f7;
24
- --sui-bg-input: #ffffff;
25
- --sui-bg-hover: #f0f0f1;
26
- --sui-bg-active: #e8f4fd;
27
- --sui-bg-button: #ffffff;
28
- --sui-bg-button-hover: #f0f0f1;
29
-
30
- /* ========== Text Colors ========== */
31
- --sui-text: #000000;
32
- --sui-text-secondary: #707579;
33
- --sui-text-muted: #a2acb4;
34
- --sui-text-link: #0088cc;
35
- --sui-text-on-primary: #ffffff;
36
-
37
- /* ========== Borders ========== */
38
- --sui-border-color: #dadce0;
39
- --sui-border-color-dark: #c6c9cc;
40
- --sui-border-width: 0.05em;
41
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
42
-
43
- /* ========== Border Radius ========== */
44
- --sui-border-radius: 0.5em;
45
- --sui-border-radius-sm: 0.3em;
46
- --sui-border-radius-lg: 1em;
47
- --sui-border-radius-full: 50%;
48
-
49
- /* ========== Shadows ========== */
50
- --sui-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
51
- --sui-shadow: 0 2px 8px rgba(0, 136, 204, 0.2);
52
- --sui-shadow-lg: 0 4px 12px rgba(0, 136, 204, 0.3);
53
- --sui-shadow-colored: 0 2px 8px rgba(0, 136, 204, 0.4);
54
-
55
- /* ========== Status Colors ========== */
56
- --sui-success: #00c73e;
57
- --sui-warning: #ff9500;
58
- --sui-error: #ff3b30;
59
- --sui-info: #0088cc;
60
-
61
- /* ========== Header ========== */
62
- --sui-header-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
63
-
64
- /* All other variables inherit from foundation/variables.css */
65
- }
@@ -1,163 +0,0 @@
1
- /**
2
- * Base CSS Variables for Solid-UI Theme System
3
- * Phase 1: Foundation
4
- *
5
- * These variables form the foundation of all themes.
6
- * They provide fallback values and can be overridden by theme presets.
7
- */
8
-
9
- :root {
10
- /* ========== Colors - Primary ========== */
11
- --sui-primary: #805ad5;
12
- --sui-primary-dark: #667eea;
13
- --sui-primary-light: #9f7aea;
14
- --sui-accent: #9f7aea;
15
-
16
- /* ========== Colors - Gradients ========== */
17
- --sui-gradient-start: #667eea;
18
- --sui-gradient-end: #9f7aea;
19
- --sui-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
20
-
21
- /* ========== Backgrounds ========== */
22
- --sui-bg: #f7f8fc;
23
- --sui-bg-panel: #ffffff;
24
- --sui-bg-header: #ffffff;
25
- --sui-bg-input: #eef;
26
- --sui-bg-hover: #f7f8fc;
27
- --sui-bg-active: #ede9fe;
28
- --sui-bg-button: #fff;
29
- --sui-bg-button-hover: #f7f8fc;
30
-
31
- /* ========== Text Colors ========== */
32
- --sui-text: #2d3748;
33
- --sui-text-secondary: #4a5568;
34
- --sui-text-muted: #a0aec0;
35
- --sui-text-link: #3B5998;
36
- --sui-text-on-primary: #ffffff;
37
-
38
- /* ========== Borders ========== */
39
- --sui-border-color: #e2e8f0;
40
- --sui-border-color-dark: #88c;
41
- --sui-border-width: 0.05em;
42
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
43
-
44
- /* ========== Border Radius ========== */
45
- --sui-border-radius: 0.5em;
46
- --sui-border-radius-sm: 0.2em;
47
- --sui-border-radius-lg: 1em;
48
- --sui-border-radius-full: 50%;
49
-
50
- /* ========== Shadows ========== */
51
- --sui-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
52
- --sui-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
53
- --sui-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
54
- --sui-shadow-colored: 0 4px 20px rgba(102, 126, 234, 0.3);
55
-
56
- /* ========== Spacing Scale ========== */
57
- --sui-space-xs: 0.25em;
58
- --sui-space-sm: 0.5em;
59
- --sui-space-md: 1em;
60
- --sui-space-lg: 1.5em;
61
- --sui-space-xl: 2em;
62
- --sui-space-2xl: 3em;
63
-
64
- /* ========== Typography ========== */
65
- --sui-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
66
- "Helvetica Neue", Arial, sans-serif;
67
- --sui-font-family-mono: 'Monaco', 'Courier New', monospace;
68
-
69
- --sui-font-size-xs: 0.75em;
70
- --sui-font-size-sm: 0.875em;
71
- --sui-font-size-base: 1em;
72
- --sui-font-size-lg: 1.125em;
73
- --sui-font-size-xl: 1.25em;
74
- --sui-font-size-2xl: 1.5em;
75
- --sui-font-size-3xl: 1.875em;
76
-
77
- --sui-line-height: 1.5;
78
- --sui-line-height-tight: 1.25;
79
- --sui-line-height-relaxed: 1.75;
80
-
81
- /* ========== Forms ========== */
82
- --sui-form-border-color: #88c;
83
- --sui-form-group-border: var(--sui-border-width) solid var(--sui-form-border-color);
84
- --sui-input-padding: var(--sui-space-sm);
85
- --sui-input-margin: 0.4em;
86
-
87
- /* ========== Buttons ========== */
88
- --sui-button-padding: 0.7em;
89
- --sui-button-padding-sm: 0.5em 1em;
90
- --sui-button-padding-lg: 1em 4em;
91
- --sui-button-margin: 0.3em;
92
-
93
- /* ========== Icon Sizes ========== */
94
- --sui-icon-size: 1.5em; /* Standard icons and buttons */
95
- --sui-avatar-size: 2.5em; /* Person/contact avatars */
96
- --sui-icon-class-size: 3em; /* Class/type icons */
97
-
98
- /* ========== ACL Groups (preserve current colors) ========== */
99
- --sui-group-default: #888;
100
- --sui-group-1: green;
101
- --sui-group-2: #cc0;
102
- --sui-group-3: orange;
103
- --sui-group-5: red;
104
- --sui-group-9: blue;
105
- --sui-group-13: purple;
106
-
107
- /* ========== Status Colors ========== */
108
- --sui-success: #48bb78;
109
- --sui-warning: orange;
110
- --sui-error: red;
111
- --sui-info: #01c9ea;
112
-
113
- /* ========== Header ========== */
114
- --sui-header-gradient: linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%);
115
- --sui-header-height: 60px;
116
- --sui-header-shadow: 0px 1px 4px #000000;
117
-
118
- /* ========== Transitions ========== */
119
- --sui-transition-fast: 0.15s ease;
120
- --sui-transition: 0.2s ease;
121
- --sui-transition-slow: 0.3s ease;
122
-
123
- /* ========== Z-Index Scale ========== */
124
- --sui-z-dropdown: 1;
125
- --sui-z-modal: 100;
126
- --sui-z-tooltip: 200;
127
-
128
- /* ========== Accessibility ========== */
129
- --sui-focus-color: #667eea;
130
- --sui-focus-width: 2px;
131
- --sui-focus-offset: 2px;
132
- --sui-touch-target-min: 44px;
133
- }
134
-
135
- /* ========== Responsive Adjustments ========== */
136
- /* Mobile: Smaller base font and tighter spacing */
137
- @media (max-width: 768px) {
138
- :root {
139
- --sui-font-size-base: 0.9em;
140
- --sui-font-size-sm: 0.8em;
141
- --sui-font-size-xs: 0.7em;
142
- --sui-space-md: 0.8em;
143
- --sui-space-lg: 1.2em;
144
- --sui-space-xl: 1.6em;
145
- --sui-space-2xl: 2.4em;
146
- }
147
- }
148
-
149
- /* Tablet: Slightly smaller than desktop */
150
- @media (min-width: 769px) and (max-width: 1024px) {
151
- :root {
152
- --sui-font-size-base: 0.95em;
153
- --sui-space-md: 0.9em;
154
- --sui-space-lg: 1.35em;
155
- }
156
- }
157
-
158
- /* Desktop: Use default values (already defined above) */
159
- @media (min-width: 1025px) {
160
- :root {
161
- /* Desktop uses the base values defined above */
162
- }
163
- }
@@ -1,65 +0,0 @@
1
- /**
2
- * Wave Theme - WhatsApp-style Green
3
- *
4
- * Inspired by solid-chat's "Wave" theme.
5
- * Clean green design reminiscent of WhatsApp.
6
- */
7
-
8
- :root {
9
- /* ========== Primary Colors ========== */
10
- --sui-primary: #128c7e;
11
- --sui-primary-dark: #075e54;
12
- --sui-primary-light: #25d366;
13
- --sui-accent: #25d366;
14
-
15
- /* ========== Gradients ========== */
16
- --sui-gradient-start: #128c7e;
17
- --sui-gradient-end: #075e54;
18
- --sui-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
19
-
20
- /* ========== Backgrounds ========== */
21
- --sui-bg: #efeae2;
22
- --sui-bg-panel: #ffffff;
23
- --sui-bg-header: #d9fdd3;
24
- --sui-bg-input: #ffffff;
25
- --sui-bg-hover: #f0f2f5;
26
- --sui-bg-active: #d9fdd3;
27
- --sui-bg-button: #ffffff;
28
- --sui-bg-button-hover: #f0f2f5;
29
-
30
- /* ========== Text Colors ========== */
31
- --sui-text: #111b21;
32
- --sui-text-secondary: #667781;
33
- --sui-text-muted: #8696a0;
34
- --sui-text-link: #128c7e;
35
- --sui-text-on-primary: #ffffff;
36
-
37
- /* ========== Borders ========== */
38
- --sui-border-color: #e9edef;
39
- --sui-border-color-dark: #d1d7db;
40
- --sui-border-width: 0.05em;
41
- --sui-border: var(--sui-border-width) solid var(--sui-border-color);
42
-
43
- /* ========== Border Radius ========== */
44
- --sui-border-radius: 0.5em;
45
- --sui-border-radius-sm: 0.3em;
46
- --sui-border-radius-lg: 1em;
47
- --sui-border-radius-full: 50%;
48
-
49
- /* ========== Shadows ========== */
50
- --sui-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
51
- --sui-shadow: 0 2px 8px rgba(18, 140, 126, 0.2);
52
- --sui-shadow-lg: 0 4px 12px rgba(18, 140, 126, 0.3);
53
- --sui-shadow-colored: 0 2px 8px rgba(18, 140, 126, 0.4);
54
-
55
- /* ========== Status Colors ========== */
56
- --sui-success: #25d366;
57
- --sui-warning: #e8b923;
58
- --sui-error: #dd3e3e;
59
- --sui-info: #00a5f4;
60
-
61
- /* ========== Header ========== */
62
- --sui-header-gradient: linear-gradient(135deg, var(--sui-gradient-start), var(--sui-gradient-end));
63
-
64
- /* All other variables inherit from foundation/variables.css */
65
- }