Skip to content

Commit 936c8a3

Browse files
committed
chore: changed color palette
1 parent 3d2ab4f commit 936c8a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Experiences.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function Experiences({ arr }: ExperiencesProps) {
1515
{experiences && experiences.length > 0 ? (
1616
<div className="relative space-y-6">
1717
<div
18-
className="z-1 absolute md:left-20 top-0 bottom-0 w-1 md:bg-emerald-500 md:dark:bg-emerald-200 bg-pink-500 dark:bg-red-300 rounded-full"
18+
className="z-1 absolute md:left-20 top-0 bottom-0 w-1 bg-pink-500 rounded-full"
1919
></div>
2020
{experiences.map((experience, index) => (
2121
<ExperienceTile key={index} {...experience} />

src/components/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Navbar = () => {
88
{/* <div className="flex items-center justify-between container mx-auto text-xl"></div> */}
99
<div className="h-0.5 overflow-hidden">
1010
<span
11-
className="absolute bg-midnight-blue-600 dark:bg-midnight-blue-400 h-full w-full top-0 bottom-0"
11+
className="absolute bg-emerald-600 dark:bg-emerald-400 h-full w-full top-0 bottom-0"
1212
style={{ transform: `translateX(${completion - 100}%)` }}
1313
/>
1414
</div>

0 commit comments

Comments
 (0)