Skip to content

Commit 26bc07e

Browse files
author
OfficialDiLi
committed
updated style
1 parent 7f3a971 commit 26bc07e

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

src/layouts/Layout.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@ const { title, description = "Aspiring Computational Researcher | AI Enthusiast
6969
<a href="/#about" class="text-offwhite hover:text-golden transition-colors font-semibold text-sm lg:text-base">
7070
About
7171
</a>
72-
<a href="/techstack" class="text-offwhite hover:text-golden transition-colors font-semibold text-sm lg:text-base">
72+
<a href="/techstack" class="text-offwhite hover:text-golden-dark transition-colors font-semibold text-sm lg:text-base">
7373
Tech Stack
7474
</a>
75-
<a href="/#projects" class="text-offwhite hover:text-golden transition-colors font-semibold text-sm lg:text-base">
75+
<a href="/#projects" class="text-offwhite hover:text-golden-dark transition-colors font-semibold text-sm lg:text-base">
7676
Projects
7777
</a>
78-
<a href="/#contact" class="text-offwhite hover:text-golden transition-colors font-semibold text-sm lg:text-base">
78+
<a href="/#contact" class="text-offwhite hover:text-golden-dark transition-colors font-semibold text-sm lg:text-base">
7979
Contact
8080
</a>
8181
<a href="https://github.com/OfficialDiLi" target="_blank" rel="noopener noreferrer"
82-
class="px-3 lg:px-4 py-2 bg-golden text-emerald-900 rounded-lg hover:bg-golden-dark transition-colors font-semibold text-sm lg:text-base">
82+
class="px-3 lg:px-4 py-2 bg-golden text-emerald-900 rounded-lg hover:bg-golden-dark transition-colors font-semibold text-sm lg:text-base hover:text-white">
8383
GitHub
8484
</a>
8585
</div>

src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import Layout from '../layouts/Layout.astro';
2525
<div class="flex flex-wrap justify-center gap-3 sm:gap-4 px-4">
2626
<a href="#vision"
2727
class="px-6 sm:px-8 py-2 sm:py-3 bg-emerald-900 text-offwhite rounded-lg hover:bg-golden hover:text-emerald-900 transition-all duration-300 font-semibold text-sm sm:text-base">
28-
DiLi Vision
28+
Vision
2929
</a>
3030
<a href="#projects"
3131
class="px-6 sm:px-8 py-2 sm:py-3 border-2 border-golden text-golden font-semibold rounded-lg hover:bg-golden hover:text-emerald-900 transition-all duration-300 text-sm sm:text-base">
@@ -38,11 +38,11 @@ import Layout from '../layouts/Layout.astro';
3838
</div>
3939

4040
<!-- Scroll Indicator -->
41-
<div class="mt-12 sm:mt-16 text-center animate-bounce">
41+
<!-- <div class="mt-12 sm:mt-16 text-center animate-bounce">
4242
<svg class="w-6 h-6 sm:w-8 sm:h-8 mx-auto text-emerald-900" fill="none" stroke="currentColor" viewBox="0 0 24 24">
4343
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
4444
</svg>
45-
</div>
45+
</div> -->
4646
</div>
4747
</section>
4848

tailwind.config.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ export default {
77
colors: {
88
// Luxury Emerald & Gold Palette
99
emerald: {
10-
900: '#022c22', // Deep Background
10+
900: '#0A5D31', // Deep Background
1111
700: '#064e3b', // Hover state
1212
500: '#10b981', // Main Accent
1313
},
1414
offwhite: '#f9f7f1', // Soft Background
1515
golden: {
1616
DEFAULT: '#c8b273', // Primary Gold
17-
dark: '#CC9E1D', // Hover Gold
17+
dark: '#E3AD00', // Hover Gold
18+
1819
}
1920
},
2021
},

0 commit comments

Comments
 (0)