Skip to content

Commit

Permalink
Change link colors for aid in readability in dark mode. (#4501)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaloney-sf authored Nov 14, 2024
1 parent 0bb1bce commit eb31402
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
--ifm-color-primary-light: #24296a;
--ifm-color-primary-lighter: #262b6e;
--ifm-color-primary-lightest: #2b307d;
--color-link: blue;
--color-link-hover: blue;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
Expand All @@ -34,6 +36,8 @@
--ifm-color-primary-light: #fdbe30;
--ifm-color-primary-lighter: #fdc23e;
--ifm-color-primary-lightest: #fecf67;
--color-link: #fdb515;
--color-link-hover: #f5a902;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

Expand All @@ -47,10 +51,11 @@

/* Make links more obvious */
a {
color: blue;
color: var(--color-link);
}

a:hover {
color: blue;
color: var(--color-link-hover);
}

/* Styling for the result of TOCInline
Expand Down

0 comments on commit eb31402

Please sign in to comment.