diff --git a/web/src/routes/index.tsx b/web/src/routes/index.tsx index ab4c34a..4c302a8 100644 --- a/web/src/routes/index.tsx +++ b/web/src/routes/index.tsx @@ -34,7 +34,7 @@ const CARD_STYLES = { const BORDER_STYLES = { marginTop: "16px", paddingTop: "16px", - borderTop: "1px solid #e2e8f0", + borderTop: "1px solid var(--gray-7)", } as const; // Service icon mapping @@ -126,7 +126,7 @@ const StatusDisplay = ({ status }: { status: Status | "Unreachable" }) => { @@ -143,7 +143,7 @@ const ServiceStatus = ({ service }: { service: Service }) => { - {service.name} + {service.name} @@ -267,7 +267,6 @@ function App() { return (
- {/* Theme Toggle - Fixed position in top right */}
- System Status + + System Status + {isLoading ? ( @@ -327,7 +328,9 @@ function App() { ) : shouldShowTiming ? ( - {formatNumber(state.timing.health!)}ms + + {formatNumber(state.timing.health!)}ms + ) : null} @@ -350,11 +353,11 @@ function App() { cursor: "pointer", textDecoration: "underline", textDecorationStyle: "dotted", - textDecorationColor: "#CBCED1", + textDecorationColor: "var(--gray-6)", textUnderlineOffset: "6px", }} > - + @@ -381,7 +384,7 @@ function App() { v{__APP_VERSION__} @@ -392,7 +395,7 @@ function App() { style={{ width: "1px", height: "12px", - backgroundColor: "#8B949E", + backgroundColor: "var(--gray-10)", opacity: 0.3, }} /> @@ -400,7 +403,7 @@ function App() {