From 73854a6b48af2bf3947d224f06a0f9784050ae0a Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 14 Mar 2026 18:52:19 -0700 Subject: [PATCH] Feat: Apply Kalshi brand green accent to login --- app/page.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/app/page.js b/app/page.js index b4dfc1d..784a973 100644 --- a/app/page.js +++ b/app/page.js @@ -1,12 +1,14 @@ 'use client'; import { useState, useRef } from 'react'; +// TODO: We should use this Kalshi green accent (#28CC95) all over the code. + export default function LoginPage() { - const [email, setEmail] = useState(''); + const[email, setEmail] = useState(''); const [password, setPassword] = useState(''); - const [captcha, setCaptcha] = useState(''); + const[captcha, setCaptcha] = useState(''); const [error, setError] = useState(''); - const [success, setSuccess] = useState(''); + const[success, setSuccess] = useState(''); const captchaImgRef = useRef(null); const refreshCaptcha = () => { @@ -39,7 +41,7 @@ export default function LoginPage() { return (
-

Kalbot Access

+

Kalbot Access

{error &&
{error}
} {success &&
{success}
} @@ -50,7 +52,7 @@ export default function LoginPage() { setEmail(e.target.value)} /> @@ -60,7 +62,7 @@ export default function LoginPage() { setPassword(e.target.value)} /> @@ -77,7 +79,7 @@ export default function LoginPage() { onClick={refreshCaptcha} title="Click to refresh" /> -
@@ -85,7 +87,7 @@ export default function LoginPage() { type="text" required placeholder="Enter the text above" - className="w-full bg-white border border-gray-300 rounded px-3 py-2 focus:outline-none focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 transition-shadow" + className="w-full bg-white border border-gray-300 rounded px-3 py-2 focus:outline-none focus:border-[#28CC95] focus:ring-1 focus:ring-[#28CC95] transition-shadow" value={captcha} onChange={(e) => setCaptcha(e.target.value)} /> @@ -93,7 +95,7 @@ export default function LoginPage() {