@rolster/styles-foundations 2.6.22 → 2.7.0
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/dist/styles.css +182 -0
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.rtl.css +182 -0
- package/dist/styles.rtl.min.css +1 -1
- package/package.json +5 -2
- package/scss/foundations/colors.scss +17 -2
- package/scss/foundations/themes.scss +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolster/styles-foundations",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
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",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"css-minify": "^2.0.0",
|
|
26
26
|
"prettier": "^3.0.3",
|
|
27
|
-
"rimraf": "^
|
|
27
|
+
"rimraf": "^6.1.3",
|
|
28
28
|
"rtlcss": "^4.1.0",
|
|
29
29
|
"sass": "^1.89.0",
|
|
30
30
|
"sass-migrator": "^2.2.1"
|
|
@@ -32,5 +32,8 @@
|
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git+https://github.com/rolster-developments/styles-foundations"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=14.13"
|
|
35
38
|
}
|
|
36
39
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Colors Foundations
|
|
2
|
-
// v2.6.
|
|
2
|
+
// v2.6.9
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Feb/2026
|
|
7
7
|
|
|
8
8
|
@use 'helpers' as helpers;
|
|
9
9
|
|
|
@@ -30,6 +30,21 @@ body {
|
|
|
30
30
|
|
|
31
31
|
--rls-app-color-050: var(--rls-project-color-050, #ffffff);
|
|
32
32
|
|
|
33
|
+
@include helpers.rolster-theme(
|
|
34
|
+
'standard',
|
|
35
|
+
#26303b,
|
|
36
|
+
#32384e,
|
|
37
|
+
#3f4661,
|
|
38
|
+
#515a7d,
|
|
39
|
+
#67739f,
|
|
40
|
+
#828fbf,
|
|
41
|
+
#a5b0e8,
|
|
42
|
+
#c2cbf5,
|
|
43
|
+
#e0e5ff,
|
|
44
|
+
#f5f7ff,
|
|
45
|
+
#ffffff
|
|
46
|
+
);
|
|
47
|
+
|
|
33
48
|
@include helpers.rolster-theme(
|
|
34
49
|
'primary',
|
|
35
50
|
#0b2446,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Themes Foundations
|
|
2
|
-
// v2.5.
|
|
2
|
+
// v2.5.2
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Feb/2026
|
|
7
7
|
|
|
8
8
|
@mixin rolster-app-border($token) {
|
|
9
9
|
--rls-app-border-1-#{$token}: var(--rls-border-1) solid
|
|
@@ -128,6 +128,7 @@ body {
|
|
|
128
128
|
@include rolster-app-border('800');
|
|
129
129
|
@include rolster-app-border('900');
|
|
130
130
|
|
|
131
|
+
@include rolster-border-token('standard');
|
|
131
132
|
@include rolster-border-token('primary');
|
|
132
133
|
@include rolster-border-token('secondary');
|
|
133
134
|
@include rolster-border-token('tertiary');
|
|
@@ -148,6 +149,10 @@ body {
|
|
|
148
149
|
@include rolster-theme('primary');
|
|
149
150
|
}
|
|
150
151
|
|
|
152
|
+
*[rls-theme='standard'] {
|
|
153
|
+
@include rolster-theme('standard');
|
|
154
|
+
}
|
|
155
|
+
|
|
151
156
|
*[rls-theme='secondary'] {
|
|
152
157
|
@include rolster-theme('secondary');
|
|
153
158
|
}
|