@rolster/styles-foundations 2.3.20 → 2.3.22

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.20",
3
+ "version": "2.3.22",
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",
@@ -114,8 +114,6 @@
114
114
  background: var(--rls-app-background-500);
115
115
  border: var(--rls-theme-border-1-500);
116
116
  box-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
117
- will-change: opacity, transform;
118
- opacity: var(--pvt-list-opacity);
119
117
  transform: var(--pvt-list-transform);
120
118
  transform-origin: var(--pvt-list-transform-origin);
121
119
  transition:
@@ -196,7 +194,6 @@
196
194
  bottom: var(--pvt-backdrop-bottom);
197
195
  opacity: var(--pvt-backdrop-opacity);
198
196
  z-index: var(--rls-z-index-2);
199
- will-change: opacity;
200
197
  background: var(--rls-theme-backdrop-900);
201
198
  backdrop-filter: blur(2px);
202
199
  transition:
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology Themes Foundations
2
- // v2.3.1
2
+ // v2.3.2
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 03/Mar/2022
6
- // Updated: 14/Jul/2024
6
+ // Updated: 17/Dic/2024
7
7
 
8
8
  @mixin app-border-token($theme, $token) {
9
9
  --rls-app-border-1-#{$token}: var(--rls-border-1) solid
@@ -61,10 +61,16 @@
61
61
  }
62
62
 
63
63
  @mixin rolster-theme($theme) {
64
+ --rls-theme-color-950: var(--rls-#{$theme}-color-950);
65
+
64
66
  --rls-theme-color-900: var(--rls-#{$theme}-color-900);
65
67
 
68
+ --rls-theme-color-800: var(--rls-#{$theme}-color-800);
69
+
66
70
  --rls-theme-color-700: var(--rls-#{$theme}-color-700);
67
71
 
72
+ --rls-theme-color-600: var(--rls-#{$theme}-color-600);
73
+
68
74
  --rls-theme-color-500: var(--rls-#{$theme}-color-500);
69
75
 
70
76
  --rls-theme-color-400: var(--rls-#{$theme}-color-400);
@@ -75,9 +81,11 @@
75
81
 
76
82
  --rls-theme-color-100: var(--rls-#{$theme}-color-100);
77
83
 
78
- --rls-theme-font-900: var(--rls-#{$theme}-color-100);
84
+ --rls-theme-color-050: var(--rls-#{$theme}-color-050);
85
+
86
+ --rls-theme-font-900: var(--rls-#{$theme}-color-050);
79
87
 
80
- --rls-theme-font-500: var(--rls-#{$theme}-color-100);
88
+ --rls-theme-font-500: var(--rls-#{$theme}-color-050);
81
89
 
82
90
  --rls-theme-font-100: var(--rls-#{$theme}-color-900);
83
91