Added audio messaging

This commit is contained in:
Mark Qvist 2024-06-03 01:53:54 +02:00
parent 4ffe16b209
commit dcf722d85f
7 changed files with 185 additions and 29 deletions

View file

@ -13,6 +13,7 @@ def mdc(color, hue=None):
hue = "400"
return get_color_from_hex(colors[color][hue])
color_playing = "Amber"
color_received = "LightGreen"
color_delivered = "Blue"
color_paper = "Indigo"
@ -21,6 +22,8 @@ color_failed = "Red"
color_unknown = "Gray"
intensity_msgs_dark = "800"
intensity_msgs_light = "500"
intensity_play_dark = "600"
intensity_play_light = "300"
class ContentNavigationDrawer(Screen):
pass