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
+1 -1
View File
@@ -2,7 +2,7 @@
const state = hass?.states[this.config?.entity]?.state || '';
let bg_color = 'var(--background-color-2)';
let accent_color = 'var(--accent-color)';
let accent_color = 'var(--bubble-accent-color)';
// Main button background
const mainButton = card?.querySelector('.bubble-button-background');