-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
61 lines (58 loc) · 1.91 KB
/
custom.css
File metadata and controls
61 lines (58 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* 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: #428e81;
--ifm-color-primary-dark: #347b6f;
--ifm-color-primary-darker: #246b5f;
--ifm-color-primary-darkest: #19594f;
--ifm-color-primary-light: #46a293;
--ifm-color-primary-lighter: #5eb1a3;
--ifm-color-primary-lightest: #76c0b3;
--ifm-color-secondary: #e1e1e1;
--ifm-color-success: #388e3c;
--ifm-color-info: #1976d2;
--ifm-color-warning: #ef6c00;
--ifm-code-font-size: 95%;
--gradient: linear-gradient(
60deg,
var(--ifm-color-primary-darker) 0%,
var(--ifm-color-primary-light) 100%
);
--ifm-color-link-grey: #878787;
--footer-color: #347b6f;
--theme-card: #f6f6f6;
--theme-card-link-color: var(--ifm-color-primary-dark);
--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: #46a293;
--ifm-color-primary-dark: #428e81;
--ifm-color-primary-darker: #347b6f;
--ifm-color-primary-darkest: #246b5f;
--ifm-color-primary-light: #5eb1a3;
--ifm-color-primary-lighter: #76c0b3;
--ifm-color-primary-lightest: #8ccbbf;
--ifm-color-secondary: #c4c4c4;
--ifm-color-success: #388e3c;
--ifm-color-info: #1976d2;
--ifm-color-warning: #ef6c00;
--gradient: linear-gradient(
60deg,
var(--ifm-color-primary-darker) 0%,
var(--ifm-color-primary-light) 100%
);
--ifm-color-link-grey: #494949;
--footer-color: #293f3a;
--theme-card: #2c2c2c;
--theme-card-link-color: var(--ifm-color-primary-dark);
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/* Override the default footer background colors */
.footer {
--ifm-footer-background-color: var(--footer-color);
}