main
alexanderroese 2024-06-17 22:36:23 +02:00
parent 606cd2fd0a
commit f8c9d8094f
1 changed files with 8 additions and 0 deletions

View File

@ -66,12 +66,20 @@
{%- endif %}
.color-{{ scheme.id }} {
--color-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
{% comment %}
{% if scheme.settings.background_gradient != empty %}
--gradient-background: {{ scheme.settings.background_gradient }};
{% else %}
--gradient-background: {{ scheme.settings.background }};
{% endif %}
{% endcomment %}
--gradient-background: 255,0,0;
{% liquid
assign background_color = scheme.settings.background
assign background_color_brightness = background_color | color_brightness