Skip to content

Commit 6aad168

Browse files
committed
fix: use burnt orange accent (#c2410c) with matching note cards
Final accent color — burnt orange, closest to original identity while passing WCAG AA (4.64:1 on white, 4.75:1 on tertiary). Revert logo to original PNG. Warm note card colors restored to match.
1 parent fc9a9e3 commit 6aad168

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

apps/web/public/site.webmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{ "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" },
77
{ "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }
88
],
9-
"theme_color": "#b94a0a",
9+
"theme_color": "#c2410c",
1010
"background_color": "#ffffff",
1111
"display": "standalone"
1212
}

apps/web/scripts/prerender.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,9 @@ function generateLlmsFullTxt(): string {
386386
lines.push("");
387387
break;
388388
case "note":
389-
lines.push(`> **${block.noteType.toUpperCase()}${block.app ? ` (${block.app})` : ""}**: ${block.title}`);
389+
lines.push(
390+
`> **${block.noteType.toUpperCase()}${block.app ? ` (${block.app})` : ""}**: ${block.title}`,
391+
);
390392
lines.push(`> ${block.text}`);
391393
lines.push("");
392394
break;

apps/web/src/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
@import "tailwindcss";
22

3-
/* ooxml.dev theme - Orange */
3+
/* ooxml.dev theme - Burnt Orange */
44
:root {
5-
/* Orange accent (AA-accessible on all theme backgrounds) */
6-
--color-accent: #b94a0a;
7-
--color-accent-hover: #9a3e08;
5+
/* Burnt Orange accent (AA-accessible on all theme backgrounds) */
6+
--color-accent: #c2410c;
7+
--color-accent-hover: #9a3412;
88
--color-accent-light: #fff7ed;
99

1010
/* Backgrounds */

0 commit comments

Comments
 (0)