From dcaa45ccfe02df67f9303e27afd03e0fc387685f Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 14 May 2026 14:50:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(frontend)=20fix=20subtitle=20backg?= =?UTF-8?q?round=20regression?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore transparent background as the default subtitle background to match previous behavior. --- src/frontend/src/stores/accessibility.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/stores/accessibility.ts b/src/frontend/src/stores/accessibility.ts index ecae6ac5..5d1bec48 100644 --- a/src/frontend/src/stores/accessibility.ts +++ b/src/frontend/src/stores/accessibility.ts @@ -59,7 +59,7 @@ export const CAPTION_FONT_COLOR_VALUES: Record = { } export const CAPTION_BACKGROUND_COLOR_VALUES: Record = { - default: 'rgba(0, 0, 0, 0.75)', + default: 'transparent', black: 'rgba(0, 0, 0, 0.75)', white: 'rgba(255, 255, 255, 0.75)', blue: 'rgba(0, 0, 255, 0.75)',