Fix template generation for rgb colors

This commit is contained in:
David Heinemeier Hansson
2026-01-03 18:18:19 -08:00
parent a6b9bee8b9
commit e8bcad0c23
2 changed files with 23 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
$color = {{ background }}
$inner_color = {{ background }}
$outer_color = {{ foreground }}
$font_color = {{ foreground }}
$check_color = {{ accent }}
$color = rgba({{ background_rgb }}, 1.0)
$inner_color = rgba({{ background_rgb }}, 0.8)
$outer_color = rgba({{ foreground_rgb }}, 1.0)
$font_color = rgba({{ foreground_rgb }}, 1.0)
$check_color = rgba({{ accent_rgb }}, 1.0)