31 lines
1.0 KiB
CSS
31 lines
1.0 KiB
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: #84262B;
|
|
--ifm-color-primary-dark: #6b1d21;
|
|
--ifm-color-primary-darker: #631a1e;
|
|
--ifm-color-primary-darkest: #421113;
|
|
--ifm-color-primary-light: #eba07f;
|
|
--ifm-color-primary-lighter: #e9b7a2;
|
|
--ifm-color-primary-lightest: #EDD1C5;
|
|
--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: #ce3b42;
|
|
--ifm-color-primary-dark: #bb353b;
|
|
--ifm-color-primary-darker: #9b2a2f;
|
|
--ifm-color-primary-darkest: #742024;
|
|
--ifm-color-primary-light: #eba07f;
|
|
--ifm-color-primary-lighter: #e9b7a2;
|
|
--ifm-color-primary-lightest: #EDD1C5;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
}
|