From a47db9ea73751f30a30dfa41407926291d640468 Mon Sep 17 00:00:00 2001 From: Avijit Ghosh Date: Sat, 13 Jun 2026 16:44:34 -0400 Subject: [PATCH] docs: recolor Just the Docs accent to EvalEval blue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- _config.yml | 2 +- docs/_sass/color_schemes/evaleval.scss | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 docs/_sass/color_schemes/evaleval.scss diff --git a/_config.yml b/_config.yml index bcb1df482..c650b6980 100644 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,7 @@ title: Every Eval Ever description: Documentation for the Every Eval Ever schema, CLI, and converters theme: just-the-docs -color_scheme: light +color_scheme: evaleval source: docs diff --git a/docs/_sass/color_schemes/evaleval.scss b/docs/_sass/color_schemes/evaleval.scss new file mode 100644 index 000000000..14034f024 --- /dev/null +++ b/docs/_sass/color_schemes/evaleval.scss @@ -0,0 +1,11 @@ +// EvalEval color scheme — inherits the Just the Docs "light" scheme and +// recolors the purple accents to EvalEval blue (#3b82f6), matching the +// accent used on evalevalai.com and the Every Eval Ever project page. +// +// Imported after color_schemes/light, so these non-!default assignments +// override the light scheme's $purple-000 / $purple-100 defaults. + +$blue-evaleval: #3b82f6; + +$link-color: $blue-evaleval; +$btn-primary-color: $blue-evaleval;