| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*https://github.com/vuejs/vitepress/blob/main/template/.vitepress/theme/style.css*/
- :root {
- --vp-c-orange-0: #ecae86;
- --vp-c-orange-1: #ec630a;
- --vp-c-orange-2: #e56819;
- --vp-c-orange-3: #e16e37;
- --vp-c-orange-soft: rgba(236, 99, 10, 0.14);
-
- --vp-c-brand-1: var(--vp-c-orange-1);
- --vp-c-brand-2: var(--vp-c-orange-2);
- --vp-c-brand-3: var(--vp-c-orange-3);
- --vp-c-brand-soft: var(--vp-c-orange-soft);
-
- --vp-c-tip-1: var(--vp-c-green-1);
- --vp-c-tip-2: var(--vp-c-green-2);
- --vp-c-tip-3: var(--vp-c-green-3);
- --vp-c-tip-soft: var(--vp-c-green-soft);
-
- --vp-home-hero-name-color: transparent;
- --vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--vp-c-orange-1), var(--vp-c-orange-0));
-
- }
-
- /*https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css*/
-
- /**
- * Colors: Background
- *
- * - `bg`: The bg color used for main screen.
- *
- * - `bg-alt`: The alternative bg color used in places such as "sidebar",
- * or "code block".
- *
- * - `bg-elv`: The elevated bg color. This is used at parts where it "floats",
- * such as "dialog".
- *
- * - `bg-soft`: The bg color to slightly distinguish some components from
- * the page. Used for things like "carbon ads" or "table".
- * -------------------------------------------------------------------------- */
-
- :root {
- --vp-c-bg: #E7EFF8;
- --vp-c-bg-alt: #dae1ea;
- --vp-c-bg-elv: #E7EFF8;
- --vp-c-bg-soft: #d8e3ef;
- }
-
- .dark {
- --vp-c-bg: #1C2026;
- --vp-c-bg-alt: #22272f;
- --vp-c-bg-elv: #1C2026;
- --vp-c-bg-soft: #282a2f;
- }
|