-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcustom.css
More file actions
35 lines (32 loc) · 1.23 KB
/
custom.css
File metadata and controls
35 lines (32 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* 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: #d08e0d; /* Codeflash yellow */
--ifm-color-primary-dark: #FFA000;
--ifm-color-primary-darker: #FF8F00;
--ifm-color-primary-darkest: #FF6F00;
--ifm-color-primary-light: #FFD54F;
--ifm-color-primary-lighter: #FFE082;
--ifm-color-primary-lightest: #FFECB3;
--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: #FFD227; /* Codeflash yellow */
--ifm-color-primary-dark: #FFA000;
--ifm-color-primary-darker: #FF8F00;
--ifm-color-primary-darkest: #FF6F00;
--ifm-color-primary-light: #FFD54F;
--ifm-color-primary-lighter: #FFE082;
--ifm-color-primary-lightest: #FFECB3;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
[data-theme='dark'] {
/* Attempt to override Algolia's own CSS variables for the selected item's background */
--docsearch-highlight-color: #d08e0d !important;
}