Skip to content

Commit 147d5b3

Browse files
updated frontend
1 parent 2df2c46 commit 147d5b3

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/components/projects/Project.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const leftProject = position == "left";
109109
{
110110
tags.map((tag) => (
111111
<div
112-
class="my-1 mr-1 w-fit rounded-full px-3 py-1 transition-colors duration-300 text-white bg-secondary"
112+
class="my-1 mr-1 w-fit rounded-full px-3 py-1 transition-colors duration-300 bg-accent text-black"
113113
>
114114
{tag}
115115
</div>

src/components/projects/VideoProject.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@
127127
>
128128
{#each tags as tag}
129129
<div
130-
class="bg-secondary my-1 mr-1
130+
class="bg-accent my-1 mr-1
131131
w-fit rounded-full px-3
132-
py-1 text-white transition-colors duration-300"
132+
py-1 text-black transition-colors duration-300"
133133
>
134134
{tag}
135135
</div>

src/components/skills/Skill.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { title, tags, primaryColor, className = "" } = Astro.props;
1212
---
1313

1414
<div class="mx-auto w-full">
15-
<Card primaryColor={primaryColor} {className}>
15+
<Card {primaryColor} {className}>
1616
<div class="px-8 py-8">
1717
<div class="flex w-full flex-col">
1818
<h2 class="text-2xl font-bold">{title}</h2>

src/styles/global.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
--color-primary: #fafafa;
55
--color-secondary: #1d1c20;
66
--color-accent: #72ffff;
7+
--color-accent-2: #16ff00;
78
--color-muted-foreground: #ccc;
89

910
--animate-fadeIn: fadeIn 0.5s ease-in-out;

0 commit comments

Comments
 (0)