Change main color scheme

Change the main color scheme to neuro-income.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 01:43:45 +00:00
parent 02ee4b1940
commit 8a3ccbc853
3 changed files with 13 additions and 13 deletions

View File

@@ -40,7 +40,7 @@ const Login = () => {
return <div className="min-h-screen flex flex-col items-center justify-center p-6 bg-neuro-background">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<h1 className="text-3xl font-bold text-neuro-accent mb-2"></h1>
<h1 className="text-3xl font-bold text-neuro-income mb-2"></h1>
<p className="text-gray-500"> </p>
</div>
@@ -67,12 +67,12 @@ const Login = () => {
</div>
<div className="text-right">
<Link to="/forgot-password" className="text-sm text-neuro-accent hover:underline">
<Link to="/forgot-password" className="text-sm text-neuro-income hover:underline">
?
</Link>
</div>
<Button type="submit" disabled={isLoading} className="w-full hover:bg-neuro-accent-light text-white py-6 h-auto bg-neuro-income">
<Button type="submit" disabled={isLoading} className="w-full hover:bg-neuro-income/80 text-white py-6 h-auto bg-neuro-income">
{isLoading ? "로그인 중..." : "로그인"} {!isLoading && <ArrowRight className="ml-2 h-5 w-5" />}
</Button>
</div>
@@ -82,7 +82,7 @@ const Login = () => {
<div className="text-center">
<p className="text-gray-500">
?{" "}
<Link to="/register" className="text-neuro-accent font-medium hover:underline">
<Link to="/register" className="text-neuro-income font-medium hover:underline">
</Link>
</p>
@@ -90,4 +90,4 @@ const Login = () => {
</div>
</div>;
};
export default Login;
export default Login;