krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

v0.21.0: docs/style.css · raw

 1/* Documentation site styling: the `docs` built-in theme, adjusted rather than replaced.
 2 *
 3 * A plain asset, copied through the build untouched — which is also how any other CSS,
 4 * image or font in a source directory reaches the output. It is linked after theme.css,
 5 * which is what lets these definitions win.
 6 *
 7 * Only the code surface is changed. syntax.css is generated from one syntect theme and
 8 * cannot follow prefers-color-scheme, so a site pairing a dark `highlight.theme` with a
 9 * theme has to say what colour code sits on — here, dark in both schemes, matching
10 * base16-ocean.dark. Everything else is the theme's. */
11
12:root {
13  --orgo-code-bg: #2b303b;
14  --orgo-code-fg: #c0c5ce;
15  --orgo-code-rule: #1f232b;
16}