colors generations based on wallpaper

This commit is contained in:
2024-12-25 20:51:20 +01:00
parent d9177984de
commit b8eb109cdd
19 changed files with 552 additions and 67 deletions

View File

@@ -0,0 +1,7 @@
#
# Css Colors
# Generated with Matugen
#
<* for name, value in colors *>
${{name}} = {{value.default.rgb}}
<* endfor *>

View File

@@ -0,0 +1,7 @@
/*
* Css Colors
* Generated with Matugen
*/
<* for name, value in colors *>
@define-color {{name}} {{value.default.hex}};
<* endfor *>

View File

@@ -0,0 +1,9 @@
/*
* Css Colors
* Generated with Matugen
*/
* {
<* for name, value in colors *>
{{name}}: {{value.default.hex}};
<* endfor *>
}