-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathcustom.css
More file actions
42 lines (38 loc) · 1.34 KB
/
custom.css
File metadata and controls
42 lines (38 loc) · 1.34 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
36
37
38
39
40
41
42
/**
* 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 {
--marble: #f1f1f1;
--dark: #1f1f1f;
--ifm-card-background-color: var(--marble);
--ifm-color-primary: #2374d3;
--ifm-color-primary-dark: #2068be;
--ifm-color-primary-darker: #1e63b3;
--ifm-color-primary-darkest: #1c5da9;
--ifm-color-primary-light: #3280dd;
--ifm-color-primary-lighter: #3c87df;
--ifm-color-primary-lightest: #5c9ae4;
--ifm-code-border-radius: 0.25rem;
--ifm-code-font-size: 95%;
--ifm-code-padding-horizontal: 0.15rem;
--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-card-background-color: var(--dark);
--ifm-color-primary: #5294e2;
--ifm-color-primary-dark: #3884de;
--ifm-color-primary-darker: #2a7cdb;
--ifm-color-primary-darkest: #1f65b9;
--ifm-color-primary-light: #6ca4e6;
--ifm-color-primary-lighter: #7aace9;
--ifm-color-primary-lightest: #a1c5ef;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
.card--bg {
background-color: var(--ifm-card-background-color);
border-radius: var(--ifm-card-border-radius);
}