Conversation
… Pomeranian orange accent - Complete CSS rewrite with CSS custom properties for light/dark theming - Dark mode toggle (sun/moon) in nav with localStorage persistence - Anti-flash inline script prevents white flash on dark mode reload - Theme-aware header using neutral dark bg in both modes - Site title supports stacked name + tagline on one line with bullet separator - Logo image override via site.logo config field - Post list: title + date on same flex row (space-between) - Footer two-column layout (copyright left, Powered by right) - Code blocks match header color, Pygments wrapper override to eliminate frame - Google Fonts (Roboto) loaded via preconnect - Responsive: clean wrapping on iPad and phone - Add tagline and logo fields to SiteConfig model Closes #67 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR refreshes the bundled default theme to a cleaner, minimal look with dark-mode support + a manual toggle, and aligns the default Pygments highlighting to a GitHub Dark palette so the default theme can serve a matching static pygments.css.
Changes:
- Redesign
themes/default/static/style.csswith new color tokens, layout tweaks, and dark-mode variables (system + manual override). - Add a theme toggle UI + persisted theme selection in
themes/default/base.html, plus support for optionalsite.taglineandsite.logo. - Switch the default theme’s Pygments style from
monokaitogithub-darkacross config defaults and theme CSS resolution.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| themes/default/static/style.css | New “clean minimal” styling, updated variables, dark-mode tokens, and new nav/footer/post-list styling. |
| themes/default/static/pygments.css | Replace Monokai CSS with a GitHub Dark-style Pygments stylesheet. |
| themes/default/index.html | Adjust post list markup to support a title/date header row layout. |
| themes/default/base.html | Add Google Font, optional logo/tagline, and a JS-based dark-mode toggle + persistence. |
| tests/test_pygments_css.py | Update expectation for default theme static Pygments CSS style. |
| src/squishmark/services/theme/engine.py | Change default theme’s declared Pygments default to github-dark. |
| src/squishmark/services/markdown.py | Change fallback/default Pygments style to github-dark. |
| src/squishmark/models/content.py | Add site.tagline / site.logo; change default theme.pygments_style to github-dark. |
You can also share your feedback on Copilot code review. Take the survey.
…value Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…utton Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…/catch Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… theme toggle Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ring Co-Authored-By: Claude Sonnet 4.6 <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
Name · taglineon one line with bullet separator; logo image override supportedSiteConfigmodel extended withtaglineandlogofieldsCloses #67
Test plan
site.taglineis set in config.ymlsite.logois set🤖 Generated with Claude Code