@agorapulse/ui-theme 16.1.4 → 16.1.6
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/agorapulse-ui-theme-16.1.6.tgz +0 -0
- package/assets/desktop_variables.css +3 -0
- package/assets/mobile_variables.css +3 -0
- package/assets/style/components-custom-style/_input.scss +1 -1
- package/package.json +1 -1
- package/src/tokens/components/input.json +10 -0
- package/src/tokens/reference/color.json +3 -0
- package/agorapulse-ui-theme-16.1.4.tgz +0 -0
|
Binary file
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
--ref-color-menthol-80: #1DBEB0;
|
|
83
83
|
--ref-color-menthol-100: #0FA09B;
|
|
84
84
|
--ref-color-menthol-150: #057E7A;
|
|
85
|
+
--ref-color-web-100: #1F1F1F;
|
|
85
86
|
--ref-color-facebook-10: #e7f1fd;
|
|
86
87
|
--ref-color-facebook-100: #0866FF;
|
|
87
88
|
--ref-color-instagram-10: #fbe9f1;
|
|
@@ -333,6 +334,7 @@
|
|
|
333
334
|
--comp-input-text-font-weight: 400;
|
|
334
335
|
--comp-input-text-line-height: 18px;
|
|
335
336
|
--comp-input-text-default-color: #344563;
|
|
337
|
+
--comp-input-text-disabled-color: #5D6A82;
|
|
336
338
|
--comp-input-text-placeholder-color: #858FA1;
|
|
337
339
|
--comp-forms-label-font-family: Averta;
|
|
338
340
|
--comp-forms-label-size: 14px;
|
|
@@ -376,6 +378,7 @@
|
|
|
376
378
|
--comp-text-area-text-font-weight: 400;
|
|
377
379
|
--comp-text-area-text-line-height: 18px;
|
|
378
380
|
--comp-text-area-text-default-color: #344563;
|
|
381
|
+
--comp-text-area-text-disabled-color: #5D6A82;
|
|
379
382
|
--comp-text-area-text-placeholder-color: #858FA1;
|
|
380
383
|
--comp-label-text-style-font-family: Averta;
|
|
381
384
|
--comp-label-text-style-size: 14px;
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
--ref-color-menthol-80: #1DBEB0;
|
|
83
83
|
--ref-color-menthol-100: #0FA09B;
|
|
84
84
|
--ref-color-menthol-150: #057E7A;
|
|
85
|
+
--ref-color-web-100: #1F1F1F;
|
|
85
86
|
--ref-color-facebook-10: #e7f1fd;
|
|
86
87
|
--ref-color-facebook-100: #0866FF;
|
|
87
88
|
--ref-color-instagram-10: #fbe9f1;
|
|
@@ -333,6 +334,7 @@
|
|
|
333
334
|
--comp-input-text-font-weight: 400;
|
|
334
335
|
--comp-input-text-line-height: 18px;
|
|
335
336
|
--comp-input-text-default-color: #344563;
|
|
337
|
+
--comp-input-text-disabled-color: #5D6A82;
|
|
336
338
|
--comp-input-text-placeholder-color: #858FA1;
|
|
337
339
|
--comp-forms-label-font-family: Averta;
|
|
338
340
|
--comp-forms-label-size: 14px;
|
|
@@ -376,6 +378,7 @@
|
|
|
376
378
|
--comp-text-area-text-font-weight: 400;
|
|
377
379
|
--comp-text-area-text-line-height: 18px;
|
|
378
380
|
--comp-text-area-text-default-color: #344563;
|
|
381
|
+
--comp-text-area-text-disabled-color: #5D6A82;
|
|
379
382
|
--comp-text-area-text-placeholder-color: #858FA1;
|
|
380
383
|
--comp-label-text-style-font-family: Averta;
|
|
381
384
|
--comp-label-text-style-size: 14px;
|
package/package.json
CHANGED
|
@@ -90,6 +90,11 @@
|
|
|
90
90
|
"value": "{sys.text.color.default}"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
+
"disabled": {
|
|
94
|
+
"color": {
|
|
95
|
+
"value": "{ref.color.grey.80}"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
93
98
|
"placeholder": {
|
|
94
99
|
"color": {
|
|
95
100
|
"value": "{ref.color.grey.60}"
|
|
@@ -283,6 +288,11 @@
|
|
|
283
288
|
"value": "{sys.text.color.default}"
|
|
284
289
|
}
|
|
285
290
|
},
|
|
291
|
+
"disabled": {
|
|
292
|
+
"color": {
|
|
293
|
+
"value": "{ref.color.grey.80}"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
286
296
|
"placeholder": {
|
|
287
297
|
"color": {
|
|
288
298
|
"value": "{ref.color.grey.60}"
|
|
Binary file
|