@ox-content/theme-color-voltage
v3.2.8
Published
High-voltage accents over a near-black canvas — an Ox Content color scheme that composes with any @ox-content/theme-* skin
Downloads
7,303
Maintainers
Readme
@ox-content/theme-color-voltage
Voltage — High-voltage accents over a near-black canvas — 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-voltage// vite.config.ts
import { defineConfig } from "vite";
import { oxContent } from "@ox-content/vite-plugin";
import voltage from "@ox-content/theme-color-voltage";
export default defineConfig({
plugins: [
oxContent({
srcDir: "docs",
ssg: { siteName: "My Docs", theme: voltage },
}),
],
});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, voltage, { colors: { primary: "#ff5f56" } }];License
MIT
