|
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 | + --ifm-color-primary: #6a4c93; |
| 10 | + --ifm-color-primary-dark: #5f4484; |
| 11 | + --ifm-color-primary-darker: #5a407d; |
| 12 | + --ifm-color-primary-darkest: #4a3567; |
| 13 | + --ifm-color-primary-light: #7554a2; |
| 14 | + --ifm-color-primary-lighter: #7a58a7; |
| 15 | + --ifm-color-primary-lightest: #8a6bb4; |
16 | 16 | --ifm-code-font-size: 95%; |
17 | | - --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); |
| 17 | + --docusaurus-highlighted-code-line-bg: rgba(106, 76, 147, 0.1); |
18 | 18 | } |
19 | 19 |
|
20 | 20 | /* For readability concerns, you should choose a lighter palette in dark mode. */ |
21 | 21 | [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; |
29 | | - --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); |
| 22 | + --ifm-color-primary: #b39ddb; |
| 23 | + --ifm-color-primary-dark: #9f82d1; |
| 24 | + --ifm-color-primary-darker: #9574cc; |
| 25 | + --ifm-color-primary-darkest: #774ebb; |
| 26 | + --ifm-color-primary-light: #c7b8e5; |
| 27 | + --ifm-color-primary-lighter: #d1c6ea; |
| 28 | + --ifm-color-primary-lightest: #efe9f7; |
| 29 | + --docusaurus-highlighted-code-line-bg: rgba(179, 157, 219, 0.3); |
| 30 | +} |
| 31 | + |
| 32 | +/* Additional cool styles */ |
| 33 | +body { |
| 34 | + background-color: #f5f5f5; |
| 35 | + font-family: 'Roboto', sans-serif; |
| 36 | +} |
| 37 | + |
| 38 | +[data-theme='dark'] body { |
| 39 | + background-color: #1a1a1a; |
| 40 | +} |
| 41 | + |
| 42 | +.navbar { |
| 43 | + background: linear-gradient(90deg, var(--ifm-color-primary-dark), var(--ifm-color-primary-light)); |
| 44 | +} |
| 45 | + |
| 46 | +.footer { |
| 47 | + background-color: var(--ifm-color-primary-darkest); |
| 48 | +} |
| 49 | + |
| 50 | +.button { |
| 51 | + border-radius: 25px; |
| 52 | + transition: all 0.3s ease; |
| 53 | +} |
| 54 | + |
| 55 | +.button:hover { |
| 56 | + transform: translateY(-3px); |
| 57 | + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
30 | 58 | } |
0 commit comments