website/src/css/custom.css
2023-02-25 23:04:11 +01:00

30 lines
960 B
CSS

/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #00a440;
--ifm-color-primary-dark: #008031;
--ifm-color-primary-darker: #004d1d;
--ifm-color-primary-darkest: #001a0a;
--ifm-color-primary-light: #00cc4e;
--ifm-color-primary-lighter: #00ff62;
--ifm-color-primary-lightest: #33ff81;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
[data-theme='dark'] {
--ifm-color-primary: #00cc4e;
--ifm-color-primary-dark: #00b344;
--ifm-color-primary-darker: #008031;
--ifm-color-primary-darkest: #004d1d;
--ifm-color-primary-light: #1aff71;
--ifm-color-primary-lighter: #4dff91;
--ifm-color-primary-lightest: #80ffb0;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}