@ox-content/theme-color-night-owl
v3.2.11
Published
Sarah Drasner's Light Owl and Night Owl — an Ox Content color scheme that composes with any @ox-content/theme-* skin
Downloads
6,176
Maintainers
Readme
@ox-content/theme-color-night-owl
Night Owl — Sarah Drasner's Light Owl and Night Owl — for Ox Content.
Color only. Light and dark --octc-* tokens and nothing else: no layout, no
texture, no typography. That is what lets it drop under any skin package.
npm install @ox-content/theme-color-night-owl// vite.config.ts
import { defineConfig } from "vite";
import { oxContent } from "@ox-content/vite-plugin";
import nightOwl from "@ox-content/theme-color-night-owl";
export default defineConfig({
plugins: [
oxContent({
srcDir: "docs",
ssg: { siteName: "My Docs", theme: nightOwl },
}),
],
});Stack a skin on top to change the form as well — layers compose left to right, so anything you append wins:
import pixel from "@ox-content/theme-pixel";
theme: [pixel, nightOwl, { colors: { primary: "#ff5f56" } }];License
MIT
