Skip to content

Commit

Permalink
fixe color contrast for sponsor logos in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
thilobillerbeck committed Sep 11, 2023
1 parent f16cf07 commit 7ff6272
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/sections/SponsorSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { data: sponsors } = await getEntry('data', 'sponsors');

<Section>
<SectionHeading id="sponsors">Sponsors</SectionHeading>
<div class="bg-nixblue-200 dark:bg-nixblue-800">
<div class="bg-nixblue-200 dark:bg-nixblue-400">
<SubSectionHeading
extraClasses="p-4 pb-2 block border-b-4 border-b-yellow-300"
>
Expand All @@ -20,7 +20,7 @@ const { data: sponsors } = await getEntry('data', 'sponsors');
<Sponsors level="gold" sponsors={sponsors.gold} client:load />
</ul>
</div>
<div class="bg-nixblue-200 dark:bg-nixblue-800">
<div class="bg-nixblue-200 dark:bg-nixblue-400">
<SubSectionHeading
extraClasses="p-4 pb-2 block border-b-4 border-b-gray-200"
>
Expand All @@ -30,7 +30,7 @@ const { data: sponsors } = await getEntry('data', 'sponsors');
<Sponsors level="silver" sponsors={sponsors.silver} client:load />
</ul>
</div>
<div class="bg-nixblue-200 dark:bg-nixblue-800">
<div class="bg-nixblue-200 dark:bg-nixblue-400">
<SubSectionHeading
extraClasses="p-4 pb-2 block border-b-4 border-b-amber-700"
>
Expand Down

0 comments on commit 7ff6272

Please sign in to comment.