Skip to content

Commit ad2e4e8

Browse files
committed
feat: navbar readable again
1 parent 151d446 commit ad2e4e8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Navbar.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ const Navbar = ({
2727

2828
return (
2929
<header
30-
className={`backdrop-blur-sm sticky top-0 z-30 transition-colors border-b ${isScrolled ? 'border-gray-700/50' : 'border-transparent'} relative`}
30+
className={`bg-black/20 backdrop-blur-lg sticky top-0 z-30 transition-colors border-b ${isScrolled ? 'border-gray-700/50' : 'border-transparent'} relative`}
3131
>
3232
<button
3333
onClick={toggleSidebar}
34-
className="absolute top-1/2 -translate-y-1/2 left-4 text-red-500 focus:outline-none hidden md:block"
34+
className="absolute top-1/2 -translate-y-1/2 left-4 text-red-600 focus:outline-none hidden md:block"
3535
>
3636
<SidebarIcon size={24} />
3737
</button>
@@ -46,7 +46,7 @@ const Navbar = ({
4646
<Link to="/" className="flex items-center space-x-2">
4747
<Fez />
4848
<span className="text-2xl tracking-tight font-mono">
49-
fez<span className="text-primary-400">codex</span>
49+
fez<span className="text-red-600">codex</span>
5050
</span>
5151
</Link>
5252
</div>
@@ -55,7 +55,7 @@ const Navbar = ({
5555
<Link to="/" className="flex items-center space-x-2">
5656
<Fez />
5757
<span className="text-2xl tracking-tight font-mono">
58-
fez<span className="text-primary-400">codex</span>
58+
fez<span className="text-red-600">codex</span>
5959
</span>
6060
</Link>
6161
)}
@@ -66,21 +66,21 @@ const Navbar = ({
6666
className="text-lg font-normal tracking-tight"
6767
style={{ fontFamily: "'Arvo', 'Playfair Display', serif" }}
6868
>
69-
The Fez of <span className="text-primary-400">Code</span>
69+
The Fez of <span className="text-red-600">Code</span>
7070
</span>
7171
</div>
7272
)}
7373
<div className="flex items-center space-x-3 md:space-x-6">
7474
<Link
7575
to="/about"
76-
className="flex items-center space-x-1 text-gray-300 hover:text-white hover:bg-gray-800 px-2 py-2 rounded-md transition-colors"
76+
className="flex items-center space-x-1 text-white hover:bg-red-800 px-2 py-2 rounded-md transition-colors"
7777
>
7878
<UserIcon size={24} />
7979
<span className="md:hidden lg:inline">About</span>
8080
</Link>
8181
<button
8282
onClick={toggleSearch}
83-
className="text-gray-300 hover:text-white hover:bg-gray-800 px-2 py-2 rounded-md transition-colors"
83+
className="text-white hover:bg-red-800 px-2 py-2 rounded-md transition-colors"
8484
aria-label="Toggle Search"
8585
>
8686
<MagnifyingGlassIcon

0 commit comments

Comments
 (0)