@textmode/design-system 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +7 -3
  2. package/package.json +1 -1
  3. package/tokens.css +1 -1
package/README.md CHANGED
@@ -52,9 +52,11 @@ remain product-owned so dense workspaces are unaffected.
52
52
  `--tm-type-copy-large`, `--tm-type-title`, `--tm-leading-tight`,
53
53
  `--tm-leading-copy`, `--tm-tracking-display`.
54
54
 
55
- Monogram typography uses a strict half-rem scale: every `rem` value in a
56
- `--tm-type-*` token is a whole or half step. Code-font consumers may define a
57
- separate denser scale when their runtime requires it.
55
+ Monogram typography uses a strict fixed half-rem scale: every `--tm-type-*`
56
+ token is a whole or half `rem` step. Responsive type changes belong in explicit
57
+ consumer breakpoints; type tokens never interpolate with viewport units.
58
+ Code-font consumers may define a separate denser scale when their runtime
59
+ requires it.
58
60
 
59
61
  ### Geometry and layout
60
62
 
@@ -105,3 +107,5 @@ classes, and major for removals or semantic changes. Version 0.4.0 adds Shadow
105
107
  DOM `:host` delivery and normalizes Monogram control and copy roles to the
106
108
  half-rem type scale. Reduced-motion rules remain limited to scroll and
107
109
  transition behavior so product-owned animation state stays overrideable.
110
+ Version 0.4.1 makes the title role fixed as well, closing the remaining fluid
111
+ type path that could soften the Monogram pixel grid between breakpoints.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textmode/design-system",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Shared visual foundations and CSS primitives for textmode.art interfaces",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/tokens.css CHANGED
@@ -40,7 +40,7 @@
40
40
  --tm-type-control: 1.5rem;
41
41
  --tm-type-copy: 1.5rem;
42
42
  --tm-type-copy-large: 1.5rem;
43
- --tm-type-title: clamp(3.5rem, 8vw, 6rem);
43
+ --tm-type-title: 6rem;
44
44
  --tm-leading-tight: 0.82;
45
45
  --tm-leading-copy: 1.18;
46
46
  --tm-tracking-display: -0.02em;