Skip to content

Commit 05ed53e

Browse files
committed
feat: replace blue colors with white opacities in tool cards and coffee banner
- Update Tools component CTA buttons: replace bg-accent/10 and text-accent with bg-white/10 and text-white - Update ContactBanner background: replace from-accent/10 via-accent/5 to-accent/10 with from-white/10 via-white/5 to-white/10 - Update ContactBanner border: replace border-accent/20 with border-white/20 - Update ContactBanner coffee icon: replace text-accent with text-white - Update ContactBanner CTA button: replace bg-accent with bg-white/20 and hover:bg-accent/90 with hover:bg-white/30 - Maintain consistent white opacity theme across all interactive elements - Improve visual consistency with monochromatic white-based design
1 parent a9e5936 commit 05ed53e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/layout/ContactBanner.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ const ContactBanner = () => {
1717
animate={{ opacity: 1, y: 0 }}
1818
exit={{ opacity: 0, y: -20 }}
1919
transition={{ duration: 0.5 }}
20-
className="bg-gradient-to-r from-accent/10 via-accent/5 to-accent/10 border-b border-accent/20"
20+
className="bg-gradient-to-r from-white/10 via-white/5 to-white/10 border-b border-white/20"
2121
>
2222
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
2323
<div className="flex items-center justify-between py-3">
2424
{/* Content */}
2525
<div className="flex items-center space-x-4 flex-1">
2626
<div className="flex items-center space-x-3">
2727
<div className="flex items-center space-x-2">
28-
<Coffee className="w-4 h-4 text-accent" />
28+
<Coffee className="w-4 h-4 text-white" />
2929
<span className="text-sm font-medium text-foreground">
3030
{t('banner.title')}
3131
</span>
@@ -53,7 +53,7 @@ const ContactBanner = () => {
5353
href="mailto:design-team@buzzvil.com?subject=Design Team Meeting Request&body=Hi there!%0A%0AI'd like to schedule a meeting to discuss:%0A%0A[Please describe what you'd like to discuss]%0A%0AAbout me:%0A- Name:%0A- Company/Role:%0A- Brief background:%0A%0AWhen would be a good time for you?%0A%0AThanks!"
5454
whileHover={{ scale: 1.02 }}
5555
whileTap={{ scale: 0.98 }}
56-
className="flex items-center space-x-2 px-4 py-2 bg-accent text-white rounded-lg hover:bg-accent/90 transition-all duration-200 text-sm font-medium shadow-sm"
56+
className="flex items-center space-x-2 px-4 py-2 bg-white/20 text-white rounded-lg hover:bg-white/30 transition-all duration-200 text-sm font-medium shadow-sm"
5757
>
5858
<Mail className="w-4 h-4" />
5959
<span className="hidden sm:inline">{t('banner.cta')}</span>

src/components/sections/Tools.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const Tools = () => {
178178
rel="noopener noreferrer"
179179
whileHover={{ scale: 1.05 }}
180180
whileTap={{ scale: 0.95 }}
181-
className="w-full flex items-center justify-center space-x-2 py-2 px-4 bg-accent/10 text-accent rounded-lg hover:bg-accent/20 transition-all duration-200 font-medium"
181+
className="w-full flex items-center justify-center space-x-2 py-2 px-4 bg-white/10 text-white rounded-lg hover:bg-white/20 transition-all duration-200 font-medium"
182182
>
183183
<ExternalLink className="w-4 h-4 text-white" />
184184
<span>{t('tools.visit')}</span>

0 commit comments

Comments
 (0)