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: #0E79FD */
40
- --color-primary-50: #eff8ff;
41
- --color-primary-100: #dbf0ff;
42
- --color-primary-200: #bfe3ff;
43
- --color-primary-300: #93d2ff;
44
- --color-primary-400: #60b6ff;
45
- --color-primary-500: #0E79FD; /* Main Primary Color */
46
- --color-primary-600: #0b6ae6;
47
- --color-primary-700: #0959c2;
48
- --color-primary-800: #0e4a9e;
49
- --color-primary-900: #123f80;
50
- --color-primary-950: #11274d;
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: #f8f8f8;
59
- --color-secondary-100: #f0f0f0;
60
- --color-secondary-200: #e4e4e4;
61
- --color-secondary-300: #d1d1d1;
62
- --color-secondary-400: #b4b4b4;
63
- --color-secondary-500: #9a9a9a;
64
- --color-secondary-600: #818181;
65
- --color-secondary-700: #6a6a6a;
66
- --color-secondary-800: #5a5a5a;
67
- --color-secondary-900: #4e4e4e;
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: #eff6ff;
77
- --color-tertiary-100: #dbeafe;
78
- --color-tertiary-200: #bfdbfe;
79
- --color-tertiary-300: #93c5fd;
80
- --color-tertiary-400: #60a5fa;
81
- --color-tertiary-500: #3b82f6;
82
- --color-tertiary-600: #2563eb;
83
- --color-tertiary-700: #154ca9; /* Main Tertiary Color */
84
- --color-tertiary-800: #1e3a8a;
85
- --color-tertiary-900: #1e3a8a;
86
- --color-tertiary-950: #172554;
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 (#0E79FD, #154ca9, #000000)"
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: #60b6ff;
145
- --color-primary-500: #3b9eff;
146
- --color-primary-600: #0E79FD;
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: #60a5fa;
155
- --color-tertiary-500: #3b82f6;
156
- --color-tertiary-600: #154ca9;
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-gray-900 dark:text-gray-50"
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-700 dark:text-tertiary-400"
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
- focus: "ring-primary-500 dark:ring-primary-400"
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-500 text-white hover:bg-primary-600 dark:bg-primary-600 dark:hover:bg-primary-500"
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: '#eff8ff',
210
- 100: '#dbf0ff',
211
- 200: '#bfe3ff',
212
- 300: '#93d2ff',
213
- 400: '#60b6ff', // Enhanced for dark mode
214
- 500: '#0E79FD', // Main brand color
215
- 600: '#0b6ae6',
216
- 700: '#0959c2',
217
- 800: '#0e4a9e',
218
- 900: '#123f80',
219
- 950: '#11274d',
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: '#f8f8f8',
224
- 100: '#f0f0f0',
225
- 200: '#e4e4e4',
226
- 300: '#d1d1d1',
227
- 400: '#b4b4b4',
228
- 500: '#9a9a9a',
229
- 600: '#818181',
230
- 700: '#6a6a6a',
231
- 800: '#5a5a5a',
232
- 900: '#4e4e4e',
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
- // Keep original tertiary color scale as defined
237
- 50: '#eff6ff',
238
- 100: '#dbeafe',
239
- 200: '#bfdbfe',
240
- 300: '#93c5fd',
241
- 400: '#60a5fa',
242
- 500: '#3b82f6',
243
- 600: '#2563eb',
244
- 700: '#154ca9', // Main tertiary color (custom)
245
- 800: '#1e3a8a',
246
- 900: '#1e3a8a',
247
- 950: '#172554',
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-500"
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-500)"
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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "siesa-agents",
3
- "version": "2.1.63",
3
+ "version": "2.1.64",
4
4
  "description": "Paquete para instalar y configurar agentes SIESA en tu proyecto",
5
5
  "main": "index.js",
6
6
  "bin": {