From 8b9aeb9429b78c991490adf76d4b6c4f4a25acd2 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 09:31:38 +0000 Subject: [PATCH] style: improve 'Skip to main content' link accessibility and branding - Update .skip-link to use Dracula Purple (#bd93f9) background - Set text color to #111 (bold) for high contrast (7.6:1 ratio) - Add a prominent 3px inset outline on focus - Maintain brand alignment with existing theme tokens Co-authored-by: christopherfoxjr <213370400+christopherfoxjr@users.noreply.github.com> --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 9ae0ea5..76cc63b 100644 --- a/index.html +++ b/index.html @@ -56,10 +56,11 @@ .skip-link { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); - background: #111; color: #fff !important; padding: 8px 16px; + background: #bd93f9; color: #111 !important; padding: 8px 16px; z-index: 1000; transition: top 0.2s; border-radius: 0 0 10px 10px; + font-weight: 700; } - .skip-link:focus { top: 0; } + .skip-link:focus { top: 0; outline: 3px solid #bd93f9; outline-offset: -3px; } .w { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }