Skip to content

Commit

Permalink
fixing font accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
athammer committed Feb 4, 2024
1 parent 52a281b commit 185cdcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const Link = (props: LinkProps) => {
target="_blank"
class={` ${
props.defaultBlack ? "" : "text-sky-700"
} hover:text-sky-800`}
} hover:text-sky-400`}
>
{props.children}
</a>
Expand All @@ -24,7 +24,7 @@ export const Link = (props: LinkProps) => {
return (
<A
href={props.href}
class={`${props.defaultBlack ? "" : "text-sky-600"} hover:text-sky-800`}
class={`${props.defaultBlack ? "" : "text-sky-700"} hover:text-sky-400`}
>
{props.children}
</A>
Expand Down

0 comments on commit 185cdcc

Please sign in to comment.