// Demo — measured design system as an Astryx theme. // Decoded live from the real page by Mozaika: colors by role, type scale, radius, // motion timings and real hover/press states — measured, not guessed. // Decoded with Mozaika — full system + other formats: mozaika.design/decode/demo.immich.app // Usage: … (Astryx needs React 19; // import '@astryxdesign/core/astryx.css'; build for SSR: npx astryx theme build ) import {defineTheme} from '@astryxdesign/core/theme'; export const demoTheme = defineTheme({ name: 'demo-measured', color: {accent: '#4250AF', neutralStyle: 'cool'}, typography: { scale: {base: 16, ratio: 1.3}, }, radius: {base: 4, multiplier: 1}, motion: {fast: 150, medium: 300, easing: 'cubic-bezier(0.4, 0, 0.2, 1)'}, tokens: { // measured page colors, pinned explicitly (scale-generated values drift on // near-neutral accents — SPIKE finding); single-scheme brands keep one value. '--color-accent': '#4250AF', '--color-background-body': '#FFFFFF', '--color-background-surface': '#F0F0F0', '--color-text-primary': '#0A0A0B', '--text-heading-1-size': '36px', }, components: { button: { base: {borderRadius: '9999px'}, }, }, });