mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 13:19:16 +00:00
38 lines
1.2 KiB
CSS
38 lines
1.2 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.
|
|
*/
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap');
|
|
|
|
/* You can override the default Infima variables here. */
|
|
:root {
|
|
--ifm-color-primary: #fcc50b;
|
|
--ifm-color-primary-dark: #fcc50b;
|
|
--ifm-color-primary-darker: #fcc50b;
|
|
--ifm-color-primary-darkest: #fcc50b;
|
|
--ifm-color-primary-light: #fcc50b;
|
|
--ifm-color-primary-lighter: #fcc50b;
|
|
--ifm-color-primary-lightest: #fcc50b;
|
|
--ifm-code-font-size: 95%;
|
|
--ifm-heading-font-family: 'Source Sans 3', sans-serif;
|
|
--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: #fcc50b;
|
|
--ifm-color-primary-dark: #fcc50b;
|
|
--ifm-color-primary-darker: #fcc50b;
|
|
--ifm-color-primary-darkest: #fcc50b;
|
|
--ifm-color-primary-light: #fcc50b;
|
|
--ifm-color-primary-lighter: #fcc50b;
|
|
--ifm-color-primary-lightest: #fcc50b;
|
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Source Sans 3', sans-serif;
|
|
}
|