krz/orgo

Lightning fast org-mode static site generator.

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

v0.22.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 colours tokens, never the surface under
 8 * them, so a site pairing a dark `highlight.theme` with a theme has to say what colour
 9 * code sits on — here, dark in both schemes, matching base16-ocean.dark. A site wanting
10 * blocks to follow prefers-color-scheme sets `highlight.theme_dark` and gives these
11 * three a dark query too. Everything else is the theme's. */
12
13:root {
14  --orgo-code-bg: #2b303b;
15  --orgo-code-fg: #c0c5ce;
16  --orgo-code-rule: #1f232b;
17}