-
Notifications
You must be signed in to change notification settings - Fork 16
/
lovelace_raw.yaml
1455 lines (1455 loc) · 46.4 KB
/
lovelace_raw.yaml
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
custom_header:
active_tab_color: var(--primary-color)
tab_indicator_color: var(--primary-color)
chevrons: false
disabled_mode: true
exceptions:
- conditions:
user_agent: iPhone OS
config:
menu_hide: true
compact_mode: true
disabled_mode: false
tab_indicator_color: var(--primary-text-color)
active_tab_color: var(--primary-text-color)
- conditions:
user_agent: Android
config:
menu_hide: true
compact_mode: true
disabled_mode: false
tab_indicator_color: var(--primary-text-color)
active_tab_color: var(--primary-text-color)
swipe_nav:
animate: fade
swipe_amount: 25
title: Agneev's Home
views:
- icon: mdi:home-variant
path: home
title: Home
layout:
width: 280
max_cols: 2
type: custom:masonry-layout
badges: []
cards:
- cards:
- cards:
- entity: person.mom
icon: mdi:face-woman
show_name: false
size: 35%
state:
- value: not_home
styles:
icon:
- color: var(--disabled-text-color)
- value: home
styles:
icon:
- color: var(--primary-color)
styles:
card:
- height: 46px
- background-color: var(--background-color)
- border: solid 2px var(--card-background-color)
tap_action:
action: more-info
haptic: light
type: custom:button-card
- entity: person.dad
icon: mdi:face-man
show_name: false
size: 35%
state:
- value: not_home
styles:
icon:
- color: var(--disabled-text-color)
- value: home
styles:
icon:
- color: var(--primary-color)
styles:
card:
- height: 46px
- background-color: var(--background-color)
- border: solid 2px var(--card-background-color)
tap_action:
action: more-info
haptic: light
type: custom:button-card
- entity: device_tracker.asus_x200m
show_name: false
icon: mdi:laptop
size: 35%
state:
- value: not_home
styles:
icon:
- color: var(--disabled-text-color)
- value: home
styles:
icon:
- color: var(--primary-color)
styles:
card:
- height: 46px
- background-color: var(--background-color)
- border: solid 2px var(--card-background-color)
tap_action:
action: more-info
haptic: light
type: custom:button-card
- entity: binary_sensor.front_gate_camera_ping
icon: mdi:cctv
show_name: false
size: 35%
styles:
card:
- height: 46px
- background-color: var(--background-color)
- border: solid 2px var(--card-background-color)
tap_action:
action: more-info
haptic: light
double_tap_action:
action: navigate
navigation_path: /lovelace/cctv
haptic: light
type: custom:button-card
- entity: binary_sensor.orbi_satellite_ping
show_name: false
size: 35%
styles:
card:
- height: 46px
- background-color: var(--background-color)
- border: solid 2px var(--card-background-color)
tap_action:
action: more-info
haptic: light
double_tap_action:
action: call-service
haptic: success
service: switch.toggle
service_data:
entity_id: switch.reboot_orbi_satellite
confirmation:
text: Reboot Orbi Satellite?
type: custom:button-card
type: horizontal-stack
- cards:
- color_thresholds:
- value: 22
color: '#3bcf77'
- value: 27
color: '#d7da40'
- value: 32
color: '#df6943'
entities:
- entity: sensor.broadlink_rm4_mini_temperature
state_adaptive_color: true
hours_to_show: 1
points_per_hour: 14
decimals: 1
font_size: 92
align_icon: state
align_state: center
line_width: 7
show:
fill: false
name: false
icon_adaptive_color: true
labels: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px
14px !important
}
type: custom:mini-graph-card
- color_thresholds:
- value: 40
color: '#3cbcc8'
- value: 50
color: '#29aaff'
- value: 60
color: '#005bff'
entities:
- entity: sensor.broadlink_rm4_mini_humidity
state_adaptive_color: true
align_state: center
font_size: 92
line_width: 8
points_per_hour: 14
hours_to_show: 1
decimals: 1
align_icon: state
show:
fill: false
icon_adaptive_color: true
labels: false
points: false
name: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 16px 0 16px !important
}
ha-card > .info {
padding: 0 16px 0px 16px !important
}
type: custom:mini-graph-card
type: horizontal-stack
- content: '# 〡 Controls'
type: markdown
card_mod:
style:
.: |
ha-card {
--ha-card-background: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 20px;
font-weight: bold;
font-family: Helvetica;
}
- entities:
- entity: light.desk_light
toggle: true
haptic: light
min: 5
step: 5
type: custom:slider-entity-row
- entity: light.tv_lamp
toggle: true
haptic: light
min: 5
step: 5
type: custom:slider-entity-row
- entity: light.tv_lamp
justify: center
type: custom:rgb-light-card
colors:
- icon_color: >-
linear-gradient(15deg, rgba(185,36,36,1) 20%,
rgba(247,69,69,1) 80%)
rgb_color:
- 255
- 58
- 58
- icon_color: >-
linear-gradient(15deg, rgba(35,180,106,1) 20%,
rgba(13,244,180,1) 80%)
rgb_color:
- 0
- 169
- 155
- icon_color: >-
linear-gradient(15deg, rgba(68,102,255,1) 20%,
rgba(0,218,255,1) 80%)
rgb_color:
- 68
- 102
- 255
- icon_color: >-
linear-gradient(15deg, rgba(162,30,238,1) 20%,
rgba(243,28,255,1) 80%)
rgb_color:
- 243
- 28
- 255
- icon_color: >-
linear-gradient(15deg, rgba(255,59,39,1) 20%,
rgba(255,116,64,1) 80%)
rgb_color:
- 255
- 116
- 64
- icon_color: >-
linear-gradient(15deg, rgba(201,38,101,1) 20%,
rgba(255,0,100,1) 80%)
rgb_color:
- 255
- 0
- 100
- entity: input_number.pi_volume
hide_state: true
name: Speakers
step: 5
min: 20
icon: mdi:speaker-multiple
type: custom:slider-entity-row
show_header_toggle: false
type: entities
- cards:
- color_type: card
color: auto
entity: switch.adaptive_lighting
name: ADAPTIVE
show_label: true
layout: icon_name
size: 44%
styles:
card:
- height: 50px
- width: 145px
- font-weight: bold
- font-size: 12px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color_type: card
entity: switch.lofi_beats
show_name: false
size: 37%
state:
- value: 'on'
color: var(--primary-color)
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color_type: card
entity: switch.lofi_beats2
show_name: false
size: 37%
state:
- value: 'on'
color: var(--primary-color)
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color_type: card
entity: switch.the_good_life_radio
show_name: false
size: 35%
state:
- value: 'on'
color: var(--primary-color)
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
type: horizontal-stack
- cards:
- color_type: card
entity: switch.adaptive_lighting_sleep_mode_adaptive
icon: mdi:weather-night
show_name: false
size: 35%
state:
- value: 'on'
color: var(--primary-color)
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color: auto
color_type: card
entity: climate.bedroom_ac
icon: mdi:air-conditioner
show_label: true
show_name: false
layout: icon_label
size: 42%
label: |
[[[
var ac = states['climate.bedroom_ac'];
if (ac.state != 'off')
return ac.attributes.temperature + '° | ' + ac.attributes.fan_mode;
else return ac.attributes.temperature + '° set';
]]]
styles:
card:
- height: 50px
- width: 145px
- font-size: 13px
- font-weight: bold
- text-transform: uppercase
state:
- value: cool
color: '#349CF6'
styles:
label:
- color: '#ffffff'
icon:
- color: '#ffffff'
- value: dry
color: '#EEBC2D'
- value: fan_only
color: '#8A8A8A'
styles:
label:
- color: '#ffffff'
icon:
- color: '#ffffff'
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color_type: card
entity: switch.bedroom_ac_swing
icon: mdi:fan-chevron-down
show_name: false
size: 35%
state:
- value: 'on'
color: var(--primary-color)
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
- color_type: card
color: auto
entity: light.new_room_bulb
icon: mdi:ceiling-light
show_name: false
size: 40%
state:
- value: 'on'
styles:
icon:
- color: '#ffffff'
styles:
card:
- height: 50px
tap_action:
action: toggle
haptic: light
double_tap_action:
action: more-info
haptic: light
type: custom:button-card
type: horizontal-stack
type: vertical-stack
- type: vertical-stack
cards:
- content: |
# 〡 Now Playing
type: markdown
card_mod:
style:
.: |
ha-card {
--ha-card-background: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 20px;
font-weight: bold;
font-family: Helvetica;
}
- card:
type: entities
state_color: true
filter:
exclude:
- state: 'off'
- state: unavailable
- state: standby
- state: idle
- entity_id: media_player.sony_bravia_tv
include:
- domain: media_player
show_empty: false
sort:
method: last_changed
ignore_case: true
reverse: true
type: custom:auto-entities
- icon: mdi:camera-control
path: controls
title: Controls
type: custom:horizontal-layout
layout:
width: 280
max_cols: 2
badges: []
cards:
- cards:
- card:
camera_image: camera.front_gate_camera
entities: []
type: picture-glance
title: Front Gate
conditions:
- entity: binary_sensor.front_gate_camera_ping
state: 'on'
type: conditional
type: vertical-stack
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:mini-graph-card
decimals: 0
hours_to_show: 6
entities:
- entity: sensor.adguard_average_processing_speed
state_adaptive_color: true
color: '#6BBB74'
icon: mdi:shield-check
name: AdGuard
points_per_hour: 10
font_size: 92
line_width: 5
font_size_header: 13
show:
icon_adaptive_color: true
name_adaptive_color: true
labels: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px
14px !important
}
- type: custom:mini-graph-card
entities:
- entity: sensor.old_room_echo_temperature
state_adaptive_color: true
name: Old Room
hours_to_show: 1
color_thresholds:
- value: 22
color: '#3bcf77'
- value: 27
color: '#d7da40'
- value: 32
color: '#df6943'
points_per_hour: 60
font_size: 92
line_width: 5
font_size_header: 13
show:
icon_adaptive_color: true
name_adaptive_color: true
labels: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px
14px !important
}
- type: custom:simple-thermostat
entity: climate.bedroom_ac
layout:
step: row
decimals: '0'
step_size: '1'
sensors:
- entity: sensor.broadlink_rm4_mini_temperature
name: Currently
decimals: 1
- entity: sensor.broadlink_rm4_mini_humidity
name: Humidity
decimals: 1
hide:
temperature: true
state: true
control:
hvac:
'off':
name: 'Off'
cool:
name: Cool
dry:
name: Dry
fan_only:
name: Fan
fan:
low:
name: Low
icon: mdi:fan-speed-1
mid:
name: Mid
icon: mdi:fan-speed-2
high:
name: High
icon: mdi:fan-speed-3
auto:
icon: mdi:fan-plus
view_layout:
step: row
card_mod:
style: |
ha-card {
--st-mode-background: var(--card-background-color);
--st-font-size-xl: 45px;
--st-font-size-m: 20px;
--st-spacing: 3.6px;
}
- icon: mdi:web
path: info
title: Info
layout:
width: 280
max_cols: 2
type: custom:horizontal-layout
badges: []
cards:
- type: vertical-stack
cards:
- entity: binary_sensor.network_dns_ping
type: custom:uptime-card
name: Internet
icon: mdi:check-network
ko_icon: mdi:close-network
hours_to_show: 1
title_adaptive_color: true
status_adaptive_color: true
icon_adaptive_color: true
average_template: '[[[ return variables.uptime.toFixed(0); ]]]% up'
color:
tooltip: var(--secondary-text-color)
color_thresholds:
- value: 0
color: '#C64545'
- value: 95
color: '#C66445'
- value: 98
color: '#C6B145'
- value: 100
color: '#45C669'
tap_action:
action: more-info
haptic: success
bar:
spacing: 4
amount: 18
height: 25
round: 7
alias:
ok: Online
ko: Offline
card_mod:
style: |
ha-card .name > span {
font-size: 1.3em;
}
ha-card .status > span {
font-size: 1.1em;
max-height: 1.1em;
}
ha-card .timeline {
padding-bottom: 2px;
}
- cards:
- align_icon: state
align_state: center
color_thresholds:
- value: 10
color: '#db3535'
- value: 20
color: '#db8235'
- value: 40
color: '#37db35'
decimals: 0
entities:
- entity: sensor.speedtest_net_download_speed
state_adaptive_color: true
font_size: 88
hours_to_show: 6
line_width: 6
points_per_hour: 2
show:
fill: false
icon_adaptive_color: true
labels: false
name: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
- align_icon: state
align_state: center
color_thresholds:
- value: 10
color: '#db3535'
- value: 25
color: '#db8235'
- value: 35
color: '#37db35'
decimals: 0
entities:
- entity: sensor.speedtest_net_upload_speed
state_adaptive_color: true
font_size: 88
hours_to_show: 6
line_width: 6
points_per_hour: 2
show:
fill: false
icon_adaptive_color: true
labels: false
name: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
type: horizontal-stack
- cards:
- content: |
# 〡 Internet
type: markdown
card_mod:
style:
.: |
ha-card {
--ha-card-background: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 20px;
font-weight: bold;
font-family: Helvetica;
}
- type: entities
entities:
- entity: sensor.netgear_orbi
type: custom:template-entity-row
secondary: '{{ state_attr(''sensor.netgear_orbi'',''WAN Uptime'') }}'
active: '{{ is_state(''sensor.netgear_orbi'',''Link up'') }}'
- type: iframe
aspect_ratio: 65%
url: http://10.0.0.1:19999/test.html
- cards:
- entities:
- color: '#3BD97A'
entity: sensor.wan_daily_usage_down
name: Traffic In
icon: mdi:arrow-down-circle
font_size: 74
font_size_header: 12.5
hours_to_show: 2
points_per_hour: 6
aggregate_func: delta
show:
labels: false
points: false
graph: bar
icon_adaptive_color: true
name_adaptive_color: true
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
- align_icon: left
align_state: right
entities:
- color: '#D9CA3A'
entity: sensor.wan_daily_usage_up
name: Traffic Out
icon: mdi:arrow-up-circle
font_size: 74
font_size_header: 12.5
hours_to_show: 2
points_per_hour: 6
show:
icon_adaptive_color: true
name_adaptive_color: true
graph: bar
labels: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
type: horizontal-stack
type: vertical-stack
- icon: mdi:chart-tree
path: tile
title: Tile
layout:
width: 280
max_cols: 2
type: custom:masonry-layout
badges: []
cards:
- cards:
- type: custom:uptime-card
entity: binary_sensor.orbi_satellite_ping
name: Orbi Satellite
hours_to_show: 6
title_adaptive_color: true
status_adaptive_color: true
icon_adaptive_color: true
average_template: '[[[ return variables.uptime.toFixed(0); ]]]% online'
tap_action:
action: more-info
haptic: success
bar:
spacing: 4
amount: 24
height: 25
round: 7
alias:
ok: Online
ko: Offline
color_thresholds:
- value: 70
color: '#da23f0'
- value: 80
color: '#f1de20'
- value: 100
color: '#0fb6f7'
color:
ok: '#0fb6f7'
ko: '#da23f0'
tooltip: var(--secondary-text-color)
card_mod:
style: |
ha-card .name > span {
font-size: 1.3em;
}
ha-card .status > span {
font-size: 1.1em;
max-height: 1.1em;
}
ha-card .timeline {
padding-bottom: 2px;
}
- content: |
# 〡 Local Network
type: markdown
card_mod:
style:
.: |
ha-card {
--ha-card-background: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 20px;
font-weight: bold;
font-family: Helvetica;
}
- type: entities
entities:
- entity: sensor.drive_state
name: /drive mount
- decimals: 1
entities:
- color: '#FF7A2D'
entity: sensor.eth0_in
state_adaptive_color: true
- color: '#2EB2FF'
entity: sensor.eth0_out
show_state: true
state_adaptive_color: true
hours_to_show: 0.5
font_size: 82
font_size_header: 13
icon: mdi:ethernet
line_width: 2.5
name: Ethernet
points_per_hour: 100
lower_bound: 0
show:
fill: false
name_adaptive_color: true
icon_adaptive_color: true
labels: true
legend: false
points: false
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
- cards:
- entities:
- color: '#FF7A2D'
entity: sensor.eth0_in_total
name: Traffic In
icon: mdi:arrow-down-circle-outline
font_size: 76
font_size_header: 12.9
show:
labels: false
points: false
graph: false
icon_adaptive_color: true
name_adaptive_color: true
card_mod:
style: |
ha-card > div:nth-child(-n+2) {
padding: 0 14px 0 14px !important
}
ha-card > .info {
padding: 0 14px 0px 14px !important
}
type: custom:mini-graph-card
- align_icon: left
align_state: right
entities:
- color: '#2EB2FF'
entity: sensor.eth0_out_total
name: Traffic Out
icon: mdi:arrow-up-circle-outline
font_size: 76
font_size_header: 12.9
show:
labels: false
points: false
graph: false
icon_adaptive_color: true
name_adaptive_color: true