@motion-proto/live-tokens 0.40.0 → 0.40.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.40.1 — Floating token-tag labels follow the theme
4
+
5
+ ### Fixed
6
+
7
+ - **The property label on each floating token tag no longer paints a hardcoded
8
+ pink.** `.ftt-float-property` in `FloatingTokenTags.css` hardcoded
9
+ `color: #ff8eeb`; it now references `var(--text-secondary)`, so the overlay
10
+ label tracks the neutral text scale like the rest of the editor chrome instead
11
+ of standing out in an off-theme accent.
12
+
3
13
  ## 0.40.0 — New IconButton component
4
14
 
5
15
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@motion-proto/live-tokens",
3
- "version": "0.40.0",
3
+ "version": "0.40.1",
4
4
  "type": "module",
5
5
  "description": "Design token editor with live CSS variable editing. Svelte 5 + Vite 8.",
6
6
  "keywords": [
@@ -165,7 +165,7 @@
165
165
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
166
166
  font-size: 0.875rem;
167
167
  font-weight: 700;
168
- color: #ff8eeb;
168
+ color: var(--text-secondary);
169
169
  white-space: nowrap;
170
170
  }
171
171