-
Notifications
You must be signed in to change notification settings - Fork 0
/
MW Sidebar
3038 lines (3036 loc) · 105 KB
/
MW Sidebar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
kiosk_mode:
non_admin-settings: null
kiosk: true
ignore_entity_settings: true
entity_settings:
- entity:
input_boolean.kiosk_mode: 'on'
hide_header: true
hide_sidebar: true
showTopMenuOnMobile: false
- entity:
input_boolean.kiosk_mode: 'off'
hide_header: false
hide_sidebar: false
showTopMenuOnMobile: false
sidebar:
width:
mobile: 0
tablet: 11
desktop: 15
breakpoints:
mobile: 768
tablet: 1024
title: null
clock: true
twelveHourVersion: false
date: true
sidebarMenu:
- action: navigate
navigation_path: /home-tablet/home1
name: Home
active: true
- action: navigate
navigation_path: /home-tablet/heating
name: Heating
- action: navigate
navigation_path: /home-tablet/solar
name: Solar
- action: navigate
navigation_path: /home-tablet/media
name: Media
- action: navigate
navigation_path: /home-tablet/camera
name: Cameras
- action: navigate
navigation_path: /home-tablet/sockets
name: Plugs
- action: navigate
navigation_path: /home-tablet/hot tub
name: Hot Tub
- action: navigate
navigation_path: /home-tablet/admin
name: Admin
- action: toggle
entity: input_boolean.kiosk_mode
name: Kiosk
style: |
:host {
--sidebar-background: #1a2636;
--sidebar-text-color: #FFF;
--face-color: #b3b3b3;
--face-border-color: #FFF;
--clock-hands-color: #2b374e;
--clock-seconds-hand-color: #FF4B3E;
--clock-middle-background: #FFF;
--clock-middle-border: #000;
text-align: center;
}
.digitalClock {
text-align: center;
padding-bottom: 1px;
padding-top: 10px;
font-size:60px!important;
line-height: 60px;
}
.date {
text-align: center;
padding-bottom: 1px;
font-size:30px!important;
line-height: 60px;
}
bottomCard:
type: vertical-stack
cardOptions:
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:button-card
tap_action:
action: toggle
entity: input_boolean.kiosk_mode
icon: mdi:home-switch
show_icon: true
show_state: false
name: false
show_name: false
styles:
icon:
- width: 50%
- color: black
card:
- padding-top: 0px
- type: custom:button-card
entity: input_boolean.kiosk_mode
icon: mdi:temperature-celsius
show_icon: true
show_state: false
name: false
show_name: false
styles:
icon:
- width: 50%
- color: black
card:
- padding-top: 0px
- type: horizontal-stack
cards:
- type: custom:button-card
tap_action:
action: toggle
entity: input_boolean.kiosk_mode_sidebar
icon: mdi:home-plus
show_icon: true
show_state: false
name: false
show_name: false
styles:
icon:
- width: 50%
- color: black
card:
- padding-top: 0px
- type: custom:button-card
tap_action:
action: toggle
entity: input_boolean.kiosk_mode_sidebar
icon: mdi:folder
show_icon: true
show_state: false
name: false
show_name: false
styles:
icon:
- width: 50%
- color: black
card:
- padding-top: 0px
cardStyle: |
:host {
width: 100%;
background-color:#FFF;
}
views:
- theme: Caule Black Blue Glass
title: Home1
icon: mdi:home
path: Home1
layout:
width: 250
max_cols: 3
type: custom:horizontal-layout
badges: []
cards:
- square: true
type: grid
cards:
- square: false
type: grid
cards:
- square: false
type: grid
cards:
- show_name: true
show_icon: true
show_state: true
type: glance
entities:
- entity: device_tracker.martin
state_color: true
- show_name: true
show_icon: true
show_state: true
type: glance
entities:
- entity: device_tracker.lin
state_color: true
- show_name: true
show_icon: true
show_state: true
type: glance
entities:
- entity: device_tracker.hollie_watson
state_color: true
columns: 3
- show_current: true
show_forecast: true
type: weather-forecast
entity: weather.martin_s_home_assistant
forecast_type: daily
- type: custom:horizon-card
fields:
sunrise: true
sunset: true
dawn: true
noon: true
dusk: true
moonrise: true
moonset: true
moon_phase: true
- type: entities
entities:
- entity: sensor.solax_today_s_import_energy
secondary_info: none
name: Todays Total Import Energy
card_mod:
style: |
:host {
--paper-item-icon-color: red;
}
- entity: sensor.solax_today_s_export_energy
name: Todays Total Export Energy
card_mod:
style: |
:host {
--paper-item-icon-color: green;
}
show_header_toggle: false
state_color: true
columns: 1
columns: 1
card_mod:
style: |
ha-card {
color: red;
}
- square: false
type: grid
cards:
- type: custom:power-flow-card-plus
entities:
battery:
entity:
'0': s
'1': e
'2': 'n'
'3': s
'4': o
'5': r
'6': .
'7': s
'8': o
'9': l
'10': a
'11': x
'12': _
'13': b
'14': a
'15': t
'16': t
'17': e
'18': r
'19': 'y'
'20': _
'21': c
'22': a
'23': p
'24': a
'25': c
'26': i
'27': t
'28': 'y'
production: sensor.solax_battery_power_charge
state_of_charge: sensor.solax_battery_capacity
color_icon: true
color_state_of_charge_value: false
display_state: one_way
color:
consumption:
- 255
- 0
- 0
production:
- 0
- 255
- 0
color_circle: true
invert_state: false
grid:
entity:
'0': s
'1': e
'2': 'n'
'3': s
'4': o
'5': r
'6': .
'7': s
'8': o
'9': l
'10': a
'11': x
'12': _
'13': g
'14': r
'15': i
'16': d
'17': _
'18': i
'19': m
'20': p
'21': o
'22': r
'23': t
production: sensor.solax_grid_export
consumption: sensor.solax_grid_import
color_icon: true
color:
consumption:
- 226
- 36
- 0
production:
- 150
- 211
- 95
display_zero_tolerance: 20
color_circle: true
name: Grid
display_state: two_way
solar:
entity: sensor.solax_inverter_power
display_zero_state: true
color_value: true
color_icon: true
color:
- 147
- 227
- 253
name: Inverter
icon: mdi:laptop
secondary_info:
entity: sensor.solax_pv_power_total
unit_of_measurement: W
icon: mdi:solar-power
display_zero: true
home:
entity: sensor.solax_house_load
name: House Load
color_icon: battery
override_state: true
subtract_individual: false
secondary_info:
unit_of_measurement: A
color_value: false
unit_white_space: false
display_zero: true
entity: sensor.house_load_in_amps
decimals: 1
icon: mdi:home
use_metadata: false
individual1:
color_value: true
color_icon: true
display_zero: true
inverted_animation: true
entity: sensor.solax_pv_power_2
name: PV2
unit_of_measurement: W
color:
- 255
- 255
- 0
display_zero_state: true
icon: mdi:solar-power-variant
secondary_info:
entity: sensor.solax_pv_current_2
display_zero: true
unit_of_measurement: A
decimals: 2
individual2:
entity: sensor.solax_pv_power_1
name: PV1
color_value: true
color_icon: true
display_zero: true
inverted_animation: true
color:
- 255
- 255
- 0
display_zero_state: true
secondary_info:
entity: sensor.solax_pv_current_1
display_zero: true
unit_of_measurement: A
decimals: 1
icon: mdi:solar-power-variant
fossil_fuel_percentage: {}
clickable_entities: true
display_zero_lines:
mode: show
transparency: 50
grey_color:
- 189
- 189
- 189
use_new_flow_rate_model: true
w_decimals: 0
kw_decimals: 1
min_flow_rate: 0.75
max_flow_rate: 6
min_expected_power: 0.01
watt_threshold: 1000
max_expected_power: 5000
title: null
- square: false
type: grid
cards:
- type: custom:bar-card
style: |
ha-card {
--ha-card-background: null;
margin-top: 10px;
height: 320px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
entities:
- entity: sensor.solax_house_load
name: House Load
indicator: inside
icon: mdi:home
iconcolor: red
unit_of_measurement: kw
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: green
to: '800'
- from: '801'
to: '2000'
color: orange
- from: '2001'
to: '6000'
color: red
width: 130%
max: '6000'
- entity: sensor.solax_pv_power_total
name: PV Generation (4.51Kw)
indicator: inside
icon: mdi:solar-power-variant
unit_of_measurement: kw
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: null
to: '999'
- from: '1000'
to: '1999'
color: orange
- from: '2000'
to: '2999'
color: orange
- from: '3000'
to: '6000'
color: green
width: 130%
max: '6000'
- entity: sensor.solax_battery_capacity
name: Battery SOC
indicator: inside
icon: mdi:battery
unit_of_measurement: '%'
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: red
to: '10'
- to: '50'
color: orange
from: '11'
- from: '51'
to: '100'
color: green
width: 130%
- entity: sensor.time_left_on_battery_min_soc
name: Battery Autonomy
indicator: inside
icon: mdi:battery
unit_of_measurement: hrs
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: red
to: '4'
- from: '4.1'
to: '8'
color: orange
- from: '8.1'
to: '18'
color: green
width: 130%
max: '18'
- entity: sensor.solax_grid_import
name: Import Power (kw)
indicator: inside
icon: mdi:home-import-outline
unit_of_measurement: kw
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: green
to: '1000'
- from: '1000'
to: '2000'
color: orange
- from: '2500'
to: '5000'
color: red
width: 130%
max: '5000'
- entity: sensor.solax_grid_export
name: Export Power (kw)
indicator: inside
icon: mdi:home-export-outline
unit_of_measurement: kw
decimal: '1'
min: '0'
columns: '1'
severity:
- from: '0'
color: blue
to: '1000'
- from: '1000'
to: '2000'
color: orange
- from: '2000'
to: '3000'
color: green
width: 130%
max: '3000'
columns: 1
- type: entities
entities:
- entity: input_boolean.kiosk_mode
secondary_info: last-updated
state_color: true
show_header_toggle: false
columns: 1
- square: false
type: grid
cards:
- show_state: false
show_name: false
camera_view: live
type: picture-entity
entity: camera.reolink_camera_sub
camera_image: camera.reolink_camera_sub
- show_state: false
show_name: false
camera_view: live
type: picture-entity
entity: camera.ds_7608ni_e2_8p_a0820170816aarr815174588wcvu_102
camera_image: camera.ds_7608ni_e2_8p_a0820170816aarr815174588wcvu_102
- square: false
type: grid
cards:
- type: custom:sonos-card
sections:
- volumes
- player
- media browser
- groups
- grouping
showVolumeUpAndDownButtons: true
dynamicVolumeSlider: false
widthPercentage: 100
mediaBrowserItemsPerRow: 6
heightPercentage: 56
columns: 1
columns: 1
- title: Heating
background: center / cover no-repeat url('/local/Floorplan/Lava.jpeg') fixed
path: heating
icon: mdi:fire
type: custom:horizontal-layout
layout:
width: 350
max_cols: 3
badges: []
cards:
- type: vertical-stack
cards:
- type: custom:bubble-card
card_type: separator
- type: custom:mushroom-climate-card
entity: climate.hive_living_rm_trv
show_temperature_control: true
hvac_modes:
- heat
- auto
collapsible_controls: false
name: Living Room
tap_action:
action: more-info
layout: horizontal
primary_info: name
icon_type: icon
icon: mdi:heating-coil
fill_container: false
hold_action:
action: call-service
service: hive.boost_heating_on
target: {}
data:
time_period: '01:00:00'
temperature: 22.5
entity_id: sensor.hive_living_rm_trv_boost
double_tap_action:
action: none
card_mod:
style: |
ha-card {
{% if states('sensor.hive_living_rm_trv_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 90px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-climate-card
entity: climate.hive_dining_room_trv
show_temperature_control: true
hvac_modes:
- heat
- auto
collapsible_controls: false
name: Dining Room
tap_action:
action: more-info
layout: horizontal
primary_info: name
icon_type: icon
icon: mdi:heating-coil
fill_container: false
hold_action:
action: call-service
service: hive.boost_heating_on
target: {}
data:
entity_id: sensor.hive_dining_room_trv_boost
time_period: '01:00:00'
temperature: 22.5
double_tap_action:
action: none
card_mod:
style: |
ha-card {
{% if states('sensor.hive_dining_room_trv_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 90px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-climate-card
entity: climate.hive_kitchen_trv
show_temperature_control: true
hvac_modes:
- heat
- auto
collapsible_controls: false
name: Kitchen
tap_action:
action: more-info
layout: horizontal
primary_info: name
icon_type: icon
icon: mdi:heating-coil
fill_container: false
hold_action:
action: call-service
service: hive.boost_heating_on
target: {}
data:
entity_id: sensor.hive_kitchen_trv_boost
time_period: '01:00:00'
temperature: 22.5
double_tap_action:
action: none
card_mod:
style: |
ha-card {
{% if states('sensor.hive_kitchen_trv_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 90px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-climate-card
entity: climate.hive_extension_trv
show_temperature_control: true
hvac_modes:
- heat
- auto
collapsible_controls: false
tap_action:
action: more-info
layout: horizontal
primary_info: name
icon_type: icon
icon: mdi:heating-coil
fill_container: false
hold_action:
action: call-service
service: hive.boost_heating_on
target: {}
data:
entity_id: sensor.hive_extension_trv_boost
time_period: '01:00:00'
temperature: 22.5
double_tap_action:
action: none
name: Extension
card_mod:
style: |
ha-card {
{% if states('sensor.hive_extension_trv_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 90px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-climate-card
entity: climate.office
show_temperature_control: true
hvac_modes:
- heat
- auto
collapsible_controls: false
name: Office
tap_action:
action: more-info
layout: horizontal
primary_info: name
icon_type: icon
icon: mdi:heating-coil
color: red
fill_container: false
hold_action:
action: call-service
service: hive.boost_heating_on
target: {}
data:
entity_id: climate.office
time_period: '01:00:00'
temperature: 22.5
double_tap_action:
action: none
card_mod:
style: |
ha-card {
{% if states('sensor.office_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 90px !important;
margin-left: 0px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- square: false
type: grid
cards:
- type: custom:bubble-card
card_type: separator
- type: custom:digital-clock
card_mod:
style: |
ha-card {
--ha-card-background: #6699ff;
margin-top: 0px;
height: 90px !important;
margin-left: 10px;
margin-right: 10px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
dateFormat:
weekday: long
day: 2-digit
month: long
timeFormat:
hour: 2-digit
minute: 2-digit
- type: thermostat
entity: climate.home
name: Central Heating
card_mod:
style: |
ha-card {
{% if states('sensor.home_state') == 'ON' %}
--ha-card-background: #4d0008;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 300px !important;
margin-left: 10px;
margin-right: 10px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- square: false
type: grid
cards:
- type: custom:mushroom-light-card
entity: sensor.home_current_temperature
icon: ''
icon_color: white
tap_action:
action: more-info
name: Current Temperature
fill_container: false
hold_action:
action: more-info
double_tap_action:
action: none
secondary_info: state
icon_type: none
use_light_color: false
show_color_temp_control: true
layout: vertical
card_mod:
style: |
ha-card {
--ha-card-background: #666666;
margin-top: 0px;
height: 100px !important;
margin-left: 10px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-light-card
entity: sensor.home_target_temperature
icon: ''
icon_color: white
tap_action:
action: more-info
name: Target Temperature
fill_container: false
hold_action:
action: more-info
double_tap_action:
action: none
secondary_info: state
icon_type: none
use_light_color: false
show_color_temp_control: true
layout: vertical
card_mod:
style: |
ha-card {
--ha-card-background: #666666;
margin-top: 0px;
height: 100px !important;
margin-left: 0px;
margin-right: 10px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-light-card
icon_color: green
fill_container: true
tap_action:
action: toggle
secondary_info: state
use_light_color: false
show_color_temp_control: false
entity: sensor.home_state
name: Heating Status
hold_action:
action: more-info
double_tap_action:
action: none
icon: mdi:heating-coil
layout: vertical
icon_type: none
card_mod:
style: |
ha-card {
{% if states('sensor.home_state') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 100px !important;
margin-left: 10px;
margin-right: 0px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}
- type: custom:mushroom-light-card
icon_color: green
fill_container: true
icon_type: none
tap_action:
action: toggle
secondary_info: state
use_light_color: false
show_color_temp_control: false
entity: sensor.home_boost
name: Boost Status
hold_action:
action: more-info
double_tap_action:
action: none
icon: mdi:heating-coil
layout: vertical
card_mod:
style: |
ha-card {
{% if states('sensor.home_boost') == 'ON' %}
--ha-card-background: #4d0008;;
{% else %}
--ha-card-background: #6699ff;
{% endif %}
margin-top: 0px;
height: 100px !important;
margin-left: 0px;
margin-right: 10px;
border: none;
--primary-text-color: white;
--secondary-text-color: white;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}