@webmate-studio/builder 0.2.178 → 0.2.179
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
|
@@ -187,9 +187,9 @@ function generateColorUtilities(t) {
|
|
|
187
187
|
|
|
188
188
|
for (let step = 1; step <= 12; step++) {
|
|
189
189
|
const varRef = `--color-${world}-${step}`;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
css = addColorUtility(css, processed, `bg-${world}-${step}`, 'background-color', varRef);
|
|
191
|
+
css = addColorUtility(css, processed, `text-${world}-${step}`, 'color', varRef);
|
|
192
|
+
css = addColorUtility(css, processed, `border-${world}-${step}`, 'border-color', varRef);
|
|
193
193
|
|
|
194
194
|
// Opacity-Varianten
|
|
195
195
|
for (const step2 of opacitySteps) {
|