Skip to content

Commit 5cf2b71

Browse files
nedtwiggclaude
andcommitted
Drop caramel-light variant; darken caramel to #d38d5f
Nav active/hover state now uses --color-caramel directly — one fewer tonal shade to maintain. Also pins caramel to a concrete hex (#d38d5f) since the previous oklch value read too bright. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 64b7ac4 commit 5cf2b71

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

website/src/components/SiteHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ const SiteHeader = forwardRef<HTMLElement, SiteHeaderProps>(
104104
? "opacity-100"
105105
: "opacity-70 hover:opacity-100"
106106
: isActive
107-
? "text-[var(--color-caramel-light)]"
108-
: "hover:text-[var(--color-caramel-light)]"
107+
? "text-[var(--color-caramel)]"
108+
: "hover:text-[var(--color-caramel)]"
109109
}`}
110110
style={
111111
themeAware && isActive

website/src/index.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
--color-bg: oklch(10% 0.01 60);
77
--color-surface: oklch(18% 0.015 60);
88
--color-text: oklch(92% 0.01 60);
9-
--color-caramel: oklch(65% 0.14 60);
10-
--color-caramel-light: oklch(75% 0.12 60);
9+
--color-caramel: #d38d5f;
1110
}
1211

1312
html {

0 commit comments

Comments
 (0)