@tenphi/glaze 0.16.0 → 0.16.2
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.
- package/dist/index.cjs +14 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +14 -14
- package/dist/index.mjs.map +1 -1
- package/docs/api.md +3 -3
- package/package.json +1 -1
package/docs/api.md
CHANGED
|
@@ -145,8 +145,8 @@ theme.tasty()
|
|
|
145
145
|
| `modes` | global config | Which scheme variants to include. |
|
|
146
146
|
| `states.dark` | `'@dark'` (or global config) | State alias for dark mode tokens. |
|
|
147
147
|
| `states.highContrast` | `'@high-contrast'` (or global config) | State alias for high-contrast tokens. |
|
|
148
|
-
| `splitHue` | `false` | Emit hue as a separate custom property (
|
|
149
|
-
| `name` | `'theme'` | Base name for the theme-level hue var (
|
|
148
|
+
| `splitHue` | `false` | Emit hue as a separate custom property (`$name-hue` token + `var()` in `oklch` values). Requires `format: 'oklch'` and every color to be pastel. |
|
|
149
|
+
| `name` | `'theme'` | Base name for the theme-level hue var (`$theme-hue` / `--theme-hue`). Palette export auto-derives this from the theme name. |
|
|
150
150
|
| `prefix` | (palette only) | See [Palette](#palette). |
|
|
151
151
|
|
|
152
152
|
When both `dark` and `highContrast` modes are enabled, dark high-contrast variants are emitted under the combined key `<dark> & <highContrast>` (e.g. `'@dark & @high-contrast'`).
|
|
@@ -1183,7 +1183,7 @@ On `theme.css()`, `theme.tasty()`, `palette.css()`, `palette.tasty()`, and stand
|
|
|
1183
1183
|
|
|
1184
1184
|
**Requirements:** every exported color must be pastel (`pastel: true` globally or per-color). Pastel mode bounds chroma by the hue-independent safe chroma at each lightness, so emitted `C` stays in sRGB for any rotated hue. Non-pastel palettes throw rather than emit values that would clip under rotation.
|
|
1185
1185
|
|
|
1186
|
-
**Limitations:** `oklch` only (native CSS `var()` in the hue slot). Shadow and mix colors stay inline (blended hue). Standalone `.token()` / `.tasty()` do not support `splitHue` (return shape cannot carry the
|
|
1186
|
+
**Limitations:** `oklch` only (native CSS `var()` in the hue slot). Shadow and mix colors stay inline (blended hue). Standalone `.token()` / `.tasty()` do not support `splitHue` (return shape cannot carry the `$name-hue` declaration).
|
|
1187
1187
|
|
|
1188
1188
|
`theme.dtcg()` / `theme.dtcgResolver()` / `palette.dtcg()` / `palette.dtcgResolver()` ignore `format` — DTCG emits structured `$value` objects, not CSS strings. Use the `colorSpace` option (`'srgb'` or `'oklch'`) to pick the color representation instead.
|
|
1189
1189
|
|
package/package.json
CHANGED