From c95507fd97c9df01879601ca97f3a92691857d56 Mon Sep 17 00:00:00 2001 From: ff Date: Fri, 10 Apr 2026 16:09:07 -0400 Subject: [PATCH] fix: change theme color from blue to teal-green --- apps/Frontend/src/components/staffs/staff-form.tsx | 2 +- apps/Frontend/src/components/staffs/staff-table.tsx | 4 ++-- apps/Frontend/src/index.css | 4 ++-- apps/Frontend/src/pages/settings-page.tsx | 4 ++-- apps/Frontend/theme.json | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/Frontend/src/components/staffs/staff-form.tsx b/apps/Frontend/src/components/staffs/staff-form.tsx index 647b5a7..c4cf27d 100755 --- a/apps/Frontend/src/components/staffs/staff-form.tsx +++ b/apps/Frontend/src/components/staffs/staff-form.tsx @@ -119,7 +119,7 @@ export function StaffForm({ @@ -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" }`} > diff --git a/apps/Frontend/src/index.css b/apps/Frontend/src/index.css index 7fc41e1..234e7d9 100755 --- a/apps/Frontend/src/index.css +++ b/apps/Frontend/src/index.css @@ -15,7 +15,7 @@ --popover: 0 0% 100%; --popover-foreground: 222.2 47.4% 11.2%; - --primary: 240 100% 50%; + --primary: 174 72% 35%; --primary-foreground: 0 0% 100%; --secondary: 210 40% 96.1%; @@ -44,7 +44,7 @@ --sidebar-background: 222.2 47.4% 11.2%; --sidebar-foreground: 0 0% 100%; - --sidebar-primary: 240 100% 50%; + --sidebar-primary: 174 72% 35%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 210 40% 96.1%; --sidebar-accent-foreground: 222.2 47.4% 11.2%; diff --git a/apps/Frontend/src/pages/settings-page.tsx b/apps/Frontend/src/pages/settings-page.tsx index 07e9aae..14ac084 100755 --- a/apps/Frontend/src/pages/settings-page.tsx +++ b/apps/Frontend/src/pages/settings-page.tsx @@ -420,7 +420,7 @@ export default function SettingsPage() {