@rolster/styles-foundations 2.3.31 → 2.3.32

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/styles-foundations",
3
- "version": "2.3.31",
3
+ "version": "2.3.32",
4
4
  "description": "Front-end style pack to develop responsive and mobile projects on the web with Rolster.",
5
5
  "sass": "scss/styles.scss",
6
6
  "style": "dist/styles.css",
@@ -1,5 +1,5 @@
1
1
  // Rolster Technology Datatable Component
2
- // v2.2.0
2
+ // v2.2.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
@@ -74,7 +74,7 @@
74
74
  );
75
75
 
76
76
  --pvt-datatable-padding-component: 0rem
77
- calc(var(--rlc-datatable-padding-scroll) + 6rem) 0rem
77
+ calc(var(--rlc-datatable-padding-scroll) + 5rem) 0rem
78
78
  var(--rlc-datatable-padding-scroll);
79
79
  }
80
80
 
@@ -197,7 +197,7 @@
197
197
  position: sticky;
198
198
  top: 0px;
199
199
  z-index: var(--rls-z-index-4);
200
- background: rgba(255, 255, 255, 0.8);
200
+ background: rgba(241, 238, 247, 0.8);
201
201
  backdrop-filter: blur(2px);
202
202
  }
203
203
 
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology Colors Foundations
2
- // v2.5.0
2
+ // v2.5.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 03/Mar/2022
6
- // Updated: 17/Dic/2024
6
+ // Updated: 12/Mar/2025
7
7
 
8
8
  @mixin rolster-theme-900($theme, $r, $g, $b) {
9
9
  --rls-#{$theme}-backdrop-900: rgba(#{$r}, #{$g}, #{$b}, 0.8);
@@ -320,6 +320,48 @@
320
320
  var(--rls-amaizing-color-500) 100%
321
321
  );
322
322
 
323
+ // COLORS AMBER
324
+
325
+ --rls-amber-color-950: rgba(66, 27, 8, 1);
326
+
327
+ @include rolster-theme-900('amber', 123, 59, 19);
328
+
329
+ --rls-amber-color-800: rgba(152, 69, 20, 1);
330
+
331
+ @include rolster-theme-700('amber', 192, 88, 14);
332
+
333
+ --rls-amber-color-600: rgba(238, 119, 15, 1);
334
+
335
+ @include rolster-theme-500('amber', 246, 142, 25);
336
+
337
+ --rls-amber-color-400: rgba(249, 169, 62, 1);
338
+
339
+ --rls-amber-color-300: rgba(251, 202, 118, 1);
340
+
341
+ --rls-amber-color-200: rgba(253, 225, 171, 1);
342
+
343
+ --rls-amber-color-100: rgba(255, 242, 213, 1);
344
+
345
+ --rls-amber-color-050: rgba(255, 249, 237, 1);
346
+
347
+ --rls-amber-gradient-700: linear-gradient(
348
+ 180deg,
349
+ var(--rls-amber-color-700) 0%,
350
+ var(--rls-amber-color-900) 100%
351
+ );
352
+
353
+ --rls-amber-gradient-500: linear-gradient(
354
+ 180deg,
355
+ var(--rls-amber-color-500) 0%,
356
+ var(--rls-amber-color-700) 100%
357
+ );
358
+
359
+ --rls-amber-gradient-300: linear-gradient(
360
+ 180deg,
361
+ var(--rls-amber-color-300) 0%,
362
+ var(--rls-amber-color-500) 100%
363
+ );
364
+
323
365
  // COLORS SMARTNESS
324
366
 
325
367
  --rls-smartness-color-950: rgba(50, 24, 22, 1);
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology Themes Foundations
2
- // v2.3.2
2
+ // v2.3.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 03/Mar/2022
6
- // Updated: 17/Dic/2024
6
+ // Updated: 12/Mar/2025
7
7
 
8
8
  @mixin app-border-token($theme, $token) {
9
9
  --rls-app-border-1-#{$token}: var(--rls-border-1) solid
@@ -149,6 +149,7 @@
149
149
  @include rolster-border-token('warning');
150
150
  @include rolster-border-token('danger');
151
151
  @include rolster-border-token('amaizing');
152
+ @include rolster-border-token('amber');
152
153
  @include rolster-border-token('smartness');
153
154
  @include rolster-border-token('obsidian');
154
155
 
@@ -175,6 +176,10 @@
175
176
  @include rolster-theme('amaizing');
176
177
  }
177
178
 
179
+ *[rls-theme='amber'] {
180
+ @include rolster-theme('amber');
181
+ }
182
+
178
183
  *[rls-theme='smartness'] {
179
184
  @include rolster-theme('smartness');
180
185
  }