Update text colors in About, Experience, and Hero components for improved readability

This commit is contained in:
2025-10-31 16:25:57 +00:00
parent 789ab25c72
commit 878c4f5b82
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -6,12 +6,12 @@ const { aboutMe } = Astro.props;
---
<Section id="about-me">
<h3 class="text-3xl font-bold text-white text-center mb-10">
<h3 class="text-3xl font-bold text-gray-100 text-center mb-10">
Acerca de mí
</h3>
{aboutMe.split("\n").map((line: string) => (
line.trim() !== "" ? (
<p class="text-gray-400 mb-4 text-wrap">{line}</p>
<p class="text-gray-300 mb-4 text-wrap">{line}</p>
) : null
))}
</Section>
+3 -3
View File
@@ -28,13 +28,13 @@ interface ExperienceProps {
<span class="text-sm text-sky-400 mb-4 block">
{exp.duration}
</span>
<h4 class="text-xl font-bold text-white mb-2">
<h4 class="text-xl font-bold text-gray-200 mb-2">
{exp.role}
</h4>
<h5 class="text-md font-medium text-gray-500 mb-4">
<h5 class="text-md font-medium text-gray-300 mb-4">
{exp.company}
</h5>
<p class="text-gray-400 text-wrap">{exp.description}</p>
<p class="text-gray-300 text-wrap">{exp.description}</p>
</div>
</div>
</div>
+1 -1
View File
@@ -24,7 +24,7 @@ const { name, title, bio, github, linkedin } = Astro.props;
>
{title}
</h2>
<p class="text-lg text-gray-400 max-w-full text-wrap">{bio}</p>
<p class="text-lg text-gray-300 max-w-full text-wrap">{bio}</p>
</div>
</div>
<div class="mt-8 flex space-x-6 items-center justify-center max-w-4xl w-full">