Skip to content

Commit 830ad33

Browse files
chore: update site theme from blue to red (#FC4850)
- Updated primary gradient and hover colors to #FC4850 - Updated Features section cards, text, and hover borders - Updated Hero/Get Started section buttons to red theme - Updated Navbar background, active links, hover effects, and mobile menu - Updated Footer background and link hover colors - Ensures consistent red branding across the site
1 parent ddcf92b commit 830ad33

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

src/components/common/Footer.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<footer class="py-8 px-6 bg-blue-500/30 backdrop-blur-xl border-t border-white/10 text-white">
1+
<footer class="py-8 px-6 bg-[#FC485033] backdrop-blur-xl border-t border-white/10 text-white">
22
<div class="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-center">
33
<div class="flex space-x-6 mb-4 md:mb-0">
4-
<a href="https://github.com/NitroVim" class="text-gray-300 hover:text-blue-400 transition-colors duration-300 text-lg">GitHub</a>
5-
<a href="https://x.com/usmonovdev" class="text-gray-300 hover:text-blue-400 transition-colors duration-300 text-lg">Twitter</a>
6-
<a href="https://www.linkedin.com/in/usmonovshohruxmirzo" class="text-gray-300 hover:text-blue-400 transition-colors duration-300 text-lg">LinkedIn</a>
4+
<a href="https://github.com/NitroVim" class="text-gray-300 hover:text-[#FC4850] transition-colors duration-300 text-lg">GitHub</a>
5+
<a href="https://x.com/usmonovdev" class="text-gray-300 hover:text-[#FC4850] transition-colors duration-300 text-lg">Twitter</a>
6+
<a href="https://www.linkedin.com/in/usmonovshohruxmirzo" class="text-gray-300 hover:text-[#FC4850] transition-colors duration-300 text-lg">LinkedIn</a>
77
</div>
8-
<p class="text-gray-300 text-base">&copy; 2025 <b>Webbro Software.</b> All rights reserved.</p>
8+
<p class="text-gray-300 text-base">&copy; 2025 <b>Webbro Software.</b> All rights reserved.</p>
99
</div>
1010
</footer>

src/components/common/Navbar.astro

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import { FaBars, FaGithub } from "react-icons/fa"
33
---
44

5-
<nav class="bg-blue-500/30 w-[90%] fixed z-10 top-5 left-1/2 -translate-x-1/2 backdrop-blur-xl border border-white/10 rounded-full">
5+
<nav class="bg-[#FC485033] w-[90%] fixed z-10 top-5 left-1/2 -translate-x-1/2 backdrop-blur-xl border border-white/10 rounded-full">
66
<div class="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
77
<div class="relative flex h-16 items-center justify-between">
88
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
9-
<button type="button" class="relative inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-white/5 hover:text-white focus:outline-2 focus:-outline-offset-1 focus:outline-indigo-500">
9+
<button type="button" class="relative inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-white/5 hover:text-white focus:outline-2 focus:-outline-offset-1 focus:outline-[#FC4850]">
1010
<span class="absolute -inset-0.5"></span>
1111
<span class="sr-only">Open main menu</span>
1212
<FaBars />
@@ -18,31 +18,31 @@ import { FaBars, FaGithub } from "react-icons/fa"
1818
</div>
1919
<div class="hidden sm:ml-6 sm:block">
2020
<div class="flex space-x-4">
21-
<a href="#" aria-current="page" class="block rounded-full bg-blue-950/50 px-3 py-2 text-base font-medium text-white">Docs</a>
22-
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Themes</a>
23-
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Features</a>
24-
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Updates</a>
21+
<a href="#" aria-current="page" class="block rounded-full bg-[#FC485050] px-3 py-2 text-base font-medium text-white">Docs</a>
22+
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Themes</a>
23+
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Features</a>
24+
<a href="#" class="block rounded-full px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Updates</a>
2525
</div>
2626
</div>
2727
</div>
2828
<ul class="list-none absolute inset-y-0 right-0 flex gap-2 items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0">
2929
<li>
30-
<a href="https://github.com/NitroVim/NitroVim" target="_blank" class="relative text-white cursor-pointer hover:text-white text-2xl">
30+
<a href="https://github.com/NitroVim/NitroVim" target="_blank" class="relative text-white cursor-pointer hover:text-[#FC4850] text-2xl">
3131
<span class="absolute -inset-1.5"></span>
3232
<span class="sr-only">Github</span>
3333
<FaGithub />
3434
</a>
3535
</li>
36-
</div>
36+
</ul>
3737
</div>
3838
</div>
3939

4040
<el-disclosure id="mobile-menu" hidden class="block sm:hidden">
4141
<div class="space-y-1 px-2 pt-2 pb-3">
42-
<a href="#" aria-current="page" class="block rounded-md bg-gray-950/50 px-3 py-2 text-base font-medium text-white">Docs</a>
43-
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Themes</a>
44-
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Features</a>
45-
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Updates</a>
42+
<a href="#" aria-current="page" class="block rounded-md bg-[#FC485050] px-3 py-2 text-base font-medium text-white">Docs</a>
43+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Themes</a>
44+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Features</a>
45+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-[#FC485033] hover:text-white">Updates</a>
4646
</div>
4747
</el-disclosure>
4848
</nav>

src/components/sections/Features.astro

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,64 +7,64 @@
77
</p>
88
</div>
99
<div class="grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
10-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
11-
<div class="text-5xl mb-8 text-blue-400">🚀</div>
10+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
11+
<div class="text-5xl mb-8 text-[#FC4850]">🚀</div>
1212
<h3 class="text-3xl font-semibold mb-4 text-white">Preconfigured LSP Support</h3>
1313
<p class="text-gray-300 text-lg">
1414
Seamless support for TypeScript, Python, C#, HTML, CSS, and more.
1515
</p>
1616
</article>
17-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
18-
<div class="text-5xl mb-8 text-blue-400">⚡</div>
17+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
18+
<div class="text-5xl mb-8 text-[#FC4850]">⚡</div>
1919
<h3 class="text-3xl font-semibold mb-4 text-white">Autocompletion & Snippets</h3>
2020
<p class="text-gray-300 text-lg">
2121
Boost productivity with nvim-cmp and friendly-snippets.
2222
</p>
2323
</article>
24-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
25-
<div class="text-5xl mb-8 text-blue-400">🧭</div>
24+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
25+
<div class="text-5xl mb-8 text-[#FC4850]">🧭</div>
2626
<h3 class="text-3xl font-semibold mb-4 text-white">File Explorer</h3>
2727
<p class="text-gray-300 text-lg">
2828
Navigate files effortlessly with integrated nvim-tree.
2929
</p>
3030
</article>
31-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
32-
<div class="text-5xl mb-8 text-blue-400">🔍</div>
31+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
32+
<div class="text-5xl mb-8 text-[#FC4850]">🔍</div>
3333
<h3 class="text-3xl font-semibold mb-4 text-white">Fuzzy Finder</h3>
3434
<p class="text-gray-300 text-lg">
3535
Swiftly locate files and symbols with telescope.nvim.
3636
</p>
3737
</article>
38-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
39-
<div class="text-5xl mb-8 text-blue-400">🖥️</div>
38+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
39+
<div class="text-5xl mb-8 text-[#FC4850]">🖥️</div>
4040
<h3 class="text-3xl font-semibold mb-4 text-white">Beautiful Dashboard</h3>
4141
<p class="text-gray-300 text-lg">
4242
Access projects and recent files with ease.
4343
</p>
4444
</article>
45-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
46-
<div class="text-5xl mb-8 text-blue-400">🎨</div>
45+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
46+
<div class="text-5xl mb-8 text-[#FC4850]">🎨</div>
4747
<h3 class="text-3xl font-semibold mb-4 text-white">20+ Themes</h3>
4848
<p class="text-gray-300 text-lg">
4949
Modern, clean UI with full transparency support.
5050
</p>
5151
</article>
52-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
53-
<div class="text-5xl mb-8 text-blue-400">🔧</div>
52+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
53+
<div class="text-5xl mb-8 text-[#FC4850]">🔧</div>
5454
<h3 class="text-3xl font-semibold mb-4 text-white">Lazy Loading Plugins</h3>
5555
<p class="text-gray-300 text-lg">
5656
Optimize performance with on-demand plugin loading.
5757
</p>
5858
</article>
59-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
60-
<div class="text-5xl mb-8 text-blue-400">📦</div>
59+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
60+
<div class="text-5xl mb-8 text-[#FC4850]">📦</div>
6161
<h3 class="text-3xl font-semibold mb-4 text-white">Git Integration</h3>
6262
<p class="text-gray-300 text-lg">
6363
Streamlined version control with lazygit.
6464
</p>
6565
</article>
66-
<article class="group relative p-10 bg-blue-500/30 backdrop-blur-xl rounded-xl border border-white/10 hover:border-blue-500/50 transition-all duration-300 w-full">
67-
<div class="text-5xl mb-8 text-blue-400">🛠️</div>
66+
<article class="group relative p-10 bg-[#FC485033] backdrop-blur-xl rounded-xl border border-white/10 hover:border-[#FC485050] transition-all duration-300 w-full">
67+
<div class="text-5xl mb-8 text-[#FC4850]">🛠️</div>
6868
<h3 class="text-3xl font-semibold mb-4 text-white">Fully Customizable</h3>
6969
<p class="text-gray-300 text-lg">
7070
Tailor settings, plugins, and keybindings to your needs.

src/components/sections/Home.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div class="mt-8 flex justify-center gap-4">
99
<a href="https://github.com/NitroVim/NitroVim"
1010
target="_blank"
11-
class="bg-white text-[#0051b3] px-6 py-3 rounded-lg font-medium">
11+
class="bg-white text-[#FC4850] px-6 py-3 rounded-lg font-medium hover:bg-[#FC485033] transition-colors">
1212
Get started
1313
</a>
1414
<a href="https://github.com/NitroVim/NitroVim" target="_blank" class="text-white px-6 py-3 font-medium hover:underline">Learn more →</a>

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Footer from '../components/common/Footer.astro';
99

1010
<Layout>
1111

12-
<main class="bg-linear-135 from-[#0051b3] to-[#003580]">
12+
<main class="bg-linear-135 from-[#FC4850] to-[#C5383F]">
1313
<Navbar />
1414
<Home />
1515
<Features />

0 commit comments

Comments
 (0)