Skip to content

Commit

Permalink
Fixing theme
Browse files Browse the repository at this point in the history
  • Loading branch information
vishr committed Jul 10, 2023
1 parent 8e0aa7f commit 25d11b5
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,26 @@

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #007a92;
--ifm-color-primary-dark: #006e83;
--ifm-color-primary-darker: #00687c;
--ifm-color-primary-darkest: #005566;
--ifm-color-primary-light: #0086a1;
--ifm-color-primary-lighter: #008ca8;
--ifm-color-primary-lightest: #009fbe;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #00afd1;
--ifm-color-primary-dark: #009dbc;
--ifm-color-primary-darker: #0095b2;
--ifm-color-primary-darkest: #007a92;
--ifm-color-primary-light: #00c0e6;
--ifm-color-primary-lighter: #00c9f0;
--ifm-color-primary-lightest: #11d8ff;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #11d8ff;
--ifm-color-primary-dark: #00cdf5;
--ifm-color-primary-darker: #00c1e7;
--ifm-color-primary-darkest: #009fbe;
--ifm-color-primary-light: #2cdcff;
--ifm-color-primary-lighter: #3adfff;
--ifm-color-primary-lightest: #63e5ff;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

0 comments on commit 25d11b5

Please sign in to comment.