From 674ef86a4ba23f3b0183fb2565b4325bbd9c30cf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 23 Nov 2025 22:59:44 -0500 Subject: [PATCH] Polish share buttons to match Tufte aesthetic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove bright colored backgrounds from share buttons: - Removed Twitter blue (#1DA1F2) from Tweet button - Removed Facebook blue (#4267B2) from Share button - Simplified "copied" state to subtle border/text color change All buttons now use elegant default styling with subtle borders and proper hover states. Icons (📋, 🐦, f) provide visual differentiation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/verse.html | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/kjvstudy_org/templates/verse.html b/kjvstudy_org/templates/verse.html index 35bba7c..1e13b14 100644 --- a/kjvstudy_org/templates/verse.html +++ b/kjvstudy_org/templates/verse.html @@ -95,32 +95,9 @@ color: var(--link-color); } -.share-btn.twitter { - background: #1DA1F2; - color: white; - border-color: #1DA1F2; -} - -.share-btn.twitter:hover { - background: #0d8bd9; - border-color: #0d8bd9; -} - -.share-btn.facebook { - background: #4267B2; - color: white; - border-color: #4267B2; -} - -.share-btn.facebook:hover { - background: #365899; - border-color: #365899; -} - .share-btn.copied { - background: #28a745; - color: white; - border-color: #28a745; + border-color: var(--link-color); + color: var(--link-color); } /* Cross-reference tooltip styles */