Skip to content

Commit

Permalink
fix vitepress colors, again
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Mar 12, 2024
1 parent 1461bfb commit b79e7da
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions docs/.vitepress/theme/custom.css
@@ -1,12 +1,21 @@
:root {
--vp-c-brand: hsl(20 85% 57%);
--vp-c-brand-light: hsl(20 85% 70%);
--vp-c-brand-lighter: hsl(20 85% 80%);
--vp-c-brand-dark: hsl(20 85% 57%);
--vp-c-brand-darker: hsl(20 85% 40%);
--vp-c-orange-1: #e04600;
--vp-c-orange-2: #e85d14;
--vp-c-orange-3: #ef7234;
--vp-c-orange-soft: rgba(239, 114, 52, 0.16);
--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-brand: var(--vp-c-brand-3);
--vp-font-family-base: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
}

:root.dark {
--vp-c-orange-1: #ff9852;
--vp-c-orange-2: #ff823e;
}

.vp-doc figcaption {
line-height: 20px;
font-size: 12px;
Expand Down

0 comments on commit b79e7da

Please sign in to comment.