-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcustom.css
More file actions
30 lines (28 loc) · 1.01 KB
/
custom.css
File metadata and controls
30 lines (28 loc) · 1.01 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
/**
* 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: #3c916f;
--ifm-color-primary-dark: #338564;
--ifm-color-primary-darker: #2a7658;
--ifm-color-primary-darkest: #297355;
--ifm-color-primary-light: #41a67d;
--ifm-color-primary-lighter: #43a87f;
--ifm-color-primary-lightest: #45c08f;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgb(213, 236, 230);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #52c396;
--ifm-color-primary-dark: #45b286;
--ifm-color-primary-darker: #3ea67c;
--ifm-color-primary-darkest: #34946e;
--ifm-color-primary-light: #4cd09b;
--ifm-color-primary-lighter: #4ae2a5;
--ifm-color-primary-lightest: #4cffb7;
--docusaurus-highlighted-code-line-bg: rgb(34, 63, 66);
}