fix: change theme color from blue to teal-green

This commit is contained in:
ff
2026-04-10 16:09:07 -04:00
parent 84991a0538
commit c95507fd97
5 changed files with 8 additions and 8 deletions

View File

@@ -420,7 +420,7 @@ export default function SettingsPage() {
</div>
<button
type="submit"
className="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700"
className="bg-teal-600 text-white px-4 py-2 rounded hover:bg-teal-700"
disabled={addUserMutation.isPending}
>
{addUserMutation.isPending ? "Adding..." : "Add User"}
@@ -474,7 +474,7 @@ export default function SettingsPage() {
<button
type="submit"
className="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700"
className="bg-teal-600 text-white px-4 py-2 rounded hover:bg-teal-700"
disabled={updateUserMutate.isPending}
>
{updateUserMutate.isPending ? "Saving..." : "Save Changes"}