Fix bubble card modules to use the correct accent color variable

This commit is contained in:
2026-03-29 22:55:54 -04:00
parent 379de46d05
commit 6157abce18
8 changed files with 12 additions and 12 deletions

View File

@@ -11,7 +11,7 @@
// Use the configured color or default to accent color
let on_color = this.config?.state_color_button?.color
? `var(--${this.config.state_color_button.color})`
: 'var(--accent-color)';
: 'var(--bubble-accent-color)';
// Main button background
const mainButton = card?.querySelector('.bubble-button-background');