|
5 | 5 |
|
6 | 6 | /**
|
7 | 7 | * Colors
|
| 8 | + * |
| 9 | + * Each colors have exact same color scale system with 3 levels of solid |
| 10 | + * colors with different brightness, and 1 soft color. |
| 11 | + * |
| 12 | + * - `XXX-1`: The most solid color used mainly for colored text. It must |
| 13 | + * satisfy the contrast ratio against when used on top of `XXX-soft`. |
| 14 | + * |
| 15 | + * - `XXX-2`: The color used mainly for hover state of the button. |
| 16 | + * |
| 17 | + * - `XXX-3`: The color for solid background, such as bg color of the button. |
| 18 | + * It must satisfy the contrast ratio with pure white (#ffffff) text on |
| 19 | + * top of it. |
| 20 | + * |
| 21 | + * - `XXX-soft`: The color used for subtle background such as custom container |
| 22 | + * or badges. It must satisfy the contrast ratio when putting `XXX-1` colors |
| 23 | + * on top of it. |
| 24 | + * |
| 25 | + * The soft color must be semi transparent alpha channel. This is crucial |
| 26 | + * because it allows adding multiple "soft" colors on top of each other |
| 27 | + * to create a accent, such as when having inline code block inside |
| 28 | + * custom containers. |
| 29 | + * |
| 30 | + * - `default`: The color used purely for subtle indication without any |
| 31 | + * special meanings attched to it such as bg color for menu hover state. |
| 32 | + * |
| 33 | + * - `brand`: Used for primary brand colors, such as link text, button with |
| 34 | + * brand theme, etc. |
| 35 | + * |
| 36 | + * - `tip`: Used to indicate useful information. The default theme uses the |
| 37 | + * brand color for this by default. |
| 38 | + * |
| 39 | + * - `warning`: Used to indicate warning to the users. Used in custom |
| 40 | + * container, badges, etc. |
| 41 | + * |
| 42 | + * - `danger`: Used to show error, or dangerous message to the users. Used |
| 43 | + * in custom container, badges, etc. |
8 | 44 | * -------------------------------------------------------------------------- */
|
9 | 45 |
|
10 | 46 | :root {
|
11 |
| - --vp-c-brand: #646cff; |
12 |
| - --vp-c-brand-light: #747bff; |
13 |
| - --vp-c-brand-lighter: #9499ff; |
14 |
| - --vp-c-brand-lightest: #bcc0ff; |
15 |
| - --vp-c-brand-dark: #535bf2; |
16 |
| - --vp-c-brand-darker: #454ce1; |
17 |
| - --vp-c-brand-dimm: rgba(100, 108, 255, 0.08); |
| 47 | + --vp-c-default-1: var(--vp-c-gray-1); |
| 48 | + --vp-c-default-2: var(--vp-c-gray-2); |
| 49 | + --vp-c-default-3: var(--vp-c-gray-3); |
| 50 | + --vp-c-default-soft: var(--vp-c-gray-soft); |
| 51 | + |
| 52 | + --vp-c-brand-1: var(--vp-c-indigo-1); |
| 53 | + --vp-c-brand-2: var(--vp-c-indigo-2); |
| 54 | + --vp-c-brand-3: var(--vp-c-indigo-3); |
| 55 | + --vp-c-brand-soft: var(--vp-c-indigo-soft); |
| 56 | + |
| 57 | + --vp-c-tip-1: var(--vp-c-brand-1); |
| 58 | + --vp-c-tip-2: var(--vp-c-brand-2); |
| 59 | + --vp-c-tip-3: var(--vp-c-brand-3); |
| 60 | + --vp-c-tip-soft: var(--vp-c-brand-soft); |
| 61 | + |
| 62 | + --vp-c-warning-1: var(--vp-c-yellow-1); |
| 63 | + --vp-c-warning-2: var(--vp-c-yellow-2); |
| 64 | + --vp-c-warning-3: var(--vp-c-yellow-3); |
| 65 | + --vp-c-warning-soft: var(--vp-c-yellow-soft); |
| 66 | + |
| 67 | + --vp-c-danger-1: var(--vp-c-red-1); |
| 68 | + --vp-c-danger-2: var(--vp-c-red-2); |
| 69 | + --vp-c-danger-3: var(--vp-c-red-3); |
| 70 | + --vp-c-danger-soft: var(--vp-c-red-soft); |
18 | 71 | }
|
19 | 72 |
|
20 | 73 | /**
|
21 | 74 | * Component: Button
|
22 | 75 | * -------------------------------------------------------------------------- */
|
23 | 76 |
|
24 | 77 | :root {
|
25 |
| - --vp-button-brand-border: var(--vp-c-brand-light); |
| 78 | + --vp-button-brand-border: transparent; |
26 | 79 | --vp-button-brand-text: var(--vp-c-white);
|
27 |
| - --vp-button-brand-bg: var(--vp-c-brand); |
28 |
| - --vp-button-brand-hover-border: var(--vp-c-brand-light); |
| 80 | + --vp-button-brand-bg: var(--vp-c-brand-3); |
| 81 | + --vp-button-brand-hover-border: transparent; |
29 | 82 | --vp-button-brand-hover-text: var(--vp-c-white);
|
30 |
| - --vp-button-brand-hover-bg: var(--vp-c-brand-light); |
31 |
| - --vp-button-brand-active-border: var(--vp-c-brand-light); |
| 83 | + --vp-button-brand-hover-bg: var(--vp-c-brand-2); |
| 84 | + --vp-button-brand-active-border: transparent; |
32 | 85 | --vp-button-brand-active-text: var(--vp-c-white);
|
33 |
| - --vp-button-brand-active-bg: var(--vp-button-brand-bg); |
| 86 | + --vp-button-brand-active-bg: var(--vp-c-brand-1); |
34 | 87 | }
|
35 | 88 |
|
36 | 89 | /**
|
|
70 | 123 | * -------------------------------------------------------------------------- */
|
71 | 124 |
|
72 | 125 | :root {
|
73 |
| - --vp-custom-block-tip-border: var(--vp-c-brand); |
74 |
| - --vp-custom-block-tip-text: var(--vp-c-brand-darker); |
75 |
| - --vp-custom-block-tip-bg: var(--vp-c-brand-dimm); |
76 |
| -} |
77 |
| - |
78 |
| -.dark { |
79 |
| - --vp-custom-block-tip-border: var(--vp-c-brand); |
80 |
| - --vp-custom-block-tip-text: var(--vp-c-brand-lightest); |
81 |
| - --vp-custom-block-tip-bg: var(--vp-c-brand-dimm); |
| 126 | + --vp-custom-block-tip-border: transparent; |
| 127 | + --vp-custom-block-tip-text: var(--vp-c-text-1); |
| 128 | + --vp-custom-block-tip-bg: var(--vp-c-brand-soft); |
| 129 | + --vp-custom-block-tip-code-bg: var(--vp-c-brand-soft); |
82 | 130 | }
|
83 | 131 |
|
84 | 132 | /**
|
85 | 133 | * Component: Algolia
|
86 | 134 | * -------------------------------------------------------------------------- */
|
87 | 135 |
|
88 | 136 | .DocSearch {
|
89 |
| - --docsearch-primary-color: var(--vp-c-brand) !important; |
| 137 | + --docsearch-primary-color: var(--vp-c-brand-1) !important; |
90 | 138 | }
|
91 | 139 | <% } else { %>
|
92 | 140 | html {
|
|
0 commit comments