Mushroom Inspiration!

Hello WebPower, which theme are you using? I love the colors. Great work Greetings Tom

Hi @ingo.niehues,

I don’t know why but my card looks different and not as expected.
image

This is my yaml:

type: custom:button-card
entity: sensor.gasverbrauch_monate
variables:
  max_entity: sensor.gasverbrauch_monate_bis_ende
  name: '[[[ return entity.attributes.friendly_name ]]]'
  color: purple
  units: '[[[ return entity.attributes.unit_of_measurement ]]]'
  icon: mdi:calendar
show_name: false
show_state: false
show_icon: false
styles:
  card:
    - padding: 3px
  grid:
    - grid-template-areas: '"mush bar"'
    - grid-template-columns: 1fr 1fr
    - grid-template-rows: 100%
  custom_fields:
    mush:
      - filter: opacity(100%)
      - overflow: visible
    bar:
      - filter: opacity(100%)
      - overflow: visible
custom_fields:
  mush:
    card:
      type: custom:mushroom-template-card
      tap_action:
        action: more-info
      entity: '[[[ return entity.entity_id ]]]'
      icon_color: '[[[ return variables.color ]]]'
      secondary: '[[[ return variables.name ]]]'
      primary: >-
        [[[ return entity.state + "/" + states[variables.max_entity].state + " "
        + variables.units ]]]
      icon: '[[[ return variables.icon ]]]'
      card_mod:
        style: |
          ha-card {
            padding: 0px !important;
            padding-bottom: 3px !important;
            text-align: left !important;
            border: none !important;
            box-shadow: none !important;
            background: none !important;
          }
  bar:
    card:
      type: custom:bar-card
      name: ' '
      entity: '[[[ return entity.entity_id ]]]'
      max: '[[[ return states[variables.max_entity].state ]]]'
      min: 0
      unit_of_measurement: >-
        [[[ return "/ " + states[variables.max_entity].state + " " +
        variables.units ]]]
      color: '[[[ return variables.color ]]]'
      decimal: 0
      entity_row: true
      positions:
        icon: 'off'
        indicator: 'off'
        minmax: inside
        title: 'off'
        value: 'off'
      style: |-
        .contentbar-direction-right {
         flex-direction: row;
        }
        bar-card-contentbar {
            align-items: flex-end;
            display: flex;
            justify-content: space-between;
        }
        bar-card-backgroundbar, bar-card-currentbar {
            left: 0px !important;
        }
        bar-card-iconbar {
          color: white;
        }
        bar-card-name {
          margin-top: 2px;
          margin-bottom: 2px;
          margin-left: 2px;
          margin-right: 2px;
          font-size: 1em;
          font-weight: bold;
          color: white;
        }
        bar-card-value {
          margin-top: 2px;
          margin-bottom: 2px;
          margin-left: 2px;
          margin-right: 2px;
          font-size: 1em;
          font-weight: bold;
          color: white;
        }
        bar-card-max {
          display: none;
        }
        bar-card-divider {
          display: none;
        }
        .min-direction-right {
          display: none;
        }

Do you have any ideas what I’m doing wrong? Thanks in advance.

Cheers

1 Like

I had the Same Problem after one of the Last Updates. I removed that Card.

1 Like

Oh, okay. :frowning: Thanks for the info.

Heaps of inspiration from here so thanks everyone, I like to keep mine super simple so most of the cards are pop-up to cameras or weather tab etc. Yell out if you would like any code for the below.
Cheers

1 Like

What theme are you using?

1 Like

I just wanted to make everyone aware, that this should have been a show-off topic!

It is very clearly stated in the first post, what should go here, and what not!

This topic was meant to show people what is possible, and not to answer questions how this is achieved. We have another topic for that!

People who are looking for inspiration have to scroll through all that clutter and useless questions, where this was meant to show pictures and code!

Please refrain from cluttering this topic any further and be so kind to just use this topic, as it was intended by the OP.

5 Likes

Room card “mushroom style”

I had quite a struggle to adapt a room card to mushroom style without too mush modification. Hereafter the state I currently keep.

Massive use of pop-ups with tap actions on the buttons, and hold action on buttons allows quick control of functions…

All description and code are available (and updated…) on the French forum here: [Carte] Mise en forme de ma mushroom room-card et tuto - Interface / Lovelace / Thème / Custom Card - Home Assistant Communauté Francophone

Plus a simpler variation with step by step tuto to install there (room card for dummies): [Carte] Mise en forme de ma mushroom room-card et tuto - #12 par BBE - Interface / Lovelace / Thème / Custom Card - Home Assistant Communauté Francophone

Picture of the cards:
Basic format :
image
image

Horizontal format:
image
image

13 Likes

You must have missed my post above or the first post in this topic, unfortunately. That’s no problem, I’ll quote it again for you:

To resolve this, I took the liberty to report your post as off-topic. Please use the aformentioned topic to ask questions or send a PM to the user.

The topic is here:

And this is the link to @ingo.niehues profile summary, where you can send a PM to him, in the top right corner is a button “Message”.

Thank you very much for your understanding

7 Likes

I read the code but the cards are duplicated in two sites desktop and mobile, how are managed in desktop version?

Hello can you share this card, please? i can’t find them on the forums.

image

Thanks!

Sorry for a very late response. But if you still are interested here’s the code for the card.

  type: tile
  entity: fan.ceiling_fan
  vertical: false
  name: Pultvifte
  features:
    - type: fan-speed

Here it is with the animated fan.

    type: tile
    entity: fan.ceiling_fan
    vertical: false
    name: Pultvifte
    features:
      - type: fan-speed
    card_mod:
      style: |
        ha-state-icon {
          {% if is_state(config.entity, 'on') %}
          animation: rotate .5s infinite linear}
        @keyframes rotate {
            0% {
              transform: rotate(0deg);
            }
            100% {
              transform: rotate(-359deg);
            }
          }
          {% endif %}
1 Like

Might be a niche use case:
I wanted a way to see the fluid level in my watering tank, so I used the background to represent the fluid level:
Bildschirmfoto 2024-07-08 um 17.53.42
Bildschirmfoto 2024-07-22 um 15.22.23

card_mod:
  style:
    mushroom-shape-icon$: |
      .shape {
        background: linear-gradient(0deg, rgba(96, 125, 139, 0.3) calc( {{ states('sensor.wassertank') }}% / 0.62 ), rgba(96, 125, 139, 0.12) 0.1%) !important;
      }

This effectively sets the background to a gradient with minimal transition. !important is used as usual to overwrite the background color.

15 Likes

Might also be a nice way to show percentage progress of something, e.g. washing machine or similar. Thank you!

By modifying the angle (0deg → 90deg) this would work nicely as a progress indicator. Correct.

Good morning everyone.

I really tried to search for the answer but i wasnt successful.
So i try here and hope not to get fried.
I am using them as well and i am playing with the tab action.
Can i actually open something else then just the entity that is set for one specific card?
Can i open for example a different card or a grid card or something totally different like a pop up card?
That would be awesome
Thx for any thoughts

Think its appropriate to post this here too :slight_smile:

10 Likes

Here’s my mushroom-style Home Summary Page. Still very much a work in progress (as always), but I’m very happy with how it’s looking. :slight_smile:

(Special thanks to @rhysb and @dimitri.landerloos for putting the work into making the animated icons with card_mod!)


Weather Warnings: 4 separate conditional cards pulling data from my weather integration (Environment Canada) that only show when there is an active weather alert.

type: vertical-stack
      cards:
        - type: conditional
          conditions:
            - entity: sensor.thermal_comfort_frost_risk
              state: high
          card:
            type: custom:mushroom-template-card
            primary: Frost Alert
            secondary: >-
              Frost likely to occur when tempearature reaches {{
              states('sensor.thermal_comfort_frost_point') | round(1) }}°C
            icon: mdi:snowflake-alert
            entity: sensor.thermal_comfort_frost_risk
            icon_color: red
            tap_action:
              action: more-info
        - type: conditional
          conditions:
            - entity: sensor.WEATHERENTITY_statements
              state: '1'
          card:
            type: custom:mushroom-template-card
            primary: '{{ state_attr(''sensor.WEATHERENTITY_statements'', ''alert_1'') }}'
            secondary: >-
              {{ state_attr('sensor.WEATHERENTITY_statements', 'alert_time_1')
              }}
            icon: mdi:alert-circle
            entity: sensor.WEATHERENTITY_statements
            icon_color: blue
            tap_action:
              action: url
              url_path: ## YOUR URL PATH HERE
            badge_icon: ''
            fill_container: false
        - type: conditional
          conditions:
            - entity: sensor.WEATHERENTITY_advisory
              state: '1'
          card:
            type: custom:mushroom-template-card
            primary: '{{ state_attr(''sensor.WEATHERENTITY_advisory'', ''alert_1'') }}'
            secondary: '{{ state_attr(''sensor.WEATHERENTITY_advisory'', ''alert_time_1'') }}'
            icon: mdi:alert
            entity: sensor.WEATHERENTITY_advisory
            icon_color: amber
            tap_action:
              action: url
              url_path: ## YOUR URL PATH HERE
            fill_container: false
        - type: conditional
          conditions:
            - entity: sensor.WEATHERENTITY_watches
              state: '1'
          card:
            type: custom:mushroom-template-card
            primary: '{{ state_attr(''sensor.WEATHERENTITY_watches'', ''alert_1'') }}'
            secondary: '{{ state_attr(''sensor.WEATHERENTITY_watches'', ''alert_time_1'') }}'
            icon: mdi:alert
            entity: sensor.WEATHERENTITY_watches
            icon_color: orange
            tap_action:
              action: url
              url_path: ## YOUR URL PATH HERE
            fill_container: false
        - type: conditional
          conditions:
            - entity: sensor.WEATHERENTITY_warnings
              state: '1'
          card:
            type: custom:mushroom-template-card
            primary: '{{ state_attr(''sensor.WEATHERENTITY_warnings'', ''alert_1'') }}'
            secondary: '{{ state_attr(''sensor.WEATHERENTITY_warnings'', ''alert_time_1'') }}'
            icon: mdi:alert
            entity: sensor.WEATHERENTITY_warnings
            icon_color: red
            tap_action:
              action: url
              url_path: ## YOUR URL PATH HERE
            fill_container: false
            card_mod:
              style: |
                ha-state-icon {
                 animation: pulse 3s ease-in-out infinite;;
                }

                @keyframes pulse {
                  100% {opacity: 0;}
                }
        - type: conditional
          conditions:
            - condition: state
              entity: sensor.WEATHERENTITY_endings
              state: '1'
          card:
            type: custom:mushroom-template-card
            primary: '{{ state_attr(''sensor.WEATHERENTITY_endings'', ''alert_1'') }}'
            secondary: '{{ state_attr(''sensor.WEATHERENTITY_endings'', ''alert_time_1'') }}'
            icon: mdi:clock-check
            entity: sensor.WEATHERENTITY_endings
            icon_color: grey
            tap_action:
              action: url
              url_path: ## YOUR URL PATH HERE
            fill_container: false

Garbage Collection: template card using custom schedule sensors

type: custom:mushroom-template-card
primary: Garbage Collection
secondary: |-
  {% if states('sensor.garbage_collection') == '0' %}
    Today between 8-9AM
  {% elif states('sensor.garbage_collection') == '1' %}
    Tomorrow between 8-9AM
  {% else %}
    in {{ states('sensor.garbage_collection') }} days
  {% endif %}
icon: |-
  {% if states('sensor.garbage_collection') == '0' %}
    mdi:trash-can
  {% else %}
    mdi:trash-can-outline
  {% endif %}
entity: sensor.garbage_collection
icon_color: |-
  {% if states('sensor.garbage_collection') == '0' %}
    green
  {% elif states('sensor.garbage_collection') == '1' %}
    amber
  {% else %}
    disabled
  {% endif %}
tap_action:
  action: more-info
hold_action:
  action: more-info
visibility:
  - condition: numeric_state
    entity: sensor.garbage_collection
    below: 2

Weather Summary: The actual summary is provided by my weather integration (Environment Canada), but I imagine you could create something similar with a template.

For this card, I also created 2 separate template sensors: "sensor.weather_icon_colour" which provides a colour value for the card icon based on the weather condition, and "sensor.weather_condition_easy" which makes the current condition more “grammatically correct” for the card (see the primary text on the card). The icons are also animated (check the forum for more animation options), and there’s several conditional chips for different information (the chips will also scroll horizontally when they won’t fit in the card width).

type: custom:stack-in-card
cards:
  - type: custom:mushroom-template-card
    primary: >-
      Its currently {{ states('sensor.WEATHERENTITY_temperature') | round(0)
      }}°C outside and {{ states('sensor.weather_condition_easy') }}.
    secondary: '{{ states(''sensor.WEATHERENTITY_summary'') }}'
    icon: |-
      {% if is_state('weather.WEATHERENTITY_forecast', 'clear-night') %}
        mdi:weather-night
      {% elif is_state('weather.WEATHERENTITY_forecast', 'partlycloudy') %}
        {% if is_state('sun.sun', 'below_horizon') %}
          mdi:weather-night-partly-cloudy
        {% else %}
          mdi:weather-partly-cloudy
        {% endif %}
      {% else %}
        mdi:weather-{{ states('weather.WEATHERENTITY_forecast') }}
      {% endif %}
    multiline_secondary: true
    tap_action:
      action: navigate
      navigation_path: /mu-main/weather
    icon_color: '{{ states(''sensor.weather_icon_colour'') }}'
    card_mod:
      style: |
        {% set weather_code = states('weather.WEATHERENTITY_forecast') %}
          {% if weather_code == 'clear-night' %}
            ha-state-icon {
               animation: moon 10s linear infinite, stars 5s linear infinite;
            }
            @keyframes moon {
              0%, 100% { transform: rotate(12deg); }
              30% { transform: rotate(-6deg); }
              45% { transform: rotate(8deg); }
              75% { transform: rotate(-10deg); }
            }
            @keyframes stars {
              0%, 3.1%, 14.1% { clip-path: inset(0 0 0 0); }
              3% { clip-path: polygon(1% 1%, 0% 99%, 99% 100%, 99% 62%, 68% 62%, 62% 44%, 76% 34%, 100% 34%, 99% 0%); }
              14% { clip-path: polygon(1% 1%, 0% 99%, 99% 100%, 100% 25%, 51% 45%, 38% 34%, 36% 0); }
            }
          {% elif weather_code == 'partlycloudy' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, sun 2s infinite;
            }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
            }
          {% elif weather_code == 'cloudy' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, sun 2s infinite;
            }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
            }
          {% elif weather_code == 'pouring' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, rain 1s infinite; 
            }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
            }
            @keyframes rain {
              0%, 50%, 100% { clip-path: inset(0 0 0 0); }
              25% { clip-path: polygon(0 0, 100% 0, 100% 83%, 54% 83%, 62% 47%, 47% 46%, 38% 83%, 0 83%); }
              75%  { clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 70%, 80% 48%, 63% 48%, 54% 94%, 32% 94%, 46% 46%, 30% 46%, 23% 72%, 0 72%); }
            }
          {% elif weather_code == 'rainy' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, rain 1.5s infinite; 
              }
              @keyframes cloudy {
                0%, 100% { transform: translateX(3px); }
                30% { transform: translateX(-1px); }
                45% { transform: translateX(1.5px); }
                75% { transform: translateX(-3.2px); }
              }
              @keyframes rain {
                50% { clip-path: polygon(0 0, 100% 0, 100% 73%, 71% 73%, 50% 39%, 29% 73%, 0 73%); }
              }
          {% elif weather_code == 'snowy' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, snow 4s infinite; 
            }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
            }
            @keyframes snow {
              50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 65% 100%, 76% 73%, 57% 49%, 34% 56%, 26% 79%, 37% 100%, 0 100%); }
              51% { clip-path: inset(0 0 0 0); }
            }
          {% elif weather_code == 'fog' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, fog 4s infinite; 
            }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
            }
            @keyframes fog {
              0%, 26%, 76%, 100% { clip-path: inset(0 0 0 0); }
              25% { clip-path: polygon(0 0, 100% 0, 100% 59%, 60% 59%, 60% 74%, 100% 74%, 100% 100%, 0 100%); }
              75%  { clip-path: polygon(0 0, 100% 0, 100% 100%, 26% 100%, 26% 76%, 0 76%); }
            }
          {% elif weather_code == 'windy' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite; 
              transform-origin: 15% 50%
            }
            @keyframes cloudy {
              0%, 100% { transform: scaleX(1.2); }
              30% { transform: scaleX(0.9); }
              45% { transform: scaleX(1.1); }
              75% { transform: scaleX(0.8); }
            }
          {% elif weather_code == 'sunny' %}
            ha-state-icon {
              animation: spin 6s ease-in-out infinite alternate;
            }
          {% elif weather_code == 'lightning' %}
            ha-state-icon {
              animation: cloudy 10s ease-in-out infinite, lightning 4s infinite; 
              }
            @keyframes cloudy {
              0%, 100% { transform: translateX(3px); }
              30% { transform: translateX(-1px); }
              45% { transform: translateX(1.5px); }
              75% { transform: translateX(-3.2px); }
             }
            @keyframes lightning {
              10%, 15% { clip-path: polygon(0 0, 100% 0, 100% 100%, 47% 100%, 69% 55%, 66% 40%, 48% 39%, 24% 100%, 0 100%); transform: scale(1.1); }
              10.1%, 15.1% { clip-path: inset(0 0 0 0); transform: scale(1); }
            }
          {% else %}
            
          {% endif %}
        }
  - type: custom:mushroom-chips-card
    chips:
      - type: conditional
        conditions:
          - condition: state
            entity: sun.sun
            state: below_horizon
        chip:
          type: entity
          entity: sensor.sun_next_rising
          icon: mdi:weather-sunset-up
          icon_color: orange
          use_entity_picture: false
      - type: conditional
        conditions:
          - condition: state
            entity: sun.sun
            state: above_horizon
        chip:
          type: entity
          entity: sensor.sun_next_setting
          icon: mdi:weather-sunset-down
          icon_color: deep-orange
      - type: entity
        entity: sensor.WEATHERENTITY_humidity
        icon_color: cyan
        icon: mdi:water-opacity
      - type: conditional
        conditions:
          - condition: state
            entity: sensor.WEATHERENTITY_chance_of_precipitation
            state_not: unknown
        chip:
          type: entity
          entity: sensor.WEATHERENTITY_chance_of_precipitation
          tap_action:
            action: more-info
          hold_action:
            action: more-info
          icon: mdi:weather-rainy
          icon_color: light-blue
      - type: conditional
        conditions:
          - condition: state
            entity: sensor.WEATHERENTITY_wind_chill
            state_not: unknown
        chip:
          type: template
          entity: sensor.WEATHERENTITY_wind_chill
          icon: mdi:weather-windy-variant
          icon_color: cyan
          content: '{{ states(''sensor.WEATHERENTITY_wind_chill'') }}°C Wind Chill'
      - type: conditional
        conditions:
          - condition: or
            conditions:
              - condition: state
                entity: sensor.thermal_comfort_frost_risk
                state: high
              - condition: state
                entity: sensor.thermal_comfort_frost_risk
                state: probable
        chip:
          type: template
          entity: sensor.thermal_comfort_frost_risk
          icon: mdi:snowflake-alert
          icon_color: blue
          content: Frost Risk
      - type: conditional
        conditions:
          - condition: numeric_state
            entity: sensor.WEATHERENTITY_wind_speed
            above: 0
        chip:
          type: template
          entity: sensor.WEATHERENTITY_wind_speed
          icon: mdi:weather-windy
          icon_color: grey
          content: >-
            {{ states('sensor.WEATHERENTITY_wind_speed') }}km/h {{
            states('sensor.WEATHERENTITY_wind_direction') }}
          tap_action:
            action: more-info
      - type: conditional
        conditions:
          - condition: numeric_state
            entity: sensor.WEATHERENTITY_aqhi
            above: 4
        chip:
          type: template
          entity: sensor.WEATHERENTITY_aqhi
          icon: mdi:air-filter
          icon_color: |-
            {% set aqhi = states('sensor.WEATHERENTITY_aqhi') | int %}
            {% if aqhi >= 8 %}
              red
            {% elif aqhi >= 6 %}
              orange
            {% elif aqhi > 3 %}
              amber
            {% else %}
              green
            {% endif %}
          content: |-
            {% set aqhi = states('sensor.WEATHERENTITY_aqhi') | int %}
            {% if aqhi >= 8 %}
              AQHI Very High
            {% elif aqhi >= 6 %}
              AQHI High
            {% elif aqhi > 3 %}
              AQHI Moderate
            {% else %}
              AQHI Low 
            {% endif %}

            ({{ states('sensor.WEATHERENTITY_aqhi') }})
      - type: conditional
        conditions:
          - condition: state
            entity: sun.sun
            state: above_horizon
          - condition: numeric_state
            entity: sensor.WEATHERENTITY_uv_index
            above: 4
        chip:
          type: template
          entity: sensor.WEATHERENTITY_uv_index
          icon: mdi:sun-wireless
          icon_color: |-
            {% set uv_index = states('sensor.WEATHERENTITY_uv_index') | int %}
            {% if uv_index >= 8 %}
              red
            {% elif uv_index > 6 %}
              orange
            {% elif uv_index > 3 %}
              amber
            {% else %}
              green
            {% endif %}
          content: |-
            {% set uv_index = states('sensor.WEATHERENTITY_uv_index') | int %}
            {% if uv_index >= 8 %}
              UV Very High
            {% elif uv_index > 6 %}
              UV High
            {% elif uv_index > 3 %}
              UV Moderate
            {% else %}
              UV Low
            {% endif %}

            ({{ states('sensor.WEATHERENTITY_uv_index') }})
    alignment: left
    card_mod:
      style: |
        ha-card {
            margin: -10px 12px 10px;
            --chip-border-width: 0;
            --chip-box-shadow: 0;
            --chip-background: #9E9E9E20;
          }
          ha-card > .chip-container {
            flex-wrap: nowrap;
            overflow-x: scroll;
          }

          ha-card > .chip-container > * {
            flex-shrink: 0;
          }

Climate Summary: First, I made a “HVAC Action” template sensor to record the current action of the thermostat (I think this is redundant, but I was planning on using it for other things and wanted it to be readily available):

{{ state_attr('climate.nest_thermostat_name', 'hvac_action') }}

Then, I made the following Historical Stats sensors in my configuration.yaml (can’t make these in the UI yet):

##History Stats
- platform: history_stats
  name: Climate Heat Today
  entity_id: sensor.hvac_action
  state: "heating"
  type: time
  start: "{{ now().replace(hour=0, minute=0, second=0) }}"
  end: "{{ now() }}"
- platform: history_stats
  name: Climate Cool Today
  entity_id: sensor.hvac_action
  state: "cooling"
  type: time
  start: "{{ now().replace(hour=0, minute=0, second=0) }}"
  end: "{{ now() }}"

- platform: history_stats
  name: Climate Heat Yesterday
  entity_id: sensor.hvac_action
  state: "heating"
  type: time
  start: "{{ now().replace(hour=0, minute=0, second=0) - timedelta(days=1) }}"
  end: "{{ now().replace(hour=0, minute=0, second=0) }}"

- platform: history_stats
  name: Climate Cool Yesterday
  entity_id: sensor.hvac_action
  state: "cooling"
  type: time
  start: "{{ now().replace(hour=0, minute=0, second=0) - timedelta(days=1) }}"
  end: "{{ now().replace(hour=0, minute=0, second=0) }}"

With the 4 sensors created, I made 2 conditional template cards (one for Cooling and one for Heating) as below which will display “Heated (or Cooled) for __ hours and __ minutes” as the primary and “__hours and __ minutes more/less than yesterday” - if the heating/cooling time is less than yesterday, it will display a badge with a leaf otherwise it will display an up arrow:

(The conditional cards are set to only show the cards if the heating/cooling time is above “0”):

type: vertical-stack
cards:
  - type: conditional
    conditions:
      - condition: numeric_state
        entity: sensor.climate_heat_today
        above: 0
    card:
      type: custom:mushroom-template-card
      primary: '{{ states(''sensor.climate_heat_time_summary'') }}'
      secondary: '{{ states(''sensor.climate_heat_yesterday_summary'') }}'
      icon: mdi:home-thermometer-outline
      entity: sensor.climate_heat_today
      icon_color: red
      tap_action:
        action: more-info
      badge_icon: >-
        {% set total_minutes_today = states('sensor.climate_heat_today') | float
        * 60 %}

        {% set total_minutes_yesterday = states('sensor.climate_heat_yesterday')
        | float * 60 %}


        {% if total_minutes_today < total_minutes_yesterday %}
          mdi:leaf
        {% else %}
          mdi:chevron-up
        {% endif %}
      badge_color: >-
        {% set total_minutes_today = states('sensor.climate_heat_today') | float
        * 60 %}

        {% set total_minutes_yesterday = states('sensor.climate_heat_yesterday')
        | float * 60 %}


        {% if total_minutes_today < total_minutes_yesterday %}
          green
        {% else %}
          red
        {% endif %}
      multiline_secondary: true
  - type: conditional
    conditions:
      - condition: numeric_state
        entity: sensor.climate_cool_today
        above: 0
    card:
      type: custom:mushroom-template-card
      primary: '{{ states(''sensor.climate_cool_time_summary'') }}'
      secondary: '{{ states(''sensor.climate_cool_yesterday_summary'') }}'
      icon: mdi:home-thermometer-outline
      entity: sensor.climate_cool_today
      icon_color: blue
      tap_action:
        action: more-info
      badge_icon: >-
        {% set total_minutes_today = states('sensor.climate_cool_today') | float
        * 60 %}

        {% set total_minutes_yesterday = states('sensor.climate_cool_yesterday')
        | float * 60 %}


        {% if total_minutes_today < total_minutes_yesterday %}
          mdi:leaf
        {% else %}
          mdi:chevron-down
        {% endif %}
      badge_color: >-
        {% set total_minutes_today = states('sensor.climate_cool_today') | float
        * 60 %}

        {% set total_minutes_yesterday = states('sensor.climate_cool_yesterday')
        | float * 60 %}


        {% if total_minutes_today < total_minutes_yesterday %}
          green
        {% else %}
          red
        {% endif %}
      multiline_secondary: true

Calendar: Weekly Planner Card by FamousWolf (GitHub - FamousWolf/week-planner-card: Custom Home Assistant card displaying a responsive overview or multiple days with events from one of multiple calendars)

(NOT SHOWN) Vacation Mode and Guest Mode Cards: Conditional Template cards that indicate if Vacation/Guest Mode is on and what it means for certain schedules or routines (this is for the day my household inevitably decides to use Home Assistant… some day lol).

I would love to know your thoughts and feedback!!

10 Likes

I have now updated this card to the new look of the mushroom cards. I am also using colors more faithfull to the original mushroom colors :slight_smile:
image

follow the directions in the original post to make this work for you.

As last time code is too large to post in 1 post, so i will split it into 2 and you can just add the code in the same card right below eachother.

1st Half of Code
type: custom:stack-in-card
cards:
  - type: grid
    square: false
    columns: 2
    cards:
      - type: custom:auto-entities
        card:
          type: custom:stack-in-card
          card_mod:
            style: |
              ha-card {
                padding-top: 0px;
                padding-bottom: 0px;
                padding-right: 30px;
                width: 200%;
                background: transparent !important;
                box-shadow: none;
                border: none !important;
              }
        card_param: cards
        filter:
          template: >-
            {%- for state in states.sensor |
            selectattr('entity_id','search','battery_plus') |
            selectattr('entity_id','search','lounge') |
            rejectattr('entity_id','search','type') |
            rejectattr('entity_id','search','last_replaced') -%}
              {{
                {
                  'type': 'custom:bar-card',
                  'entity': state.entity_id,
                  'name': state.attributes.friendly_name.split(' Battery')[0].split(' battery')[0].split('Lounge')[1],
                  'card_mod':
                    {
                    'style': 'bar-card-currentbar, bar-card-backgroundbar {
                              border-radius: 12px !important;
                              height: 36px !important;
                              margin-top: -7px !important;
                              width: calc(100% + 56px);
                              left: -4%;
                            }
                            ha-icon {
                              position: relative;
                              padding: 8px;
                              border-radius: 50%;
                              --mdc-icon-size: 21px;
                              margin-top: -19px;
                              right: 8px;
                            }
                            bar-card-name {
                              display: relative;
                              font-weight: bold;
                              width: fit-content;
                              bottom: 8px;
                              right: 8px;
                            }
                            bar-card-name:after {
                              content: "{{states(config.entity)}} %";
                              display: flex;
                              position: relative;
                              font-size: 11px;
                              font-weight: light;
                              bottom: 2px;
                              left: 0px;
                            }
                            {% if states(config.entity) | int(default=unknown) == unknown %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                              /* Bar color */
                              --bar-color: #0033ff !important;
                              /* Icon */
                              --card-mod-icon: mdi:bug;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 10 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                              /* Bar color */
                              --bar-color: rgb(244, 67, 54) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-10 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 20 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                              /* Bar color */
                              --bar-color: rgb(255, 111, 0) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-20 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 30 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                              /* Bar color */
                              --bar-color: rgb(255, 152, 0) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-30 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 40 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                              /* Bar color */
                              --bar-color: rgb(255, 193, 7) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-40 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 50 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {  
                              /* Bar color */
                              --bar-color: rgb(255, 235, 59) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-50 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 60 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {  
                              /* Bar color */
                              --bar-color: rgb(205, 220, 57) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-60 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 70 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                              /* Bar color */
                              --bar-color: rgb(139, 195, 74) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-70 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 80 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                              /* Bar color */
                              --bar-color: rgb(139, 195, 74) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-80 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 90 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                              /* Bar color */
                              --bar-color: rgb(76, 175, 80) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery-90 !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% elif states(config.entity) | int <= 100 %}
                            bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                              /* Bar color */
                              --bar-color: rgb(76, 175, 80) !important;
                              /* Icon */
                              --card-mod-icon: mdi:battery !important;
                            }
                            @media (prefers-color-scheme: dark) {
                              /* Dark theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color) !important;
                                filter: invert(1);
                              }
                              bar-card-name:after {
                                color: #cccccc !important;
                              }
                            }
                            @media (prefers-color-scheme: light) { 
                              /* Light theme text colors */
                              bar-card-name {
                                color: var(--card-primary-color)  !important;
                              }
                              bar-card-name:after {
                                color: #3b3b3b !important;
                              }
                            }
                            {% endif %}
                            bar-card-row, ha-icon {
                              color: color-mix(in srgb, var(--bar-color) 100%, transparent) !important;
                              background: color-mix(in srgb, var(--bar-color) 20%, transparent);
                            }
                            bar-card-indicator {
                              color: color-mix(in srgb, var(--bar-color) 100%, transparent) !important;
                              top: -8px;
                            }
                            bar-card-value {
                              color: transparent !important;
                            }
                            ha-card {
                              margin: 0px 0px 0px 0px !important;
                              height: 54px;
                            }'
                          }
                }
             }},
            {%- endfor %}
        sort:
          method: state
          numeric: true
          count: 1
      - type: custom:mushroom-chips-card
        chips:
          - type: template
            icon: |-
              {% if states(entity) == 'on' %}
                mdi:chevron-up
              {% else %}
                mdi:chevron-down
              {% endif %}
            entity: input_boolean.lounge_battery_dropdown
            card_mod:
              style: |
                ha-card {
                  top: 10px;
                  right: 11px;
                  --chip-icon-size: 23px;
                  border: none !important;
                  box-shadow: none !important;
                  background: transparent !important;
                }
        alignment: end
2 Likes
2nd Half of Code
  - type: custom:auto-entities
    visibility:
      - conditon: state
        entity: input_boolean.lounge_battery_dropdown
        state: 'on'
    card:
      type: custom:stack-in-card
      card_mod:
        style: |
          ha-card {
            padding-top: 0px;
            padding-bottom: 18px;
            margin: -18px 0px 0px 0px;
            background: transparent;
            box-shadow: none;
            border: none;
          }
    card_param: cards
    filter:
      template: >-
        {%- for state in states.sensor |
        selectattr('entity_id','search','battery_plus') |
        selectattr('entity_id','search','lounge') |
        rejectattr('entity_id','search','type') |
        rejectattr('entity_id','search','last_replaced') -%}
          {{
            {
              'type': 'custom:bar-card',
              'entity': state.entity_id,
              'name': state.attributes.friendly_name.split(' Battery')[0].split(' battery')[0].split('Lounge')[1],
              'card_mod':
                {
                'style': 'bar-card-currentbar, bar-card-backgroundbar {
                        border-radius: 12px !important;
                        height: 36px !important;
                        margin-top: -8px !important;
                        width: calc(100% + 18px);
                        left: -3.5%;
                      }
                      ha-icon {
                        position: relative;
                        padding: 8px;
                        border-radius: 50%;
                        --mdc-icon-size: 21px;
                        margin-top: -19px;
                        right: 8px;
                      }
                      bar-card-name {
                        display: relative;
                        font-weight: bold;
                        width: fit-content;
                        bottom: 8px;
                        right: 8px;
                      }
                      bar-card-name:after {
                        content: "{{states(config.entity)}} %";
                        display: flex;
                        position: relative;
                        font-size: 11px;
                        font-weight: light;
                        bottom: 2px;
                        left: 0px;
                      }
                      {% if states(config.entity) | int(default=unknown) == unknown %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                        /* Bar color */
                        --bar-color: #0033ff !important;
                        /* Icon */
                        --card-mod-icon: mdi:bug;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 10 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                        /* Bar color */
                        --bar-color: rgb(244, 67, 54) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-10 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 20 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                        /* Bar color */
                        --bar-color: rgb(255, 111, 0) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-20 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 30 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                        /* Bar color */
                        --bar-color: rgb(255, 152, 0) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-30 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 40 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {
                        /* Bar color */
                        --bar-color: rgb(255, 193, 7) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-40 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 50 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {  
                        /* Bar color */
                        --bar-color: rgb(255, 235, 59) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-50 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 60 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar {  
                        /* Bar color */
                        --bar-color: rgb(205, 220, 57) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-60 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 70 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                        /* Bar color */
                        --bar-color: rgb(139, 195, 74) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-70 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 80 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                        /* Bar color */
                        --bar-color: rgb(139, 195, 74) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-80 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 90 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                        /* Bar color */
                        --bar-color: rgb(76, 175, 80) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery-90 !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% elif states(config.entity) | int <= 100 %}
                      bar-card-row bar-card-currentbar, ha-icon, bar-card-backgroundbar { 
                        /* Bar color */
                        --bar-color: rgb(76, 175, 80) !important;
                        /* Icon */
                        --card-mod-icon: mdi:battery !important;
                      }
                      @media (prefers-color-scheme: dark) {
                        /* Dark theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color) !important;
                          filter: invert(1);
                        }
                        bar-card-name:after {
                          color: #cccccc !important;
                        }
                      }
                      @media (prefers-color-scheme: light) { 
                        /* Light theme text colors */
                        bar-card-name {
                          color: var(--card-primary-color)  !important;
                        }
                        bar-card-name:after {
                          color: #3b3b3b !important;
                        }
                      }
                      {% endif %}
                      bar-card-row, ha-icon {
                        color: color-mix(in srgb, var(--bar-color) 100%, transparent) !important;
                        background: color-mix(in srgb, var(--bar-color) 20%, transparent);
                      }
                      bar-card-indicator {
                        color: color-mix(in srgb, var(--bar-color) 100%, transparent) !important;
                        top: -8px;
                      }
                      bar-card-value {
                        color: transparent !important;
                      }
                      ha-card {
                        margin: 0px 0px -18px 0px !important;
                        height: 54px;
                      }'
                    }
          }
        }}, {%- endfor %}
    sort:
      method: state
      numeric: true
      first: 1
      count: 100
2 Likes