Skip to content

Commit 340a4b2

Browse files
committed
fix: restore coral accent color with AA-accessible shade
Revert accent from SuperDoc Blue (#1355FF) back to coral (#c1463a), preserving the site's original identity. The new shade passes WCAG AA on all theme backgrounds (4.99:1 on white, 4.58:1 on tertiary). Update brand.md and webmanifest theme_color accordingly.
1 parent 3431156 commit 340a4b2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
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": "#1355FF",
9+
"theme_color": "#c1463a",
1010
"background_color": "#ffffff",
1111
"display": "standalone"
1212
}

apps/web/src/index.css

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

3-
/* ooxml.dev theme - Blue */
3+
/* ooxml.dev theme - Coral */
44
:root {
5-
/* SuperDoc Blue accent */
6-
--color-accent: #1355ff;
7-
--color-accent-hover: #0f44cc;
8-
--color-accent-light: #eff4ff;
5+
/* Coral accent (AA-accessible on all theme backgrounds) */
6+
--color-accent: #c1463a;
7+
--color-accent-hover: #a33b31;
8+
--color-accent-light: #fef2f0;
99

1010
/* Backgrounds */
1111
--color-bg-primary: #ffffff;
@@ -63,8 +63,8 @@ body {
6363
}
6464

6565
.note-info {
66-
background-color: #eff4ff;
67-
border-color: #bfdbfe;
66+
background-color: #fef2f0;
67+
border-color: #fecaca;
6868
}
6969

7070
.note-tip {

brand.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ _Use on homepage hero, social bios, link previews._
206206

207207
### Colors
208208

209-
ooxml.dev inherits SuperDoc's color system as a sub-brand, with adjustments for a documentation-first context.
209+
ooxml.dev uses its own coral accent, distinct from SuperDoc's blue, to establish an independent identity as a reference site.
210210

211-
**Primary — SuperDoc Blue**
212-
`#1355FF` — Links, interactive elements, active states. Connects ooxml.dev visually to SuperDoc.
211+
**Primary — Coral**
212+
`#C1463A` — Links, buttons, interactive elements, active states. An accessible shade of the original coral (4.99:1 on white, 4.58:1 on tertiary backgrounds).
213213

214214
**Accent — Spec Gold**
215215
`#F59E0B` (amber-500) — Implementation notes, callout badges, warning states. Signals "attention — this is the insight you came for."
@@ -219,7 +219,7 @@ ooxml.dev inherits SuperDoc's color system as a sub-brand, with adjustments for
219219
|---|---|---|
220220
| Critical note | `#ED4337` | Critical implementation notes — things that break |
221221
| Warning note | `#F59E0B` | Non-obvious behavior, surprising gotchas |
222-
| Info note | `#1355FF` | Context and background |
222+
| Info note | `#C1463A` | Context and background |
223223
| Tip note | `#00853D` | Helpful shortcuts and techniques |
224224
| Text primary | `#212121` | Headings, body copy |
225225
| Text secondary | `#666666` | Supporting text, metadata |

0 commit comments

Comments
 (0)