Skip to content

Commit 793ed6a

Browse files
committed
fix: darken muted text for WCAG AA contrast and trim home meta description
Change --color-text-muted from #a8a29e (2.52:1) to #78716c (4.62:1) fixing contrast failures on footer, inactive tabs, and helper text. Shorten home meta description to under 150 chars to prevent truncation.
1 parent 84aef63 commit 793ed6a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/web/src/data/seo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const staticPages: Record<string, SeoMeta> = {
1010
"/": {
1111
title: "ooxml.dev — The OOXML spec, explained by people who actually implemented it",
1212
description:
13-
"Interactive ECMA-376 reference with live previews, implementation notes, and what the spec doesn't tell you. Built by SuperDoc — DOCX editing and tooling.",
13+
"Interactive ECMA-376 reference with live previews and implementation notes. What the spec doesn't tell you, from the SuperDoc team.",
1414
type: "website",
1515
},
1616
"/mcp": {

apps/web/src/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/* ooxml.dev theme - Blue */
44
:root {
55
/* SuperDoc Blue accent */
6-
--color-accent: #1355FF;
7-
--color-accent-hover: #0F44CC;
8-
--color-accent-light: #EFF4FF;
6+
--color-accent: #1355ff;
7+
--color-accent-hover: #0f44cc;
8+
--color-accent-light: #eff4ff;
99

1010
/* Backgrounds */
1111
--color-bg-primary: #ffffff;
@@ -20,7 +20,7 @@
2020
/* Text */
2121
--color-text-primary: #1c1917;
2222
--color-text-secondary: #57534e;
23-
--color-text-muted: #a8a29e;
23+
--color-text-muted: #78716c;
2424

2525
/* Syntax highlighting (for code blocks on dark bg) */
2626
--color-syntax-tag: #22d3ee;

0 commit comments

Comments
 (0)