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
This commit is contained in:
parent
d0143c229b
commit
bb252318ab
2 changed files with 7 additions and 5 deletions
10
src/app.css
10
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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ export default createHandler(() => (
|
|||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/png" href="/nxtgauge-icon.png" />
|
||||
<style>{`html,body,#app{min-height:100%;margin:0}body{background:#07051a} .dashboard-shell{background:#f6f8ff;min-height:100vh} .lp-main,.auth-page,.choose-role-page{background:#07051a;min-height:100vh}`}</style>
|
||||
<style>{`html,body,#app{min-height:100%;margin:0}body{background:#F4F2EC} .dashboard-shell{background:#ffffff;min-height:100vh} .lp-main,.auth-page,.choose-role-page{background:#F4F2EC;min-height:100vh}`}</style>
|
||||
{assets}
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue