diff --git a/frontend/src/index.css b/frontend/src/index.css index 909dcee..ddb114e 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -40,7 +40,7 @@ /* Light mode text */ --color-text-primary: #0F172A; --color-text-secondary: #334155; - --color-text-tertiary: #64748B; + --color-text-tertiary: #475569; --color-text-quaternary: #94A3B8; --color-text-inverse: #F9FAFB; diff --git a/frontend/src/pages/AuditLogPage.tsx b/frontend/src/pages/AuditLogPage.tsx index cce8f59..a49b105 100644 --- a/frontend/src/pages/AuditLogPage.tsx +++ b/frontend/src/pages/AuditLogPage.tsx @@ -91,7 +91,7 @@ export default function AuditLogPage() { header: 'Timestamp', cell: (log) => (
- + {new Date(log.timestamp).toLocaleTimeString([], { hour12: false, hour: '2-digit', minute: '2-digit', second: '2-digit' })} @@ -122,7 +122,7 @@ export default function AuditLogPage() { const Icon = config.icon; return (
@@ -136,7 +136,7 @@ export default function AuditLogPage() { header: 'Resource', cell: (log) => (
- + {ENTITY_LABELS[log.entity] || log.entity} {log.entityName && ( @@ -218,7 +218,7 @@ export default function AuditLogPage() { > -
+
{pagination.page} / {pagination.pages}
+
+ + {isManager && ( -
- )} + )} +
{/* KPI Strip */} @@ -171,7 +171,7 @@ export default function RoomsPage() {
- {room.type} + {room.type}
@@ -179,10 +179,10 @@ export default function RoomsPage() { {/* Body */}
-

+

{room.name?.replace('[DEMO] ', '')}

-

+

{room.sqft?.toLocaleString()} sqft • Capacity {room.capacity || '—'}

@@ -190,18 +190,18 @@ export default function RoomsPage() { {/* Environmental Vitals */}
-
+
{room.targetTemp || '—'}°F
- Target Temp + Target Temp
-
+
{room.targetHumidity || '—'}%
- Target RH + Target RH
@@ -213,7 +213,7 @@ export default function RoomsPage() { {room.batches?.length || 0} Active Batch{room.batches?.length === 1 ? '' : 'es'}
- + Enter →
diff --git a/frontend/src/pages/TasksPage.tsx b/frontend/src/pages/TasksPage.tsx index d5116ca..2a58f1c 100644 --- a/frontend/src/pages/TasksPage.tsx +++ b/frontend/src/pages/TasksPage.tsx @@ -141,7 +141,7 @@ export default function TasksPage() { {/* Active Tasks Section */}
-

Active Board

+

Active Board

{pendingTasks.length} ITEMS
@@ -176,7 +176,7 @@ export default function TasksPage() { {completedTasks.length > 0 && (
-

Archive / Verification

+

Archive / Verification

@@ -266,7 +266,7 @@ function TaskRow({ task, onComplete }: any) { {task.title} {task.priority === 'URGENT' && ( - + Priority: High )}