Skip to content

Commit 632ab2e

Browse files
switch to warm stone palette
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 42c16ff commit 632ab2e

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6-
<meta name="theme-color" content="#ffffff" />
6+
<meta name="theme-color" content="#fafaf9" />
77
<title>Safe-Lens</title>
88
</head>
99
<body class="bg-bg text-fg font-mono">

client/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function App() {
6161
}
6262
localStorage.setItem("theme", isDark ? "dark" : "light");
6363
const meta = document.querySelector('meta[name="theme-color"]');
64-
if (meta) meta.setAttribute("content", isDark ? "#09090b" : "#ffffff");
64+
if (meta) meta.setAttribute("content", isDark ? "#0c0a09" : "#fafaf9");
6565
}, [isDark]);
6666

6767
const [prompt, setPrompt] = useState("");

client/src/index.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44

55
/* Light mode (default) */
66
:root {
7-
--color-bg: 255 255 255;
8-
--color-panel: 244 244 245;
9-
--color-input: 250 250 250;
10-
--color-border: 161 161 170;
11-
--color-fg: 24 24 27;
12-
--color-accent: 37 99 235;
13-
--color-danger: 220 38 38;
7+
--color-bg: 250 250 249;
8+
--color-panel: 245 245 244;
9+
--color-input: 255 255 255;
10+
--color-border: 168 162 158;
11+
--color-fg: 28 25 23;
12+
--color-accent: 13 148 136;
13+
--color-danger: 185 28 28;
1414
}
1515

1616
/* Dark mode */
1717
.dark {
18-
--color-bg: 9 9 11;
19-
--color-panel: 24 24 27;
20-
--color-input: 39 39 42;
21-
--color-border: 82 82 91;
22-
--color-fg: 250 250 250;
23-
--color-accent: 59 130 246;
18+
--color-bg: 12 10 9;
19+
--color-panel: 28 25 23;
20+
--color-input: 41 37 36;
21+
--color-border: 87 83 78;
22+
--color-fg: 250 250 249;
23+
--color-accent: 20 184 166;
2424
--color-danger: 239 68 68;
2525
}
2626

0 commit comments

Comments
 (0)