From 447b7c6311b0b446dd65b32246af11ce29377ecb Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Fri, 29 Dec 2023 03:46:59 +0200 Subject: [PATCH] Add darker gray color to subtitle colors --- src/components/player/atoms/settings/CaptionSettingsView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/player/atoms/settings/CaptionSettingsView.tsx b/src/components/player/atoms/settings/CaptionSettingsView.tsx index a12dea63..72841779 100644 --- a/src/components/player/atoms/settings/CaptionSettingsView.tsx +++ b/src/components/player/atoms/settings/CaptionSettingsView.tsx @@ -214,7 +214,7 @@ export function CaptionSetting(props: { ); } -export const colors = ["#ffffff", "#80b1fa", "#e2e535"]; +export const colors = ["#a8a8a8", "#ffffff", "#80b1fa", "#e2e535"]; export function CaptionSettingsView({ id }: { id: string }) { const { t } = useTranslation();