mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-21 12:20:08 +08:00
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: #307bf3;
|
|
--ifm-color-primary-dark: #0d5ddf;
|
|
--ifm-color-primary-darker: #0d5ddf;
|
|
--ifm-color-primary-darkest: #0944a1;
|
|
--ifm-color-primary-light: #307bf3;
|
|
--ifm-color-primary-lighter: #307bf3;
|
|
--ifm-color-primary-lightest: #307bf3;
|
|
--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: #307bf3;
|
|
--ifm-color-primary-dark: #0d5ddf;
|
|
--ifm-color-primary-darker: #0d5ddf;
|
|
--ifm-color-primary-darkest: #0944a1;
|
|
--ifm-color-primary-light: #307bf3;
|
|
--ifm-color-primary-lighter: #307bf3;
|
|
--ifm-color-primary-lightest: #307bf3;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
}
|