Advertisement
Wykop

Wszystkie światła ikona

Jan 12th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. type: custom:mushroom-chips-card
  2. chips:
  3. - type: template
  4. entity: group.light
  5. icon: >-
  6. {{ 'mdi:lightbulb-on-90' if is_state(entity, 'on') else
  7. 'mdi:lightbulb-off-outline' }}
  8. icon_color: '{{ ''orange'' if is_state(entity, ''on'') else ''grey'' }}'
  9. card_mod:
  10. style:
  11. .: |
  12. ha-card:after {
  13. content: "{{ expand(states.group.light) | selectattr( 'state', 'eq', 'on') | list | count }}";
  14. position: absolute;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. background: rgb(var(--rgb-orange));
  19. color: var(--card-background-color);
  20. font-weight: bolder;
  21. border-radius: 50%;
  22. top: -10px;
  23. right: -0px;
  24. width: 16px;
  25. height: 16px;
  26. font-size: 11px;
  27. }
  28. ha-card {
  29. --chip-background: rgba(var(--rgb-green), 0.2); /*Background color of chip */
  30. box-shadow: 0px 0px 8px 4px rgba(var(--rgb-state-person-home), 0.6) !important;
  31. /* border: solid 2px !important; */
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement