-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcustom.css
More file actions
63 lines (55 loc) · 1.63 KB
/
custom.css
File metadata and controls
63 lines (55 loc) · 1.63 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
62
63
/**
* 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: #57068c;
--ifm-color-primary-dark: #4e057e;
--ifm-color-primary-darker: #4a0577;
--ifm-color-primary-darkest: #3d0462;
--ifm-color-primary-light: #60079a;
--ifm-color-primary-lighter: #6407a1;
--ifm-color-primary-lightest: #7108b6;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgb(0 0 0 / 10%);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #eee6f3;
--ifm-color-primary-dark: #d8c6e4;
--ifm-color-primary-darker: #cdb6dc;
--ifm-color-primary-darkest: #ad86c5;
--ifm-color-primary-light: #fff;
--ifm-color-primary-lighter: #fff;
--ifm-color-primary-lightest: #fff;
--docusaurus-highlighted-code-line-bg: rgb(0 0 0 / 30%);
}
html {
scroll-padding-top: var(--ifm-navbar-height);
}
button,
.button {
font-family: var(--ifm-font-family-base);
}
select {
font-family: var(--ifm-font-family-base);
}
.lucide-icon {
display: inline-block;
margin-right: 0.4em;
vertical-align: middle;
}
/* Search result highlighting */
.search-highlight {
padding: 0.1em 0.2em;
color: var(--ifm-color-warning-contrast-foreground);
font-weight: 500;
background-color: var(--ifm-color-warning);
border-radius: 0.2em;
}
[data-theme="dark"] .search-highlight {
color: var(--ifm-color-warning-contrast-foreground);
background-color: var(--ifm-color-warning-dark);
}