From afac6705d55928f351a1d6f13db6abd2cce6f9f2 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 28 Feb 2026 06:23:06 +0900 Subject: feat(frontend): change brand color for PHPerKaigi 2026 --- frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx | 4 ++-- .../app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx | 2 +- frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx | 2 +- frontend/app/components/GolfWatchApps/GolfWatchAppWaiting1v1.tsx | 2 +- .../app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'frontend/app/components/GolfWatchApps') diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx index 4a9cf92..3d2784e 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx @@ -64,8 +64,8 @@ export default function GolfWatchAppGaming1v1({ ? "bg-orange-400" : gameResultKind === "winB" ? "bg-purple-400" - : "bg-sky-600" - : "bg-sky-600"; + : "bg-brand-600" + : "bg-brand-600"; return (
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx index 22c6df2..320709b 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx @@ -26,7 +26,7 @@ export default function GolfWatchAppGamingMultiplayer({ return (
-
+
{gameDisplayName}
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx index 82e5334..d9e004e 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx @@ -10,7 +10,7 @@ export default function GolfWatchAppStarting({ gameDisplayName }: Props) { return (
-
+
{gameDisplayName}
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting1v1.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting1v1.tsx index ae88295..c7db3a7 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting1v1.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting1v1.tsx @@ -14,7 +14,7 @@ export default function GolfWatchAppWaiting1v1({ }: Props) { return (
-
+
{gameDisplayName}
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx index 13bcc10..72757f3 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppWaitingMultiplayer.tsx @@ -7,7 +7,7 @@ export default function GolfWatchAppWaitingMultiplayer({ }: Props) { return (
-
+
{gameDisplayName}
-- cgit v1.3.1