slice 4: accent palette refinement — blue → teal

Replace the four accent-family hex codes site-wide with the teal palette
(keeps the dark theme; only swaps the accent family, not the dark base):

  #3b82f6 (accent primary CTA)   → #5B7C8D  (teal)        [839×]
  #2563eb (accent-dark / hover)  → #4A6473  (darker teal) [44×]
  #60a5fa (info link, lighter)   → #8FB0C3  (mid teal)    [68×]
  #1e3a5f (accent-muted bg)      → #2F4F5F  (navy)        [44×]

tailwind.config.js tokens updated to match (accent/accent-dark/accent-muted).
Sweep also covers tailwind.css. 108 files touched. The dark base (#0d0d0d,
#111, #161616, #1a1a1a etc.) is intentionally untouched.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 23:33:04 +00:00
parent f6fa7570c4
commit 52fe7bceb6
109 changed files with 937 additions and 937 deletions

View File

@@ -75,7 +75,7 @@ export default function Footer() {
<div className="border-t border-[#222] pt-8 pb-6 grid grid-cols-2 md:grid-cols-4 gap-8">
{footerColumns?.map((col) =>
<div key={col?.heading}>
<h4 className="font-body font-bold text-xs text-[#3b82f6] uppercase tracking-widest mb-4 pb-2 border-b border-[#3b82f6]/20">
<h4 className="font-body font-bold text-xs text-[#5B7C8D] uppercase tracking-widest mb-4 pb-2 border-b border-[#5B7C8D]/20">
{col?.heading}
</h4>
<ul className="space-y-2">
@@ -86,13 +86,13 @@ export default function Footer() {
href={link?.href}
target="_blank"
rel="noopener noreferrer"
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
className="footer-link font-body text-sm text-[#777777] hover:text-[#5B7C8D] transition-colors leading-relaxed inline-block">
{link?.label}
</a> :
<Link
href={link?.href}
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
className="footer-link font-body text-sm text-[#777777] hover:text-[#5B7C8D] transition-colors leading-relaxed inline-block">
{link?.label}
</Link>
}
@@ -118,26 +118,26 @@ export default function Footer() {
<div className="flex items-center gap-4">
<a href="https://linkedin.com/company/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="BroadcastBeat on LinkedIn"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
className="text-[#555] hover:text-[#5B7C8D] transition-colors social-icon">
<LinkedInIcon size={17} />
</a>
<a href="https://instagram.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="BroadcastBeat on Instagram"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
className="text-[#555] hover:text-[#5B7C8D] transition-colors social-icon">
<InstagramIcon size={17} />
</a>
<a href="https://twitter.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="BroadcastBeat on Twitter/X"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
className="text-[#555] hover:text-[#5B7C8D] transition-colors social-icon">
<TwitterXIcon size={17} />
</a>
<a href="https://facebook.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="BroadcastBeat on Facebook"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
className="text-[#555] hover:text-[#5B7C8D] transition-colors social-icon">
<FacebookIcon size={17} />
</a>
</div>
<div className="flex items-center gap-4 text-xs font-body text-[#555]">
<Link href="/privacy" className="hover:text-[#3b82f6] transition-colors">Privacy Policy</Link>
<Link href="/terms" className="hover:text-[#3b82f6] transition-colors">Terms of Service</Link>
<Link href="/privacy" className="hover:text-[#5B7C8D] transition-colors">Privacy Policy</Link>
<Link href="/terms" className="hover:text-[#5B7C8D] transition-colors">Terms of Service</Link>
<span>© 2026 Relevant Media Properties. All rights reserved.</span>
</div>
</div>