From bb252318ab1ae7379839efbbc7fc27149ef05e82 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Mon, 6 Jul 2026 22:39:48 +0530 Subject: [PATCH] feat: Implement light theme for NXTGAUGE - Change background from dark #07051a to light #F4F2EC - Update dashboard background to white #ffffff - Update text color to #0F1729 (dark navy) - Add light theme CSS variables - Keep brand orange #fd6116 --- src/app.css | 10 ++++++---- src/entry-server.tsx | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app.css b/src/app.css index 96a4aac..5c6be92 100644 --- a/src/app.css +++ b/src/app.css @@ -6,8 +6,10 @@ --brand-orange-dark: #e45a14; --brand-orange-accessible: #d94c08; --brand-navy: #050026; - --ink: #100b2f; - --bg-soft: #f6f8ff; + --ink: #0F1729; + --bg-soft: #EAE7DE; + --bg-main: #F4F2EC; + --bg-white: #ffffff; --text-on-orange: #050026; /* Brand navy text on orange background */ } @@ -25,9 +27,9 @@ select { body { margin: 0; font-family: "Exo 2", sans-serif; - color: var(--ink); + color: #0F1729; scrollbar-gutter: stable; - background: #07051a; + background: #F4F2EC; overflow-y: auto; overflow-x: hidden; } diff --git a/src/entry-server.tsx b/src/entry-server.tsx index 59bf29b..f46875c 100644 --- a/src/entry-server.tsx +++ b/src/entry-server.tsx @@ -9,7 +9,7 @@ export default createHandler(() => ( - + {assets}