card_mod:
style: |
ha-card {
{% if is_state(config.entity, 'off') %}
--primary-text-color: rgba(255, 255, 255, 0.8);
--rgb-primary-text-color: 255,255,255;
{% else %}
--primary-text-color: rgba(0,0,0,0.8);
--rgb-primary-text-color: 0,0,0;
{% endif %}
}
因主题原因(深色主题)看不到按钮的,可以尝试使用此card_mod |