Fix main color in BudgetCategoriesSection

The main color in BudgetCategoriesSection was incorrectly set. This commit fixes the color to neuro-income.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 07:01:43 +00:00
parent 930f801a2a
commit 93e3a0ea88

View File

@@ -97,7 +97,7 @@ const SyncSettings = () => {
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<div className="space-y-0.5"> <div className="space-y-0.5">
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<CloudUpload className="h-5 w-5 text-neuro-accent" /> <CloudUpload className="h-5 w-5 text-neuro-income" />
<Label htmlFor="sync-toggle" className="text-base font-medium"> <Label htmlFor="sync-toggle" className="text-base font-medium">
</Label> </Label>
@@ -110,7 +110,7 @@ const SyncSettings = () => {
id="sync-toggle" id="sync-toggle"
checked={enabled} checked={enabled}
onCheckedChange={handleSyncToggle} onCheckedChange={handleSyncToggle}
className="data-[state=checked]:bg-neuro-accent" className="data-[state=checked]:bg-neuro-income"
/> />
</div> </div>
@@ -122,7 +122,7 @@ const SyncSettings = () => {
<button <button
onClick={handleManualSync} onClick={handleManualSync}
disabled={syncing} disabled={syncing}
className="neuro-button py-1 px-3 flex items-center gap-1 bg-neuro-accent text-white hover:bg-neuro-accent/90" className="neuro-button py-1 px-3 flex items-center gap-1 bg-neuro-income text-white hover:bg-neuro-income/90"
> >
<RefreshCw className={`h-4 w-4 ${syncing ? 'animate-spin' : ''}`} /> <RefreshCw className={`h-4 w-4 ${syncing ? 'animate-spin' : ''}`} />
<span>{syncing ? '동기화 중...' : '지금 동기화'}</span> <span>{syncing ? '동기화 중...' : '지금 동기화'}</span>
@@ -131,7 +131,7 @@ const SyncSettings = () => {
<Button <Button
onClick={() => navigate('/login')} onClick={() => navigate('/login')}
size="sm" size="sm"
className="py-1 px-3 bg-neuro-accent text-white hover:bg-neuro-accent/90" className="py-1 px-3 bg-neuro-income text-white hover:bg-neuro-income/90"
> >
</Button> </Button>