31 lines
1.1 KiB
CSS
31 lines
1.1 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: #541d54;
|
|
--ifm-color-primary-dark: #4c1a4c;
|
|
--ifm-color-primary-darker: #471947;
|
|
--ifm-color-primary-darkest: #3b143b;
|
|
--ifm-color-primary-light: #3b143b;
|
|
--ifm-color-primary-lighter: #612161;
|
|
--ifm-color-primary-lightest: #6d266d;
|
|
--ifm-code-font-size: 95%;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
--ifm-footer-link-hover-color: #b07ab0;
|
|
}
|
|
|
|
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
[data-theme='dark'] {
|
|
--ifm-color-primary: #b07ab0;
|
|
--ifm-color-primary-dark: #a567a5;
|
|
--ifm-color-primary-darker: #9f5e9f;
|
|
--ifm-color-primary-darkest: #834e83;
|
|
--ifm-color-primary-light: #bb8dbb;
|
|
--ifm-color-primary-lighter: #c196c1;
|
|
--ifm-color-primary-lightest: #d1b2d1;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
} |