-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
36 lines (33 loc) · 1.17 KB
/
Copy pathcustom.css
File metadata and controls
36 lines (33 loc) · 1.17 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
/**
* 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: #1e2650;
--ifm-color-primary-dark: #1b2248;
--ifm-color-primary-darker: #192044;
--ifm-color-primary-darkest: #151b38;
--ifm-color-primary-light: #212a58;
--ifm-color-primary-lighter: #232c5c;
--ifm-color-primary-lightest: #273168;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
/* Match the emoji colors: 🟢 🟡 🔴 ⚪ */
--rating-green: #4caf50;
--rating-yellow: #fdd835;
--rating-red: #f44336;
--rating-grey: #bdbdbd;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #74a7fe;
--ifm-color-primary-dark: #4f90fe;
--ifm-color-primary-darker: #3d84fe;
--ifm-color-primary-darkest: #0661fd;
--ifm-color-primary-light: #99befe;
--ifm-color-primary-lighter: #abcafe;
--ifm-color-primary-lightest: #e2edff;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}