feat: restyle blog to paper-terminal theme matching openadapt.ai#9
Merged
Conversation
Replace the dark purple theme with the paper-terminal design from the marketing site: warm paper ground (#F2F1EC), off-white panels (#FDFCF9), hairline borders (#DDDCD2), ink text (#23281F / #4C523F), and a single green accent (#3E6B4F) for links, mono eyebrows, and tags. - Light theme only: defaultTheme = light, toggle stays disabled - Headings in Avenir Next stack, body system sans, mono for meta/tags - Code blocks stay dark (#14171A bg, #D9DEE6 text, #86D9A8 green) via class-based Chroma highlighting (markup.highlight.noClasses = false) - Post images get a hairline border so white-background charts read on the paper ground - Recording shortcode, TOC, pagination, footer, share/social restyled - theme-color meta updated to match the paper background All overrides live in assets/css/extended/ — the PaperMod submodule is untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The workflow only triggered on push to main, so PRs had no build check. Add a pull_request trigger for the build job; artifact upload and deploy remain main-push only. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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
Restyles the blog from the dark purple theme to the paper terminal design used on openadapt.ai.
Design tokens
#F2F1EC, panels#FDFCF9, hairlines#DDDCD2#23281F, secondary#4C523F#3E6B4F— links, mono eyebrows, tags#14171A, text#D9DEE6, green#86D9A8Changes
assets/css/extended/openadapt-theme.cssrewritten — all styling via PaperMod's extended-CSS override mechanism (theme submodule untouched)hugo.toml:defaultTheme = "light", toggle stays disabled;markup.highlight.noClasses = falsefor class-based Chroma highlighting;theme-colormeta matches paper bgVerification
hugo --minifybuilds clean; verified CSS variables and.chromaclasses land in the generated HTML (data-theme=light, no toggle button)🤖 Generated with Claude Code