Skip to content

Commit

Permalink
style: increase about badges color contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-splitt committed Mar 9, 2024
1 parent 1bd7eae commit d80f0b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/about-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const AboutSection: React.FC = () => {
{perks.map((perk) => (
<div
key={perk.name}
className="flex flex-row items-center whitespace-nowrap gap-1 text-sm text-gray-500 bg-gray-100 rounded-2xl px-3 py-1.5"
className="flex flex-row items-center whitespace-nowrap gap-1 text-sm text-[#515151] bg-gray-100 rounded-2xl px-3 py-1.5"
>
<span>{perk.emoji}</span>
<span>{perk.name}</span>
Expand All @@ -81,7 +81,7 @@ export const AboutSection: React.FC = () => {
{perks.map((perk) => (
<div
key={perk.name}
className="flex flex-row items-center whitespace-nowrap gap-1 text-sm text-gray-500 bg-gray-100 rounded-2xl px-3 py-1.5"
className="flex flex-row items-center whitespace-nowrap gap-1 text-sm text-[#515151] bg-gray-100 rounded-2xl px-3 py-1.5"
>
<span>{perk.emoji}</span>
<span>{perk.name}</span>
Expand Down

0 comments on commit d80f0b7

Please sign in to comment.