aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/InputText.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-28 06:23:06 +0900
committernsfisis <nsfisis@gmail.com>2026-02-28 06:23:06 +0900
commitafac6705d55928f351a1d6f13db6abd2cce6f9f2 (patch)
tree3855022f3048d6ee4e4e694642ef3b2912d8ae9b /frontend/app/components/InputText.tsx
parentd3cc21c005c95a7ba6a1651f501471021a92689a (diff)
downloadphperkaigi-2026-albatross-afac6705d55928f351a1d6f13db6abd2cce6f9f2.tar.gz
phperkaigi-2026-albatross-afac6705d55928f351a1d6f13db6abd2cce6f9f2.tar.zst
phperkaigi-2026-albatross-afac6705d55928f351a1d6f13db6abd2cce6f9f2.zip
feat(frontend): change brand color for PHPerKaigi 2026
Diffstat (limited to 'frontend/app/components/InputText.tsx')
-rw-r--r--frontend/app/components/InputText.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/InputText.tsx b/frontend/app/components/InputText.tsx
index 6bcceb7..9b57a74 100644
--- a/frontend/app/components/InputText.tsx
+++ b/frontend/app/components/InputText.tsx
@@ -6,7 +6,7 @@ export default function InputText(props: InputProps) {
return (
<input
{...props}
- className="p-2 block w-full border border-sky-600 rounded-md transition duration-300 focus:ring-3 focus:ring-sky-400 focus:outline-hidden"
+ className="p-2 block w-full border border-brand-600 rounded-md transition duration-300 focus:ring-3 focus:ring-brand-400 focus:outline-hidden"
/>
);
}