Recolor docs accent to EvalEval blue#186
Merged
Merged
Conversation
The docs site shipped with Just the Docs' default "light" scheme, whose links, active sidebar nav, and primary buttons use purple (#7253ed). Add a custom "evaleval" color scheme that overrides $link-color and $btn-primary-color to the EvalEval accent blue (#3b82f6) — matching evalevalai.com and the Every Eval Ever project page — and switch color_scheme in _config.yml to use it. Co-Authored-By: Claude Opus 4.8 (1M context) <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.
What
The Every Eval Ever docs site (https://evalevalai.com/every_eval_ever/) shipped with Just the Docs' default light color scheme, whose links, active sidebar nav item, and primary buttons render in purple (
#7253ed).This switches the accent to EvalEval blue (
#3b82f6) — the accent used on evalevalai.com and the Every Eval Ever project page.How
docs/_sass/color_schemes/evaleval.scssthat inherits the light scheme and overrides$link-colorand$btn-primary-colorto#3b82f6.color_scheme: evalevalin_config.yml.Just the Docs imports a custom scheme after
color_schemes/lightand beforemodules, so the non-!defaultoverrides take effect across links, sidebar/active nav, and primary buttons.Verification
bundle exec jekyll buildsucceeds. In the compiledjust-the-docs-default.css(the stylesheet the pages load), the accent now resolves to#3b82f6everywhere it previously used purple. The only remaining#7253edreferences are the unused.text-purple-000/.bg-purple-000palette utility classes, which the docs don't use.🤖 Generated with Claude Code