Mute light theme, default to dark mode, tidy deps/config#56
Merged
Conversation
Latte's default accent colors are too vivid/high-contrast for a light background; desaturate and darken the light palette so it reads calmer. Also default new visitors to dark mode instead of following prefers-color-scheme. Fixes a related bug found along the way: shikiConfig.defaultColor is false (dual light/dark theme), which emits --shiki-light/--shiki-dark per-token variables, but nothing consumed them, so code blocks rendered as flat, uncolored text in both themes.
Widen-then-narrow: renovate/typescript-7.x only loosened the peer range to allow v7 alongside 5.x/6.x. Tighten it to just ^7.0.0 and add typescript as an explicit devDependency so it actually resolves to v7 instead of sitting on the old 5.9.3 lockfile entry.
AGENTS.md and .agents/ are now the source of truth for agent instructions and skills, with CLAUDE.md and .claude symlinked onto them so Claude Code keeps working without duplicating config. Previously CLAUDE.md and .claude/ (aside from settings.local.json) weren't tracked at all.
|
🚀 Preview deployed: https://bb195068-wibrow-dev.sam-wibrow.workers.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
prefers-color-scheme.shikiConfig.defaultColor: falseemits--shiki-light/--shiki-darkper-token variables that nothing was consuming, so code blocks rendered as flat, uncolored text in both themes.typescriptto^7.0.0(was a loose^5.9.3 || ^6.0.0 || ^7.0.0peer range from Renovate) and add it as an explicit devDependency so it actually resolves to v7 instead of sitting on the old 5.9.3 lockfile entry.AGENTS.md/.agents/layout:AGENTS.mdand.agents/are now the tracked source of truth, withCLAUDE.mdand.claudesymlinked onto them..agents/settings.local.jsonstays gitignored.Test plan
bun run buildsucceedsgetComputedStylein a live preview that light mode uses the new muted palette (contrast: body text 8.1:1, links 4.5:1, headings 3.6:1) and dark mode is unchanged