untheme
v0.0.51
Published
🎨 A universal tokenized theme manager to implement dynamic design systems.
Downloads
93
Readme
untheme
🎨 A universal tokenized theme manager to implement dynamic design systems.
Configuration
- Install the module
[npm|yarn|pnpm] add untheme
- Create an
untheme
instance w/ your design tokens
// ~/untheme.ts
import { defineUntheme } from "untheme";
export default defineUntheme({
tokens: {
blue: "#0096ff",
green: "#00a36c",
orange: "#ff5733",
},
themes: {
theme1: {
primary: "blue",
secondary: "orange",
},
theme2: {
primary: "green",
secondary: "blue",
},
},
modes: {
light: {
active: "primary",
},
dark: {
active: "secondary",
},
},
roles: {
button: "primary",
link: "active",
},
});
- Paint a picture w/ Bob Ross, you are done!
Features
Taking inspiration from the Material 3 Design Tokens specification, untheme
was built to provide a system to implement a tokenized design system in JS/TS applications. Using untheme
, we can define:
- Reference tokens that represent static CSS values that will be applied for styling
- Theme tokens that resolve to any available reference tokens and comprise a unique theme
- Mode tokens that resolve to any available reference or system tokens and implement color modes (light, dark)
- Role tokens that resolve to any available reference, system, or mode tokens and are useful in components
The configuration functions are full type-safe and any modern IDE will be able to take advantage of the extremely helpful type-hints.
Utilities
Instatiating an untheme
config will expose several useful utilities:
// ~/utils/example.ts
import untheme from "~/untheme";
// access a flattened untheme config using a given theme/mode
const unthemeConfig = untheme.use("theme1", "dark");
// resolve a given token/theme/mode to it's base CSS value
const unthemePrimaryValue = untheme.resolve("primary", "theme2", "light");
// access a list of available themes
const unthemeThemes = untheme.themes();
// access a list of available tokens
const unthemeTokens = untheme.tokens();
Integrations
untheme
can be integrated w/ frameworks like nuxt
& unocss
to take your design system further:
| Project | Description |
| --------------------------------------------------------- | ----------- |
| nuxt-untheme
| |
| unocss-preset-untheme
| |
If you have an idea for an integration, please let me know and I will see if I can help out!
License
MIT License © 2024-PRESENT Alexander Thorwaldson