@tenphi/tasty 0.0.0-snapshot.ee431f7 → 0.0.0-snapshot.ef4a8c2

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 (196) hide show
  1. package/README.md +302 -157
  2. package/dist/chunks/cacheKey.js +16 -8
  3. package/dist/chunks/cacheKey.js.map +1 -1
  4. package/dist/chunks/definitions.d.ts +1 -1
  5. package/dist/chunks/definitions.js +2 -3
  6. package/dist/chunks/definitions.js.map +1 -1
  7. package/dist/chunks/renderChunk.js +31 -32
  8. package/dist/chunks/renderChunk.js.map +1 -1
  9. package/dist/config.d.ts +98 -12
  10. package/dist/config.js +134 -33
  11. package/dist/config.js.map +1 -1
  12. package/dist/core/index.d.ts +11 -10
  13. package/dist/core/index.js +8 -7
  14. package/dist/counter-style/index.js +51 -0
  15. package/dist/counter-style/index.js.map +1 -0
  16. package/dist/debug.d.ts +26 -141
  17. package/dist/debug.js +356 -635
  18. package/dist/debug.js.map +1 -1
  19. package/dist/font-face/index.js +63 -0
  20. package/dist/font-face/index.js.map +1 -0
  21. package/dist/hooks/resolve-ssr-collector.js +15 -0
  22. package/dist/hooks/resolve-ssr-collector.js.map +1 -0
  23. package/dist/hooks/useCounterStyle.d.ts +50 -0
  24. package/dist/hooks/useCounterStyle.js +47 -0
  25. package/dist/hooks/useCounterStyle.js.map +1 -0
  26. package/dist/hooks/useFontFace.d.ts +43 -0
  27. package/dist/hooks/useFontFace.js +71 -0
  28. package/dist/hooks/useFontFace.js.map +1 -0
  29. package/dist/hooks/useGlobalStyles.d.ts +3 -0
  30. package/dist/hooks/useGlobalStyles.js +24 -1
  31. package/dist/hooks/useGlobalStyles.js.map +1 -1
  32. package/dist/hooks/useKeyframes.js +14 -3
  33. package/dist/hooks/useKeyframes.js.map +1 -1
  34. package/dist/hooks/useProperty.js +32 -13
  35. package/dist/hooks/useProperty.js.map +1 -1
  36. package/dist/hooks/useRawCSS.js +9 -1
  37. package/dist/hooks/useRawCSS.js.map +1 -1
  38. package/dist/hooks/useStyles.d.ts +5 -0
  39. package/dist/hooks/useStyles.js +115 -46
  40. package/dist/hooks/useStyles.js.map +1 -1
  41. package/dist/index.d.ts +14 -11
  42. package/dist/index.js +10 -7
  43. package/dist/injector/index.d.ts +28 -2
  44. package/dist/injector/index.js +27 -1
  45. package/dist/injector/index.js.map +1 -1
  46. package/dist/injector/injector.d.ts +28 -1
  47. package/dist/injector/injector.js +93 -32
  48. package/dist/injector/injector.js.map +1 -1
  49. package/dist/injector/sheet-manager.d.ts +16 -7
  50. package/dist/injector/sheet-manager.js +31 -11
  51. package/dist/injector/sheet-manager.js.map +1 -1
  52. package/dist/injector/types.d.ts +70 -1
  53. package/dist/parser/classify.js +5 -4
  54. package/dist/parser/classify.js.map +1 -1
  55. package/dist/parser/const.js +17 -1
  56. package/dist/parser/const.js.map +1 -1
  57. package/dist/parser/parser.js +1 -1
  58. package/dist/pipeline/index.d.ts +3 -1
  59. package/dist/pipeline/index.js +78 -29
  60. package/dist/pipeline/index.js.map +1 -1
  61. package/dist/pipeline/materialize.js +380 -120
  62. package/dist/pipeline/materialize.js.map +1 -1
  63. package/dist/pipeline/parseStateKey.d.ts +1 -1
  64. package/dist/pipeline/parseStateKey.js +20 -11
  65. package/dist/pipeline/parseStateKey.js.map +1 -1
  66. package/dist/pipeline/simplify.js.map +1 -1
  67. package/dist/plugins/okhsl-plugin.js +2 -275
  68. package/dist/plugins/okhsl-plugin.js.map +1 -1
  69. package/dist/plugins/types.d.ts +9 -2
  70. package/dist/properties/index.js +82 -17
  71. package/dist/properties/index.js.map +1 -1
  72. package/dist/properties/property-type-resolver.d.ts +24 -0
  73. package/dist/properties/property-type-resolver.js +91 -0
  74. package/dist/properties/property-type-resolver.js.map +1 -0
  75. package/dist/ssr/astro.d.ts +29 -0
  76. package/dist/ssr/astro.js +65 -0
  77. package/dist/ssr/astro.js.map +1 -0
  78. package/dist/ssr/async-storage.d.ts +17 -0
  79. package/dist/ssr/async-storage.js +35 -0
  80. package/dist/ssr/async-storage.js.map +1 -0
  81. package/dist/ssr/collect-auto-properties.js +40 -0
  82. package/dist/ssr/collect-auto-properties.js.map +1 -0
  83. package/dist/ssr/collector.d.ts +102 -0
  84. package/dist/ssr/collector.js +227 -0
  85. package/dist/ssr/collector.js.map +1 -0
  86. package/dist/ssr/context.d.ts +8 -0
  87. package/dist/ssr/context.js +14 -0
  88. package/dist/ssr/context.js.map +1 -0
  89. package/dist/ssr/format-global-rules.js +22 -0
  90. package/dist/ssr/format-global-rules.js.map +1 -0
  91. package/dist/ssr/format-keyframes.js +70 -0
  92. package/dist/ssr/format-keyframes.js.map +1 -0
  93. package/dist/ssr/format-property.js +50 -0
  94. package/dist/ssr/format-property.js.map +1 -0
  95. package/dist/ssr/format-rules.js +73 -0
  96. package/dist/ssr/format-rules.js.map +1 -0
  97. package/dist/ssr/hydrate.d.ts +22 -0
  98. package/dist/ssr/hydrate.js +50 -0
  99. package/dist/ssr/hydrate.js.map +1 -0
  100. package/dist/ssr/index.d.ts +5 -0
  101. package/dist/ssr/index.js +12 -0
  102. package/dist/ssr/index.js.map +1 -0
  103. package/dist/ssr/next.d.ts +45 -0
  104. package/dist/ssr/next.js +71 -0
  105. package/dist/ssr/next.js.map +1 -0
  106. package/dist/ssr/ssr-collector-ref.js +12 -0
  107. package/dist/ssr/ssr-collector-ref.js.map +1 -0
  108. package/dist/states/index.js +12 -257
  109. package/dist/states/index.js.map +1 -1
  110. package/dist/styles/border.js +2 -2
  111. package/dist/styles/border.js.map +1 -1
  112. package/dist/styles/color.js +9 -5
  113. package/dist/styles/color.js.map +1 -1
  114. package/dist/styles/createStyle.js +24 -21
  115. package/dist/styles/createStyle.js.map +1 -1
  116. package/dist/styles/fill.js +6 -5
  117. package/dist/styles/fill.js.map +1 -1
  118. package/dist/styles/index.js +1 -1
  119. package/dist/styles/predefined.d.ts +0 -2
  120. package/dist/styles/predefined.js +1 -4
  121. package/dist/styles/predefined.js.map +1 -1
  122. package/dist/styles/preset.d.ts +5 -0
  123. package/dist/styles/preset.js +48 -47
  124. package/dist/styles/preset.js.map +1 -1
  125. package/dist/styles/radius.d.ts +1 -3
  126. package/dist/styles/radius.js +21 -0
  127. package/dist/styles/radius.js.map +1 -1
  128. package/dist/styles/scrollbar.d.ts +9 -5
  129. package/dist/styles/scrollbar.js +25 -89
  130. package/dist/styles/scrollbar.js.map +1 -1
  131. package/dist/styles/transition.js +1 -1
  132. package/dist/styles/transition.js.map +1 -1
  133. package/dist/styles/types.d.ts +74 -23
  134. package/dist/tasty.d.ts +30 -893
  135. package/dist/tasty.js +60 -19
  136. package/dist/tasty.js.map +1 -1
  137. package/dist/types.d.ts +1 -1
  138. package/dist/utils/cache-wrapper.js +4 -8
  139. package/dist/utils/cache-wrapper.js.map +1 -1
  140. package/dist/utils/color-math.d.ts +46 -0
  141. package/dist/utils/color-math.js +749 -0
  142. package/dist/utils/color-math.js.map +1 -0
  143. package/dist/utils/color-space.d.ts +5 -0
  144. package/dist/utils/color-space.js +229 -0
  145. package/dist/utils/color-space.js.map +1 -0
  146. package/dist/utils/colors.js +3 -1
  147. package/dist/utils/colors.js.map +1 -1
  148. package/dist/utils/has-keys.js +13 -0
  149. package/dist/utils/has-keys.js.map +1 -0
  150. package/dist/utils/mod-attrs.js +2 -2
  151. package/dist/utils/mod-attrs.js.map +1 -1
  152. package/dist/utils/process-tokens.d.ts +3 -13
  153. package/dist/utils/process-tokens.js +18 -98
  154. package/dist/utils/process-tokens.js.map +1 -1
  155. package/dist/utils/selector-transform.js +32 -0
  156. package/dist/utils/selector-transform.js.map +1 -0
  157. package/dist/utils/styles.d.ts +2 -81
  158. package/dist/utils/styles.js +28 -397
  159. package/dist/utils/styles.js.map +1 -1
  160. package/dist/utils/typography.d.ts +24 -13
  161. package/dist/utils/typography.js +14 -16
  162. package/dist/utils/typography.js.map +1 -1
  163. package/dist/zero/babel.d.ts +67 -8
  164. package/dist/zero/babel.js +109 -17
  165. package/dist/zero/babel.js.map +1 -1
  166. package/dist/zero/extractor.js +118 -1
  167. package/dist/zero/extractor.js.map +1 -1
  168. package/dist/zero/next.d.ts +44 -30
  169. package/dist/zero/next.js +102 -38
  170. package/dist/zero/next.js.map +1 -1
  171. package/docs/PIPELINE.md +519 -0
  172. package/docs/README.md +31 -0
  173. package/docs/adoption.md +296 -0
  174. package/docs/comparison.md +420 -0
  175. package/docs/configuration.md +326 -0
  176. package/docs/debug.md +318 -0
  177. package/docs/design-system.md +424 -0
  178. package/docs/dsl.md +673 -0
  179. package/docs/getting-started.md +217 -0
  180. package/docs/injector.md +528 -0
  181. package/docs/methodology.md +567 -0
  182. package/docs/runtime.md +485 -0
  183. package/docs/ssr.md +384 -0
  184. package/docs/styles.md +582 -0
  185. package/docs/tasty-static.md +433 -0
  186. package/package.json +52 -31
  187. package/dist/styles/styledScrollbar.d.ts +0 -47
  188. package/dist/styles/styledScrollbar.js +0 -38
  189. package/dist/styles/styledScrollbar.js.map +0 -1
  190. package/dist/tokens/typography.d.ts +0 -19
  191. package/dist/tokens/typography.js +0 -237
  192. package/dist/tokens/typography.js.map +0 -1
  193. package/dist/utils/hsl-to-rgb.js +0 -38
  194. package/dist/utils/hsl-to-rgb.js.map +0 -1
  195. package/dist/utils/okhsl-to-rgb.js +0 -296
  196. 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,22 +17,41 @@
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.
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 compiles state maps into **mutually exclusive selectors**, so for a given property and component state, one branch wins by construction instead of competing through cascade and specificity.
23
+
24
+ That is the core guarantee: component styling resolves from declared state logic, not from source-order accidents or specificity fights.
25
+
26
+ Tasty fits best when you are building a design system or component library with intersecting states, variants, tokens, sub-elements, responsive rules, and extension semantics that need to stay predictable over time.
27
+
28
+ On top of that foundation, Tasty gives teams a governed styling model: a CSS-like DSL, tokens, recipes, typed style props, sub-elements, and multiple rendering modes.
29
+
30
+ - **New here?** Start with [Comparison](docs/comparison.md) if you are evaluating fit.
31
+ - **Adopting Tasty?** Read the [Adoption Guide](docs/adoption.md).
32
+ - **Want the mechanism first?** Jump to [How It Actually Works](#how-it-actually-works).
33
+ - **Ready to build?** Go to [Getting Started](docs/getting-started.md).
23
34
 
24
35
  ## Why Tasty
25
36
 
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.
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.
29
- - **Design-system native** — Color tokens (`#primary`), spacing units (`2x`), typography presets (`h1`, `t2`), border radius (`1r`), and recipes are first-class primitives, not afterthoughts.
30
- - **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.
31
- - **Runtime or zero-runtime — your call** — Use `tasty()` for dynamic React components with runtime injection, or `tastyStatic()` with the Babel plugin for zero-runtime CSS extraction. Same DSL, same tokens, same output.
32
- - **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.
33
- - **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.
34
- - **Composable and extensible by design** — Extend any component's styles with proper merge semantics, and evolve built-in behavior through configuration and plugins.
35
- - **TypeScript-first** — Full type definitions, module augmentation for custom properties, and autocomplete for tokens, presets, and themes.
37
+ - **Deterministic composition, not cascade fights** — Stateful styles resolve from the state map you declared, not from selector competition. See [How It Actually Works](#how-it-actually-works).
38
+ - **Built for design-system teams** — Best fit for reusable component systems with complex state interactions.
39
+ - **A governed styling model, not just syntax sugar** Design-system authors define the styling language product teams consume.
40
+ - **DSL that still feels like CSS** — Familiar property names, less selector boilerplate. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
41
+
42
+ ### Supporting capabilities
43
+
44
+ - **Typed style props and mod props** — `styleProps` exposes selected CSS properties as typed React props (`<Space flow="row" gap="2x">`); `modProps` does the same for modifier keys (`<Button isLoading size="large">`). Both support state maps and full TypeScript autocomplete. See [Style Props](#style-props) and [Mod Props](#mod-props).
45
+ - **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.
46
+ - **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.
47
+ - **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
48
+ - **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.
49
+
50
+ ## Why It Exists
51
+
52
+ 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.
53
+
54
+ Tasty replaces that competition with explicit state-map resolution. Each property compiles into mutually exclusive branches, so component styling stays deterministic as systems grow. For the full mechanism, jump to [How It Actually Works](#how-it-actually-works).
36
55
 
37
56
  ## Installation
38
57
 
@@ -40,6 +59,30 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
40
59
  pnpm add @tenphi/tasty
41
60
  ```
42
61
 
62
+ Requirements:
63
+
64
+ - Node.js 20+
65
+ - React 18+ (peer dependency for the React entry points)
66
+ - `pnpm`, `npm`, or `yarn`
67
+
68
+ Other package managers:
69
+
70
+ ```bash
71
+ npm add @tenphi/tasty
72
+ yarn add @tenphi/tasty
73
+ ```
74
+
75
+ ## Start Here
76
+
77
+ For the fuller docs map beyond the quick routes above, start here:
78
+
79
+ - **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
80
+ - **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
81
+ - **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
82
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — see the selector model behind deterministic style resolution
83
+ - **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
84
+ - **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
85
+
43
86
  ## Quick Start
44
87
 
45
88
  ### Create a styled component
@@ -52,11 +95,12 @@ const Card = tasty({
52
95
  styles: {
53
96
  display: 'flex',
54
97
  flow: 'column',
55
- padding: '4x',
56
- gap: '2x',
57
- fill: '#surface',
58
- border: '#border bottom',
59
- radius: '1r',
98
+ padding: '24px',
99
+ gap: '12px',
100
+ fill: 'white',
101
+ color: '#222',
102
+ border: '1px solid #ddd',
103
+ radius: '12px',
60
104
  },
61
105
  });
62
106
 
@@ -64,7 +108,11 @@ const Card = tasty({
64
108
  <Card>Hello World</Card>
65
109
  ```
66
110
 
67
- Every value maps to CSS you'd recognize but with tokens and units that keep your design system consistent by default.
111
+ Every value maps to CSS you'd recognize. This example is intentionally a simple first contact, not a tour of the whole DSL.
112
+
113
+ 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.
114
+
115
+ 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).
68
116
 
69
117
  ### Add state-driven styles
70
118
 
@@ -111,7 +159,7 @@ const DangerButton = tasty(Button, {
111
159
 
112
160
  Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
113
161
 
114
- ### Configure once, use everywhere
162
+ ### Optional: configure shared conventions
115
163
 
116
164
  ```tsx
117
165
  import { configure } from '@tenphi/tasty';
@@ -128,17 +176,55 @@ configure({
128
176
  });
129
177
  ```
130
178
 
131
- Predefined states turn complex selector logic into single tokens. Use `@mobile` instead of writing media query expressions in every component.
179
+ 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.
180
+
181
+ ### Props as the public API
182
+
183
+ `styleProps` exposes selected CSS properties as typed React props, and `modProps` does the same for modifier keys. Together they let design systems define a governed, typed component API without wrapper elements or `styles` overrides:
184
+
185
+ ```tsx
186
+ <Space flow="row" gap="2x" placeItems="center">
187
+ <Button isLoading size="large" placeSelf="end">Submit</Button>
188
+ </Space>
189
+ ```
190
+
191
+ See [Style Props](#style-props) and [Mod Props](#mod-props) below, or the full reference in [Runtime API](docs/runtime.md#style-props).
192
+
193
+ ## Choose a Styling Approach
194
+
195
+ Once you understand the component model, pick the rendering mode that matches your app.
196
+
197
+ | Approach | Entry point | Best for | Trade-off |
198
+ |----------|-------------|----------|-----------|
199
+ | **Runtime** | `@tenphi/tasty` | Interactive apps with reusable stateful components and design systems | Full feature set; CSS is generated on demand at runtime |
200
+ | **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
201
+
202
+ 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).
132
203
 
133
204
  ## How It Actually Works
134
205
 
135
206
  This is the core idea that makes everything else possible.
136
207
 
137
- Traditional CSS has two structural problems.
208
+ 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)**.
209
+
210
+ ### The structural problem with normal CSS
138
211
 
139
212
  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.
140
213
 
141
- 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.
214
+ A small example makes this tangible. Two rules for a button's background:
215
+
216
+ ```css
217
+ .btn:hover { background: dodgerblue; }
218
+ .btn[disabled] { background: gray; }
219
+ ```
220
+
221
+ 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.
222
+
223
+ ### Why real state logic is hard to author by hand
224
+
225
+ 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.
226
+
227
+ ### What Tasty generates instead
142
228
 
143
229
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
144
230
 
@@ -157,7 +243,31 @@ const Text = tasty({
157
243
  });
158
244
  ```
159
245
 
160
- If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, Tasty generates:
246
+ If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, try writing the CSS by hand. A first attempt might look like this:
247
+
248
+ ```css
249
+ /* First attempt — the @media branch is too broad */
250
+ .t0 { color: var(--text-color); }
251
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
252
+ @media (prefers-color-scheme: dark) {
253
+ .t0 { color: var(--text-on-dark-color); }
254
+ }
255
+ ```
256
+
257
+ The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
258
+
259
+ ```css
260
+ /* Second attempt — @media is scoped, but the default is still too broad */
261
+ .t0 { color: var(--text-color); }
262
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
263
+ @media (prefers-color-scheme: dark) {
264
+ :root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
265
+ }
266
+ ```
267
+
268
+ Better — but the bare `.t0` default still matches unconditionally. It matches in dark mode, it matches when `data-schema="dark"` is set, and it can beat the attribute selector by source order if another rule re-declares it later. There is no selector that says "apply this default only when none of the dark branches win."
269
+
270
+ 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:
161
271
 
162
272
  ```css
163
273
  /* Branch 1: Explicit dark schema */
@@ -185,12 +295,18 @@ If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-col
185
295
  }
186
296
  ```
187
297
 
298
+ ### What guarantee that gives you
299
+
188
300
  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.
189
301
 
190
- 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.
302
+ 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.
303
+
304
+ [Try it in the playground →](https://tasty.style/playground)
191
305
 
192
306
  ## Capabilities
193
307
 
308
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
309
+
194
310
  ### Design Tokens and Custom Units
195
311
 
196
312
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -226,7 +342,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
226
342
  | Class selector (supported) | `.is-active` | `.is-active` |
227
343
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
228
344
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
229
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
345
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
230
346
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
231
347
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
232
348
  | Entry animation | `@starting` | `@starting-style` |
@@ -243,177 +359,99 @@ fill: {
243
359
 
244
360
  ### Sub-Element Styling
245
361
 
246
- Style inner elements from the parent component definition. No extra components, no CSS leakage:
362
+ Compound components can style inner parts from the parent definition with capitalized keys in `styles` and optional `elements` declarations, producing typed sub-components like `<Card.Title />` instead of separate wrapper components or ad hoc class naming.
247
363
 
248
- ```tsx
249
- const Card = tasty({
250
- styles: {
251
- padding: '4x',
252
- Title: { preset: 'h3', color: '#primary' },
253
- Content: { color: '#text', preset: 't2' },
254
- },
255
- elements: { Title: 'h2', Content: 'div' },
256
- });
364
+ Sub-elements share the root state context by default, so keys like `:hover`, modifiers, root states, and media queries resolve as one coordinated styling block. Use `@own(...)` when a sub-element should react to its own state, and use the `$` selector affix when you need precise descendant targeting.
257
365
 
258
- <Card>
259
- <Card.Title>Heading</Card.Title>
260
- <Card.Content>Body text</Card.Content>
261
- </Card>
262
- ```
366
+ See [Runtime API - Sub-element Styling](docs/runtime.md#sub-element-styling), [Style DSL - Advanced States](docs/dsl.md#advanced-states--prefix), and [Methodology](docs/methodology.md#component-architecture-root--sub-elements).
263
367
 
264
- Sub-elements use `data-element` attributes — no extra class names, no naming conventions.
368
+ ### Style Props
265
369
 
266
- By default, sub-elements participate in the same state context as the root component. That means mappings like `:hover`, `theme=danger`, `[role="button"]`, and other keys are evaluated as one unified block, which keeps styling logic predictable across the whole markup tree.
370
+ `styleProps` exposes selected CSS properties as typed React props. Components control which properties to open up; consumers get layout and composition knobs without `styles` overrides. Supports state maps for responsive values.
267
371
 
268
- Use `@own(...)` when a sub-element should react to its own state instead of the root state context.
372
+ ```tsx
373
+ const Space = tasty({
374
+ styles: { display: 'flex', flow: 'column', gap: '1x' },
375
+ styleProps: FLOW_STYLES,
376
+ });
269
377
 
270
- Class selectors are also supported, but modifiers/pseudo-classes are usually the better default in design-system code.
378
+ <Space flow="row" gap={{ '': '2x', '@tablet': '4x' }}>
379
+ ```
271
380
 
272
- Use the sub-element selector `$` when you need precise descendant targeting to avoid leakage in deeply nested component trees.
381
+ See [Runtime API - Style Props](docs/runtime.md#style-props) and [Methodology - styleProps](docs/methodology.md#styleprops-as-the-public-api).
273
382
 
274
- ### Variants
383
+ ### Mod Props
275
384
 
276
- Variants are designed to keep single-component CSS lean. Instead of generating dozens of static button classes up front, define all versions once and let runtime usage decide what CSS is actually emitted.
385
+ `modProps` exposes modifier keys as typed React props the modifier equivalent of `styleProps`. Accepts an array of key names or an object with type descriptors (`Boolean`, `String`, `Number`, or enum arrays) for full TypeScript autocomplete.
277
386
 
278
387
  ```tsx
279
388
  const Button = tasty({
280
- styles: { padding: '2x 4x', radius: '1r' },
281
- variants: {
282
- default: { fill: '#primary', color: '#on-primary' },
283
- danger: { fill: '#danger', color: '#on-danger' },
284
- outline: { fill: 'transparent', border: '1bw solid #primary' },
389
+ as: 'button',
390
+ modProps: { isLoading: Boolean, size: ['sm', 'md', 'lg'] as const },
391
+ styles: {
392
+ fill: { '': '#primary', isLoading: '#primary.5' },
393
+ padding: { '': '2x 4x', 'size=sm': '1x 2x' },
285
394
  },
286
395
  });
287
396
 
288
- <Button variant="danger">Delete</Button>
397
+ <Button isLoading size="lg">Submit</Button>
289
398
  ```
290
399
 
291
- ### Recipes
400
+ See [Runtime API - Mod Props](docs/runtime.md#mod-props) and [Methodology - modProps](docs/methodology.md#modprops-and-mods).
292
401
 
293
- Recipes are predefined style sets that work like composable styling classes for Tasty. They can be pre-applied or post-applied to current styles, which lets you add reusable state logic while still allowing local style overrides.
402
+ ### Variants
294
403
 
295
- ```tsx
296
- configure({
297
- recipes: {
298
- card: { padding: '4x', fill: '#surface', radius: '1r', border: true },
299
- elevated: { shadow: '0 2x 4x #shadow' },
300
- },
301
- });
404
+ Variants let one component expose named visual versions without pre-generating a separate class for every possible combination. In runtime mode, Tasty emits only the variant CSS that is actually used.
302
405
 
303
- const ProfileCard = tasty({
304
- styles: {
305
- recipe: 'card elevated',
306
- color: '#text',
307
- },
308
- });
309
- ```
406
+ See [Runtime API - Variants](docs/runtime.md#variants).
310
407
 
311
- Use `/` to post-apply recipes after local styles when you need recipe states/styles to win the final merge order. Use `none` to skip base recipes: `recipe: 'none / disabled'`.
408
+ ### Recipes
312
409
 
313
- ### Keyframes and `@property`
410
+ Recipes are reusable style bundles defined in `configure({ recipes })` and applied with the `recipe` style property. They are useful when your design system wants shared state logic or visual presets without forcing every component to repeat the same style map.
314
411
 
315
- Modern CSS features are natively supported:
412
+ Use `/` to post-apply recipes after local styles when recipe states should win the final merge order, and use `none` to skip base recipes entirely.
316
413
 
317
- Color tokens are automatically registered as typed properties (`<color>`), so token-based transitions work without extra setup.
414
+ See [Style DSL - Recipes](docs/dsl.md#recipes) and [Configuration - recipes](docs/configuration.md#recipes).
318
415
 
319
- ```tsx
320
- const Pulse = tasty({
321
- styles: {
322
- '@properties': {
323
- '$pulse-scale': {
324
- syntax: '<number>',
325
- inherits: false,
326
- initialValue: 1,
327
- },
328
- },
329
- animation: 'pulse 2s infinite',
330
- transform: 'scale($pulse-scale)',
331
- '@keyframes': {
332
- pulse: {
333
- '0%, 100%': { '$pulse-scale': 1 },
334
- '50%': { '$pulse-scale': 1.05 },
335
- },
336
- },
337
- },
338
- });
339
- ```
416
+ ### Auto-Inferred `@property`
340
417
 
341
- ### React Hooks
418
+ Tasty usually removes the need to hand-author CSS [`@property`](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) rules. When a custom property receives a concrete value, Tasty infers its syntax and registers the matching `@property` automatically, which makes transitions and animations on custom properties work without extra boilerplate.
342
419
 
343
- For cases where you don't need a full component:
420
+ If you prefer explicit control, disable inference with `configure({ autoPropertyTypes: false })` or declare the properties yourself.
344
421
 
345
- ```tsx
346
- import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
422
+ See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
347
423
 
348
- function App() {
349
- const { className } = useStyles({ padding: '2x', fill: '#surface' });
350
- useGlobalStyles(':root', { '#primary': 'purple', '$gap': '8px' });
351
- useRawCSS('body { margin: 0; }');
424
+ ### Explicit `@properties`
352
425
 
353
- return <main className={className}>...</main>;
354
- }
355
- ```
426
+ Use explicit `@properties` only when you need to override defaults such as `inherits: false` or a custom `initialValue`.
356
427
 
357
- ### Zero-Runtime Mode
428
+ See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
358
429
 
359
- Extract all CSS at build time. Zero JavaScript overhead in production:
430
+ ### React Hooks
360
431
 
361
- ```tsx
362
- import { tastyStatic } from '@tenphi/tasty/static';
432
+ When you do not need a full component wrapper, use the hooks directly: `useStyles` for local class names, `useGlobalStyles` for selector-scoped global CSS, `useRawCSS` for raw rules, plus `useKeyframes` and `useProperty` for animation and custom-property primitives.
363
433
 
364
- const card = tastyStatic({
365
- padding: '4x',
366
- fill: '#surface',
367
- radius: '1r',
368
- color: { '': '#text', '@dark': '#text-on-dark' },
369
- });
434
+ See [Runtime API - Hooks](docs/runtime.md#hooks).
370
435
 
371
- // card is a CSS class name string
372
- <div className={card}>Static styles, zero runtime</div>
373
- ```
436
+ ### Zero-Runtime Mode
374
437
 
375
- Configure the Babel plugin:
438
+ Use `tastyStatic` when you want the same DSL and state model, but with CSS extracted at build time and no styling runtime in the client bundle. It is a strong fit for static sites, landing pages, and other build-time-first setups.
376
439
 
377
- ```js
378
- module.exports = {
379
- plugins: [
380
- ['@tenphi/tasty/babel-plugin', {
381
- output: 'public/tasty.css',
382
- config: {
383
- states: { '@dark': '@root(theme=dark)' },
384
- },
385
- }],
386
- ],
387
- };
388
- ```
440
+ See [Zero Runtime (tastyStatic)](docs/tasty-static.md) and [Getting Started - Choosing a rendering mode](docs/getting-started.md#choosing-a-rendering-mode).
389
441
 
390
442
  ### `tasty` vs `tastyStatic`
391
443
 
392
- | | `tasty` (runtime) | `tastyStatic` (zero-runtime) |
393
- |---|---|---|
394
- | **Output** | React component | CSS class name |
395
- | **CSS injection** | Runtime `<style>` tags | Build-time extraction |
396
- | **Runtime cost** | Style generation on mount | None |
397
- | **Generated CSS scope** | Only styles/variants used at runtime | All extracted static styles at build time |
398
- | **Dynamic values** | Fully supported | Via CSS custom properties |
399
- | **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
400
- | **Variants** | Built-in (`variants` option) | Separate static styles |
401
- | **Framework** | React | Any (requires Babel) |
402
- | **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
444
+ `tasty()` returns React components and injects CSS on demand at runtime. `tastyStatic()` returns class names and extracts CSS during the build. Both share the same DSL, tokens, units, state mappings, and recipes, so the main choice is runtime flexibility versus build-time extraction.
403
445
 
404
- Both share the same DSL, tokens, units, state mappings, and recipes.
446
+ See [Zero Runtime (tastyStatic)](docs/tasty-static.md), [Runtime API](docs/runtime.md), and [Comparison - Build-time vs runtime](docs/comparison.md#build-time-vs-runtime).
405
447
 
406
- ### Runtime Performance
448
+ ### Server-Side Rendering
407
449
 
408
- If you choose the runtime approach, performance is usually a non-issue in practice:
450
+ SSR layers on top of runtime `tasty()` rather than introducing a separate styling model. Existing components stay unchanged while Tasty collects CSS during server rendering and hydrates the cache on the client.
409
451
 
410
- - CSS is generated and injected only when styles are actually used.
411
- - Multi-level caching avoids repeated parsing and style recomputation.
412
- - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
413
- - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
414
- - A style garbage collector removes unused styles/chunks over time.
415
- - A dedicated style injector minimizes DOM/style-tag overhead.
416
- - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
452
+ Use `@tenphi/tasty/ssr/next` for Next.js App Router, `@tenphi/tasty/ssr/astro` for Astro, or the core SSR API for other React SSR setups.
453
+
454
+ See the [full SSR guide](docs/ssr.md).
417
455
 
418
456
  ## Entry Points
419
457
 
@@ -425,6 +463,69 @@ If you choose the runtime approach, performance is usually a non-issue in practi
425
463
  | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
426
464
  | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
427
465
  | `@tenphi/tasty/next` | Next.js integration wrapper | Node |
466
+ | `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
467
+ | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
468
+ | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
469
+
470
+ ## Browser Requirements
471
+
472
+ Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
473
+
474
+ - **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
475
+ - **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
476
+ - **Not supported:** IE 11.
477
+
478
+ ## Performance
479
+
480
+ ### Bundle Size
481
+
482
+ All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
483
+
484
+ | Entry point | Size |
485
+ |-------------|------|
486
+ | `@tenphi/tasty` (runtime + SSR) | ~44 kB |
487
+ | `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
488
+ | `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
489
+
490
+ Run `pnpm size` for exact up-to-date numbers.
491
+
492
+ ### Runtime Benchmarks
493
+
494
+ 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).
495
+
496
+ | Operation | ops/sec | Latency (mean) |
497
+ |-----------|--------:|---------------:|
498
+ | `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
499
+ | `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
500
+ | `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
501
+ | `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
502
+ | `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
503
+ | `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
504
+ | `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
505
+ | `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
506
+ | `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
507
+
508
+ "Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
509
+
510
+ Run `pnpm bench` to reproduce.
511
+
512
+ #### What This Means in Practice
513
+
514
+ - **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.
515
+ - **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.
516
+ - **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
517
+ - **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).
518
+ - **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.
519
+
520
+ ### How It Stays Fast
521
+
522
+ - CSS is generated and injected only when styles are actually used.
523
+ - Multi-level caching avoids repeated parsing and style recomputation.
524
+ - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
525
+ - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
526
+ - A style garbage collector removes unused styles/chunks over time.
527
+ - A dedicated style injector minimizes DOM/style-tag overhead.
528
+ - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
428
529
 
429
530
  ## Ecosystem
430
531
 
@@ -432,7 +533,7 @@ Tasty is the core of a production-ready styling platform. These companion tools
432
533
 
433
534
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
434
535
 
435
- `@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.
536
+ `@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.
436
537
 
437
538
  ```bash
438
539
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -467,18 +568,62 @@ Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Hi
467
568
  <img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
468
569
  </p>
469
570
 
470
- ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit)
571
+ ## Built with Tasty
572
+
573
+ ### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
574
+
575
+ The official Tasty documentation and landing page — itself built entirely with Tasty. A showcase for zero-runtime styling via `tastyStatic`, SSR with Next.js, and OKHSL color theming with Glaze.
576
+
577
+ ### [Cube Cloud](https://cube.dev/)
578
+
579
+ Enterprise universal semantic layer platform by Cube Dev, Inc. Cube Cloud unifies data modeling, caching, access control, and APIs (REST, GraphQL, SQL, AI) for analytics at scale. Tasty has powered its frontend for over 5 years in production.
580
+
581
+ ### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
582
+
583
+ A single spreadsheet add-in deployed to both [Microsoft Excel](https://marketplace.microsoft.com/en-us/product/office/WA200008486) and [Google Sheets](https://workspace.google.com/u/0/marketplace/app/cube_cloud_for_sheets/641460343379). Connects spreadsheets to any cloud data platform (BigQuery, Databricks, Snowflake, Redshift, and more) via Cube Cloud's universal semantic layer.
584
+
585
+ ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
471
586
 
472
587
  Open-source React UI kit built on Tasty + React Aria. 100+ production components proving Tasty works at design-system scale. A reference implementation and a ready-to-use component library.
473
588
 
474
589
  ## Documentation
475
590
 
476
- - **[Runtime API (tasty)](docs/tasty.md)** Full runtime styling documentation: component creation, state mappings, sub-elements, variants, hooks, and configuration
591
+ Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
592
+
593
+ - **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
594
+
595
+ ### Start here
596
+
597
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
598
+ - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
599
+
600
+ ### Guides
601
+
602
+ - **[Building a Design System](docs/design-system.md)** — Practical guide to building a DS layer: token vocabulary, state aliases, recipes, primitives, compound components, override contracts
603
+ - **[Adoption Guide](docs/adoption.md)** — Where Tasty sits in the stack, who should adopt it, what you define yourself, and how to introduce it incrementally into an existing design system
604
+
605
+ ### Reference
606
+
607
+ - **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
608
+ - **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and hooks
609
+ - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
477
610
  - **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
611
+
612
+ ### Rendering modes
613
+
478
614
  - **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
615
+ - **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
616
+
617
+ ### Internals
618
+
619
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
479
620
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
480
621
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
481
622
 
623
+ ### Context
624
+
625
+ - **[Comparison](docs/comparison.md)** — How Tasty compares to Tailwind, Panda CSS, vanilla-extract, StyleX, Stitches, and Emotion: positioning, trade-offs, and when each tool fits best
626
+
482
627
  ## License
483
628
 
484
629
  [MIT](LICENSE)