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

@@ -119,7 +119,7 @@ export function StaffForm({
</button>
<button
type="submit"
className="px-4 py-2 bg-blue-600 text-white rounded disabled:opacity-50"
className="px-4 py-2 bg-teal-600 text-white rounded disabled:opacity-50"
disabled={isLoading}
>
{isLoading ? "Saving..." : "Save"}

View File

@@ -64,7 +64,7 @@ export function StaffTable({
<h2 className="text-lg font-semibold text-gray-900">Staff Members</h2>
<button
onClick={onAdd}
className="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700"
className="px-4 py-2 bg-teal-600 text-white rounded hover:bg-teal-700"
>
Add New Staff
</button>
@@ -208,7 +208,7 @@ export function StaffTable({
aria-current={currentPage === i + 1 ? "page" : undefined}
className={`relative inline-flex items-center px-4 py-2 border text-sm font-medium ${
currentPage === i + 1
? "z-10 bg-blue-50 border-blue-500 text-blue-600"
? "z-10 bg-teal-50 border-teal-500 text-teal-600"
: "border-gray-300 text-gray-500 hover:bg-gray-50"
}`}
>