Mushroom Cards - Build a beautiful dashboard easily šŸ„ (Part 1)

Hello everyone, tell me, maybe someone has examples of flower cards.

Sorry for a delayed reply. I am posting my code below for this card. However, I feel that if you change the setting of your theme to Mushroom Shadow on the viewing device, your line problem may go away.

type: custom:stack-in-card
mode: vertical
cards:
  - type: custom:mushroom-template-card
    primary: Kitchen
    secondary: šŸŒ”{{ states('sensor.kitchen_temperature') }}Ā°C
    icon: mdi:countertop
    icon_color: |-
      {% set state=states('light.kitchen_cabinet_lights') %}
      {% if state=='on' %}
      green
      {% elif state=='off' %}
      grey
      {% else %}
      grey
      {% endif %}
    layout: horizontal
    multiline_secondary: false
    tap_action:
      action: navigate
      navigation_path: /dashboard-cards/kitchen
    hold_action:
      action: none
    double_tap_action:
      action: none
    style: |
      :host([dark-mode]) {
        background: rgba(var(--rgb-primary-background-color), 0.2);
      } 
      :host {
        background: rgba(var(--rgb-primary-text-color), 0.025);
      } 
  - type: custom:mushroom-chips-card
    style: |
      ha-card {
        --chip-box-shadow: none;
        --chip-background: none;
        --chip-spacing: 0;
      }
    alignment: end
    chips:
      - type: conditional
        conditions:
          - entity: light.kitchen_cabinet_lights
            state: 'on'
        chip:
          type: entity
          entity: light.kitchen_cabinet_lights
          icon_color: amber
          tap_action:
            action: call-service
            service: light.turn_off
            service_data: {}
            target:
              entity_id: light.kitchen_cabinet_lights
          content_info: none
          icon: mdi:lightbulb
      - type: conditional
        conditions:
          - entity: switch.fridge
            state: 'on'
        chip:
          type: entity
          entity: switch.fridge
          icon_color: red
          tap_action:
            action: call-service
            service: switch.turn_off
            service_data: {}
            target:
              entity_id: switch.fridge
          content_info: none
          icon: mdi:fridge-variant
      - type: conditional
        conditions:
          - entity: switch.deep_freezer
            state: 'on'
        chip:
          type: entity
          entity: switch.deep_freezer
          icon_color: deep-purple
          tap_action:
            action: call-service
            service: switch.turn_off
            service_data: {}
            target:
              entity_id: switch.deep_freezer
          content_info: none
          icon: mdi:treasure-chest
      - type: conditional
        conditions:
          - entity: fan.kitchen_exhaust_fan
            state: 'on'
        chip:
          type: entity
          entity: fan.kitchen_exhaust_fan
          icon_color: green
          card_mod: null
          style: |
            @keyframes rotation {
              0% {
                transform: rotate(0deg);
              }
              100% {
                transform: rotate(360deg);
              }
            }
            ha-card {
              animation: rotation linear infinite;
              {% if states('fan.kitchen_exhaust_fan') == 'on' %}
               animation-duration: 1s;
              {%- else -%}
              {%- endif %}
            }
          tap_action:
            action: call-service
            service: fan.turn_off
            service_data: {}
            target:
              entity_id: fan.kitchen_exhaust_fan
          content_info: none
          icon: mdi:fan
style: |
  ha-card {
    height: 100px;
    {% if is_state('light.kitchen_cabinet_lights', 'on') %}
       background: rgba(255, 152, 0, 0.1);
    {% endif %}
  }
view_layout:
  grid-area: cen4
card_mod:
  style: |
    ha-card {
      background: none !important;
      {% if states('light.kitchen_cabinet_lights') == 'on' %}
      box-shadow: 0px 0px 5px 5px #56DD3F !important;
      {% else %}    
      {% endif %}
    }

1 Like

but I still donā€™t understand how these conditional cards work? ID card where do I get it? :frowning:

Anyone know how to change the size of the font when casting? My Google Hub seems to ignore any of the font stuff.

Hi,
I have problem with animated icon on mushroom chips card. I instaled car mod but I affraid it doesnā€™t work correctly. Every time when I put some animated code nothings happend. I havenā€™t expirience of CSS. Mny thanks for help. I enclose code. Please help.

Hi @MarcinGuc and welcome to the forum!

I encourage you to read this post:

1 Like

If anyone has been wondering how to create a template card for controlling a fan, including sliding speed control, hereā€™s an example.

type: custom:stack-in-card
cards:
#Template card with all its capabilities available
  - type: custom:mushroom-template-card
    primary: Cooling Fan
    icon: mdi:fan
    entity: fan.whisper_flex
    tap_action:
      action: toggle
#Fan card stripped of all unnecessary components through configuration
  - type: custom:mushroom-fan-card
    entity: fan.whisper_flex
    icon_type: none
    primary_info: none
    secondary_info: none
    show_percentage_control: true
    collapsible_controls: true
    show_oscillate_control: true
#Car mod to manage the spacing between the two cards
    card_mod:
      style: |
        ha-card {
          padding-top: 0px !important;
        {% if is_state('fan.whisper_flex', 'off') %}
          padding-bottom: 0px !important;
        {% endif %}
        }

If you set collapsible_controls: false then use this for card_mod instead

    card_mod:
      style: |
        ha-card {
          padding-top: 0px !important;
        }

Here is my idea for a vacuum control card.

It consists of two cards

  • Main vacuum controls

    • Presets for most frequent segments cleaning
    • Cogwheel to navigate to another view where I manage other vacuum settings
    • Play button to clean all house
    • List play for segments selected on the next card
  • Segment selector

    • Buttons to select segments for cleaning
    • A long tap on the button initiates individual segment cleaning

I also utilize the swipe card to navigate between the two cards on the dashboard.

RPReplay_Final1693513690

Code
type: custom:swipe-card
cards:
#Main control card
  - type: custom:stack-in-card
    cards:
#Card icon and name
      - type: custom:mushroom-template-card
        primary: Roborock
        secondary: '{{ states("sensor.roborock_s7_status") | title }}'
        icon: mdi:robot-vacuum
        icon_color: |-
          {% if not is_state('vacuum.roborock_s7_2', 'docked') %}
            amber      
          {% elif is_state('input_boolean.vacuum_auto_start', 'on') %}
            blue
          {% else %} 
            disabled
          {% endif %}
        entity: vacuum.roborock_s7_2
        badge_icon: |-
          {% if is_state('input_boolean.vacuum_auto_start', 'on') %}
            mdi:home-automation      
          {% elif is_state('input_boolean.vacuum_auto_start', 'off') %}

          {% endif %}
        badge_color: |-
          {% if is_state('input_boolean.vacuum_auto_start', 'on') %}
            blue      
          {% elif is_state('input_boolean.vacuum_auto_start', 'off') %}

          {% endif %}
        tap_action:
          action: navigate
          navigation_path: /dashboard-mushroom/vacuum
        double_tap_action:
          action: call-service
          service: input_boolean.toggle
          data: {}
          target:
            entity_id: input_boolean.vacuum_auto_start
        hold_action:
          action: navigate
          navigation_path: /dashboard-mushroom/vacuum
#Presets
      - type: custom:mushroom-chips-card
        chips:
          - type: entity
            entity: scene.fan_20
            icon_color: white
            icon: mdi:hanger
            content_info: none
            tap_action:
              action: call-service
              service: vacuum.send_command
              data:
                command: app_segment_clean
                params:
                  - segments:
                      - 16
                    repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
              target:
                entity_id: vacuum.roborock_s7_2
            card_mod:
              style: |
                ha-card {
                  --chip-background: rgba(var({{ '--rgb-red' if is_state(config.entity, 'on') else '--rgb-disabled' }}), 0.2);
                  --icon-color: rgb(var(--rgb-disabled));
                } 
          - type: entity
            entity: scene.fan_20
            icon_color: white
            icon: mdi:chef-hat
            content_info: none
            tap_action:
              action: call-service
              service: vacuum.send_command
              data:
                command: app_segment_clean
                params:
                  - segments:
                      - 22
                    repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
              target:
                entity_id: vacuum.roborock_s7_2
            card_mod:
              style: |
                ha-card {
                  --chip-background: rgba(var({{ '--rgb-red' if is_state(config.entity, 'on') else '--rgb-disabled' }}), 0.2);
                  --icon-color: rgb(var(--rgb-disabled));
                } 
          - type: entity
            entity: scene.fan_20
            icon_color: blue
            icon: mdi:cog
            content_info: none
            tap_action:
              action: navigate
              navigation_path: /dashboard-mushroom/vacuum
            card_mod:
              style: |
                ha-card {
                  --chip-background: rgba(var({{ '--rgb-purple' if is_state(config.entity, 'on') else '--rgb-disabled' }}), 0.2);
                  --icon-color: rgb(var(--rgb-disabled));
                } 
        card_mod:
          style: |
            ha-card {
                --chip-box-shadow: none;
                top: 16px;
                width: -webkit-fill-available;
                right: 12px;
                position: absolute;
            } 
            .chip-container {
                right: 0px;
                position: absolute;
            }
#Control buttons
      - type: custom:mushroom-chips-card
        chips:
          - type: template
            entity: vacuum.roborock_s7_2
            tap_action:
              action: call-service
              service: vacuum.start
              target:
                entity_id: vacuum.roborock_s7_2
            icon: mdi:play
            content: null
            card_mod:
              style: |
                ha-card {justify-content: center;}
          - type: template
            entity: vacuum.roborock_s7_2
            tap_action:
              action: call-service
              service: script.vacuum_selected_rooms
            icon: mdi:playlist-check
            content: null
            card_mod:
              style: |
                ha-card {justify-content: center;}
          - type: template
            entity: vacuum.roborock_s7_2
            tap_action:
              action: call-service
              service: vacuum.pause
              target:
                entity_id: vacuum.roborock_s7_2
            icon: mdi:pause
            content: null
            card_mod:
              style: |
                ha-card {justify-content: center;}
          - type: template
            entity: vacuum.roborock_s7_2
            tap_action:
              action: call-service
              service: vacuum.return_to_base
              target:
                entity_id: vacuum.roborock_s7_2
            icon: mdi:home-map-marker
            content: null
            card_mod:
              style: |
                ha-card {justify-content: center;}
        alignment: Center
        card_mod:
          style: |
            mushroom-template-chip {
              width: 100%; 
            }
            div.chip-container {
              justify-content: space-evenly;
              flex-wrap: nowrap;
            }

            ha-card {
              margin: 0px 12px 12px;
              --chip-background: rgba(var(--rgb-disabled), 0.15);
              --chip-box-shadow: none;
              --chip-border-radius: 10px;
              --chip-height: 42px;
              --chip-padding:10px;
            }
#Segment selector card
  - type: custom:stack-in-card
    cards:
#First row of buttons
      - type: horizontal-stack
        cards:
          - type: custom:mushroom-chips-card
            chips:
              - type: template
                entity: input_boolean.vacuum_bathroom
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_bathroom
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 24
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Bathroom
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_bathroom', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_bedroom
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_bedroom
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 19
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Bedroom
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_bedroom', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_hallway
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_hallway
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 16
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Hallway
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_hallway', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_kitchen
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_kitchen
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 22
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Kitchen
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_kitchen', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
            alignment: Center
            card_mod:
              style: |
                mushroom-template-chip {
                  width: 100%; 
                }
                div.chip-container {
                  justify-content: space-evenly;
                  flex-wrap: nowrap;
                }

                ha-card {
                  margin: 12px 12px 12px;
                  --chip-background: rgba(var(--rgb-disabled), 0.15);
                  --chip-box-shadow: none;
                  --chip-border-radius: 10px;
                  --chip-height: 42px;
                  --chip-padding:10px;
                }
#Second row of buttons
      - type: horizontal-stack
        cards:
          - type: custom:mushroom-chips-card
            chips:
              - type: template
                entity: input_boolean.vacuum_living_room
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_living_room
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 23
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Living Room
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_living_room', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_technical
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_technical
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 18
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Technical
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_technical', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_toilet
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_toilet
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 17
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Toilet
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_toilet', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
              - type: template
                entity: input_boolean.vacuum_veronika_room
                tap_action:
                  action: call-service
                  service: input_boolean.toggle
                  target:
                    entity_id: input_boolean.vacuum_veronika_room
                hold_action:
                  action: call-service
                  service: vacuum.send_command
                  data:
                    command: app_segment_clean
                    params:
                      - segments:
                          - 20
                        repeat: '{{ states(''input_number.vacuum_repeat_count'') | int }}'
                  target:
                    entity_id: vacuum.roborock_s7_2
                icon: null
                content: Veronika
                card_mod:
                  style: |
                    ha-card {
                      justify-content: center;
                      {% if is_state('input_boolean.vacuum_veronika_room', 'on') %}
                        --chip-background: rgba(var(--rgb-blue), 0.7);
                      {% else %}
                        --chip-background: inherit;  # set it to the default or whatever color you want
                      {% endif %}
                    }
            alignment: Center
            card_mod:
              style: |
                mushroom-template-chip {
                  width: 100%; 
                }
                div.chip-container {
                  justify-content: space-evenly;
                  flex-wrap: nowrap;
                }

                ha-card {
                  margin: 0px 12px 12px;
                  --chip-background: rgba(var(--rgb-disabled), 0.15);
                  --chip-box-shadow: none;
                  --chip-border-radius: 10px;
                  --chip-height: 42px;
                  --chip-padding:10px;
                }

18 Likes

Looks good!
Post your finished cards here btw :slight_smile:

2 Likes

Hey there! Can anyone help with combining all the smart outlets of a particular selected room into one card, with the ability to disable all outlets by pressing just one card? Thanks!!!

Has anyone successfully managed to make a sticky bottom navbar like this from minimalist? Iā€™ve seen a few posts in this massive thread but theyā€™re often not in a finished state and have a few bugs related. Iā€™d love to see some inspiration, and the code!

5 Likes

Hi guys,

I hope you can help me or guide me in the right direction. I created the following dashboard mainly using mushroom cards. My main idea is that I get only shown the minimum information to have an overview what is going on currently in my house. By clicking on the entity card I get more detailed information for each floor.

On the left side you see how the dashboard currently looks like. Every floor is created with an entity card and several chip cards that are only shown if they have a certain status. Otherwise they remain hidden not to overblow the view.

On the right side you find the dashboard how I would like it to look like. Basically every chip card gets a ā€œheaderā€ or ā€œtitleā€. I tried to realize it by stacking a markdown card and a chip card together. But then I can not use it as a chip card anymore. So how do I horizontally stack them aligned at the end.

Thanks for your help.

I was planning to have a look at that too:) Did you try this Mushroom Cards - Build a beautiful dashboard easily šŸ„ - #7023 by Guizmos

I have dropped a random card to my dashboard, applied the card mod and it worksā€¦but I have an issue with the position of the card. It seems like the further down you place the card (order-wise) the further on top it is placed but some of the cards are still further on top.

RPReplay_Final1693569913

i think it is likely to do with your z-index: in card-mod. you can try and set your other cards to z-index: 0; and then having your sticky card by z-index: 1? that might work.

My HA mobile version
7bwSNJKjoJ
9mv1OuoYnp

1 Like

I was hoping someone would have just had a nice block of code I could steal ha. Iā€™ve not tried much myself yet, I could never get the positioning right. I donā€™t like in that example that thereā€™s still a visible space under the bottom bar.

You are right, that fixes the issue! ā€¦no matter what I wrote in my previous post (that I am going to delete)

type: history-graph
entities:
  - sun.sun
card_mod:
  style: |
    ha-card {
      max-height: calc(100vh - var(--header-height)) !important;
      overflow-y: auto !important;
      max-width: var(--masonry-column-width, 490px) !important;
    }
    :host {
      position: fixed !important;
      z-index: 1 !important;
      bottom: 10px !important;
      width: 100% !important;

    }

Glad to hear it!

i havent played around with a nav bar the the bottom so if you get a good design working let me know! :slight_smile:

Iā€™m really looking for someone who can optimize mine ahaha

1 Like

Nice card! how do you set up your swipe card? if i use swipe card, when i try to swipe in mobile device it always register accidental pressā€¦do you get that too?