mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-07-19 10:54:13 -04: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: #2d6fc5;
|
|
--ifm-color-primary-dark: #294e78;
|
|
--ifm-color-primary-darker: #274d71;
|
|
--ifm-color-primary-darkest: #20355d;
|
|
--ifm-color-primary-light: #335c92;
|
|
--ifm-color-primary-lighter: #355899;
|
|
--ifm-color-primary-lightest: #3c60ad;
|
|
--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: #c26e25;
|
|
--ifm-color-primary-dark: #af7621;
|
|
--ifm-color-primary-darker: #a5641f;
|
|
--ifm-color-primary-darkest: #885a1a;
|
|
--ifm-color-primary-light: #d58229;
|
|
--ifm-color-primary-lighter: #d88232;
|
|
--ifm-color-primary-lightest: #dd964f;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
}
|