forked from numfocus/disc-unconference-2025
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
60 lines (54 loc) · 1.83 KB
/
custom.css
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
/**
* 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: #007d8a !important;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-footer-background-color: #222;
--ifm-hero-background-color: #007d8a !important;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #0394a3 !important;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-footer-background-color: #222;
--ifm-hero-background-color: #007d8a !important;
}
.hero__title, .hero__subtitle {
text-shadow: 0 0 1em #007d8a;
font-size: 32px;
}
.hero__subtitle {
font-weight: bold;
}
/* Default (light mode) styles for hero title and subtitle */
.hero__title, .hero__subtitle {
color: #fff; /* white text for light mode */
text-shadow: 0 0 1em #007d8a; /* Retain text shadow */
font-size: 32px;
}
.hero__subtitle {
font-weight: bold;
}
/* Dark mode styles for hero title and subtitle */
[data-theme='dark'] .hero__title,
[data-theme='dark'] .hero__subtitle {
color: #fff; /* White text for dark mode */
text-shadow: 0 0 1em #0394a3; /* Adjust shadow color if needed */
}