@mt-gloss/tokens 0.1.89 → 0.1.90

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/_css-vars.scss +25 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mt-gloss/tokens",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"
@@ -164,4 +164,29 @@
164
164
  --gloss-border-width-medium: 2px;
165
165
  --gloss-border-width-thick: 3px;
166
166
  --gloss-border-style-default: solid;
167
+
168
+ // --- Panel system motion (Phase 11.5 §Locked Design Tokens) ---
169
+ // 13 --panel-* tokens (verbatim from spike §Locked Design Tokens lines 1187-1206)
170
+ --panel-open-dur: 685ms;
171
+ --panel-close-dur: 627ms;
172
+ --panel-easing: cubic-bezier(0.22,1,0.36,1);
173
+ --panel-reveal-tilt: -10deg;
174
+ --panel-reveal-depth: -50px;
175
+ --panel-reveal-y: 60px;
176
+ --panel-perspective: 1500px;
177
+ --panel-perspective-origin: center bottom;
178
+ --panel-bg: #ffffff;
179
+ --panel-border: #e5e7eb;
180
+ --panel-line: #e5e7eb;
181
+ --panel-header-line: #f1f3f5;
182
+ --panel-shadow-inset: inset 0 1px 0 rgba(0,0,0,0.08);
183
+
184
+ // 7 --stage-* tokens (verbatim from spike §Stage 3D lines 1212-1218)
185
+ --stage-perspective: 1200px;
186
+ --stage-rotate-x: 12deg;
187
+ --stage-rotate-y: 0deg;
188
+ --stage-translate-y: 0px;
189
+ --stage-translate-z: 0px;
190
+ --rot-duration: 24s;
191
+ --stage-sway: 2.5deg;
167
192
  }