siesa-agents 2.1.63 → 2.1.64
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.
|
@@ -36,18 +36,18 @@ resources/
|
|
|
36
36
|
#### Primary Colors (Brand)
|
|
37
37
|
```css
|
|
38
38
|
:root {
|
|
39
|
-
/* Primary Color: #
|
|
40
|
-
--color-primary-50: #
|
|
41
|
-
--color-primary-100: #
|
|
42
|
-
--color-primary-200: #
|
|
43
|
-
--color-primary-300: #
|
|
44
|
-
--color-primary-400: #
|
|
45
|
-
--color-primary-500: #
|
|
46
|
-
--color-primary-600: #
|
|
47
|
-
--color-primary-700: #
|
|
48
|
-
--color-primary-800: #
|
|
49
|
-
--color-primary-900: #
|
|
50
|
-
--color-primary-950: #
|
|
39
|
+
/* Primary Color: #0e79fd (PrimaryCustom - Siesa UI Kit) */
|
|
40
|
+
--color-primary-50: #f7fcff;
|
|
41
|
+
--color-primary-100: #dbeefe;
|
|
42
|
+
--color-primary-200: #bfe2fe;
|
|
43
|
+
--color-primary-300: #93d1fd;
|
|
44
|
+
--color-primary-400: #60b6fa;
|
|
45
|
+
--color-primary-500: #3c9bf6;
|
|
46
|
+
--color-primary-600: #0e79fd; /* Main Primary Color */
|
|
47
|
+
--color-primary-700: #0f6ae3;
|
|
48
|
+
--color-primary-800: #1355b7;
|
|
49
|
+
--color-primary-900: #154990;
|
|
50
|
+
--color-primary-950: #112d57;
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
@@ -55,16 +55,16 @@ resources/
|
|
|
55
55
|
```css
|
|
56
56
|
:root {
|
|
57
57
|
/* Secondary Color: #000000 (Black) - Brand Secondary, NOT for grays/backgrounds */
|
|
58
|
-
--color-secondary-50: #
|
|
59
|
-
--color-secondary-100: #
|
|
60
|
-
--color-secondary-200: #
|
|
61
|
-
--color-secondary-300: #
|
|
62
|
-
--color-secondary-400: #
|
|
63
|
-
--color-secondary-500: #
|
|
64
|
-
--color-secondary-600: #
|
|
65
|
-
--color-secondary-700: #
|
|
66
|
-
--color-secondary-800: #
|
|
67
|
-
--color-secondary-900: #
|
|
58
|
+
--color-secondary-50: #f6f6f6;
|
|
59
|
+
--color-secondary-100: #e7e7e7;
|
|
60
|
+
--color-secondary-200: #d1d1d1;
|
|
61
|
+
--color-secondary-300: #b0b0b0;
|
|
62
|
+
--color-secondary-400: #888888;
|
|
63
|
+
--color-secondary-500: #6d6d6d;
|
|
64
|
+
--color-secondary-600: #5d5d5d;
|
|
65
|
+
--color-secondary-700: #4f4f4f;
|
|
66
|
+
--color-secondary-800: #454545;
|
|
67
|
+
--color-secondary-900: #3d3d3d;
|
|
68
68
|
--color-secondary-950: #000000; /* Main Secondary Color */
|
|
69
69
|
}
|
|
70
70
|
```
|
|
@@ -72,18 +72,18 @@ resources/
|
|
|
72
72
|
#### Tertiary Colors (Brand)
|
|
73
73
|
```css
|
|
74
74
|
:root {
|
|
75
|
-
/* Tertiary Color: #154ca9 */
|
|
76
|
-
--color-tertiary-50: #
|
|
77
|
-
--color-tertiary-100: #
|
|
78
|
-
--color-tertiary-200: #
|
|
79
|
-
--color-tertiary-300: #
|
|
80
|
-
--color-tertiary-400: #
|
|
81
|
-
--color-tertiary-500: #
|
|
82
|
-
--color-tertiary-600: #
|
|
83
|
-
--color-tertiary-700: #
|
|
84
|
-
--color-tertiary-800: #
|
|
85
|
-
--color-tertiary-900: #
|
|
86
|
-
--color-tertiary-950: #
|
|
75
|
+
/* Tertiary Color: #154ca9 (TertiaryCustom - Siesa UI Kit) */
|
|
76
|
+
--color-tertiary-50: #eef8ff;
|
|
77
|
+
--color-tertiary-100: #d9efff;
|
|
78
|
+
--color-tertiary-200: #bce4ff;
|
|
79
|
+
--color-tertiary-300: #8ed4ff;
|
|
80
|
+
--color-tertiary-400: #58bbff;
|
|
81
|
+
--color-tertiary-500: #329cff;
|
|
82
|
+
--color-tertiary-600: #1b7df5;
|
|
83
|
+
--color-tertiary-700: #1465e1;
|
|
84
|
+
--color-tertiary-800: #154ca9; /* Main Tertiary Color */
|
|
85
|
+
--color-tertiary-900: #19478f;
|
|
86
|
+
--color-tertiary-950: #051938;
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
89
|
|
|
@@ -100,7 +100,7 @@ resources/
|
|
|
100
100
|
```yaml
|
|
101
101
|
color_rules:
|
|
102
102
|
tailwind_first: "Use theme() for system colors"
|
|
103
|
-
brand_only: "Hex codes for brand colors (#
|
|
103
|
+
brand_only: "Hex codes for brand colors (#0e79fd, #154ca9, #000000)"
|
|
104
104
|
css: "theme() in custom properties"
|
|
105
105
|
classes: "Direct utility classes (bg-slate-200)"
|
|
106
106
|
```
|
|
@@ -141,9 +141,9 @@ dark_mode:
|
|
|
141
141
|
```css
|
|
142
142
|
.dark {
|
|
143
143
|
/* Primary - Enhanced contrast for dark backgrounds */
|
|
144
|
-
--color-primary-400: #
|
|
145
|
-
--color-primary-500: #
|
|
146
|
-
--color-primary-600: #
|
|
144
|
+
--color-primary-400: #60b6fa;
|
|
145
|
+
--color-primary-500: #3c9bf6;
|
|
146
|
+
--color-primary-600: #0e79fd;
|
|
147
147
|
|
|
148
148
|
/* Secondary alternatives for dark mode visibility */
|
|
149
149
|
--color-secondary-alt-50: theme('colors.slate.50');
|
|
@@ -151,16 +151,16 @@ dark_mode:
|
|
|
151
151
|
--color-secondary-alt-200: theme('colors.slate.300');
|
|
152
152
|
|
|
153
153
|
/* Tertiary - Optimized for dark mode */
|
|
154
|
-
--color-tertiary-400: #
|
|
155
|
-
--color-tertiary-500: #
|
|
156
|
-
--color-tertiary-600: #
|
|
154
|
+
--color-tertiary-400: #58bbff;
|
|
155
|
+
--color-tertiary-500: #329cff;
|
|
156
|
+
--color-tertiary-600: #1b7df5;
|
|
157
157
|
}
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
#### Tailwind Classes for Dark Mode
|
|
161
161
|
```yaml
|
|
162
162
|
text_colors:
|
|
163
|
-
primary: "text-
|
|
163
|
+
primary: "text-zinc-900 dark:text-zinc-50"
|
|
164
164
|
secondary: "text-gray-700 dark:text-gray-300"
|
|
165
165
|
muted: "text-gray-500 dark:text-gray-400"
|
|
166
166
|
disabled: "text-gray-400 dark:text-gray-600"
|
|
@@ -168,7 +168,7 @@ text_colors:
|
|
|
168
168
|
brand_colors:
|
|
169
169
|
primary: "text-primary-600 dark:text-primary-400"
|
|
170
170
|
secondary: "text-secondary-950 dark:text-slate-50"
|
|
171
|
-
tertiary: "text-tertiary-
|
|
171
|
+
tertiary: "text-tertiary-800 dark:text-tertiary-400"
|
|
172
172
|
|
|
173
173
|
surfaces:
|
|
174
174
|
page: "bg-white dark:bg-slate-950"
|
|
@@ -179,10 +179,11 @@ surfaces:
|
|
|
179
179
|
borders:
|
|
180
180
|
subtle: "border-slate-200 dark:border-slate-700"
|
|
181
181
|
prominent: "border-slate-300 dark:border-slate-600"
|
|
182
|
-
|
|
182
|
+
tertiary: "border-zinc-400 dark:border-zinc-400"
|
|
183
|
+
focus: "ring-primary-600 dark:ring-primary-400"
|
|
183
184
|
|
|
184
185
|
buttons:
|
|
185
|
-
primary: "bg-primary-
|
|
186
|
+
primary: "bg-primary-600 text-white hover:bg-primary-700 dark:bg-primary-600 dark:hover:bg-primary-500"
|
|
186
187
|
secondary: "bg-slate-200 text-slate-900 hover:bg-slate-300 dark:bg-slate-700 dark:text-slate-100 dark:hover:bg-slate-600"
|
|
187
188
|
ghost: "text-slate-700 hover:bg-slate-100 dark:text-slate-300 dark:hover:bg-slate-800"
|
|
188
189
|
|
|
@@ -206,45 +207,45 @@ module.exports = {
|
|
|
206
207
|
extend: {
|
|
207
208
|
colors: {
|
|
208
209
|
primary: {
|
|
209
|
-
50: '#
|
|
210
|
-
100: '#
|
|
211
|
-
200: '#
|
|
212
|
-
300: '#
|
|
213
|
-
400: '#
|
|
214
|
-
500: '#
|
|
215
|
-
600: '#
|
|
216
|
-
700: '#
|
|
217
|
-
800: '#
|
|
218
|
-
900: '#
|
|
219
|
-
950: '#
|
|
210
|
+
50: '#f7fcff',
|
|
211
|
+
100: '#dbeefe',
|
|
212
|
+
200: '#bfe2fe',
|
|
213
|
+
300: '#93d1fd',
|
|
214
|
+
400: '#60b6fa',
|
|
215
|
+
500: '#3c9bf6',
|
|
216
|
+
600: '#0e79fd', // Main brand color
|
|
217
|
+
700: '#0f6ae3',
|
|
218
|
+
800: '#1355b7',
|
|
219
|
+
900: '#154990',
|
|
220
|
+
950: '#112d57',
|
|
220
221
|
},
|
|
221
222
|
secondary: {
|
|
222
223
|
// Custom neutral scale for brand secondary
|
|
223
|
-
50: '#
|
|
224
|
-
100: '#
|
|
225
|
-
200: '#
|
|
226
|
-
300: '#
|
|
227
|
-
400: '#
|
|
228
|
-
500: '#
|
|
229
|
-
600: '#
|
|
230
|
-
700: '#
|
|
231
|
-
800: '#
|
|
232
|
-
900: '#
|
|
224
|
+
50: '#f6f6f6',
|
|
225
|
+
100: '#e7e7e7',
|
|
226
|
+
200: '#d1d1d1',
|
|
227
|
+
300: '#b0b0b0',
|
|
228
|
+
400: '#888888',
|
|
229
|
+
500: '#6d6d6d',
|
|
230
|
+
600: '#5d5d5d',
|
|
231
|
+
700: '#4f4f4f',
|
|
232
|
+
800: '#454545',
|
|
233
|
+
900: '#3d3d3d',
|
|
233
234
|
950: '#000000', // Main secondary color
|
|
234
235
|
},
|
|
235
236
|
tertiary: {
|
|
236
|
-
//
|
|
237
|
-
50: '#
|
|
238
|
-
100: '#
|
|
239
|
-
200: '#
|
|
240
|
-
300: '#
|
|
241
|
-
400: '#
|
|
242
|
-
500: '#
|
|
243
|
-
600: '#
|
|
244
|
-
700: '#
|
|
245
|
-
800: '#
|
|
246
|
-
900: '#
|
|
247
|
-
950: '#
|
|
237
|
+
// TertiaryCustom scale from Siesa UI Kit
|
|
238
|
+
50: '#eef8ff',
|
|
239
|
+
100: '#d9efff',
|
|
240
|
+
200: '#bce4ff',
|
|
241
|
+
300: '#8ed4ff',
|
|
242
|
+
400: '#58bbff',
|
|
243
|
+
500: '#329cff',
|
|
244
|
+
600: '#1b7df5',
|
|
245
|
+
700: '#1465e1',
|
|
246
|
+
800: '#154ca9', // Main tertiary color (custom)
|
|
247
|
+
900: '#19478f',
|
|
248
|
+
950: '#051938',
|
|
248
249
|
}
|
|
249
250
|
}
|
|
250
251
|
}
|
|
@@ -278,9 +279,9 @@ module.exports = {
|
|
|
278
279
|
```yaml
|
|
279
280
|
typography:
|
|
280
281
|
headings:
|
|
281
|
-
h1: "text-4xl font-bold leading-tight"
|
|
282
|
-
h2: "text-3xl font-bold leading-tight"
|
|
283
|
-
h3: "text-2xl font-semibold leading-snug"
|
|
282
|
+
h1: "text-4xl font-bold leading-tight tracking-tight"
|
|
283
|
+
h2: "text-3xl font-bold leading-tight tracking-tight"
|
|
284
|
+
h3: "text-2xl font-semibold leading-snug tracking-tight"
|
|
284
285
|
h4: "text-xl font-semibold leading-snug"
|
|
285
286
|
h5: "text-lg font-medium leading-normal"
|
|
286
287
|
h6: "text-base font-medium leading-normal"
|
|
@@ -345,7 +346,7 @@ icons:
|
|
|
345
346
|
|
|
346
347
|
colors:
|
|
347
348
|
inherit: "text-current"
|
|
348
|
-
primary: "text-primary-
|
|
349
|
+
primary: "text-primary-600"
|
|
349
350
|
secondary: "text-secondary-600"
|
|
350
351
|
neutral: "text-gray-500"
|
|
351
352
|
```
|
|
@@ -370,7 +371,7 @@ skeleton:
|
|
|
370
371
|
accessibility:
|
|
371
372
|
color_contrast: "4.5:1 minimum (WCAG 2.1 AA)"
|
|
372
373
|
large_text_contrast: "3.1:1 minimum"
|
|
373
|
-
focus_indicators: "2px solid var(--color-primary-
|
|
374
|
+
focus_indicators: "2px solid var(--color-primary-600)"
|
|
374
375
|
touch_targets: "44px minimum"
|
|
375
376
|
font_size_minimum: "16px"
|
|
376
377
|
line_length_maximum: "75ch"
|