Can anyone help to customise the Lovelace-hourly-weather bar so it is styled in the mushroom look? I have used a bit of a bar code to start it but nothing I do changes it to look more like a mushroom card.
I wanted to change the fonts (size and type) plus the bar itself to match the mushroom bar.
type: custom:stack-in-card
cards:
- type: custom:layout-card
layout_type: custom:grid-layout
layout:
grid-template-columns: 42px auto
margin: '-4px -4px -12px -4px;'
cards:
- type: custom:mushroom-template-card
entity: sensor.openweathermap_condition
icon: mdi:weather-cloudy
icon_color: yellow
card_mod:
style: |
ha-card {
background: none;
--ha-card-box-shadow: 0px;
}
- type: custom:hourly-weather
entity: weather.openweathermap
icons: false
label_spacing: '2'
num_segments: '12'
name: ' '
card_mod:
style: |
ha-card {
padding: 0px;
margin-left: 12px;
--bar-card-border-radius: 12px;
--mush-rgb-red: 244, 67, 54;
--mush-rgb-pink: 233, 30, 99;
--mush-rgb-purple: 156, 39, 176;
--mush-rgb-deep-purple: 103, 58, 183;
--mush-rgb-indigo: 63, 81, 181;
--mush-rgb-blue: 33, 150, 243;
--mush-rgb-light-blue: 3, 169, 244;
--mush-rgb-cyan: 0, 188, 212;
--mush-rgb-teal: 0, 150, 136;
--mush-rgb-green: 76, 175, 80;
--mush-rgb-light-green: 139, 195, 74;
--mush-rgb-lime: 205, 220, 57;
--mush-rgb-yellow: 255, 235, 59;
--mush-rgb-amber: 255, 193, 7;
--mush-rgb-orange: 255, 152, 0;
--mush-rgb-deep-orange: 255, 87, 34;
--mush-rgb-brown: 121, 85, 72;
--mush-rgb-grey: 158, 158, 158;
--mush-rgb-blue-grey: 96, 125, 139;
--mush-rgb-black: 0, 0, 0;
--mush-rgb-white: 255, 255, 255;
}
hour {
margin: 12px;
font-size: 12px;
font-weight: bolder;
}
temperature {
margin: 12px;
font-size: 12px;
font-weight: bolder;
}
bar-backgroundbar {
opacity: 0.9;
filter: brightness(1);
}