@tenphi/tasty 0.0.0-snapshot.bd9a492 → 0.0.0-snapshot.bdb792d

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 (312) hide show
  1. package/README.md +325 -204
  2. package/dist/async-storage-DKK-wTD4.js +44 -0
  3. package/dist/async-storage-DKK-wTD4.js.map +1 -0
  4. package/dist/babel-BUQGeOXA.d.ts +83 -0
  5. package/dist/collector-CPlg2ea1.js +304 -0
  6. package/dist/collector-CPlg2ea1.js.map +1 -0
  7. package/dist/collector-DUaHCcTS.d.ts +145 -0
  8. package/dist/config-CZ92V3US.js +12279 -0
  9. package/dist/config-CZ92V3US.js.map +1 -0
  10. package/dist/config-YsxGv4tq.d.ts +1263 -0
  11. package/dist/context-CA8YKeMn.js +24 -0
  12. package/dist/context-CA8YKeMn.js.map +1 -0
  13. package/dist/core/index.d.ts +5 -33
  14. package/dist/core/index.js +6 -26
  15. package/dist/core-DYX5Ys3Q.js +1565 -0
  16. package/dist/core-DYX5Ys3Q.js.map +1 -0
  17. package/dist/{zero/extractor.js → css-writer-CjzCt9m5.js} +188 -13
  18. package/dist/css-writer-CjzCt9m5.js.map +1 -0
  19. package/dist/format-global-rules-DklyaXv-.js +22 -0
  20. package/dist/format-global-rules-DklyaXv-.js.map +1 -0
  21. package/dist/format-rules-DIhmf74H.js +130 -0
  22. package/dist/format-rules-DIhmf74H.js.map +1 -0
  23. package/dist/hydrate-pkcFPujS.js +37 -0
  24. package/dist/hydrate-pkcFPujS.js.map +1 -0
  25. package/dist/index-Cd45t5NM.d.ts +1521 -0
  26. package/dist/index-DhhUI0yi.d.ts +1904 -0
  27. package/dist/index.d.ts +5 -48
  28. package/dist/index.js +920 -32
  29. package/dist/index.js.map +1 -0
  30. package/dist/keyframes-BVjrAd6z.js +424 -0
  31. package/dist/keyframes-BVjrAd6z.js.map +1 -0
  32. package/dist/{utils/merge-styles.d.ts → merge-styles-CU7JbEwg.d.ts} +3 -3
  33. package/dist/{utils/merge-styles.js → merge-styles-FfIGCgqQ.js} +4 -6
  34. package/dist/merge-styles-FfIGCgqQ.js.map +1 -0
  35. package/dist/{utils/resolve-recipes.js → resolve-recipes-FpolmQft.js} +5 -8
  36. package/dist/resolve-recipes-FpolmQft.js.map +1 -0
  37. package/dist/ssr/astro-client.d.ts +1 -0
  38. package/dist/ssr/astro-client.js +19 -0
  39. package/dist/ssr/astro-client.js.map +1 -0
  40. package/dist/ssr/astro-middleware-static.d.ts +16 -0
  41. package/dist/ssr/astro-middleware-static.js +18 -0
  42. package/dist/ssr/astro-middleware-static.js.map +1 -0
  43. package/dist/ssr/astro-middleware.d.ts +17 -0
  44. package/dist/ssr/astro-middleware.js +19 -0
  45. package/dist/ssr/astro-middleware.js.map +1 -0
  46. package/dist/ssr/astro.d.ts +93 -0
  47. package/dist/ssr/astro.js +157 -0
  48. package/dist/ssr/astro.js.map +1 -0
  49. package/dist/ssr/index.d.ts +37 -0
  50. package/dist/ssr/index.js +10 -0
  51. package/dist/ssr/index.js.map +1 -0
  52. package/dist/ssr/next.d.ts +45 -0
  53. package/dist/ssr/next.js +74 -0
  54. package/dist/ssr/next.js.map +1 -0
  55. package/dist/static/index.d.ts +91 -5
  56. package/dist/static/index.js +49 -4
  57. package/dist/static/index.js.map +1 -0
  58. package/dist/static/inject.d.ts +5 -0
  59. package/dist/static/inject.js +17 -0
  60. package/dist/static/inject.js.map +1 -0
  61. package/dist/zero/babel.d.ts +2 -113
  62. package/dist/zero/babel.js +232 -42
  63. package/dist/zero/babel.js.map +1 -1
  64. package/dist/zero/index.d.ts +81 -3
  65. package/dist/zero/index.js +2 -4
  66. package/dist/zero/next.d.ts +56 -30
  67. package/dist/zero/next.js +106 -41
  68. package/dist/zero/next.js.map +1 -1
  69. package/docs/README.md +34 -0
  70. package/docs/adoption.md +298 -0
  71. package/docs/ai-agents.md +223 -0
  72. package/docs/comparison.md +419 -0
  73. package/docs/configuration.md +813 -0
  74. package/docs/debug.md +320 -0
  75. package/docs/design-system.md +436 -0
  76. package/docs/dsl.md +956 -0
  77. package/docs/getting-started.md +217 -0
  78. package/docs/injector.md +597 -0
  79. package/docs/methodology.md +642 -0
  80. package/docs/migration-v3.md +285 -0
  81. package/docs/pipeline.md +741 -0
  82. package/docs/plugins.md +349 -0
  83. package/docs/react-api.md +660 -0
  84. package/docs/ssr.md +452 -0
  85. package/docs/styles.md +638 -0
  86. package/docs/tasty-static.md +549 -0
  87. package/package.json +100 -45
  88. package/tasty.config.ts +6 -0
  89. package/dist/_virtual/_rolldown/runtime.js +0 -8
  90. package/dist/chunks/cacheKey.js +0 -70
  91. package/dist/chunks/cacheKey.js.map +0 -1
  92. package/dist/chunks/definitions.d.ts +0 -37
  93. package/dist/chunks/definitions.js +0 -260
  94. package/dist/chunks/definitions.js.map +0 -1
  95. package/dist/chunks/renderChunk.js +0 -61
  96. package/dist/chunks/renderChunk.js.map +0 -1
  97. package/dist/config.d.ts +0 -288
  98. package/dist/config.js +0 -403
  99. package/dist/config.js.map +0 -1
  100. package/dist/debug.d.ts +0 -204
  101. package/dist/debug.js +0 -733
  102. package/dist/debug.js.map +0 -1
  103. package/dist/hooks/useGlobalStyles.d.ts +0 -27
  104. package/dist/hooks/useGlobalStyles.js +0 -56
  105. package/dist/hooks/useGlobalStyles.js.map +0 -1
  106. package/dist/hooks/useKeyframes.d.ts +0 -56
  107. package/dist/hooks/useKeyframes.js +0 -54
  108. package/dist/hooks/useKeyframes.js.map +0 -1
  109. package/dist/hooks/useProperty.d.ts +0 -79
  110. package/dist/hooks/useProperty.js +0 -91
  111. package/dist/hooks/useProperty.js.map +0 -1
  112. package/dist/hooks/useRawCSS.d.ts +0 -53
  113. package/dist/hooks/useRawCSS.js +0 -28
  114. package/dist/hooks/useRawCSS.js.map +0 -1
  115. package/dist/hooks/useStyles.d.ts +0 -40
  116. package/dist/hooks/useStyles.js +0 -169
  117. package/dist/hooks/useStyles.js.map +0 -1
  118. package/dist/injector/index.d.ts +0 -157
  119. package/dist/injector/index.js +0 -154
  120. package/dist/injector/index.js.map +0 -1
  121. package/dist/injector/injector.d.ts +0 -139
  122. package/dist/injector/injector.js +0 -424
  123. package/dist/injector/injector.js.map +0 -1
  124. package/dist/injector/sheet-manager.d.ts +0 -135
  125. package/dist/injector/sheet-manager.js +0 -728
  126. package/dist/injector/sheet-manager.js.map +0 -1
  127. package/dist/injector/types.d.ts +0 -144
  128. package/dist/keyframes/index.js +0 -206
  129. package/dist/keyframes/index.js.map +0 -1
  130. package/dist/parser/classify.js +0 -319
  131. package/dist/parser/classify.js.map +0 -1
  132. package/dist/parser/const.js +0 -33
  133. package/dist/parser/const.js.map +0 -1
  134. package/dist/parser/lru.js +0 -109
  135. package/dist/parser/lru.js.map +0 -1
  136. package/dist/parser/parser.d.ts +0 -25
  137. package/dist/parser/parser.js +0 -116
  138. package/dist/parser/parser.js.map +0 -1
  139. package/dist/parser/tokenizer.js +0 -69
  140. package/dist/parser/tokenizer.js.map +0 -1
  141. package/dist/parser/types.d.ts +0 -51
  142. package/dist/parser/types.js +0 -46
  143. package/dist/parser/types.js.map +0 -1
  144. package/dist/pipeline/conditions.d.ts +0 -134
  145. package/dist/pipeline/conditions.js +0 -406
  146. package/dist/pipeline/conditions.js.map +0 -1
  147. package/dist/pipeline/exclusive.js +0 -231
  148. package/dist/pipeline/exclusive.js.map +0 -1
  149. package/dist/pipeline/index.d.ts +0 -53
  150. package/dist/pipeline/index.js +0 -660
  151. package/dist/pipeline/index.js.map +0 -1
  152. package/dist/pipeline/materialize.js +0 -844
  153. package/dist/pipeline/materialize.js.map +0 -1
  154. package/dist/pipeline/parseStateKey.d.ts +0 -15
  155. package/dist/pipeline/parseStateKey.js +0 -438
  156. package/dist/pipeline/parseStateKey.js.map +0 -1
  157. package/dist/pipeline/simplify.js +0 -516
  158. package/dist/pipeline/simplify.js.map +0 -1
  159. package/dist/pipeline/warnings.js +0 -18
  160. package/dist/pipeline/warnings.js.map +0 -1
  161. package/dist/plugins/okhsl-plugin.d.ts +0 -35
  162. package/dist/plugins/okhsl-plugin.js +0 -371
  163. package/dist/plugins/okhsl-plugin.js.map +0 -1
  164. package/dist/plugins/types.d.ts +0 -69
  165. package/dist/properties/index.js +0 -258
  166. package/dist/properties/index.js.map +0 -1
  167. package/dist/properties/property-type-resolver.d.ts +0 -29
  168. package/dist/properties/property-type-resolver.js +0 -103
  169. package/dist/properties/property-type-resolver.js.map +0 -1
  170. package/dist/states/index.d.ts +0 -49
  171. package/dist/states/index.js +0 -416
  172. package/dist/states/index.js.map +0 -1
  173. package/dist/static/tastyStatic.d.ts +0 -46
  174. package/dist/static/tastyStatic.js +0 -31
  175. package/dist/static/tastyStatic.js.map +0 -1
  176. package/dist/static/types.d.ts +0 -49
  177. package/dist/static/types.js +0 -24
  178. package/dist/static/types.js.map +0 -1
  179. package/dist/styles/align.d.ts +0 -15
  180. package/dist/styles/align.js +0 -14
  181. package/dist/styles/align.js.map +0 -1
  182. package/dist/styles/border.d.ts +0 -25
  183. package/dist/styles/border.js +0 -114
  184. package/dist/styles/border.js.map +0 -1
  185. package/dist/styles/color.d.ts +0 -14
  186. package/dist/styles/color.js +0 -23
  187. package/dist/styles/color.js.map +0 -1
  188. package/dist/styles/createStyle.js +0 -77
  189. package/dist/styles/createStyle.js.map +0 -1
  190. package/dist/styles/dimension.js +0 -97
  191. package/dist/styles/dimension.js.map +0 -1
  192. package/dist/styles/display.d.ts +0 -37
  193. package/dist/styles/display.js +0 -67
  194. package/dist/styles/display.js.map +0 -1
  195. package/dist/styles/fade.d.ts +0 -15
  196. package/dist/styles/fade.js +0 -58
  197. package/dist/styles/fade.js.map +0 -1
  198. package/dist/styles/fill.d.ts +0 -42
  199. package/dist/styles/fill.js +0 -51
  200. package/dist/styles/fill.js.map +0 -1
  201. package/dist/styles/flow.d.ts +0 -16
  202. package/dist/styles/flow.js +0 -12
  203. package/dist/styles/flow.js.map +0 -1
  204. package/dist/styles/gap.d.ts +0 -31
  205. package/dist/styles/gap.js +0 -37
  206. package/dist/styles/gap.js.map +0 -1
  207. package/dist/styles/height.d.ts +0 -17
  208. package/dist/styles/height.js +0 -20
  209. package/dist/styles/height.js.map +0 -1
  210. package/dist/styles/index.d.ts +0 -2
  211. package/dist/styles/index.js +0 -9
  212. package/dist/styles/index.js.map +0 -1
  213. package/dist/styles/inset.d.ts +0 -52
  214. package/dist/styles/inset.js +0 -150
  215. package/dist/styles/inset.js.map +0 -1
  216. package/dist/styles/justify.d.ts +0 -15
  217. package/dist/styles/justify.js +0 -14
  218. package/dist/styles/justify.js.map +0 -1
  219. package/dist/styles/list.d.ts +0 -16
  220. package/dist/styles/list.js +0 -98
  221. package/dist/styles/list.js.map +0 -1
  222. package/dist/styles/margin.d.ts +0 -24
  223. package/dist/styles/margin.js +0 -104
  224. package/dist/styles/margin.js.map +0 -1
  225. package/dist/styles/outline.d.ts +0 -29
  226. package/dist/styles/outline.js +0 -65
  227. package/dist/styles/outline.js.map +0 -1
  228. package/dist/styles/padding.d.ts +0 -24
  229. package/dist/styles/padding.js +0 -104
  230. package/dist/styles/padding.js.map +0 -1
  231. package/dist/styles/predefined.d.ts +0 -73
  232. package/dist/styles/predefined.js +0 -241
  233. package/dist/styles/predefined.js.map +0 -1
  234. package/dist/styles/preset.d.ts +0 -47
  235. package/dist/styles/preset.js +0 -126
  236. package/dist/styles/preset.js.map +0 -1
  237. package/dist/styles/radius.d.ts +0 -14
  238. package/dist/styles/radius.js +0 -51
  239. package/dist/styles/radius.js.map +0 -1
  240. package/dist/styles/scrollbar.d.ts +0 -21
  241. package/dist/styles/scrollbar.js +0 -112
  242. package/dist/styles/scrollbar.js.map +0 -1
  243. package/dist/styles/shadow.d.ts +0 -14
  244. package/dist/styles/shadow.js +0 -24
  245. package/dist/styles/shadow.js.map +0 -1
  246. package/dist/styles/styledScrollbar.d.ts +0 -47
  247. package/dist/styles/styledScrollbar.js +0 -38
  248. package/dist/styles/styledScrollbar.js.map +0 -1
  249. package/dist/styles/transition.d.ts +0 -14
  250. package/dist/styles/transition.js +0 -158
  251. package/dist/styles/transition.js.map +0 -1
  252. package/dist/styles/types.d.ts +0 -498
  253. package/dist/styles/width.d.ts +0 -17
  254. package/dist/styles/width.js +0 -20
  255. package/dist/styles/width.js.map +0 -1
  256. package/dist/tasty.d.ts +0 -982
  257. package/dist/tasty.js +0 -206
  258. package/dist/tasty.js.map +0 -1
  259. package/dist/tokens/typography.d.ts +0 -19
  260. package/dist/tokens/typography.js +0 -237
  261. package/dist/tokens/typography.js.map +0 -1
  262. package/dist/types.d.ts +0 -184
  263. package/dist/utils/cache-wrapper.js +0 -26
  264. package/dist/utils/cache-wrapper.js.map +0 -1
  265. package/dist/utils/case-converter.js +0 -8
  266. package/dist/utils/case-converter.js.map +0 -1
  267. package/dist/utils/colors.d.ts +0 -5
  268. package/dist/utils/colors.js +0 -9
  269. package/dist/utils/colors.js.map +0 -1
  270. package/dist/utils/css-types.d.ts +0 -7
  271. package/dist/utils/dotize.d.ts +0 -26
  272. package/dist/utils/dotize.js +0 -122
  273. package/dist/utils/dotize.js.map +0 -1
  274. package/dist/utils/filter-base-props.d.ts +0 -15
  275. package/dist/utils/filter-base-props.js +0 -45
  276. package/dist/utils/filter-base-props.js.map +0 -1
  277. package/dist/utils/get-display-name.d.ts +0 -7
  278. package/dist/utils/get-display-name.js +0 -10
  279. package/dist/utils/get-display-name.js.map +0 -1
  280. package/dist/utils/hsl-to-rgb.js +0 -38
  281. package/dist/utils/hsl-to-rgb.js.map +0 -1
  282. package/dist/utils/is-dev-env.js +0 -19
  283. package/dist/utils/is-dev-env.js.map +0 -1
  284. package/dist/utils/is-valid-element-type.js +0 -15
  285. package/dist/utils/is-valid-element-type.js.map +0 -1
  286. package/dist/utils/merge-styles.js.map +0 -1
  287. package/dist/utils/mod-attrs.d.ts +0 -8
  288. package/dist/utils/mod-attrs.js +0 -21
  289. package/dist/utils/mod-attrs.js.map +0 -1
  290. package/dist/utils/okhsl-to-rgb.js +0 -296
  291. package/dist/utils/okhsl-to-rgb.js.map +0 -1
  292. package/dist/utils/process-tokens.d.ts +0 -31
  293. package/dist/utils/process-tokens.js +0 -171
  294. package/dist/utils/process-tokens.js.map +0 -1
  295. package/dist/utils/resolve-recipes.d.ts +0 -17
  296. package/dist/utils/resolve-recipes.js.map +0 -1
  297. package/dist/utils/string.js +0 -8
  298. package/dist/utils/string.js.map +0 -1
  299. package/dist/utils/styles.d.ts +0 -178
  300. package/dist/utils/styles.js +0 -751
  301. package/dist/utils/styles.js.map +0 -1
  302. package/dist/utils/typography.d.ts +0 -36
  303. package/dist/utils/typography.js +0 -53
  304. package/dist/utils/typography.js.map +0 -1
  305. package/dist/utils/warnings.d.ts +0 -16
  306. package/dist/utils/warnings.js +0 -16
  307. package/dist/utils/warnings.js.map +0 -1
  308. package/dist/zero/css-writer.d.ts +0 -45
  309. package/dist/zero/css-writer.js +0 -74
  310. package/dist/zero/css-writer.js.map +0 -1
  311. package/dist/zero/extractor.d.ts +0 -24
  312. package/dist/zero/extractor.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, so complex components stay predictable as they evolve.
10
10
  </p>
11
11
 
12
12
  <p align="center">
@@ -17,23 +17,44 @@
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
+ The practical payoff shows up later: adding states, variants, and overrides stays inside the state map instead of reopening selector logic by hand.
27
+
28
+ 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.
29
+
30
+ 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.
31
+
32
+ - **New here?** Start with [Comparison](docs/comparison.md) if you are evaluating fit.
33
+ - **Adopting Tasty?** Read the [Adoption Guide](docs/adoption.md).
34
+ - **Want the mechanism first?** Jump to [How It Actually Works](#how-it-actually-works).
35
+ - **Ready to build?** Go to [Getting Started](docs/getting-started.md).
23
36
 
24
37
  ## Why Tasty
25
38
 
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 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. See [Zero Runtime](docs/tasty-static.md).
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).
39
+ - **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).
40
+ - **Easier to extend over time** — When components gain new states, variants, or overrides, you update declared branches instead of re-deriving selector interactions by hand.
41
+ - **Built for design-system teams** — Best fit for reusable component systems with complex state interactions.
42
+ - **A governed styling model, not just syntax sugar** Design-system authors define the styling language product teams consume.
43
+ - **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.
44
+
45
+ ### Supporting capabilities
46
+
47
+ - **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).
48
+ - **Server-compatible by default, zero client JS in server-only contexts** — All `tasty()` components and style functions are hook-free. In server-only rendering (Next.js RSC, Astro without islands, SSG), they produce zero client JavaScript with the full feature set. Add SSR integration only when your app also has client-side hydration. Use `tastyStatic()` only when you need build-time extraction without React.
49
+ - **Broad modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, `@font-face`, `@counter-style`, `@function`, and more. Features that do not fit the component model (such as `@layer` and `!important`) are intentionally left out.
50
+ - **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
51
+ - **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.
52
+
53
+ ## Why It Exists
54
+
55
+ 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.
56
+
57
+ 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).
37
58
 
38
59
  ## Installation
39
60
 
@@ -41,6 +62,30 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
41
62
  pnpm add @tenphi/tasty
42
63
  ```
43
64
 
65
+ Requirements:
66
+
67
+ - Node.js 20+
68
+ - React 18+ (peer dependency for the React entry points)
69
+ - `pnpm`, `npm`, or `yarn`
70
+
71
+ Other package managers:
72
+
73
+ ```bash
74
+ npm add @tenphi/tasty
75
+ yarn add @tenphi/tasty
76
+ ```
77
+
78
+ ## Start Here
79
+
80
+ For the fuller docs map beyond the quick routes above, start here:
81
+
82
+ - **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
83
+ - **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
84
+ - **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
85
+ - **[Style rendering pipeline](docs/pipeline.md)** — see the selector model behind deterministic style resolution
86
+ - **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
87
+ - **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
88
+
44
89
  ## Quick Start
45
90
 
46
91
  ### Create a styled component
@@ -53,11 +98,12 @@ const Card = tasty({
53
98
  styles: {
54
99
  display: 'flex',
55
100
  flow: 'column',
56
- padding: '4x',
57
- gap: '2x',
58
- fill: '#surface',
59
- border: '#border bottom',
60
- radius: '1r',
101
+ padding: '24px',
102
+ gap: '12px',
103
+ fill: 'white',
104
+ color: '#222',
105
+ border: '1px solid #ddd',
106
+ radius: '12px',
61
107
  },
62
108
  });
63
109
 
@@ -65,7 +111,11 @@ const Card = tasty({
65
111
  <Card>Hello World</Card>
66
112
  ```
67
113
 
68
- Every value maps to CSS you'd recognize but with tokens and units that keep your design system consistent by default.
114
+ Every value maps to CSS you'd recognize. This example is intentionally a simple first contact, not a tour of the whole DSL.
115
+
116
+ 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.
117
+
118
+ 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
119
 
70
120
  ### Add state-driven styles
71
121
 
@@ -112,7 +162,7 @@ const DangerButton = tasty(Button, {
112
162
 
113
163
  Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
114
164
 
115
- ### Configure once, use everywhere
165
+ ### Optional: configure shared conventions
116
166
 
117
167
  ```tsx
118
168
  import { configure } from '@tenphi/tasty';
@@ -129,70 +179,56 @@ configure({
129
179
  });
130
180
  ```
131
181
 
132
- Predefined states turn complex selector logic into single tokens. Use `@mobile` instead of writing media query expressions in every component.
133
-
134
- ### CSS properties as props
182
+ 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.
135
183
 
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.
184
+ ### Props as the public API
137
185
 
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.
139
-
140
- ```tsx
141
- import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
142
-
143
- const Space = tasty({
144
- styles: {
145
- display: 'flex',
146
- flow: 'column',
147
- gap: '1x',
148
- },
149
- styleProps: FLOW_STYLES,
150
- });
151
-
152
- const Button = tasty({
153
- as: 'button',
154
- styles: {
155
- padding: '1.5x 3x',
156
- fill: '#primary',
157
- color: '#primary-text',
158
- radius: true,
159
- },
160
- styleProps: POSITION_STYLES,
161
- });
162
- ```
163
-
164
- Now you can compose layout and tweak component positioning directly in JSX:
186
+ `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:
165
187
 
166
188
  ```tsx
167
189
  <Space flow="row" gap="2x" placeItems="center">
168
- <Title>Dashboard</Title>
169
- <Button placeSelf="end">Add Item</Button>
190
+ <Button isLoading size="large" placeSelf="end">Submit</Button>
170
191
  </Space>
171
192
  ```
172
193
 
173
- The same props also support state maps, so responsive values use the exact same API:
194
+ See [Style Props](#style-props) and [Mod Props](#mod-props) below, or the full reference in [React API](docs/react-api.md#style-props).
174
195
 
175
- ```tsx
176
- <Space
177
- flow={{ '': 'column', '@tablet': 'row' }}
178
- gap={{ '': '2x', '@tablet': '4x' }}
179
- >
180
- <Sidebar />
181
- <Content />
182
- </Space>
183
- ```
196
+ ## Choose a Styling Approach
197
+
198
+ Once you understand the component model, pick the rendering mode that matches your app.
199
+
200
+ | Approach | Entry point | Best for | Trade-off |
201
+ |----------|-------------|----------|-----------|
202
+ | **Runtime (default)** | `tasty()` from `@tenphi/tasty` | All React apps — server-rendered by default, zero client JS until you need interactivity | Full feature set; CSS computed during React rendering (server or client) |
203
+ | **Runtime + SSR integration** | Add `@tenphi/tasty/ssr/*` | Apps with client-side hydration (Next.js client components, Astro islands) | Adds CSS deduplication, FOUC prevention, and client cache hydration |
204
+ | **Zero-runtime** | `tastyStatic()` from `@tenphi/tasty/static` | Non-React frameworks or when you need build-time extraction without React | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
184
205
 
185
- 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()`.
206
+ All `tasty()` components are hook-free and work as React Server Components. In server-only contexts Next.js RSC without `'use client'`, Astro without `client:*` directives, and other SSG setups — they produce the same end result as `tastyStatic()` (static HTML + CSS, zero client JavaScript) but with the full feature set including `styleProps`, sub-elements, and variants. SSR integration is only needed when your app also has client-side rendering. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
186
207
 
187
208
  ## How It Actually Works
188
209
 
189
210
  This is the core idea that makes everything else possible.
190
211
 
191
- Traditional CSS has two structural problems.
212
+ 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)**.
213
+
214
+ ### The structural problem with normal CSS
192
215
 
193
216
  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
217
 
195
- 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.
218
+ A small example makes this tangible. Two rules for a button's background:
219
+
220
+ ```css
221
+ .btn:hover { background: dodgerblue; }
222
+ .btn[disabled] { background: gray; }
223
+ ```
224
+
225
+ 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.
226
+
227
+ ### Why real state logic is hard to author by hand
228
+
229
+ 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.
230
+
231
+ ### What Tasty generates instead
196
232
 
197
233
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
198
234
 
@@ -211,7 +247,31 @@ const Text = tasty({
211
247
  });
212
248
  ```
213
249
 
214
- If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, Tasty generates:
250
+ 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:
251
+
252
+ ```css
253
+ /* First attempt — the @media branch is too broad */
254
+ .t0 { color: var(--text-color); }
255
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
256
+ @media (prefers-color-scheme: dark) {
257
+ .t0 { color: var(--text-on-dark-color); }
258
+ }
259
+ ```
260
+
261
+ The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
262
+
263
+ ```css
264
+ /* Second attempt — @media is scoped, but the default is still too broad */
265
+ .t0 { color: var(--text-color); }
266
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
267
+ @media (prefers-color-scheme: dark) {
268
+ :root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
269
+ }
270
+ ```
271
+
272
+ 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."
273
+
274
+ 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:
215
275
 
216
276
  ```css
217
277
  /* Branch 1: Explicit dark schema */
@@ -239,12 +299,18 @@ If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-col
239
299
  }
240
300
  ```
241
301
 
302
+ ### What guarantee that gives you
303
+
242
304
  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.
243
305
 
244
- 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.
306
+ 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.
307
+
308
+ [Try it in the playground →](https://tasty.style/playground)
245
309
 
246
310
  ## Capabilities
247
311
 
312
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
313
+
248
314
  ### Design Tokens and Custom Units
249
315
 
250
316
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -280,12 +346,12 @@ Every style property accepts a state mapping object. Keys can be combined with b
280
346
  | Class selector (supported) | `.is-active` | `.is-active` |
281
347
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
282
348
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
283
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
349
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
284
350
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
285
351
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
286
352
  | Entry animation | `@starting` | `@starting-style` |
287
353
 
288
- Combine with `&` (AND), `|` (OR), `!` (NOT):
354
+ Combine with `&` (AND), `|` (OR), `!` (NOT), `^` (XOR):
289
355
 
290
356
  ```tsx
291
357
  fill: {
@@ -297,176 +363,192 @@ fill: {
297
363
 
298
364
  ### Sub-Element Styling
299
365
 
300
- Style inner elements from the parent component definition. No extra components, no CSS leakage:
366
+ 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.
301
367
 
302
- ```tsx
303
- const Card = tasty({
304
- styles: {
305
- padding: '4x',
306
- Title: { preset: 'h3', color: '#primary' },
307
- Content: { color: '#text', preset: 't2' },
308
- },
309
- elements: { Title: 'h2', Content: 'div' },
310
- });
368
+ 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.
311
369
 
312
- <Card>
313
- <Card.Title>Heading</Card.Title>
314
- <Card.Content>Body text</Card.Content>
315
- </Card>
316
- ```
370
+ See [React API - Sub-element Styling](docs/react-api.md#sub-element-styling), [Style DSL - Advanced States](docs/dsl.md#advanced-states--prefix), and [Methodology](docs/methodology.md#component-architecture-root--sub-elements).
317
371
 
318
- Sub-elements use `data-element` attributes — no extra class names, no naming conventions.
372
+ ### Style Props
319
373
 
320
- 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.
374
+ `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.
321
375
 
322
- Use `@own(...)` when a sub-element should react to its own state instead of the root state context.
376
+ ```tsx
377
+ const Space = tasty({
378
+ styles: { display: 'flex', flow: 'column', gap: '1x' },
379
+ styleProps: FLOW_STYLES,
380
+ });
323
381
 
324
- Class selectors are also supported, but modifiers/pseudo-classes are usually the better default in design-system code.
382
+ <Space flow="row" gap={{ '': '2x', '@tablet': '4x' }}>
383
+ ```
325
384
 
326
- Use the sub-element selector `$` when you need precise descendant targeting to avoid leakage in deeply nested component trees.
385
+ See [React API - Style Props](docs/react-api.md#style-props) and [Methodology - styleProps](docs/methodology.md#styleprops-as-the-public-api).
327
386
 
328
- ### Variants
387
+ ### Mod Props
329
388
 
330
- 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.
389
+ `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.
331
390
 
332
391
  ```tsx
333
392
  const Button = tasty({
334
- styles: { padding: '2x 4x', radius: '1r' },
335
- variants: {
336
- default: { fill: '#primary', color: '#on-primary' },
337
- danger: { fill: '#danger', color: '#on-danger' },
338
- outline: { fill: 'transparent', border: '1bw solid #primary' },
393
+ as: 'button',
394
+ modProps: { isLoading: Boolean, size: ['sm', 'md', 'lg'] as const },
395
+ styles: {
396
+ fill: { '': '#primary', isLoading: '#primary.5' },
397
+ padding: { '': '2x 4x', 'size=sm': '1x 2x' },
339
398
  },
340
399
  });
341
400
 
342
- <Button variant="danger">Delete</Button>
401
+ <Button isLoading size="lg">Submit</Button>
343
402
  ```
344
403
 
345
- ### Recipes
404
+ See [React API - Mod Props](docs/react-api.md#mod-props) and [Methodology - modProps](docs/methodology.md#modprops-and-mods).
405
+
406
+ ### Variants
346
407
 
347
- 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.
408
+ 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.
348
409
 
349
- ```tsx
350
- configure({
351
- recipes: {
352
- card: { padding: '4x', fill: '#surface', radius: '1r', border: true },
353
- elevated: { shadow: '0 2x 4x #shadow' },
354
- },
355
- });
410
+ See [React API - Variants](docs/react-api.md#variants).
356
411
 
357
- const ProfileCard = tasty({
358
- styles: {
359
- recipe: 'card elevated',
360
- color: '#text',
361
- },
362
- });
363
- ```
412
+ ### Recipes
413
+
414
+ 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.
415
+
416
+ 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.
364
417
 
365
- 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'`.
418
+ See [Style DSL - Recipes](docs/dsl.md#recipes) and [Configuration - recipes](docs/configuration.md#recipes).
366
419
 
367
420
  ### Auto-Inferred `@property`
368
421
 
369
- CSS custom properties do not animate smoothly by default because the browser does not know how to interpolate their values. The [`@property`](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) at-rule fixes that by declaring a property's syntax, such as `<number>` or `<color>`.
422
+ 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.
370
423
 
371
- In Tasty, you usually do not need to declare `@property` manually. When a custom property is assigned a concrete value, Tasty infers the syntax and registers the matching `@property` for you:
424
+ If you prefer explicit control, disable inference with `configure({ autoPropertyTypes: false })` or declare the properties yourself.
372
425
 
373
- ```tsx
374
- const Pulse = tasty({
426
+ See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
427
+
428
+ ### Explicit `@property`
429
+
430
+ Use explicit `@property` only when you need to override defaults such as `inherits: false` or a custom `initialValue`.
431
+
432
+ See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
433
+
434
+ ### CSS Functions (`@function`)
435
+
436
+ Define reusable, parameterized CSS functions and call them anywhere a value is accepted. Declare with `$$name`, invoke with `$$name(...)`; parameters and local variables use `$name`.
437
+
438
+ ```jsx
439
+ const Card = tasty({
375
440
  styles: {
376
- animation: 'pulse 2s infinite',
377
- transform: 'scale($pulse-scale)',
378
- '@keyframes': {
379
- pulse: {
380
- '0%, 100%': { '$pulse-scale': 1 },
381
- '50%': { '$pulse-scale': 1.05 },
382
- },
441
+ '@function': {
442
+ $$negative: { args: ['$value'], result: '(-1 * $value)' },
383
443
  },
444
+ marginTop: '$$negative(2x)',
384
445
  },
385
446
  });
386
447
  ```
387
448
 
388
- Here, `$pulse-scale: 1` is inferred as `<number>`, so Tasty injects `@property --pulse-scale` automatically before using it in the animation. Supported inferred syntaxes: `<number>`, `<length>`, `<percentage>`, `<angle>`, `<time>`, and `<color>`.
449
+ Definitions can also come from `configure({ functions })` or the `useFunction` style function, and work across client, SSR/RSC, and zero-runtime modes. `@function` is an experimental CSS feature, so for browsers that do not ship it yet enable `configure({ polyfills: { functions: true } })` to inline every call into plain CSS at parse time.
389
450
 
390
- If you prefer full manual control, disable auto-inference globally with `configure({ autoPropertyTypes: false })`.
451
+ See [Style DSL - Functions](docs/dsl.md#functions-function) and [Configuration - Polyfills](docs/configuration.md#polyfills).
391
452
 
392
- ### Explicit `@properties`
453
+ ### Style Functions
393
454
 
394
- Declare `@properties` yourself only when you need to override the defaults, for example to set `inherits: false` or provide a custom `initialValue`:
455
+ When you do not need a full component wrapper, use the style functions directly: `useStyles` for local class names, `useGlobalStyles` for selector-scoped global CSS, `useRawCSS` for raw rules, plus `useKeyframes`, `useProperty`, `useFontFace`, `useCounterStyle`, and `useFunction` for animation, custom-property, font, counter-style, and CSS-function primitives. All style functions are hook-free and work in React Server Components.
395
456
 
396
- ```tsx
397
- '@properties': {
398
- '$pulse-scale': { syntax: '<number>', inherits: false, initialValue: 1 },
399
- },
400
- ```
457
+ See [React API - Style Functions](docs/react-api.md#style-functions).
401
458
 
402
- ### React Hooks
459
+ ### Zero-Runtime Mode
403
460
 
404
- For cases where you don't need a full component:
461
+ 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.
405
462
 
406
- ```tsx
407
- import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
463
+ See [Zero Runtime (tastyStatic)](docs/tasty-static.md) and [Getting Started - Choosing a rendering mode](docs/getting-started.md#choosing-a-rendering-mode).
408
464
 
409
- function App() {
410
- const { className } = useStyles({ padding: '2x', fill: '#surface' });
411
- useGlobalStyles(':root', { '#primary': 'purple', '$gap': '8px' });
412
- useRawCSS('body { margin: 0; }');
465
+ ### `tasty` vs `tastyStatic`
413
466
 
414
- return <main className={className}>...</main>;
415
- }
416
- ```
467
+ `tasty()` returns React components that compute CSS during rendering. In server-only contexts, this produces static HTML + CSS with zero client JavaScript — the same end result as `tastyStatic()` but with the full feature set. `tastyStatic()` returns class names and extracts CSS during the build via a Babel plugin, with no React dependency at runtime. Both share the same DSL, tokens, units, state mappings, and recipes. Use `tasty()` as the default for any React-based setup; use `tastyStatic()` when you need build-time extraction without React.
417
468
 
418
- ### Zero-Runtime Mode
469
+ See [Zero Runtime (tastyStatic)](docs/tasty-static.md), [React API](docs/react-api.md), and [Comparison - Build-time vs runtime](docs/comparison.md#build-time-vs-runtime).
419
470
 
420
- Extract all CSS at build time. Zero JavaScript overhead in production:
471
+ ### Server-Side Rendering
421
472
 
422
- ```tsx
423
- import { tastyStatic } from '@tenphi/tasty/static';
473
+ `tasty()` components already work on the server without any SSR integration — they are hook-free and render as React Server Components by default. In server-only contexts (Next.js RSC, Astro without islands), they produce zero client JavaScript with the full feature set.
424
474
 
425
- const card = tastyStatic({
426
- padding: '4x',
427
- fill: '#surface',
428
- radius: '1r',
429
- color: { '': '#text', '@dark': '#text-on-dark' },
430
- });
475
+ SSR integration (`TastyRegistry`, `tastyIntegration`) adds CSS batching, deduplication across component trees, FOUC prevention, and client cache hydration. Use it when your app also has client-side rendering:
431
476
 
432
- // card is a CSS class name string
433
- <div className={card}>Static styles, zero runtime</div>
434
- ```
477
+ - `@tenphi/tasty/ssr/next` for Next.js App Router (mixed server + client components)
478
+ - `@tenphi/tasty/ssr/astro` for Astro (with or without islands)
479
+ - The core SSR API for other React SSR setups
435
480
 
436
- Configure the Babel plugin:
481
+ See the [full SSR guide](docs/ssr.md).
437
482
 
438
- ```js
439
- module.exports = {
440
- plugins: [
441
- ['@tenphi/tasty/babel-plugin', {
442
- output: 'public/tasty.css',
443
- config: {
444
- states: { '@dark': '@root(theme=dark)' },
445
- },
446
- }],
447
- ],
448
- };
449
- ```
483
+ ## Entry Points
450
484
 
451
- ### `tasty` vs `tastyStatic`
485
+ | Import | Description | Platform |
486
+ |--------|-------------|----------|
487
+ | `@tenphi/tasty` | Runtime style engine (`tasty`, style functions, `configure`) | Browser |
488
+ | `@tenphi/tasty/static` | Zero-runtime static styles (`tastyStatic`) | Browser |
489
+ | `@tenphi/tasty/static/inject` | Runtime helper the Babel plugin rewrites `tastyStatic` imports to in inject mode | Browser |
490
+ | `@tenphi/tasty/core` | Lower-level internals (config, parser, pipeline, injector, style handlers) for tooling and advanced use | Browser / Node |
491
+ | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
492
+ | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
493
+ | `@tenphi/tasty/zero/next` | Next.js integration wrapper | Node |
494
+ | `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
495
+ | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
496
+ | `@tenphi/tasty/ssr/astro` | Astro integration + middleware | Node |
497
+ | `@tenphi/tasty/ssr/astro-client` | Astro client-side cache hydration | Browser |
452
498
 
453
- | | `tasty` (runtime) | `tastyStatic` (zero-runtime) |
454
- |---|---|---|
455
- | **Output** | React component | CSS class name |
456
- | **CSS injection** | Runtime `<style>` tags | Build-time extraction |
457
- | **Runtime cost** | Style generation on mount | None |
458
- | **Generated CSS scope** | Only styles/variants used at runtime | All extracted static styles at build time |
459
- | **Dynamic values** | Fully supported | Via CSS custom properties |
460
- | **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
461
- | **Variants** | Built-in (`variants` option) | Separate static styles |
462
- | **Framework** | React | Any (requires Babel) |
463
- | **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
499
+ ## Browser Requirements
464
500
 
465
- Both share the same DSL, tokens, units, state mappings, and recipes.
501
+ Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
466
502
 
467
- ### Runtime Performance
503
+ - **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
504
+ - **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
505
+ - **Not supported:** IE 11.
468
506
 
469
- If you choose the runtime approach, performance is usually a non-issue in practice:
507
+ ## Performance
508
+
509
+ ### Bundle Size
510
+
511
+ All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
512
+
513
+ | Entry point | Size |
514
+ |-------------|------|
515
+ | `@tenphi/tasty` (runtime + SSR) | 50.19 kB |
516
+ | `@tenphi/tasty/core` (runtime, no SSR) | 47.76 kB |
517
+ | `@tenphi/tasty/static` (zero-runtime) | 16.43 kB |
518
+ | `@tenphi/tasty/zero` (programmatic extraction) | 29.6 kB |
519
+ | `@tenphi/tasty/babel-plugin` (Babel plugin entry) | 43.7 kB |
520
+
521
+ Run `pnpm size` to reproduce (outputs may shift slightly with releases).
522
+
523
+ ### Runtime Benchmarks
524
+
525
+ 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 `pnpm bench` on an Apple M1 Max (Node 22).
526
+
527
+ | Operation | ops/sec | Latency (mean) |
528
+ |-----------|--------:|---------------:|
529
+ | `renderStyles` — 5 flat properties (cold) | ~60,000 | ~17 us |
530
+ | `renderStyles` — state map with media/hover/modifier (cold) | ~18,500 | ~54 us |
531
+ | `renderStyles` — same styles (cached) | ~5,800,000 | ~0.17 us |
532
+ | `parseStateKey` — simple key like `:hover` (cold) | ~790,000 | ~1.3 us |
533
+ | `parseStateKey` — complex OR/AND/NOT key (cold) | ~140,000 | ~7 us |
534
+ | `parseStateKey` — any key (cached) | ~3,400,000–8,300,000 | ~0.1–0.3 us |
535
+ | `parseStyle` — value tokens like `2x 4x` (cold) | ~344,000 | ~2.9 us |
536
+ | `parseStyle` — color tokens (cold) | ~567,000 | ~1.8 us |
537
+ | `parseStyle` — any value (cached) | ~15,250,000 | ~0.07 us |
538
+
539
+ "Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path. Expect roughly ±10% between runs on an otherwise idle machine.
540
+
541
+ Run `pnpm bench` to reproduce. `pnpm bench:browser` runs the component-render benchmarks separately, in headless Chromium — those are useful for comparing variants against each other (a plain element vs. one with sub-elements), but the browser's 0.1 ms timer resolution makes their absolute values too coarse to quote. The two suites are deliberately separate commands: running them together lets the browser compete with Node for CPU and depresses both.
542
+
543
+ #### What This Means in Practice
544
+
545
+ - **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.
546
+ - **Cold path is fast enough.** The heaviest cold operation — a complex state map with media queries, hover, and modifiers — takes ~54 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.
547
+ - **Cache multipliers are 10x–300x.** The parser sees ~30x, state-key parsing ~10x–25x, and the full pipeline ~100x on flat styles and ~300x on complex state maps — the deeper the work, the more the cache saves. This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
548
+ - **Comparable to lighter systems.** Emotion's `css()` is typically 5–20 us for simple styles; Tasty's cold `renderStyles` at ~17 us for 5 properties is in the same range despite doing significantly more work (state maps, design tokens, sub-elements, chunking).
549
+ - **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 250 us and 100 unique components under 25 ms — still well within a single frame budget. The cached path remains sub-microsecond on all devices.
550
+
551
+ ### How It Stays Fast
470
552
 
471
553
  - CSS is generated and injected only when styles are actually used.
472
554
  - Multi-level caching avoids repeated parsing and style recomputation.
@@ -474,26 +556,16 @@ If you choose the runtime approach, performance is usually a non-issue in practi
474
556
  - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
475
557
  - A style garbage collector removes unused styles/chunks over time.
476
558
  - A dedicated style injector minimizes DOM/style-tag overhead.
559
+ - Optional [batched injection](docs/configuration.md#batched-injection) collapses many `insertRule()` calls into one style invalidation per commit, which matters when components measure layout during render.
477
560
  - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
478
561
 
479
- ## Entry Points
480
-
481
- | Import | Description | Platform |
482
- |--------|-------------|----------|
483
- | `@tenphi/tasty` | Runtime style engine (`tasty`, hooks, `configure`) | Browser |
484
- | `@tenphi/tasty/static` | Zero-runtime static styles (`tastyStatic`) | Browser |
485
- | `@tenphi/tasty/core` | Lower-level internals (config, parser, pipeline, injector, style handlers) for tooling and advanced use | Browser / Node |
486
- | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
487
- | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
488
- | `@tenphi/tasty/next` | Next.js integration wrapper | Node |
489
-
490
562
  ## Ecosystem
491
563
 
492
564
  Tasty is the core of a production-ready styling platform. These companion tools complete the picture:
493
565
 
494
566
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
495
567
 
496
- `@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.
568
+ `@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.
497
569
 
498
570
  ```bash
499
571
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -528,19 +600,68 @@ Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Hi
528
600
  <img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
529
601
  </p>
530
602
 
531
- ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit)
603
+ ## Built with Tasty
604
+
605
+ ### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
606
+
607
+ 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.
608
+
609
+ ### [Cube Cloud](https://cube.dev/)
610
+
611
+ 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.
612
+
613
+ ### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
614
+
615
+ 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.
616
+
617
+ ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
532
618
 
533
619
  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.
534
620
 
535
621
  ## Documentation
536
622
 
537
- - **[Usage Guide](docs/usage.md)** Runtime styling: component creation, state mappings, sub-elements, variants, and hooks
538
- - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
623
+ Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
624
+
625
+ - **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
626
+
627
+ ### Start here
628
+
629
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
630
+ - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
631
+
632
+ ### Guides
633
+
634
+ - **[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
635
+ - **[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
636
+
637
+ ### Reference
638
+
639
+ - **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, `@property`, `@font-face`, `@counter-style`, and `@function`
640
+ - **[React API](docs/react-api.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and style functions
641
+ - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, functions, polyfills, style handlers, props middleware, and TypeScript extensions
642
+ - **[Plugins & Extension Points](docs/plugins.md)** — Extending Tasty: choosing an extension point, authoring style handlers and props middleware, and packaging it as a plugin
539
643
  - **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
644
+ - **[Style Rules for AI Agents](docs/ai-agents.md)** — Condensed, rule-based brief for AI coding agents: correct value syntax, state maps, and property choices in one short page
645
+
646
+ ### Upgrading
647
+
648
+ - **[Migration Guide (v2 → v3)](docs/migration-v3.md)** — Every breaking change in 3.0 with a search-and-replace cheat sheet: at-rule key renames, the directional-shorthand rule, config keys, renamed and removed exports, and what deliberately did not change
649
+
650
+ ### Rendering modes
651
+
540
652
  - **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
653
+ - **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
654
+
655
+ ### Internals
656
+
657
+ - **[Style rendering pipeline](docs/pipeline.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
541
658
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
542
659
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
543
660
 
661
+ ### Context
662
+
663
+ - **[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
664
+
544
665
  ## License
545
666
 
546
667
  [MIT](LICENSE)