Public mirror for @nebutra/tokens from Nebutra/Nebutra-Sailor.
This repository is generated from the Nebutra Sailor monorepo. Package releases are cut from the monorepo and mirrored here for discovery, standalone cloning, and contribution intake.
- Canonical source:
packages/design/tokensinNebutra/Nebutra-Sailor - Package registry: npm and GitHub Packages
- Contributions: open issues or PRs here; maintainers port accepted changes back into the monorepo source package
Runtime design tokens and theme provider for Nebutra apps. Single source of truth for CSS variables, color scales, and light/dark mode switching.
pnpm add @nebutra/tokens@import "@nebutra/tokens/styles.css";This provides:
- Brand color scales (
--nebutra-blue-*,--nebutra-cyan-*) - 12-step functional scales (
--neutral-1..12,--blue-1..12,--cyan-1..12) - Semantic variables (
--primary,--background,--border, etc.) - Light/dark mode via
:root/.dark - Display-P3 wide gamut with sRGB fallback
- Tailwind v4
@themeintegration
import { ThemeProvider } from "@nebutra/tokens";
export default function RootLayout({ children }) {
return (
<ThemeProvider attribute="class" defaultTheme="dark">
{children}
</ThemeProvider>
);
}import { useTheme } from "@nebutra/tokens";
function ThemeToggle() {
const { theme, setTheme } = useTheme();
return (
<button onClick={() => setTheme(theme === "dark" ? "light" : "dark")}>
Toggle theme
</button>
);
}| Export | Description |
|---|---|
ThemeProvider |
React provider for light/dark mode (from next-themes) |
useTheme() |
Hook to read/set current theme |
ThemeProviderProps |
Props type for ThemeProvider |
THEME_IDS |
["light", "dark"] |
ThemeId |
"light" | "dark" |
DEFAULT_THEME |
"dark" |
@nebutra/brand --> Brand primitives (source data, not runtime)
@nebutra/tokens --> Runtime CSS variables (THIS PACKAGE)
@nebutra/ui --> Components (consume tokens via CSS vars)
react^19
MIT