Configuration
Configure the Tasty style system before your app renders using the configure() function. Configuration must be done before any styles are generated (before first render). For a higher-level docs map, see the Docs Hub.
import { configure } from '@tenphi/tasty';
configure({
// CSP nonce for style elements
nonce: 'abc123',
// Global state aliases
states: {
'@mobile': '@media(w < 768px)',
'@tablet': '@media(768px <= w < 1024px)',
'@dark': '@root(schema=dark)',
},
// Parser configuration
parserCacheSize: 2000, // LRU cache size (default: 1000)
// Custom units (merged with built-in units)
units: {
vh: 'vh',
vw: 'vw',
custom: (n) => `${n * 10}px`, // Function-based unit
},
// Custom functions for the parser
funcs: {
double: (groups) => {
const value = parseFloat(groups[0]?.output || '0');
return `${value * 2}px`;
},
},
});
These docs use data-schema="dark" in examples. If your app already standardizes on a different attribute such as data-theme, keep the same pattern and swap the attribute name consistently everywhere you define root-state aliases.
Options
| Option | Type | Default | Description |
|---|---|---|---|
nonce | string | - | CSP nonce for style elements |
states | Record<string, string> | - | Global state aliases for advanced state mapping |
parserCacheSize | number | 1000 | Parser LRU cache size |
units | Record<string, string | Function> | Built-in | Custom units (merged with built-in). See built-in units |
funcs | Record<string, Function> | - | Custom parser functions (merged with existing) |
handlers | Record<string, StyleHandlerDefinition> | Built-in | Custom style handlers (replace built-in) |
tokens | Record<string, value | stateMap> | - | Design tokens injected as :root CSS custom properties |
replaceTokens | Record<string, string | number> | - | Parse-time token substitution (inline replacement) |
keyframes | Record<string, KeyframesSteps> | - | Global keyframes for animations |
properties | Record<string, PropertyDefinition> | - | Global CSS @property definitions |
fontFace | Record<string, FontFaceInput> | - | Global @font-face definitions |
counterStyle | Record<string, CounterStyleDescriptors> | - | Global @counter-style definitions |
autoPropertyTypes | boolean | true | Auto-infer and register @property types from values |
recipes | Record<string, RecipeStyles> | - | Predefined style recipes (named style bundles) |
presets | Record<string, TypographyPreset> | - | Typography presets — shorthand for generateTypographyTokens() |
globalStyles | Record<string, Styles> | - | Global Tasty styles keyed by CSS selector |
colorSpace | 'rgb' | 'hsl' | 'oklch' | 'oklch' | Color space for decomposed color token companion variables |
namePrefix | string | 't' (runtime) / 'ts' (zero-runtime) | Prefix prepended to every generated identifier (class, keyframe, counter-style names). See Name prefix. |
Color Space
Controls the CSS color space used for decomposed color token companion variables. When you define #name color tokens, tasty generates both --name-color (full color) and --name-color-{suffix} (decomposed components for alpha composition).
configure({
colorSpace: 'oklch', // default
});
| Color Space | Suffix | Components Format | Alpha Syntax |
|---|---|---|---|
rgb | -rgb | 255 128 0 | rgb(var(--name-color-rgb) / .5) |
hsl | -hsl | 300 100% 25% | hsl(var(--name-color-hsl) / .5) |
oklch | -oklch | 0.42 0.16 328 | oklch(var(--name-color-oklch) / .5) |
The oklch color space is the default because it provides perceptually uniform color manipulation — alpha fading and color mixing produce more natural-looking results.
Name Prefix
Every identifier Tasty generates — class names, keyframe names, counter-style names — starts with a configurable prefix. The runtime, SSR, and RSC paths default to 't'; the zero-runtime build path (tastyStatic via the Babel plugin) defaults to 'ts' so static-extracted classes can never collide with runtime classes when both are loaded on the same page.
configure({
namePrefix: 'mb',
});
The prefix is prepended verbatim to the hash, so include any separator inside the prefix string itself:
| Setting | Class | Keyframe | Counter-style |
|---|---|---|---|
't' (runtime default) | t1a2b3 | tk1a2b3 | tc1a2b3 |
'ts' (zero-runtime default) | ts1a2b3 | tsk1a2b3 | tsc1a2b3 |
'mb' | mb1a2b3 | mbk1a2b3 | mbc1a2b3 |
'myapp-' | myapp-1a2b3 | myapp-k1a2b3 | myapp-c1a2b3 |
The single-letter discriminators (k for keyframes, c for counter-styles) keep the three kinds visually distinct in devtools — they are not required for correctness because CSS keeps these in separate namespaces.
Rules
- Must match
^[a-zA-Z_][a-zA-Z0-9_-]{0,31}$. Examples that pass:'t','ts','app','myapp-','_foo'. Examples that fail:'','1foo','my app'. - Validated at
configure()time; an invalid prefix throws synchronously rather than silently producing broken hydration. - Locked once styles have been generated, like all other config.
Coexistence with the zero-runtime build
The runtime and zero-runtime builds must use different prefixes when both are loaded on the same page. Defaults already guarantee this; if you customize one, customize the other accordingly:
// app config (runtime / SSR / RSC)
configure({ namePrefix: 'mb' });
// tasty-zero.config.ts (Babel plugin)
export default { namePrefix: 'mbs' };
If you only use one of the two builds, you only need to set namePrefix on that path.
Design Tokens
Design tokens define CSS custom properties on :root. They are injected automatically when the first style is rendered. Values are parsed through the Tasty DSL, so you can use units, color syntax, and other DSL features.
Tokens support state maps for responsive or theme-aware values:
configure({
tokens: {
'$gap': '4px',
'$radius': '6px',
'#primary': {
'': '#purple',
'@dark': '#light-purple',
},
'$font-size': {
'': '14px',
'@mobile': '12px',
},
},
});
$namekeys become--nameCSS custom properties#namekeys become--name-colorand--name-color-{colorSpace}properties (suffix depends oncolorSpace, defaultoklch)
Tokens are automatically emitted in all rendering modes: runtime (client), SSR, and zero-runtime (Babel plugin).
Replace Tokens (Parse-Time Substitution)
Replace tokens are substituted inline at parse time — they are baked into the generated CSS, not resolved via CSS custom properties at runtime. This makes them ideal for value aliases and shorthand references.
Use $name for value tokens and #name for color token aliases:
configure({
replaceTokens: {
$spacing: '2x',
'$card-padding': '4x',
'#accent': '#purple',
'#surface-hover': '#gray.05',
},
});
When a component uses padding: '$card-padding', the parser replaces it with '4x' before generating CSS. When a component uses fill: '#accent', it is replaced with '#purple', which in turn resolves to var(--purple-color).
See Replace Tokens in the Style DSL reference.
Font Face
Register custom fonts globally so every component can reference them by family name. Values are descriptor objects or arrays (for multiple weights/styles). Rules are injected eagerly when styles are first generated.
configure({
fontFace: {
'Brand Sans': [
{
src: 'url("/fonts/brand-regular.woff2") format("woff2")',
fontWeight: 400,
fontDisplay: 'swap',
},
{
src: 'url("/fonts/brand-bold.woff2") format("woff2")',
fontWeight: 700,
fontDisplay: 'swap',
},
],
Icons: {
src: 'url("/fonts/icons.woff2") format("woff2")',
fontDisplay: 'block',
},
},
});
Now any component can use fontFamily: '"Brand Sans", sans-serif' and the browser will already have the @font-face rules in the stylesheet.
See Font Face (@fontFace) for inline usage inside component styles and the full list of supported descriptors.
Counter Style
Define custom list-marker algorithms globally. Rules are injected eagerly when styles are first generated.
configure({
counterStyle: {
thumbs: {
system: 'cyclic',
symbols: '"👍"',
suffix: '" "',
},
'lower-roman-parens': {
system: 'extends lower-roman',
suffix: '") "',
},
},
});
Components can then reference listStyleType: 'thumbs' directly.
See Counter Style (@counterStyle) for inline usage inside component styles and the full list of supported descriptors.
Recipes
Recipes are predefined, named style bundles. Define them globally via configure():
configure({
recipes: {
card: {
padding: '4x',
fill: '#surface',
radius: '1r',
border: true,
},
elevated: {
shadow: '2x 2x 4x #shadow',
},
},
});
Recipe values are flat tasty styles (no sub-element keys). They may contain base styles, tokens, local states, @keyframes, and @properties. Recipes cannot reference other recipes.
For how to apply, compose, and override recipes in components, see Recipes in the Style DSL reference.
Typography Presets
Typography presets are a shorthand for generateTypographyTokens(). Instead of calling the function manually and spreading the result into tokens, pass the presets directly:
configure({
presets: {
h1: { fontSize: '32px', lineHeight: '1.2', fontWeight: '700' },
t2: { fontSize: '16px', lineHeight: '1.5', fontWeight: '400' },
tag: {
fontSize: '10px',
lineHeight: '1.4',
letterSpacing: '0.04em',
fontWeight: '600',
},
},
});
Each preset generates $name-font-size, $name-line-height, $name-letter-spacing, $name-font-weight, and optional $name-bold-font-weight, $name-icon-size, $name-text-transform, $name-font-family, $name-font-style tokens.
Preset values support state maps for responsive or theme-aware typography:
configure({
presets: {
t2: {
fontSize: '16px',
lineHeight: '1.5',
fontWeight: { '': '400', '@dark': '300' },
},
},
});
The generated tokens are merged under explicit tokens — if both presets and tokens define $t2-font-weight, the tokens value wins. Plugins can also provide presets; plugin presets are merged first, then config presets, then explicit tokens on top.
Global Styles
Apply Tasty styles to any selector via configuration, without needing useGlobalStyles(selector, ...) at runtime:
configure({
globalStyles: {
body: {
fill: '#surface',
color: '#text',
preset: 't2',
margin: 0,
fontFamily: 'system-ui, sans-serif',
},
html: {
overflow: 'hidden',
},
},
});
Each key is a CSS selector, and each value is a Tasty Styles object supporting the full style syntax including style properties, tokens, state maps, and selector-based sub-styling (e.g. $: '> .app' for elements outside React scope). Global styles are injected alongside :root tokens when the first style is rendered.
Global styles are automatically emitted in all rendering modes: runtime (client), SSR, and zero-runtime (Babel plugin). Plugins can also provide globalStyles; they are merged per selector with config global styles (config wins on conflict).
Auto Property Types
CSS cannot transition or animate custom properties unless their type is declared via @property. Tasty handles this automatically — when a custom property is assigned a concrete value (e.g. '$scale': 1, '$gap': '10px', '#accent': 'purple'), the type is inferred and a @property rule is registered.
This works across all declaration contexts: component styles, @keyframes, global config, and the zero-runtime Babel plugin. It also resolves var() chains — if $a references var(--b), the type propagates once --b is resolved.
Supported types:
| Detection | Inferred syntax |
|---|---|
1, 0.5, -3 (bare numbers) | <number> |
10px, 2rem, 100vw (length units) | <length> |
50% | <percentage> |
45deg, 0.5turn (angle units) | <angle> |
300ms, 1s (time units) | <time> |
#name tokens (by naming convention) | <color> |
Auto-inferred properties use inherits: true (the CSS default). Use explicit @properties when you need different settings:
// In component styles
styles: {
'@properties': {
'$scale': { syntax: '<number>', inherits: false, initialValue: 1 },
},
}
// Or globally
configure({
properties: {
'$scale': { syntax: '<number>', inherits: false, initialValue: 1 },
},
});
To disable auto-inference entirely (only explicit @properties will be used):
configure({ autoPropertyTypes: false });
Custom Style Handlers
Override or extend the built-in style property handlers. A handler definition can take three forms:
| Form | Syntax | Description |
|---|---|---|
| Function only | handler | Triggered by its key name; receives only that property |
| Single dep | ['styleName', handler] | Triggered by the specified style property |
| Multi dep | [['dep1', 'dep2', ...], handler] | Triggered by any of the listed properties; receives all of them |
The multi-dep form is useful when output depends on several style properties together (e.g., gap needs to know display and flow to decide the CSS strategy).
import { configure, styleHandlers } from '@tenphi/tasty';
configure({
handlers: {
// Function only — overrides built-in fill handler
fill: ({ fill }) => {
if (fill?.startsWith('gradient:')) {
return { background: fill.slice(9) };
}
return styleHandlers.fill({ fill });
},
// Function only — new single-prop handler
elevation: ({ elevation }) => {
const level = parseInt(elevation) || 1;
return {
'box-shadow': `0 ${level * 2}px ${level * 4}px rgba(0,0,0,0.1)`,
'z-index': String(level * 100),
};
},
// Multi dep — handler reads multiple style properties
gap: [['display', 'flow', 'gap'], ({ display, flow, gap }) => {
if (!gap) return;
const isGrid = display?.includes('grid');
return { gap: isGrid ? gap : `/* custom logic for ${flow} */` };
}],
},
});
Extending Style Types (TypeScript)
Use module augmentation to extend the StylesInterface:
// tasty.d.ts
declare module '@tenphi/tasty' {
interface StylesInterface {
elevation?: string;
gradient?: string;
}
}
See Style DSL for state maps, tokens, units, and extending semantics, and React API for tasty(), style functions, and component props.