gabriel / musehub public
_motion.scss
27 lines 1.3 KB
Raw
sha256:3ff9c9863a9891bdcde71b4a43228f66d0493e38b7cc1d09fe9eb7de774046b2 feat: add repair-commit wire endpoint (API parity with repa… Opus 4.8 minor ⚠ breaking 1 day ago
1 // ─────────────────────────────────────────────────────────────────────────────
2 // Component: Motion
3 // File: src/scss/theme/_motion.scss
4 //
5 // Variants: n/a — token definitions only
6 // Tokens: --ease-*, --duration-*, --transition-*
7 // Usage: transition: background var(--duration-base) var(--ease-out);
8 //
9 // Notes: --ease-snap for interactions that must feel immediate.
10 // Prefer --duration-fast for hover, --duration-base for state change.
11 // ─────────────────────────────────────────────────────────────────────────────
12
13 :root {
14 --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
15 --ease-in: cubic-bezier(0.4, 0, 1, 1);
16 --ease-snap: cubic-bezier(0.0, 0, 0.1, 1);
17
18 --duration-fast: 80ms;
19 --duration-base: 150ms;
20 --duration-slow: 250ms;
21 --duration-reveal: 400ms;
22
23 // Shorthand transition helpers
24 --transition-fast: var(--duration-fast) var(--ease-out);
25 --transition-base: var(--duration-base) var(--ease-out);
26 --transition-slow: var(--duration-slow) var(--ease-out);
27 }
File History 1 commit
sha256:3ff9c9863a9891bdcde71b4a43228f66d0493e38b7cc1d09fe9eb7de774046b2 feat: add repair-commit wire endpoint (API parity with repa… Opus 4.8 minor 1 day ago