xref: /aosp_15_r20/external/jspecify/docs/src/css/custom.css (revision 2167191df2fa07300797f1ac5b707370b5f38c48)
1/**
2 * Any CSS included here will be global. The classic template
3 * bundles Infima by default. Infima is a CSS framework designed to
4 * work well for content-centric websites.
5 */
6
7/* You can override the default Infima variables here. */
8:root {
9  --ifm-color-primary: #4b67aa;
10  --ifm-color-primary-dark: #435d99;
11  --ifm-color-primary-darker: #405890;
12  --ifm-color-primary-darkest: #354877;
13  --ifm-color-primary-light: #5874b5;
14  --ifm-color-primary-lighter: #617bb9;
15  --ifm-color-primary-lightest: #7a90c4;
16  --ifm-code-font-size: 95%;
17  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
18  font-family: 'Fira Sans', sans-serif;
19}
20
21/* For readability concerns, you should choose a lighter palette in dark mode. */
22[data-theme='dark'] {
23  --ifm-color-primary: #69b5ce;
24  --ifm-color-primary-dark: #52a9c6;
25  --ifm-color-primary-darker: #46a4c3;
26  --ifm-color-primary-darkest: #3689a4;
27  --ifm-color-primary-light: #80c1d6;
28  --ifm-color-primary-lighter: #8cc6d9;
29  --ifm-color-primary-lightest: #afd8e5;
30  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
31}
32
33[data-theme='dark'] .navbar__logo > img {
34  -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
35          filter: invert(100%);
36}
37
38header.hero {
39  background-image: url('/img/jspecify-banner-spots.svg');
40  background-repeat: repeat;
41  background-size: 1200px;
42}
43