|
6 | 6 |
|
7 | 7 | /* You can override the default Infima variables here. */ |
8 | 8 | :root { |
9 | | - --ifm-color-primary: #2e8555; |
10 | | - --ifm-color-primary-dark: #29784c; |
11 | | - --ifm-color-primary-darker: #277148; |
12 | | - --ifm-color-primary-darkest: #205d3b; |
13 | | - --ifm-color-primary-light: #33925d; |
14 | | - --ifm-color-primary-lighter: #359962; |
15 | | - --ifm-color-primary-lightest: #3cad6e; |
| 9 | + /* Brand-ish neutral blue accent (easy on white backgrounds). */ |
| 10 | + --ifm-color-primary: #2563eb; |
| 11 | + --ifm-color-primary-dark: #1d4ed8; |
| 12 | + --ifm-color-primary-darker: #1e40af; |
| 13 | + --ifm-color-primary-darkest: #1e3a8a; |
| 14 | + --ifm-color-primary-light: #3b82f6; |
| 15 | + --ifm-color-primary-lighter: #60a5fa; |
| 16 | + --ifm-color-primary-lightest: #93c5fd; |
| 17 | + |
| 18 | + --ifm-font-family-base: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, |
| 19 | + Arial, "Apple Color Emoji", "Segoe UI Emoji"; |
16 | 20 | --ifm-code-font-size: 95%; |
17 | 21 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); |
18 | 22 | } |
19 | 23 |
|
20 | 24 | /* For readability concerns, you should choose a lighter palette in dark mode. */ |
21 | 25 | [data-theme='dark'] { |
22 | | - --ifm-color-primary: #25c2a0; |
23 | | - --ifm-color-primary-dark: #21af90; |
24 | | - --ifm-color-primary-darker: #1fa588; |
25 | | - --ifm-color-primary-darkest: #1a8870; |
26 | | - --ifm-color-primary-light: #29d5b0; |
27 | | - --ifm-color-primary-lighter: #32d8b4; |
28 | | - --ifm-color-primary-lightest: #4fddbf; |
| 26 | + --ifm-color-primary: #60a5fa; |
| 27 | + --ifm-color-primary-dark: #3b82f6; |
| 28 | + --ifm-color-primary-darker: #2563eb; |
| 29 | + --ifm-color-primary-darkest: #1d4ed8; |
| 30 | + --ifm-color-primary-light: #93c5fd; |
| 31 | + --ifm-color-primary-lighter: #bfdbfe; |
| 32 | + --ifm-color-primary-lightest: #dbeafe; |
29 | 33 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); |
30 | 34 | } |
| 35 | + |
| 36 | +/* Subtle “product” feel: crisp header, white background. */ |
| 37 | +.navbar { |
| 38 | + border-bottom: 1px solid var(--ifm-toc-border-color); |
| 39 | +} |
0 commit comments