Apply arbitrary change to force recreation of colors.py

This commit is contained in:
Matthias Metelka 2022-11-01 15:28:18 +01:00
parent 551ca842fe
commit e5387224b1

View file

@ -5,8 +5,9 @@
@use "vars" as *;
@use "functions" as *;
/*! colors */
/*! Colors in HEX or RGBA format */
:root {
color: red;
$colors: map.get($vars, colors);
@each $name, $val in create-vars-from-map($colors, light) {
@if str-index($name, "comment") == 1 {
@ -28,7 +29,7 @@
}
}
/*! props */
/*! Properties like lengths or percentages */
:root {
$props: map.get($vars, props);
@each $name, $val in create-vars-from-map($props, light) {