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/SubmitButton.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/app/components/SubmitButton.test.tsx') diff --git a/frontend/app/components/SubmitButton.test.tsx b/frontend/app/components/SubmitButton.test.tsx index ebf3416..9a8085e 100644 --- a/frontend/app/components/SubmitButton.test.tsx +++ b/frontend/app/components/SubmitButton.test.tsx @@ -33,9 +33,9 @@ describe("SubmitButton", () => { expect(button.disabled).toBe(false); }); - test("has sky-600 background styling", () => { + test("has brand-600 background styling", () => { render(Submit); const button = screen.getByText("Submit"); - expect(button.className).toContain("bg-sky-600"); + expect(button.className).toContain("bg-brand-600"); }); }); -- cgit v1.3.1