pacem-less 0.50.2-buhen → 0.50.2-delphi

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.
@@ -33,7 +33,7 @@
33
33
  });
34
34
 
35
35
 
36
- @colors: primary, secondary, accent, info, success, warning, danger, error, disabled;
36
+ @colors: @all_colors;
37
37
 
38
38
  each(@colors {
39
39
  &.border-@{value} {
@@ -46,7 +46,7 @@
46
46
  .Halo( ~"var(--@{PCSS}-color-default)");
47
47
  }
48
48
 
49
- @colors: green, yellow, brown, red, pink, blue, orange, purple, teal, root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled;
49
+ @colors: @all_colors;
50
50
 
51
51
  // text
52
52
  each(@colors, {
@@ -144,3 +144,4 @@ each(@colors, {
144
144
  }
145
145
 
146
146
  });
147
+
package/pacem/pacem.less CHANGED
@@ -248,8 +248,10 @@ html .@{PCSS}-preloader {
248
248
  @__color_purple_inv: @palette_purple_inv;
249
249
  @__color_teal: @palette_teal;
250
250
  @__color_teal_inv: @palette_teal_inv;
251
+ @__color_gray: @palette_gray;
252
+ @__color_gray_inv: @palette_gray_inv;
251
253
 
252
- @_colors: root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled, green, yellow, brown, red, pink, blue, orange, purple, teal;
254
+ @_colors: root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled, green, yellow, brown, red, pink, blue, orange, purple, teal, gray;
253
255
 
254
256
  // basic palette
255
257
  each(@_colors, {
@@ -84,6 +84,8 @@
84
84
  @palette_purple_inv: #fff;
85
85
  @palette_teal: @color_teal;
86
86
  @palette_teal_inv: #fff;
87
+ @palette_gray: #808080;
88
+ @palette_gray_inv: #fff;
87
89
 
88
90
 
89
91
  // layout
@@ -40,10 +40,12 @@
40
40
  @color_scrollbar_thumb: #e4e7e9;
41
41
 
42
42
  // palette
43
- @palette_yellow: #e8d522;
44
- @palette_yellow_inv: #000;
43
+ @palette_yellow: #e4d102;
44
+ @palette_yellow_inv: #fff; // #331;
45
45
  @palette_orange: #e48d1c;
46
- @palette_orange_inv: #000;
46
+ @palette_orange_inv: #fff;
47
+ @palette_gray: #a8a8a8;
48
+ @palette_gray_inv: #fff;
47
49
 
48
50
  /*#region SCAFFOLDING_VARIABLES*/
49
51
  @field_outline_width: 0;
@@ -33,6 +33,7 @@
33
33
  @color_dark: #000; //#4beebf;
34
34
  @color_red: #d42b2d; //#e51abb; //#b00c7d
35
35
  @color_teal: #2f989d; //#5d5483
36
+ @color_gray: #676767;
36
37
  //@color_dark: #000;
37
38
 
38
39
  @color_error: @color_red;
@@ -142,7 +142,6 @@ a.@{PCSS}-button,
142
142
  }
143
143
  }
144
144
 
145
-
146
145
  .ButtonColorize(@clr_name) {
147
146
  @_fore: ~"var(--@{PCSS}-color-@{clr_name}-inverse)";
148
147
  @_back: ~"var(--@{PCSS}-color-@{clr_name})";
@@ -170,8 +169,8 @@ a.@{PCSS}-button,
170
169
  .ButtonColorize(invert);
171
170
  }
172
171
 
173
- @_palette: green, yellow, brown, red, pink, blue, orange, purple, teal;
174
- @_colors: primary, secondary, accent, info, success, warning, danger, error;
172
+ @_palette: @palette_colors;
173
+ @_colors: @semantic_colors;
175
174
 
176
175
  each(@_colors, {
177
176
 
@@ -67,7 +67,7 @@
67
67
  // coloring
68
68
 
69
69
 
70
- @colors: green, yellow, brown, red, pink, blue, orange, purple, teal, root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled;
70
+ @colors: @all_colors;
71
71
 
72
72
  // text
73
73
  each(@colors, {
@@ -120,7 +120,7 @@
120
120
  }
121
121
  }
122
122
 
123
- @colors: green, yellow, brown, red, pink, blue, orange, purple, teal, root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled;
123
+ @colors: @all_colors;
124
124
 
125
125
  // text
126
126
  each(@colors, {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.50.2-buhen",
2
+ "version": "0.50.2-delphi",
3
3
  "name": "pacem-less",
4
4
  "homepage": "https://js.pacem.it",
5
5
  "repository": {
package/shared.less CHANGED
@@ -6,6 +6,11 @@
6
6
  @font_btn_apiurl: e("");
7
7
  @material_symbols_font: ~"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200";
8
8
 
9
+ @palette_colors: green, yellow, brown, red, pink, blue, orange, purple, teal, gray;
10
+ @semantic_colors: root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled;
11
+ @all_colors: root, background, default, invert, primary, secondary, accent, info, success, warning, danger, error, disabled, green, yellow, brown, red, pink, blue, orange, purple, teal, gray;
12
+
13
+
9
14
  .Ellipsed(@max-width) {
10
15
  white-space: nowrap;
11
16
  overflow: hidden;