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

@@ -43,7 +43,7 @@ const ForgotPassword = () => {
<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>
@@ -68,7 +68,7 @@ const ForgotPassword = () => {
<Button
type="submit"
className="w-full bg-neuro-accent hover:bg-neuro-accent-light text-white py-6 h-auto"
className="w-full bg-neuro-income hover:bg-neuro-income/80 text-white py-6 h-auto"
disabled={isLoading}
>
{isLoading ? "처리 중..." : "재설정 링크 전송"}
@@ -77,7 +77,7 @@ const ForgotPassword = () => {
</form>
) : (
<div className="text-center space-y-6">
<div className="mx-auto w-16 h-16 neuro-flat rounded-full flex items-center justify-center text-neuro-accent">
<div className="mx-auto w-16 h-16 neuro-flat rounded-full flex items-center justify-center text-neuro-income">
<Check className="h-8 w-8" />
</div>
<div>
@@ -87,7 +87,7 @@ const ForgotPassword = () => {
</p>
</div>
<Button
className="w-full bg-neuro-accent hover:bg-neuro-accent-light text-white py-6 h-auto"
className="w-full bg-neuro-income hover:bg-neuro-income/80 text-white py-6 h-auto"
onClick={() => setIsSubmitted(false)}
>
@@ -97,7 +97,7 @@ const ForgotPassword = () => {
</div>
<div className="text-center">
<Link to="/login" className="inline-flex items-center text-neuro-accent hover:underline">
<Link to="/login" className="inline-flex items-center text-neuro-income hover:underline">
<ArrowLeft className="mr-2 h-4 w-4" />
</Link>
</div>