@tenphi/tasty 0.13.1 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/README.md +155 -51
  2. package/dist/config.d.ts +13 -1
  3. package/dist/config.js +5 -1
  4. package/dist/config.js.map +1 -1
  5. package/dist/core/index.d.ts +5 -3
  6. package/dist/core/index.js +4 -3
  7. package/dist/debug.d.ts +26 -141
  8. package/dist/debug.js +356 -635
  9. package/dist/debug.js.map +1 -1
  10. package/dist/index.d.ts +5 -3
  11. package/dist/index.js +4 -3
  12. package/dist/parser/classify.js +2 -1
  13. package/dist/parser/classify.js.map +1 -1
  14. package/dist/parser/parser.js +1 -1
  15. package/dist/plugins/okhsl-plugin.js +2 -275
  16. package/dist/plugins/okhsl-plugin.js.map +1 -1
  17. package/dist/plugins/types.d.ts +1 -1
  18. package/dist/properties/index.js +2 -15
  19. package/dist/properties/index.js.map +1 -1
  20. package/dist/ssr/format-property.js +9 -7
  21. package/dist/ssr/format-property.js.map +1 -1
  22. package/dist/styles/color.js +9 -5
  23. package/dist/styles/color.js.map +1 -1
  24. package/dist/styles/createStyle.js +24 -21
  25. package/dist/styles/createStyle.js.map +1 -1
  26. package/dist/styles/index.js +1 -1
  27. package/dist/styles/predefined.js +1 -1
  28. package/dist/styles/predefined.js.map +1 -1
  29. package/dist/styles/types.d.ts +19 -4
  30. package/dist/tasty.d.ts +9 -9
  31. package/dist/tasty.js +1 -1
  32. package/dist/types.d.ts +1 -1
  33. package/dist/utils/color-math.d.ts +46 -0
  34. package/dist/utils/color-math.js +749 -0
  35. package/dist/utils/color-math.js.map +1 -0
  36. package/dist/utils/color-space.d.ts +5 -0
  37. package/dist/utils/color-space.js +229 -0
  38. package/dist/utils/color-space.js.map +1 -0
  39. package/dist/utils/colors.js +3 -1
  40. package/dist/utils/colors.js.map +1 -1
  41. package/dist/utils/mod-attrs.js +1 -1
  42. package/dist/utils/mod-attrs.js.map +1 -1
  43. package/dist/utils/process-tokens.d.ts +3 -13
  44. package/dist/utils/process-tokens.js +18 -98
  45. package/dist/utils/process-tokens.js.map +1 -1
  46. package/dist/utils/styles.d.ts +2 -15
  47. package/dist/utils/styles.js +22 -217
  48. package/dist/utils/styles.js.map +1 -1
  49. package/docs/PIPELINE.md +519 -0
  50. package/docs/README.md +31 -0
  51. package/docs/adoption.md +16 -6
  52. package/docs/comparison.md +16 -9
  53. package/docs/configuration.md +26 -3
  54. package/docs/debug.md +152 -339
  55. package/docs/design-system.md +1 -1
  56. package/docs/dsl.md +3 -1
  57. package/docs/getting-started.md +29 -13
  58. package/docs/injector.md +2 -2
  59. package/docs/methodology.md +3 -1
  60. package/docs/runtime.md +59 -9
  61. package/docs/ssr.md +3 -3
  62. package/docs/styles.md +1 -1
  63. package/docs/tasty-static.md +13 -2
  64. package/package.json +4 -3
  65. package/dist/utils/hsl-to-rgb.js +0 -38
  66. package/dist/utils/hsl-to-rgb.js.map +0 -1
  67. package/dist/utils/okhsl-to-rgb.js +0 -296
  68. package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md CHANGED
@@ -5,8 +5,8 @@
5
5
  <h1 align="center">Tasty</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>The styling engine built for design systems.</strong><br>
9
- Deterministic CSS generation. State-aware DSL. Zero specificity conflicts. Ever.
8
+ <strong>Deterministic styling for stateful component systems.</strong><br>
9
+ A design-system styling engine that compiles component states into mutually exclusive selectors.
10
10
  </p>
11
11
 
12
12
  <p align="center">
@@ -17,23 +17,30 @@
17
17
 
18
18
  ---
19
19
 
20
- Most CSS-in-JS libraries emit rules that compete through cascade and specificity. Tasty emits **mutually exclusive CSS selectors** for any component state combination, exactly one selector matches each property at a time. No cascade conflicts, no specificity wars, no `!important` escapes. Components compose and extend without breaking each other.
20
+ Tasty is a styling engine for design systems that generates deterministic CSS for stateful components. It compiles state maps into **mutually exclusive selectors**, so each property resolves from declared state logic instead of selector competition.
21
21
 
22
- That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units, responsive states, container queries, sub-element styling, and theming all compose without surprises one coherent system that scales from a single component to an enterprise design system.
22
+ It fits best when a team is defining a house styling language for reusable components: tokens, style props, state aliases, recipes, and sub-element rules that need to stay predictable as the system grows.
23
23
 
24
24
  ## Why Tasty
25
25
 
26
- - **Deterministic at any scale** — Exclusive selector generation eliminates the entire class of cascade/specificity bugs. Every state combination resolves to exactly one CSS rule per property. Refactor freely. See [How It Actually Works](#how-it-actually-works).
27
- - **AI-friendly by design** — Style definitions are declarative, self-contained, and structurally consistent. AI tools can read, understand, and refactor even advanced state bindings as confidently as a human — because there's no hidden cascade logic or implicit ordering to second-guess.
28
- - **DSL that feels like CSS** — Property names you already know (`padding`, `color`, `display`) with syntax sugar that removes boilerplate. Learn the DSL in minutes, not days. See [Style Properties](docs/styles.md).
29
- - **CSS properties as normal component props** — `styleProps` lets you expose selected styles as typed React props. Use `<Button placeSelf="end">` or `<Space flow="row" gap="2x">` without extra wrappers, utility classes, or `styles` overrides. The same props also accept state maps, so responsive values work with the same API. See [CSS properties as props](#css-properties-as-props).
30
- - **Design-system native** — Color tokens (`#primary`), spacing units (`2x`), typography presets (`h1`, `t2`), border radius (`1r`), and recipes are first-class primitives, not afterthoughts. See [Configuration](docs/configuration.md).
31
- - **Near-complete modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, etc. Some features that don't fit Tasty's component model (such as `@layer` and `!important`) are intentionally omitted, but real-world use cases are covered almost completely.
32
- - **Runtime, zero-runtime, or SSR — your call** — Use `tasty()` for dynamic React components with runtime injection, `tastyStatic()` with the Babel plugin for zero-runtime CSS extraction, or enable SSR with zero-cost client hydration for Next.js, Astro, or any React framework (experimental). Same DSL, same tokens, same output.
33
- - **Only generate what is used** — In runtime mode, Tasty injects CSS on demand for mounted components/variants, so your app avoids shipping style rules for UI states that are never rendered.
34
- - **Runtime performance that holds at scale** — The runtime path is tested against enterprise-scale applications and tuned with multi-level caching, chunk-level style reuse, style garbage collection, and a dedicated injector.
35
- - **Composable and extensible by design** — Extend any component's styles with proper merge semantics, and evolve built-in behavior through configuration and plugins.
36
- - **TypeScript-first** — Full type definitions, module augmentation for custom properties, and autocomplete for tokens, presets, and themes. See [Configuration](docs/configuration.md).
26
+ - **Deterministic composition, not cascade fights** — Tasty generates mutually exclusive selectors, so stateful styles resolve from the state map you declared rather than source order or specificity accidents. See [How It Actually Works](#how-it-actually-works).
27
+ - **Built for design-system teams** — Best fit for teams building reusable components with intersecting states, variants, tokens, sub-elements, responsive rules, and extension semantics that must stay predictable over time.
28
+ - **A governed styling model, not just syntax sugar** — Tasty is not just a syntax layer. It gives design-system teams a way to define the styling language product teams consume: tokens, units, recipes, style props, state aliases, and sub-element rules.
29
+ - **DSL that still feels like CSS** — Property names you already know (`padding`, `color`, `display`) with syntax sugar that removes boilerplate. Learn the DSL in minutes, not days. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
30
+
31
+ ### Supporting capabilities
32
+
33
+ - **Typed style props** — `styleProps` lets you expose selected styles as typed React props. Use `<Button placeSelf="end">` or `<Space flow="row" gap="2x">` without extra wrappers, utility classes, or `styles` overrides. The same props also accept state maps, so responsive values work with the same API. See [CSS properties as props](#css-properties-as-props).
34
+ - **Runtime, SSR, and zero-runtime options** — Use `tasty()` for runtime React components, add SSR integrations when your framework renders that runtime on the server, or use `tastyStatic()` when you specifically want build-time extraction instead of runtime styling.
35
+ - **Broad modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, and more. Features that do not fit the component model (such as `@layer` and `!important`) are intentionally left out.
36
+ - **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
37
+ - **TypeScript-first and AI-friendly** — Style definitions are declarative, structurally consistent, and fully typed, which helps both humans and tooling understand advanced stateful styles without hidden cascade logic.
38
+
39
+ ## Why It Exists
40
+
41
+ Modern component styling becomes fragile when multiple selectors can still win for the same property. Hover, disabled, theme, breakpoint, parent state, and root state rules start competing through specificity and source order.
42
+
43
+ Tasty replaces that competition with explicit state-map resolution. Each property compiles into mutually exclusive branches, so reusable component styling stays deterministic as systems grow. For the full mechanism, jump to [How It Actually Works](#how-it-actually-works).
37
44
 
38
45
  ## Installation
39
46
 
@@ -41,6 +48,28 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
41
48
  pnpm add @tenphi/tasty
42
49
  ```
43
50
 
51
+ Requirements:
52
+
53
+ - Node.js 20+
54
+ - React 18+ (peer dependency for the React entry points)
55
+ - `pnpm`, `npm`, or `yarn`
56
+
57
+ Other package managers:
58
+
59
+ ```bash
60
+ npm add @tenphi/tasty
61
+ yarn add @tenphi/tasty
62
+ ```
63
+
64
+ ## Start Here
65
+
66
+ - **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
67
+ - **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
68
+ - **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
69
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — see the selector model behind deterministic style resolution
70
+ - **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
71
+ - **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
72
+
44
73
  ## Quick Start
45
74
 
46
75
  ### Create a styled component
@@ -53,11 +82,12 @@ const Card = tasty({
53
82
  styles: {
54
83
  display: 'flex',
55
84
  flow: 'column',
56
- padding: '4x',
57
- gap: '2x',
58
- fill: '#surface',
59
- border: '#border bottom',
60
- radius: '1r',
85
+ padding: '24px',
86
+ gap: '12px',
87
+ fill: 'white',
88
+ color: '#222',
89
+ border: '1px solid #ddd',
90
+ radius: '12px',
61
91
  },
62
92
  });
63
93
 
@@ -65,7 +95,9 @@ const Card = tasty({
65
95
  <Card>Hello World</Card>
66
96
  ```
67
97
 
68
- Every value maps to CSS you'd recognize but with tokens and units that keep your design system consistent by default.
98
+ Every value maps to CSS you'd recognize. This example is intentionally plain and config-free. When you want a more design-system-shaped authoring model, Tasty also supports built-in units, tokens, recipes, state aliases, and color values such as `okhsl(...)` without extra runtime libraries.
99
+
100
+ Use `configure()` when you want to define shared tokens, state aliases, recipes, or other conventions for your app or design system. For a fuller onboarding path, follow [Getting Started](docs/getting-started.md).
69
101
 
70
102
  ### Add state-driven styles
71
103
 
@@ -112,7 +144,7 @@ const DangerButton = tasty(Button, {
112
144
 
113
145
  Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
114
146
 
115
- ### Configure once, use everywhere
147
+ ### Optional: configure shared conventions
116
148
 
117
149
  ```tsx
118
150
  import { configure } from '@tenphi/tasty';
@@ -129,13 +161,13 @@ configure({
129
161
  });
130
162
  ```
131
163
 
132
- Predefined states turn complex selector logic into single tokens. Use `@mobile` instead of writing media query expressions in every component.
164
+ Use `configure()` once when your app or design system needs shared aliases, tokens, recipes, or parser extensions. Predefined states turn complex selector logic into single tokens, so teams can write `@mobile` instead of repeating media query expressions in every component.
133
165
 
134
166
  ### CSS properties as props
135
167
 
136
- With `styleProps`, a component can expose the styles you choose as normal typed props. That means you can adjust layout, spacing, alignment, or positioning right where the component is used, instead of introducing wrapper elements or reaching for a separate styling API.
168
+ Beyond state resolution, Tasty can also expose selected style controls as typed component props. That lets design systems keep layout and composition inside governed component APIs instead of pushing teams toward wrapper elements or ad hoc styling escapes.
137
169
 
138
- This is especially good for prototyping and fast UI iteration: you can shape interfaces quickly, while still staying inside a typed, design-system-aware component API that scales to production.
170
+ With `styleProps`, a component can expose the styles you choose as normal typed props. You can adjust layout, spacing, alignment, or positioning where the component is used while staying inside a typed, design-system-aware API.
139
171
 
140
172
  ```tsx
141
173
  import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
@@ -184,11 +216,24 @@ The same props also support state maps, so responsive values use the exact same
184
216
 
185
217
  Layout components can expose flow props. Buttons can expose positioning props. Each component can offer only the style props that make sense for its role, while still keeping tokens, custom units, and state maps fully typed. This works in runtime `tasty()` components, not in `tastyStatic()`.
186
218
 
219
+ ## Choose a Styling Approach
220
+
221
+ Once you understand the component model, pick the rendering mode that matches your app.
222
+
223
+ | Approach | Entry point | Best for | Trade-off |
224
+ |----------|-------------|----------|-----------|
225
+ | **Runtime** | `@tenphi/tasty` | Interactive apps with reusable stateful components and design systems | Full feature set; CSS is generated on demand at runtime |
226
+ | **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
227
+
228
+ If your framework can execute runtime React code on the server, you can also add **SSR on top of runtime** with `@tenphi/tasty/ssr/*`. This uses the same `tasty()` pipeline, but collects CSS during server rendering and hydrates the cache on the client. That is the model for Next.js, generic React SSR, and Astro islands. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
229
+
187
230
  ## How It Actually Works
188
231
 
189
232
  This is the core idea that makes everything else possible.
190
233
 
191
- Traditional CSS has two structural problems.
234
+ For the end-to-end architecture parsing state keys, building exclusive conditions, merging by output, and materializing selectors and at-rules — see **[Style rendering pipeline](docs/PIPELINE.md)**.
235
+
236
+ ### The structural problem with normal CSS
192
237
 
193
238
  First, the **cascade** resolves conflicts by specificity and source order: when multiple selectors match, the one with the highest specificity wins, or — if specificity is equal — the last one in source order wins. That makes styles inherently fragile. Reordering imports, adding a media query, or composing components from different libraries can silently break styling.
194
239
 
@@ -201,7 +246,11 @@ A small example makes this tangible. Two rules for a button's background:
201
246
 
202
247
  Both selectors have specificity `(0, 1, 1)`. When the button is hovered **and** disabled, both match — and the last rule in source order wins. Swap the two lines and a hovered disabled button silently turns blue instead of gray. This class of bug is invisible in code review because the logic is correct; only the ordering is wrong.
203
248
 
204
- Second, **authoring selectors that capture real-world state logic is fundamentally hard.** A single state like "dark mode" may depend on a root attribute, an OS preference, or both — each branch needing its own selector, proper negation of competing branches, and correct `@media` nesting. The example below shows the CSS you'd write by hand for just *one* property with *one* state. Scale that across dozens of properties, then add breakpoints and container queries, and the selector logic quickly becomes unmanageable.
249
+ ### Why real state logic is hard to author by hand
250
+
251
+ Authoring selectors that capture real-world state logic is fundamentally hard. A single state like "dark mode" may depend on a root attribute, an OS preference, or both — each branch needing its own selector, proper negation of competing branches, and correct `@media` nesting. The example below shows the CSS you'd write by hand for just *one* property with *one* state. Scale that across dozens of properties, then add breakpoints and container queries, and the selector logic quickly becomes unmanageable.
252
+
253
+ ### What Tasty generates instead
205
254
 
206
255
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
207
256
 
@@ -246,8 +295,6 @@ Better — but the bare `.t0` default still matches unconditionally. It matches
246
295
 
247
296
  This is just *one* property with *one* state, and getting it right already takes multiple iterations. The correct selectors require negating every other branch — which is exactly what Tasty generates automatically:
248
297
 
249
- Tasty generates the correct version automatically:
250
-
251
298
  ```css
252
299
  /* Branch 1: Explicit dark schema */
253
300
  :root[data-schema="dark"] .t0.t0 {
@@ -274,14 +321,18 @@ Tasty generates the correct version automatically:
274
321
  }
275
322
  ```
276
323
 
324
+ ### What guarantee that gives you
325
+
277
326
  Every rule is guarded by the negation of higher-priority rules. No two rules can match at the same time. No specificity arithmetic. No source-order dependence. Components compose and extend without collisions.
278
327
 
279
- By absorbing selector complexity, Tasty makes advanced CSS patterns practical again — nested container queries, multi-condition `@supports` gates, and combined root-state/media branches. You stay in pure CSS instead of relying on JavaScript workarounds, so the browser can optimize layout, painting, and transitions natively. Tasty doesn't limit CSS; it unlocks its full potential by removing the complexity that held teams back.
328
+ By absorbing selector complexity, Tasty makes advanced CSS patterns practical again — nested container queries, multi-condition `@supports` gates, and combined root-state/media branches. You stay in pure CSS instead of relying on JavaScript workarounds, so the browser can optimize layout, painting, and transitions natively. Tasty keeps the solution in CSS while removing much of the selector bookkeeping that is hard to maintain by hand.
280
329
 
281
- [Try it in the Tasty Playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
330
+ [Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
282
331
 
283
332
  ## Capabilities
284
333
 
334
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
335
+
285
336
  ### Design Tokens and Custom Units
286
337
 
287
338
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -317,7 +368,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
317
368
  | Class selector (supported) | `.is-active` | `.is-active` |
318
369
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
319
370
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
320
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
371
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
321
372
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
322
373
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
323
374
  | Entry animation | `@starting` | `@starting-style` |
@@ -478,7 +529,7 @@ module.exports = {
478
529
  ['@tenphi/tasty/babel-plugin', {
479
530
  output: 'public/tasty.css',
480
531
  config: {
481
- states: { '@dark': '@root(theme=dark)' },
532
+ states: { '@dark': '@root(schema=dark)' },
482
533
  },
483
534
  }],
484
535
  ],
@@ -497,25 +548,13 @@ module.exports = {
497
548
  | **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
498
549
  | **Variants** | Built-in (`variants` option) | Separate static styles |
499
550
  | **Framework** | React | Any (requires Babel) |
500
- | **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
551
+ | **Best for** | Interactive apps with reusable stateful components, design systems | Static sites, SSG, landing pages |
501
552
 
502
553
  Both share the same DSL, tokens, units, state mappings, and recipes.
503
554
 
504
- ### Runtime Performance
555
+ ### Server-Side Rendering
505
556
 
506
- If you choose the runtime approach, performance is usually a non-issue in practice:
507
-
508
- - CSS is generated and injected only when styles are actually used.
509
- - Multi-level caching avoids repeated parsing and style recomputation.
510
- - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
511
- - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
512
- - A style garbage collector removes unused styles/chunks over time.
513
- - A dedicated style injector minimizes DOM/style-tag overhead.
514
- - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
515
-
516
- ### Server-Side Rendering (Experimental)
517
-
518
- SSR with zero-cost client hydration. Existing `tasty()` components work unchanged — SSR is opt-in and requires no per-component modifications. Supports Next.js (App Router with streaming), Astro (middleware + islands), and any React-based framework via the core API. Requires React 19+.
557
+ SSR with zero-cost client hydration. Existing `tasty()` components work unchanged — SSR is opt-in and requires no per-component modifications. Supports Next.js (App Router with streaming), Astro (middleware + islands), and any React-based framework via the core API. Requires React 18+.
519
558
 
520
559
  **Next.js setup:**
521
560
 
@@ -553,7 +592,7 @@ export default function RootLayout({
553
592
  }
554
593
  ```
555
594
 
556
- See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, and the complete API reference.
595
+ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
557
596
 
558
597
  ## Entry Points
559
598
 
@@ -569,13 +608,73 @@ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, gene
569
608
  | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
570
609
  | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
571
610
 
611
+ ## Browser Requirements
612
+
613
+ Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
614
+
615
+ - **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
616
+ - **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
617
+ - **Not supported:** IE 11.
618
+
619
+ ## Performance
620
+
621
+ ### Bundle Size
622
+
623
+ All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
624
+
625
+ | Entry point | Size |
626
+ |-------------|------|
627
+ | `@tenphi/tasty` (runtime + SSR) | ~44 kB |
628
+ | `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
629
+ | `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
630
+
631
+ Run `pnpm size` for exact up-to-date numbers.
632
+
633
+ ### Runtime Benchmarks
634
+
635
+ If you choose the runtime approach, performance is usually a non-issue in practice. The numbers below show single-call throughput for the core pipeline stages, measured with `vitest bench` on an Apple M1 Max (Node 22).
636
+
637
+ | Operation | ops/sec | Latency (mean) |
638
+ |-----------|--------:|---------------:|
639
+ | `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
640
+ | `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
641
+ | `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
642
+ | `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
643
+ | `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
644
+ | `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
645
+ | `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
646
+ | `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
647
+ | `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
648
+
649
+ "Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
650
+
651
+ Run `pnpm bench` to reproduce.
652
+
653
+ #### What This Means in Practice
654
+
655
+ - **Cached path dominates production.** After a component's first render, subsequent renders with stable styles skip the pipeline entirely (React `useMemo` + LRU cache hits at every level). All cached operations are sub-microsecond — effectively free.
656
+ - **Cold path is fast enough.** The heaviest cold operation — a complex state map with media queries, hover, and modifiers — takes ~46 us. Even a page with 100 unique styled components adds only ~5 ms of total style computation on first render, negligible next to React reconciliation and DOM work.
657
+ - **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
658
+ - **Comparable to lighter systems.** Emotion's `css()` is typically 5–20 us for simple styles; Tasty's cold `renderStyles` at ~14 us for 5 properties is in the same range despite doing significantly more work (state maps, design tokens, sub-elements, chunking).
659
+ - **On slower devices.** The benchmarks above are from an M1 Max (Geekbench 6 SC ~2,400). A mid-range consumer laptop (~1,800 SC) is roughly 1.3x slower; a mid-range phone (~1,200 SC) is roughly 2x slower; a budget phone (~700 SC) is roughly 3–4x slower. Even at 4x, the heaviest cold operation stays under 200 us and 100 unique components under 20 ms — still well within a single frame budget. The cached path remains sub-microsecond on all devices.
660
+
661
+ ### How It Stays Fast
662
+
663
+ - CSS is generated and injected only when styles are actually used.
664
+ - Multi-level caching avoids repeated parsing and style recomputation.
665
+ - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
666
+ - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
667
+ - A style garbage collector removes unused styles/chunks over time.
668
+ - A dedicated style injector minimizes DOM/style-tag overhead.
669
+ - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
670
+
572
671
  ## Ecosystem
573
672
 
574
673
  Tasty is the core of a production-ready styling platform. These companion tools complete the picture:
575
674
 
576
675
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
577
676
 
578
- `@tenphi/eslint-plugin-tasty` — 27 lint rules that validate style property names, value syntax, token existence, state keys, and enforce best practices. Catch typos and invalid styles at lint time, not at runtime.
677
+ `@tenphi/eslint-plugin-tasty` — 27 total lint rules for style property names, value syntax, token existence, state keys, and best practices. The `recommended` preset enables 18 of them as a practical default. Catch typos and invalid styles at lint time, not at runtime.
579
678
 
580
679
  ```bash
581
680
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -630,9 +729,13 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
630
729
 
631
730
  ## Documentation
632
731
 
732
+ Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
733
+
734
+ - **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
735
+
633
736
  ### Start here
634
737
 
635
- - **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
738
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
636
739
  - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
637
740
 
638
741
  ### Guides
@@ -654,6 +757,7 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
654
757
 
655
758
  ### Internals
656
759
 
760
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
657
761
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
658
762
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
659
763
 
package/dist/config.d.ts CHANGED
@@ -3,6 +3,7 @@ import { StyleDetails, UnitHandler } from "./parser/types.js";
3
3
  import { StyleHandlerDefinition } from "./utils/styles.js";
4
4
  import { ConfigTokens, RecipeStyles } from "./styles/types.js";
5
5
  import { StyleInjector } from "./injector/injector.js";
6
+ import { ColorSpace } from "./utils/color-space.js";
6
7
  import { TastyPlugin } from "./plugins/types.js";
7
8
 
8
9
  //#region src/config.d.ts
@@ -58,6 +59,17 @@ interface TastyConfig {
58
59
  * @example { myFunc: (groups) => groups.map(g => g.output).join(' ') }
59
60
  */
60
61
  funcs?: Record<string, (groups: StyleDetails[]) => string>;
62
+ /**
63
+ * Color space used for decomposed color token companion variables.
64
+ * Controls the CSS function and suffix for alpha composition.
65
+ *
66
+ * - `'rgb'` — suffix `-rgb`, e.g. `rgb(var(--name-color-rgb) / .5)`
67
+ * - `'hsl'` — suffix `-hsl`, e.g. `hsl(var(--name-color-hsl) / .5)`
68
+ * - `'oklch'` — suffix `-oklch`, e.g. `oklch(var(--name-color-oklch) / .5)`
69
+ *
70
+ * @default 'oklch'
71
+ */
72
+ colorSpace?: ColorSpace;
61
73
  /**
62
74
  * Automatically infer and register CSS @property declarations
63
75
  * from custom property values found in styles, keyframes, and global config.
@@ -157,7 +169,7 @@ interface TastyConfig {
157
169
  * for responsive/theme-aware tokens.
158
170
  *
159
171
  * - `$name` keys become `--name` CSS custom properties
160
- * - `#name` keys become `--name-color` and `--name-color-rgb` properties
172
+ * - `#name` keys become `--name-color` and `--name-color-{colorSpace}` properties
161
173
  *
162
174
  * Tokens are injected once when the first style is rendered.
163
175
  *
package/dist/config.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { resetColorSpace, setColorSpace } from "./utils/color-space.js";
1
2
  import { isDevEnv } from "./utils/is-dev-env.js";
2
3
  import { CUSTOM_UNITS, getGlobalFuncs, getGlobalParser, normalizeColorTokenValue, resetGlobalPredefinedTokens, setGlobalPredefinedTokens } from "./utils/styles.js";
3
4
  import { normalizeHandlerDefinition, registerHandler, resetHandlers } from "./styles/predefined.js";
@@ -375,6 +376,8 @@ function configure(config = {}) {
375
376
  const tokenKeys = new Set(Object.keys(mergedConfigTokens));
376
377
  for (const key of Object.keys(mergedReplaceTokens)) if (tokenKeys.has(key)) warnOnce(`token-conflict-${key}`, `[Tasty] Token "${key}" is defined in both \`tokens\` and \`replaceTokens\`. \`replaceTokens\` performs parse-time substitution, so the \`tokens\` CSS custom property will be injected but never used by Tasty styles. Remove it from one of the two.`);
377
378
  }
379
+ setColorSpace(config.colorSpace ?? "oklch");
380
+ getGlobalParser().clearCache();
378
381
  if (Object.keys(mergedStates).length > 0) setGlobalPredefinedStates(mergedStates);
379
382
  const parser = getGlobalParser();
380
383
  if (config.parserCacheSize !== void 0) parser.updateOptions({ cacheSize: config.parserCacheSize });
@@ -409,7 +412,7 @@ function configure(config = {}) {
409
412
  }
410
413
  if (Object.keys(mergedConfigTokens).length > 0) setGlobalConfigTokens(mergedConfigTokens);
411
414
  if (Object.keys(mergedRecipes).length > 0) setGlobalRecipes(mergedRecipes);
412
- const { states: _states, parserCacheSize: _parserCacheSize, units: _units, funcs: _funcs, plugins: _plugins, keyframes: _keyframes, properties: _properties, handlers: _handlers, tokens: _tokens, replaceTokens: _replaceTokens, recipes: _recipes, ...injectorConfig } = config;
415
+ const { states: _states, parserCacheSize: _parserCacheSize, units: _units, funcs: _funcs, plugins: _plugins, keyframes: _keyframes, properties: _properties, handlers: _handlers, tokens: _tokens, replaceTokens: _replaceTokens, recipes: _recipes, colorSpace: _colorSpace, ...injectorConfig } = config;
413
416
  const fullConfig = {
414
417
  ...createDefaultConfig(),
415
418
  ...currentConfig,
@@ -450,6 +453,7 @@ function resetConfig() {
450
453
  globalConfigTokens = null;
451
454
  resetGlobalPredefinedTokens();
452
455
  resetHandlers();
456
+ resetColorSpace();
453
457
  clearPipelineCache();
454
458
  emittedWarnings.clear();
455
459
  const storage = typeof window !== "undefined" ? window : globalThis;