From 616cf9029dea495bff5a19ccbb76020dcda5ffd2 Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 20 Jun 2025 16:51:19 -0500 Subject: [PATCH] Fix audio player colors for black theme --- components/app/AudioPlayer.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/components/app/AudioPlayer.vue b/components/app/AudioPlayer.vue index b7747f2c..7684fb90 100644 --- a/components/app/AudioPlayer.vue +++ b/components/app/AudioPlayer.vue @@ -4,15 +4,15 @@
- keyboard_arrow_down + keyboard_arrow_down
- {{ isCasting ? 'cast_connected' : 'cast' }} + {{ isCasting ? 'cast_connected' : 'cast' }}
- more_vert + more_vert
-

{{ isDirectPlayMethod ? $strings.LabelPlaybackDirect : isLocalPlayMethod ? $strings.LabelPlaybackLocal : $strings.LabelPlaybackTranscode }}

+

{{ isDirectPlayMethod ? $strings.LabelPlaybackDirect : isLocalPlayMethod ? $strings.LabelPlaybackLocal : $strings.LabelPlaybackTranscode }}

@@ -182,6 +182,9 @@ export default { } }, computed: { + theme() { + return document.documentElement.dataset.theme || 'dark' + }, menuItems() { const items = [] // TODO: Implement on iOS