// Gemini Mobile — 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/gemini.google.com // 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 geminimobileTheme = defineTheme({ name: 'gemini-mobile-measured', color: {accent: '#0B57D0', neutralStyle: 'cool'}, typography: { scale: {base: 15, ratio: 1.3}, body: {family: 'Google Sans Flex', fallbacks: 'Newsreader, sans-serif', url: 'https://fonts.googleapis.com/css2?family=Newsreader:wght@300..800&display=swap'}, heading: {family: 'Google Sans Flex', fallbacks: 'Newsreader, sans-serif', url: 'https://fonts.googleapis.com/css2?family=Newsreader:wght@300..800&display=swap', weight: 320}, }, radius: {base: 12, multiplier: 1}, motion: {fast: 250, medium: 500, easing: 'cubic-bezier(0.2, 0, 0, 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': '#0B57D0', '--color-background-body': ['#0F0F0F', '#000000'], '--color-background-surface': '#010101', '--color-text-primary': ['#E3E3E3', '#1F1F1F'], '--text-heading-1-size': '36px', '--text-heading-1-weight': '320', '--text-heading-2-size': '20px', '--text-heading-2-weight': '470', }, components: { button: { base: {borderRadius: '9999px', fontWeight: '500'}, }, }, });