diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-04 22:13:44 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-04 22:13:44 +0900 |
| commit | bd9c2e8b587c733059d44f642c53536eb7fe1ec9 (patch) | |
| tree | d3bfe091bcd115bd44253ca35b179dd679894c56 /frontend | |
| parent | 9c61843bdbd67d3c026bd8fc1a82f5cb9a984131 (diff) | |
| download | iosdc-japan-2025-albatross-bd9c2e8b587c733059d44f642c53536eb7fe1ec9.tar.gz iosdc-japan-2025-albatross-bd9c2e8b587c733059d44f642c53536eb7fe1ec9.tar.zst iosdc-japan-2025-albatross-bd9c2e8b587c733059d44f642c53536eb7fe1ec9.zip | |
update colors
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/app/components/InputText.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/components/SubmitButton.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/_index.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/dashboard.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/login.tsx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/frontend/app/components/InputText.tsx b/frontend/app/components/InputText.tsx index 3f2c526..ed68206 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-pink-600 rounded-md transition duration-300 focus:ring focus:ring-pink-400 focus:outline-none" + className="p-2 block w-full border border-sky-600 rounded-md transition duration-300 focus:ring focus:ring-sky-400 focus:outline-none" /> ); } diff --git a/frontend/app/components/SubmitButton.tsx b/frontend/app/components/SubmitButton.tsx index 1400a7b..643b3f5 100644 --- a/frontend/app/components/SubmitButton.tsx +++ b/frontend/app/components/SubmitButton.tsx @@ -6,7 +6,7 @@ export default function SubmitButton(props: ButtonProps) { return ( <button {...props} - className="text-lg text-white bg-pink-600 px-4 py-2 rounded transition duration-300 hover:bg-pink-500 focus:ring focus:ring-pink-400 focus:outline-none" + className="text-lg text-white bg-sky-600 px-4 py-2 rounded transition duration-300 hover:bg-sky-500 focus:ring focus:ring-sky-400 focus:outline-none" /> ); } diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx index 5dda2c8..06cca78 100644 --- a/frontend/app/routes/_index.tsx +++ b/frontend/app/routes/_index.tsx @@ -21,7 +21,7 @@ export default function Index() { className="w-64 h-64" /> <div className="text-center"> - <div className="font-bold text-transparent text-sky-50 flex flex-col gap-y-2"> + <div className="font-bold text-sky-50 flex flex-col gap-y-2"> <div className="text-5xl">PHPER CODE BATTLE</div> </div> </div> diff --git a/frontend/app/routes/dashboard.tsx b/frontend/app/routes/dashboard.tsx index 20038c1..cf5453c 100644 --- a/frontend/app/routes/dashboard.tsx +++ b/frontend/app/routes/dashboard.tsx @@ -89,7 +89,7 @@ export default function Dashboard() { ? "http://localhost:8003/phperkaigi/2025/code-battle/admin/dashboard" : "/phperkaigi/2025/code-battle/admin/dashboard" } - className="text-lg text-white bg-pink-600 px-4 py-2 rounded transition duration-300 hover:bg-pink-500 focus:ring focus:ring-pink-400 focus:outline-none" + className="text-lg text-white bg-sky-600 px-4 py-2 rounded transition duration-300 hover:bg-sky-500 focus:ring focus:ring-sky-400 focus:outline-none" > Admin Dashboard </a> diff --git a/frontend/app/routes/login.tsx b/frontend/app/routes/login.tsx index b59ce43..223a3f5 100644 --- a/frontend/app/routes/login.tsx +++ b/frontend/app/routes/login.tsx @@ -77,7 +77,7 @@ export default function Login() { のアカウントをお持ちでない場合は、イベントスタッフにお声がけください。 </p> {loginErrors?.message && ( - <p className="text-red-500 text-sm mb-4">{loginErrors.message}</p> + <p className="text-sky-500 text-sm mb-4">{loginErrors.message}</p> )} <div className="mb-4 flex flex-col gap-1"> <label |
