From 6876bc1390b5338847f2f9795d178676af45a084 Mon Sep 17 00:00:00 2001 From: Mistral Vibe Date: Fri, 10 Apr 2026 08:21:08 +0200 Subject: [PATCH] feat(theme): update wavesurfer colors to teal scheme waveColor: subtle teal tint, progressColor/cursorColor match accent. Co-Authored-By: Claude Sonnet 4.6 --- web/src/services/audioService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/services/audioService.ts b/web/src/services/audioService.ts index 31b691f..0356888 100755 --- a/web/src/services/audioService.ts +++ b/web/src/services/audioService.ts @@ -69,9 +69,9 @@ class AudioService { // Fresh audio element per song. Lives on document.body so playback // continues even when the SongPage container is removed from the DOM. media: this.mediaElement, - waveColor: "rgba(255,255,255,0.09)", - progressColor: "#c8861a", - cursorColor: "#e8a22a", + waveColor: "rgba(20,184,166,0.18)", + progressColor: "#14b8a6", + cursorColor: "#2dd4bf", barWidth: 2, barRadius: 2, height: 104,