holygrail5 1.0.19 → 1.0.21

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 (77) hide show
  1. package/README.md +88 -18
  2. package/config.json +205 -77
  3. package/dist/assets/fonts/suisse-intl-light.woff +0 -0
  4. package/dist/assets/fonts/suisse-intl-light.woff2 +0 -0
  5. package/dist/assets/fonts/suisse-intl-medium.woff +0 -0
  6. package/dist/assets/fonts/suisse-intl-medium.woff2 +0 -0
  7. package/dist/assets/fonts/suisse-intl-regular.woff +0 -0
  8. package/dist/assets/fonts/suisse-intl-regular.woff2 +0 -0
  9. package/dist/assets/fonts/suisse-intl-semibold.woff +0 -0
  10. package/dist/assets/fonts/suisse-intl-semibold.woff2 +0 -0
  11. package/dist/assets/fonts/suisse-works-bold.woff +0 -0
  12. package/dist/assets/fonts/suisse-works-bold.woff2 +0 -0
  13. package/dist/assets/fonts/suisse-works-medium.woff +0 -0
  14. package/dist/assets/fonts/suisse-works-medium.woff2 +0 -0
  15. package/dist/assets/fonts/suisse-works-regular.woff +0 -0
  16. package/dist/assets/fonts/suisse-works-regular.woff2 +0 -0
  17. package/dist/componentes.html +429 -0
  18. package/dist/developer-guide.md +7 -7
  19. package/dist/guide-styles.css +197 -25
  20. package/dist/index.html +807 -689
  21. package/dist/output.css +217 -114
  22. package/dist/skills.html +14 -8
  23. package/dist/themes/dutti-demo.html +713 -19
  24. package/dist/themes/dutti.css +67 -16
  25. package/dist/themes/limited-demo.html +1121 -0
  26. package/dist/themes/limited.css +2493 -0
  27. package/package.json +1 -1
  28. package/src/.data/.previous-values.json +151 -84
  29. package/src/assets/fonts/suisse-intl-light.woff +0 -0
  30. package/src/assets/fonts/suisse-intl-light.woff2 +0 -0
  31. package/src/assets/fonts/suisse-intl-medium.woff +0 -0
  32. package/src/assets/fonts/suisse-intl-medium.woff2 +0 -0
  33. package/src/assets/fonts/suisse-intl-regular.woff +0 -0
  34. package/src/assets/fonts/suisse-intl-regular.woff2 +0 -0
  35. package/src/assets/fonts/suisse-intl-semibold.woff +0 -0
  36. package/src/assets/fonts/suisse-intl-semibold.woff2 +0 -0
  37. package/src/assets/fonts/suisse-works-bold.woff +0 -0
  38. package/src/assets/fonts/suisse-works-bold.woff2 +0 -0
  39. package/src/assets/fonts/suisse-works-medium.woff +0 -0
  40. package/src/assets/fonts/suisse-works-medium.woff2 +0 -0
  41. package/src/assets/fonts/suisse-works-regular.woff +0 -0
  42. package/src/assets/fonts/suisse-works-regular.woff2 +0 -0
  43. package/src/build/asset-manager.js +94 -3
  44. package/src/build/build-orchestrator.js +74 -12
  45. package/src/build/components-generator.js +584 -0
  46. package/src/build/skills-generator.js +43 -5
  47. package/src/build/theme-config-loader.js +58 -0
  48. package/src/build/theme-transformer.js +109 -16
  49. package/src/build/theme-vars-table-generator.js +349 -0
  50. package/src/build/typo-table-generator.js +154 -0
  51. package/src/docs-generator/guide-styles.css +197 -24
  52. package/src/docs-generator/html-generator.js +92 -246
  53. package/src/docs-generator/sections/colors-section.js +109 -0
  54. package/src/docs-generator/value-tracker.js +154 -0
  55. package/src/generators/typo-generator.js +2 -1
  56. package/src/generators/utils.js +90 -1
  57. package/src/skills.html +1 -0
  58. package/src/watch-config.js +99 -32
  59. package/themes/{dutti → _base}/_buttons.css +2 -2
  60. package/themes/{dutti → _base}/_checkboxes.css +1 -1
  61. package/themes/{dutti → _base}/_forms.css +1 -1
  62. package/themes/{dutti → _base}/_inputs.css +55 -10
  63. package/themes/{dutti → _base}/_labels.css +1 -1
  64. package/themes/dutti/README.md +67 -21
  65. package/themes/dutti/_variables.css +7 -1
  66. package/themes/dutti/demo.html +18 -14
  67. package/themes/dutti/theme.css +22 -44
  68. package/themes/dutti/theme.json +86 -0
  69. package/themes/limited/_variables.css +123 -0
  70. package/themes/limited/demo.html +296 -0
  71. package/themes/limited/theme.css +32 -0
  72. package/themes/limited/theme.json +105 -0
  73. /package/themes/{dutti → _base}/_containers.css +0 -0
  74. /package/themes/{dutti → _base}/_radios.css +0 -0
  75. /package/themes/{dutti → _base}/_switches.css +0 -0
  76. /package/themes/{dutti → _base}/components/_icons.css +0 -0
  77. /package/themes/{dutti → _base}/objects/_grid.css +0 -0
package/dist/output.css CHANGED
@@ -56,9 +56,10 @@ p, h1, h2, h3, h4, h5, h6 {
56
56
  }
57
57
  /* Variables CSS Compartidas */
58
58
  :root {
59
- --hg-typo-font-family-primary: arial, sans-serif;
60
- --hg-typo-font-family-primary-bold: "Arial Bold", Arial, sans-serif;
61
- --hg-typo-font-family-secondary: "ms-serif", serif;
59
+ --hg-typo-font-family-primary-light: "suisse-light", Arial, Helvetica, sans-serif;
60
+ --hg-typo-font-family-primary-regular: "suisse-regular", Arial, Helvetica, sans-serif;
61
+ --hg-typo-font-family-primary-bold: "suisse-semibold", Arial, Helvetica, sans-serif;
62
+ --hg-typo-font-family-secondary: "suisse-medium", Arial, Helvetica, sans-serif;
62
63
  --hg-typo-line-height-1: 1;
63
64
  --hg-typo-line-height-1-976: 1.976;
64
65
  --hg-typo-line-height-1-2: 1.2;
@@ -68,6 +69,7 @@ p, h1, h2, h3, h4, h5, h6 {
68
69
  --hg-typo-line-height-1-3: 1.3;
69
70
  --hg-typo-line-height-1-6: 1.6;
70
71
  --hg-typo-font-weight-100: 100;
72
+ --hg-typo-font-weight-300: 300;
71
73
  --hg-typo-font-weight-400: 400;
72
74
  --hg-typo-font-weight-500: 500;
73
75
  --hg-typo-font-weight-600: 600;
@@ -80,6 +82,9 @@ p, h1, h2, h3, h4, h5, h6 {
80
82
  --hg-typo-letter-spacing-0-08: 0.08rem;
81
83
  --hg-typo-letter-spacing-10: 10rem;
82
84
  --hg-typo-letter-spacing-110: 110rem;
85
+ --hg-typo-letter-spacing-0-16em: 0.16em;
86
+ --hg-typo-letter-spacing-0-04em: 0.04em;
87
+ --hg-typo-letter-spacing-0-06em: 0.06em;
83
88
  --hg-typo-text-transform-none: none;
84
89
  --hg-typo-text-transform-uppercase: uppercase;
85
90
  --hg-typo-text-transform-otro: otro;
@@ -94,6 +99,7 @@ p, h1, h2, h3, h4, h5, h6 {
94
99
  --hg-typo-font-size-8: 0.5rem;
95
100
  --hg-typo-font-size-32: 2rem;
96
101
  --hg-typo-font-size-48: 3rem;
102
+ --hg-typo-font-size-9: 0.5625rem;
97
103
  --hg-spacing-0: 0;
98
104
  --hg-spacing-4: 0.25rem;
99
105
  --hg-spacing-8: 0.5rem;
@@ -137,21 +143,16 @@ p, h1, h2, h3, h4, h5, h6 {
137
143
  --hg-color-orange: #B75D0B;
138
144
  --hg-color-mustard: #FFE693;
139
145
  --hg-color-primary: #000000;
140
- --hg-color-error: #b40016;
141
- --hg-color-info: #1a32a4;
146
+ --hg-color-error: #dd2d01;
147
+ --hg-color-info: #2037a6;
142
148
  --hg-color-success: #12882C;
143
- --hg-color-warning: #ffc700;
149
+ --hg-color-warning: #ffce4e;
144
150
  --hg-color-feel: #fb9962;
145
151
  --hg-color-feel-dark: #c94c07;
146
- --hg-color-special: #b99d6b;
147
- --hg-color-vanilla: #F4F2ED;
148
152
  --hg-color-silver: #87888D;
149
153
  --hg-color-gold: #A38A6B;
150
154
  --hg-color-platinum: #5B7FA1;
151
- --hg-color-charcoal: #1D1D1D;
152
- --hg-color-bg-light: #F0F0F0;
153
- --hg-color-c-bg-light: #000000;
154
- --hg-color-sk-grey: #e3e3e3;
155
+ --hg-color-bg-light: #f9f9f9;
155
156
  --hg-color-bg-cream: #f4f2ed;
156
157
  }
157
158
 
@@ -1331,6 +1332,8 @@ p, h1, h2, h3, h4, h5, h6 {
1331
1332
  .hg-text-center { text-align: center; }
1332
1333
  .hg-text-right { text-align: right; }
1333
1334
  .hg-text-justify { text-align: justify; }
1335
+ .hg-text-underline { text-decoration: underline; }
1336
+ .hg-text-none { text-decoration: none; }
1334
1337
  .hg-position-static { position: static; }
1335
1338
  .hg-position-relative { position: relative; }
1336
1339
  .hg-position-absolute { position: absolute; }
@@ -2207,103 +2210,153 @@ p, h1, h2, h3, h4, h5, h6 {
2207
2210
  /* Tipografías - Mobile (min-width: 0.0625rem) */
2208
2211
  @media (min-width: 0.0625rem) {
2209
2212
 
2213
+ .title-xxl {
2214
+ font-family: var(--hg-typo-font-family-primary-regular);
2215
+ font-weight: var(--hg-typo-font-weight-300);
2216
+ font-size: var(--hg-typo-font-size-24);
2217
+ line-height: var(--hg-typo-line-height-1) !important;
2218
+ }
2219
+
2210
2220
  .h2 {
2211
- font-family: var(--hg-typo-font-family-primary);
2212
- font-weight: var(--hg-typo-font-weight-900);
2221
+ font-family: var(--hg-typo-font-family-primary-bold);
2222
+ font-weight: var(--hg-typo-font-weight-600);
2213
2223
  font-size: var(--hg-typo-font-size-18);
2214
- line-height: var(--hg-typo-line-height-1-976);
2224
+ line-height: var(--hg-typo-line-height-1-2) !important;
2215
2225
  letter-spacing: var(--hg-typo-letter-spacing-0);
2216
2226
  text-transform: var(--hg-typo-text-transform-none);
2217
2227
  }
2218
2228
 
2219
2229
  .title-l-b {
2220
- font-family: var(--hg-typo-font-family-primary);
2221
- font-weight: var(--hg-typo-font-weight-700);
2222
- font-size: var(--hg-typo-font-size-14);
2223
- line-height: var(--hg-typo-line-height-1-2);
2224
- letter-spacing: var(--hg-typo-letter-spacing-0);
2225
- text-transform: var(--hg-typo-text-transform-uppercase);
2230
+ font-family: var(--hg-typo-font-family-primary-regular);
2231
+ font-weight: var(--hg-typo-font-weight-300);
2232
+ font-size: var(--hg-typo-font-size-12);
2233
+ line-height: var(--hg-typo-line-height-1-4) !important;
2226
2234
  }
2227
2235
 
2228
2236
  .title-l {
2229
- font-family: var(--hg-typo-font-family-primary);
2237
+ font-family: var(--hg-typo-font-family-primary-light);
2230
2238
  font-weight: var(--hg-typo-font-weight-100);
2231
- font-size: var(--hg-typo-font-size-14);
2232
- line-height: var(--hg-typo-line-height-1-4);
2239
+ font-size: var(--hg-typo-font-size-12);
2240
+ line-height: var(--hg-typo-line-height-1-4) !important;
2241
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2242
+ text-transform: var(--hg-typo-text-transform-uppercase);
2233
2243
  }
2234
2244
 
2235
2245
  .title-m {
2236
- font-family: var(--hg-typo-font-family-primary);
2246
+ font-family: var(--hg-typo-font-family-primary-light);
2237
2247
  font-weight: var(--hg-typo-font-weight-100);
2238
2248
  font-size: var(--hg-typo-font-size-12);
2239
- line-height: var(--hg-typo-line-height-1-4);
2249
+ line-height: var(--hg-typo-line-height-1-4) !important;
2250
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2251
+ }
2252
+
2253
+ .title-s-b {
2254
+ font-family: var(--hg-typo-font-family-primary-regular);
2255
+ font-weight: var(--hg-typo-font-weight-300);
2256
+ font-size: var(--hg-typo-font-size-10);
2257
+ line-height: var(--hg-typo-line-height-1-4) !important;
2258
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2240
2259
  }
2241
2260
 
2242
2261
  .title-s {
2243
- font-family: var(--hg-typo-font-family-primary);
2244
- font-weight: var(--hg-typo-font-weight-400);
2245
- font-size: var(--hg-typo-font-size-12);
2246
- line-height: var(--hg-typo-line-height-1-4);
2262
+ font-family: var(--hg-typo-font-family-primary-light);
2263
+ font-weight: var(--hg-typo-font-weight-100);
2264
+ font-size: var(--hg-typo-font-size-10);
2265
+ line-height: var(--hg-typo-line-height-1-4) !important;
2266
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2267
+ text-transform: var(--hg-typo-text-transform-uppercase);
2247
2268
  }
2248
2269
 
2249
2270
  .text-l {
2250
- font-family: var(--hg-typo-font-family-primary);
2271
+ font-family: var(--hg-typo-font-family-primary-light);
2251
2272
  font-weight: var(--hg-typo-font-weight-100);
2252
- font-size: var(--hg-typo-font-size-12);
2253
- line-height: var(--hg-typo-line-height-1-5);
2273
+ font-size: var(--hg-typo-font-size-13);
2274
+ line-height: var(--hg-typo-line-height-1-5) !important;
2275
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2254
2276
  }
2255
2277
 
2256
2278
  .text-m {
2257
- font-family: var(--hg-typo-font-family-primary);
2279
+ font-family: var(--hg-typo-font-family-primary-light);
2258
2280
  font-weight: var(--hg-typo-font-weight-100);
2259
2281
  font-size: var(--hg-typo-font-size-12);
2260
- line-height: var(--hg-typo-line-height-1-5);
2282
+ line-height: var(--hg-typo-line-height-1-5) !important;
2283
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2261
2284
  }
2262
2285
 
2263
- .semantic {
2264
- font-family: var(--hg-typo-font-family-primary);
2286
+ .p-tag {
2287
+ font-family: var(--hg-typo-font-family-primary-light);
2265
2288
  font-weight: var(--hg-typo-font-weight-100);
2266
- font-size: var(--hg-typo-font-size-13);
2267
- line-height: var(--hg-typo-line-height-1);
2289
+ font-size: var(--hg-typo-font-size-9);
2290
+ line-height: var(--hg-typo-line-height-1) !important;
2291
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2268
2292
  }
2269
2293
 
2270
- .p-tag {
2271
- font-family: var(--hg-typo-font-family-primary);
2294
+ .hg-body-l {
2295
+ font-family: var(--hg-typo-font-family-primary-light);
2272
2296
  font-weight: var(--hg-typo-font-weight-100);
2273
- font-size: var(--hg-typo-font-size-8);
2274
- line-height: var(--hg-typo-line-height-1);
2297
+ font-size: var(--hg-typo-font-size-12);
2298
+ line-height: var(--hg-typo-line-height-1-5) !important;
2299
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2275
2300
  }
2276
2301
 
2277
- .suisse-1 {
2278
- font-family: var(--hg-typo-font-family-secondary);
2279
- font-size: var(--hg-typo-font-size-16);
2280
- line-height: var(--hg-typo-line-height-1-5);
2302
+ .hg-body-l-b {
2303
+ font-family: var(--hg-typo-font-family-primary-regular);
2304
+ font-weight: var(--hg-typo-font-weight-300);
2305
+ font-size: var(--hg-typo-font-size-12);
2306
+ line-height: var(--hg-typo-line-height-1-5) !important;
2307
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2281
2308
  }
2282
2309
 
2283
- .suisse-2 {
2284
- font-family: var(--hg-typo-font-family-secondary);
2285
- font-size: var(--hg-typo-font-size-13);
2286
- line-height: var(--hg-typo-line-height-1-1);
2310
+ .hg-body-m {
2311
+ font-family: var(--hg-typo-font-family-primary-light);
2312
+ font-weight: var(--hg-typo-font-weight-100);
2313
+ font-size: var(--hg-typo-font-size-12);
2314
+ line-height: var(--hg-typo-line-height-1-5) !important;
2315
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2287
2316
  }
2288
2317
 
2289
- .suisse-body {
2290
- font-family: var(--hg-typo-font-family-secondary);
2291
- font-size: var(--hg-typo-font-size-10);
2292
- line-height: var(--hg-typo-line-height-1-1);
2318
+ .hg-body-m-b {
2319
+ font-family: var(--hg-typo-font-family-primary-regular);
2320
+ font-weight: var(--hg-typo-font-weight-300);
2321
+ font-size: var(--hg-typo-font-size-12);
2322
+ line-height: var(--hg-typo-line-height-1-5) !important;
2323
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2293
2324
  }
2294
2325
 
2295
- .hg-body-m {
2296
- font-family: var(--hg-typo-font-family-primary);
2326
+ .label-m {
2327
+ font-family: var(--hg-typo-font-family-primary-light);
2297
2328
  font-weight: var(--hg-typo-font-weight-100);
2298
2329
  font-size: var(--hg-typo-font-size-12);
2299
- line-height: var(--hg-typo-line-height-1-5);
2330
+ line-height: var(--hg-typo-line-height-1) !important;
2331
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2332
+ text-transform: var(--hg-typo-text-transform-uppercase);
2300
2333
  }
2301
2334
 
2302
- .hg-body-m-b {
2303
- font-family: var(--hg-typo-font-family-primary);
2304
- font-weight: var(--hg-typo-font-weight-400);
2335
+ .label-m-b {
2336
+ font-family: var(--hg-typo-font-family-primary-regular);
2337
+ font-weight: var(--hg-typo-font-weight-300);
2305
2338
  font-size: var(--hg-typo-font-size-12);
2306
- line-height: var(--hg-typo-line-height-1-5);
2339
+ line-height: var(--hg-typo-line-height-1) !important;
2340
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2341
+ text-transform: var(--hg-typo-text-transform-uppercase);
2342
+ }
2343
+
2344
+ .label-s {
2345
+ font-family: var(--hg-typo-font-family-primary-light);
2346
+ font-weight: var(--hg-typo-font-weight-100);
2347
+ font-size: var(--hg-typo-font-size-10);
2348
+ line-height: var(--hg-typo-line-height-1) !important;
2349
+ letter-spacing: var(--hg-typo-letter-spacing-0-06em);
2350
+ text-transform: var(--hg-typo-text-transform-uppercase);
2351
+ }
2352
+
2353
+ .label-s-b {
2354
+ font-family: var(--hg-typo-font-family-primary-regular);
2355
+ font-weight: var(--hg-typo-font-weight-300);
2356
+ font-size: var(--hg-typo-font-size-10);
2357
+ line-height: var(--hg-typo-line-height-1) !important;
2358
+ letter-spacing: var(--hg-typo-letter-spacing-0-06em);
2359
+ text-transform: var(--hg-typo-text-transform-uppercase);
2307
2360
  }
2308
2361
 
2309
2362
  }
@@ -2311,103 +2364,153 @@ p, h1, h2, h3, h4, h5, h6 {
2311
2364
  /* Tipografías - Desktop (min-width: 62rem) */
2312
2365
  @media (min-width: 62rem) {
2313
2366
 
2367
+ .title-xxl {
2368
+ font-family: var(--hg-typo-font-family-primary-regular);
2369
+ font-weight: var(--hg-typo-font-weight-300);
2370
+ font-size: var(--hg-typo-font-size-24);
2371
+ line-height: var(--hg-typo-line-height-1) !important;
2372
+ }
2373
+
2314
2374
  .h2 {
2315
- font-family: var(--hg-typo-font-family-primary);
2316
- font-weight: var(--hg-typo-font-weight-900);
2375
+ font-family: var(--hg-typo-font-family-primary-bold);
2376
+ font-weight: var(--hg-typo-font-weight-600);
2317
2377
  font-size: var(--hg-typo-font-size-24);
2318
- line-height: var(--hg-typo-line-height-1-2);
2378
+ line-height: var(--hg-typo-line-height-1-2) !important;
2319
2379
  letter-spacing: var(--hg-typo-letter-spacing-0);
2320
2380
  text-transform: var(--hg-typo-text-transform-none);
2321
2381
  }
2322
2382
 
2323
2383
  .title-l-b {
2324
- font-family: var(--hg-typo-font-family-primary);
2325
- font-weight: var(--hg-typo-font-weight-700);
2326
- font-size: var(--hg-typo-font-size-14);
2327
- line-height: var(--hg-typo-line-height-1-4);
2328
- letter-spacing: var(--hg-typo-letter-spacing-0);
2329
- text-transform: var(--hg-typo-text-transform-uppercase);
2384
+ font-family: var(--hg-typo-font-family-primary-regular);
2385
+ font-weight: var(--hg-typo-font-weight-300);
2386
+ font-size: var(--hg-typo-font-size-13);
2387
+ line-height: var(--hg-typo-line-height-1-4) !important;
2330
2388
  }
2331
2389
 
2332
2390
  .title-l {
2333
- font-family: var(--hg-typo-font-family-primary);
2391
+ font-family: var(--hg-typo-font-family-primary-light);
2334
2392
  font-weight: var(--hg-typo-font-weight-100);
2335
- font-size: var(--hg-typo-font-size-14);
2336
- line-height: var(--hg-typo-line-height-1-4);
2393
+ font-size: var(--hg-typo-font-size-13);
2394
+ line-height: var(--hg-typo-line-height-1-4) !important;
2395
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2396
+ text-transform: var(--hg-typo-text-transform-uppercase);
2337
2397
  }
2338
2398
 
2339
2399
  .title-m {
2340
- font-family: var(--hg-typo-font-family-primary);
2400
+ font-family: var(--hg-typo-font-family-primary-light);
2341
2401
  font-weight: var(--hg-typo-font-weight-100);
2342
- font-size: var(--hg-typo-font-size-12);
2343
- line-height: var(--hg-typo-line-height-1-4);
2402
+ font-size: var(--hg-typo-font-size-13);
2403
+ line-height: var(--hg-typo-line-height-1-4) !important;
2404
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2405
+ }
2406
+
2407
+ .title-s-b {
2408
+ font-family: var(--hg-typo-font-family-primary-regular);
2409
+ font-weight: var(--hg-typo-font-weight-300);
2410
+ font-size: var(--hg-typo-font-size-10);
2411
+ line-height: var(--hg-typo-line-height-1-4) !important;
2412
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2344
2413
  }
2345
2414
 
2346
2415
  .title-s {
2347
- font-family: var(--hg-typo-font-family-primary);
2348
- font-weight: var(--hg-typo-font-weight-400);
2349
- font-size: var(--hg-typo-font-size-12);
2350
- line-height: var(--hg-typo-line-height-1-4);
2416
+ font-family: var(--hg-typo-font-family-primary-light);
2417
+ font-weight: var(--hg-typo-font-weight-100);
2418
+ font-size: var(--hg-typo-font-size-10);
2419
+ line-height: var(--hg-typo-line-height-1-4) !important;
2420
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2421
+ text-transform: var(--hg-typo-text-transform-uppercase);
2351
2422
  }
2352
2423
 
2353
2424
  .text-l {
2354
- font-family: var(--hg-typo-font-family-primary);
2425
+ font-family: var(--hg-typo-font-family-primary-light);
2355
2426
  font-weight: var(--hg-typo-font-weight-100);
2356
- font-size: var(--hg-typo-font-size-12);
2357
- line-height: var(--hg-typo-line-height-1-5);
2427
+ font-size: var(--hg-typo-font-size-13);
2428
+ line-height: var(--hg-typo-line-height-1-5) !important;
2429
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2358
2430
  }
2359
2431
 
2360
2432
  .text-m {
2361
- font-family: var(--hg-typo-font-family-primary);
2433
+ font-family: var(--hg-typo-font-family-primary-light);
2362
2434
  font-weight: var(--hg-typo-font-weight-100);
2363
- font-size: var(--hg-typo-font-size-13);
2364
- line-height: var(--hg-typo-line-height-1-5);
2435
+ font-size: var(--hg-typo-font-size-12);
2436
+ line-height: var(--hg-typo-line-height-1-5) !important;
2437
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2438
+ }
2439
+
2440
+ .p-tag {
2441
+ font-family: var(--hg-typo-font-family-primary-light);
2442
+ font-weight: var(--hg-typo-font-weight-100);
2443
+ font-size: var(--hg-typo-font-size-10);
2444
+ line-height: var(--hg-typo-line-height-1) !important;
2445
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2365
2446
  }
2366
2447
 
2367
- .semantic {
2368
- font-family: var(--hg-typo-font-family-primary);
2448
+ .hg-body-l {
2449
+ font-family: var(--hg-typo-font-family-primary-light);
2369
2450
  font-weight: var(--hg-typo-font-weight-100);
2370
2451
  font-size: var(--hg-typo-font-size-13);
2371
- line-height: var(--hg-typo-line-height-1);
2452
+ line-height: var(--hg-typo-line-height-1-5) !important;
2453
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2372
2454
  }
2373
2455
 
2374
- .p-tag {
2375
- font-family: var(--hg-typo-font-family-primary);
2456
+ .hg-body-l-b {
2457
+ font-family: var(--hg-typo-font-family-primary-regular);
2458
+ font-weight: var(--hg-typo-font-weight-300);
2459
+ font-size: var(--hg-typo-font-size-13);
2460
+ line-height: var(--hg-typo-line-height-1-5) !important;
2461
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2462
+ }
2463
+
2464
+ .hg-body-m {
2465
+ font-family: var(--hg-typo-font-family-primary-light);
2376
2466
  font-weight: var(--hg-typo-font-weight-100);
2377
- font-size: var(--hg-typo-font-size-8);
2378
- line-height: var(--hg-typo-line-height-1);
2467
+ font-size: var(--hg-typo-font-size-12);
2468
+ line-height: var(--hg-typo-line-height-1-5) !important;
2469
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2379
2470
  }
2380
2471
 
2381
- .suisse-1 {
2382
- font-family: var(--hg-typo-font-family-secondary);
2383
- font-size: var(--hg-typo-font-size-20);
2384
- line-height: var(--hg-typo-line-height-1-5);
2472
+ .hg-body-m-b {
2473
+ font-family: var(--hg-typo-font-family-primary-regular);
2474
+ font-weight: var(--hg-typo-font-weight-300);
2475
+ font-size: var(--hg-typo-font-size-12);
2476
+ line-height: var(--hg-typo-line-height-1-5) !important;
2477
+ letter-spacing: var(--hg-typo-letter-spacing-0-04em);
2385
2478
  }
2386
2479
 
2387
- .suisse-2 {
2388
- font-family: var(--hg-typo-font-family-secondary);
2389
- font-size: var(--hg-typo-font-size-14);
2390
- line-height: var(--hg-typo-line-height-1-1);
2480
+ .label-m {
2481
+ font-family: var(--hg-typo-font-family-primary-light);
2482
+ font-weight: var(--hg-typo-font-weight-100);
2483
+ font-size: var(--hg-typo-font-size-12);
2484
+ line-height: var(--hg-typo-line-height-1) !important;
2485
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2486
+ text-transform: var(--hg-typo-text-transform-uppercase);
2391
2487
  }
2392
2488
 
2393
- .suisse-body {
2394
- font-family: var(--hg-typo-font-family-secondary);
2489
+ .label-m-b {
2490
+ font-family: var(--hg-typo-font-family-primary-regular);
2491
+ font-weight: var(--hg-typo-font-weight-300);
2395
2492
  font-size: var(--hg-typo-font-size-12);
2396
- line-height: var(--hg-typo-line-height-1-1);
2493
+ line-height: var(--hg-typo-line-height-1) !important;
2494
+ letter-spacing: var(--hg-typo-letter-spacing-0-16em);
2495
+ text-transform: var(--hg-typo-text-transform-uppercase);
2397
2496
  }
2398
2497
 
2399
- .hg-body-m {
2400
- font-family: var(--hg-typo-font-family-primary);
2498
+ .label-s {
2499
+ font-family: var(--hg-typo-font-family-primary-light);
2401
2500
  font-weight: var(--hg-typo-font-weight-100);
2402
- font-size: var(--hg-typo-font-size-13);
2403
- line-height: var(--hg-typo-line-height-1-5);
2501
+ font-size: var(--hg-typo-font-size-10);
2502
+ line-height: var(--hg-typo-line-height-1) !important;
2503
+ letter-spacing: var(--hg-typo-letter-spacing-0-06em);
2504
+ text-transform: var(--hg-typo-text-transform-uppercase);
2404
2505
  }
2405
2506
 
2406
- .hg-body-m-b {
2407
- font-family: var(--hg-typo-font-family-primary);
2408
- font-weight: var(--hg-typo-font-weight-400);
2409
- font-size: var(--hg-typo-font-size-13);
2410
- line-height: var(--hg-typo-line-height-1-5);
2507
+ .label-s-b {
2508
+ font-family: var(--hg-typo-font-family-primary-regular);
2509
+ font-weight: var(--hg-typo-font-weight-300);
2510
+ font-size: var(--hg-typo-font-size-10);
2511
+ line-height: var(--hg-typo-line-height-1) !important;
2512
+ letter-spacing: var(--hg-typo-letter-spacing-0-06em);
2513
+ text-transform: var(--hg-typo-text-transform-uppercase);
2411
2514
  }
2412
2515
 
2413
2516
  }
package/dist/skills.html CHANGED
@@ -34,7 +34,11 @@
34
34
  text-decoration: none; color: #000; width: max-content;
35
35
  }
36
36
  .guide-nav { display: flex; gap: 1.5rem; align-items: center; }
37
- .guide-nav a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.2s; }
37
+ .guide-nav a {
38
+ font-family: var(--hg-typo-font-family-primary-regular);
39
+ font-size: 13px; color: #666; text-decoration: none;
40
+ transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.05em;
41
+ }
38
42
  .guide-nav a:hover { color: #000; }
39
43
  .guide-nav a.active { color: #000; font-weight: 600; }
40
44
 
@@ -139,7 +143,9 @@
139
143
  <a href="index.html" class="guide-logo" style="text-decoration:none;">HolyGrail5</a>
140
144
  <nav class="guide-nav">
141
145
  <a href="index.html">Guía</a>
146
+ <a href="componentes.html">Componentes</a>
142
147
  <a href="themes/dutti-demo.html">Tema Dutti</a>
148
+ <a href="themes/limited-demo.html">Tema Limited</a>
143
149
  <a href="skills.html" class="active">Skills</a>
144
150
  </nav>
145
151
  </div>
@@ -215,12 +221,12 @@ npm run dev</code></div>
215
221
  <p class="sk-md-p">Definidos en <code class="sk-inline-code">config.colors</code>. Cada color genera una variable <code class="sk-inline-code">--hg-color-{nombre}</code>.</p>
216
222
  <div class="sk-code-block"><code>/* Uso en CSS */
217
223
  color: var(--hg-color-primary);
218
- background: var(--hg-color-vanilla);
224
+ background: var(--hg-color-bg-cream);
219
225
  border-color: var(--hg-color-error);
220
226
 
221
227
  /* Uso inline en HTML (cuando no hay clase específica) */
222
228
  &lt;div style="color: var(--hg-color-dark-grey)"&gt;Texto&lt;/div&gt;</code></div>
223
- <p class="sk-md-p">Colores disponibles por defecto: <code class="sk-inline-code">white</code>, <code class="sk-inline-code">black</code>, <code class="sk-inline-code">dark-grey</code>, <code class="sk-inline-code">middle-grey</code>, <code class="sk-inline-code">light-grey</code>, <code class="sk-inline-code">grey-ultra</code>, <code class="sk-inline-code">orange</code>, <code class="sk-inline-code">mustard</code>, <code class="sk-inline-code">primary</code>, <code class="sk-inline-code">error</code>, <code class="sk-inline-code">info</code>, <code class="sk-inline-code">success</code>, <code class="sk-inline-code">warning</code>, <code class="sk-inline-code">feel</code>, <code class="sk-inline-code">feel-dark</code>, <code class="sk-inline-code">special</code>, <code class="sk-inline-code">vanilla</code>, <code class="sk-inline-code">silver</code>, <code class="sk-inline-code">gold</code>, <code class="sk-inline-code">platinum</code>, <code class="sk-inline-code">charcoal</code>, <code class="sk-inline-code">bg-light</code>, <code class="sk-inline-code">sk-grey</code>, <code class="sk-inline-code">bg-cream</code>.</p>
229
+ <p class="sk-md-p">Colores disponibles por defecto: <code class="sk-inline-code">white</code>, <code class="sk-inline-code">black</code>, <code class="sk-inline-code">dark-grey</code>, <code class="sk-inline-code">middle-grey</code>, <code class="sk-inline-code">light-grey</code>, <code class="sk-inline-code">grey-ultra</code>, <code class="sk-inline-code">orange</code>, <code class="sk-inline-code">mustard</code>, <code class="sk-inline-code">primary</code>, <code class="sk-inline-code">error</code>, <code class="sk-inline-code">info</code>, <code class="sk-inline-code">success</code>, <code class="sk-inline-code">warning</code>, <code class="sk-inline-code">feel</code>, <code class="sk-inline-code">feel-dark</code>, <code class="sk-inline-code">silver</code>, <code class="sk-inline-code">gold</code>, <code class="sk-inline-code">platinum</code>, <code class="sk-inline-code">bg-light</code>, <code class="sk-inline-code">bg-cream</code>.</p>
224
230
  <h4 class="sk-md-h3">Spacing</h4>
225
231
  <p class="sk-md-p">Definido en <code class="sk-inline-code">config.spacingMap</code>. Cada valor genera <code class="sk-inline-code">--hg-spacing-{key}</code>.</p>
226
232
  <div class="sk-code-block"><code>/* Variables de spacing */
@@ -238,7 +244,7 @@ border-color: var(--hg-color-error);
238
244
  <p class="sk-md-p">Los valores px se convierten automáticamente a rem (base 16px).</p>
239
245
  <h4 class="sk-md-h3">Tipografía</h4>
240
246
  <p class="sk-md-p">Las variables tipográficas se generan automáticamente y se deduplicam para evitar repeticiones:</p>
241
- <div class="sk-code-block"><code>--hg-typo-font-family-primary: arial, sans-serif;
247
+ <div class="sk-code-block"><code>--hg-typo-font-family-primary-regular: arial, sans-serif;
242
248
  --hg-typo-font-family-secondary: "ms-serif", serif;
243
249
  --hg-typo-font-size-12: 0.75rem;
244
250
  --hg-typo-font-size-14: 0.875rem;
@@ -435,7 +441,7 @@ border-color: var(--hg-color-error);
435
441
  <p class="sk-md-p">Las clases son mobile-first. Los valores base aplican a mobile y un media query <code class="sk-inline-code">@media (min-width: 992px)</code> sobrescribe para desktop.</p>
436
442
  <div class="sk-code-block"><code>/* CSS generado (ejemplo) */
437
443
  .hg-h2 {
438
- font-family: var(--hg-typo-font-family-primary);
444
+ font-family: var(--hg-typo-font-family-primary-regular);
439
445
  font-weight: var(--hg-typo-font-weight-900);
440
446
  font-size: var(--hg-typo-font-size-18); /* mobile */
441
447
  line-height: var(--hg-typo-line-height-1-976);
@@ -585,7 +591,7 @@ border-color: var(--hg-color-error);
585
591
  &lt;/div&gt;</code></div>
586
592
  <h4 class="sk-md-h3">Navbar sticky</h4>
587
593
  <div class="sk-code-block"><code>&lt;header class="hg-position-sticky hg-z-50 hg-d-flex hg-justify-between hg-items-center p-16"
588
- style="top: 0; background: var(--hg-color-white); border-bottom: 1px solid var(--hg-color-sk-grey);"&gt;
594
+ style="top: 0; background: var(--hg-color-white); border-bottom: 1px solid var(--hg-color-middle-grey);"&gt;
589
595
  &lt;span class="hg-title-l-b"&gt;Logo&lt;/span&gt;
590
596
  &lt;nav class="hg-d-flex hg-gap-24"&gt;
591
597
  &lt;a class="hg-text-m" href="#"&gt;Inicio&lt;/a&gt;
@@ -596,7 +602,7 @@ border-color: var(--hg-color-error);
596
602
  <h4 class="sk-md-h3">Layout sidebar</h4>
597
603
  <div class="sk-code-block"><code>&lt;div class="row"&gt;
598
604
  &lt;aside class="col-xs-12 col-md-3 hg-d-none md:hg-d-block p-16"
599
- style="border-right: 1px solid var(--hg-color-sk-grey);"&gt;
605
+ style="border-right: 1px solid var(--hg-color-middle-grey);"&gt;
600
606
  &lt;nav class="hg-d-flex hg-flex-column hg-gap-8"&gt;
601
607
  &lt;a class="hg-text-m" href="#"&gt;Sección 1&lt;/a&gt;
602
608
  &lt;a class="hg-text-m" href="#"&gt;Sección 2&lt;/a&gt;
@@ -608,7 +614,7 @@ border-color: var(--hg-color-error);
608
614
  &lt;/main&gt;
609
615
  &lt;/div&gt;</code></div>
610
616
  <h4 class="sk-md-h3">Footer multicolumna</h4>
611
- <div class="sk-code-block"><code>&lt;footer class="pt-48 pb-24" style="background: var(--hg-color-charcoal); color: var(--hg-color-white);"&gt;
617
+ <div class="sk-code-block"><code>&lt;footer class="pt-48 pb-24" style="background: var(--hg-color-grey-ultra); color: var(--hg-color-white);"&gt;
612
618
  &lt;div class="row hg-px-16 md:hg-px-32 hg-gap-24"&gt;
613
619
  &lt;div class="col-xs-12 col-md-4"&gt;
614
620
  &lt;h4 class="hg-title-l-b" style="color: var(--hg-color-white);"&gt;Empresa&lt;/h4&gt;