HA默认的entity图标颜色都是蓝色,想根据entity状态改变图标颜色
看历史帖子里有一个方法,修改配置后没有生效(缩进没问题)
customize_glob:
"*.*":
custom_ui_state_card: state-card-custom-ui
device_tracker.*:
templates:
icon_color: if (state == 'home') return [50, 205, 50]; else return [255, 0, 0];
person.*:
templates:
icon_color: if (state == 'home') return [50, 205, 50]; else return [255, 0, 0];
switch.*:
templates:
icon_color: if (state == 'on') return [50, 205, 50]; else return [255, 0, 0];
U1界面上看实体卡片,已经有templates的内容,但是实体的图标颜色没变,大神看看还有哪里有问题
开发者工具里的state页面看到的实体信息如下:
editable: true
id: ji_ji
friendly_name: 茤茤
custom_ui_state_card: state-card-custom-ui
templates:
icon_color: 'if (state == ''home'') return [50, 205, 50]; else return [255, 0, 0];'
|