[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-geist":3,"mdc-yrs0h9-key":39,"related-repo-openai-geist":2465,"related-org-openai-geist":2583},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"geist","configure Geist typography systems","Expert guidance for Geist, Vercel's default typography system and font family for precise Next.js interfaces. Use when configuring Geist Sans, Geist Mono, or Geist Pixel, setting up font imports, or applying Vercel typography and aesthetic guidance.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Vercel","vercel","tag",{"name":17,"slug":18,"type":15},"Next.js","next-js",{"name":20,"slug":21,"type":15},"Frontend","frontend",{"name":23,"slug":24,"type":15},"Typography","typography",{"name":26,"slug":27,"type":15},"Design","design",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:40:23.693452",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fgeist","---\nname: geist\ndescription: Expert guidance for Geist, Vercel's default typography system and font family for precise Next.js interfaces. Use when configuring Geist Sans, Geist Mono, or Geist Pixel, setting up font imports, or applying Vercel typography and aesthetic guidance.\nmetadata:\n  priority: 4\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Ffont\"\n    - \"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fgeist-font\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - 'app\u002Flayout.*'\n    - 'src\u002Fapp\u002Flayout.*'\n    - 'app\u002Fglobals.css'\n    - 'src\u002Fapp\u002Fglobals.css'\n    - 'styles\u002F**'\n    - 'tailwind.config.*'\n    - 'apps\u002F*\u002Fapp\u002Flayout.*'\n    - 'apps\u002F*\u002Fsrc\u002Fapp\u002Flayout.*'\n    - 'apps\u002F*\u002Fapp\u002Fglobals.css'\n    - 'apps\u002F*\u002Fsrc\u002Fapp\u002Fglobals.css'\n  importPatterns:\n    - 'geist'\n    - 'geist\u002Ffont'\n    - 'geist\u002Ffont\u002F*'\n  bashPatterns:\n    - '\\bnpm\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b'\n    - '\\bpnpm\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b'\n    - '\\bbun\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b'\n    - '\\byarn\\s+add\\s+[^\\n]*\\bgeist\\b'\n---\n\n# Geist — Vercel's Font Family\n\nYou are an expert in Geist (v1.7.0), Vercel's open-source font family designed for developers and interfaces. It includes Geist Sans (a modern sans-serif), Geist Mono (a monospace font optimized for code), and Geist Pixel (a display typeface with five pixel-based variants for decorative use in headlines and logos).\n\n## Installation\n\n```bash\nnpm install geist\n```\n\n## Usage with Next.js (next\u002Ffont)\n\n### App Router\n\n```tsx\n\u002F\u002F app\u002Flayout.tsx\nimport { GeistSans } from 'geist\u002Ffont\u002Fsans'\nimport { GeistMono } from 'geist\u002Ffont\u002Fmono'\n\nexport default function RootLayout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\" className={`${GeistSans.variable} ${GeistMono.variable}`}>\n      \u003Cbody className={GeistSans.className}>\n        {children}\n      \u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  )\n}\n```\n\n### With Tailwind CSS\n\n```tsx\n\u002F\u002F app\u002Flayout.tsx\nimport { GeistSans } from 'geist\u002Ffont\u002Fsans'\nimport { GeistMono } from 'geist\u002Ffont\u002Fmono'\n\nexport default function RootLayout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\" className={`${GeistSans.variable} ${GeistMono.variable}`}>\n      \u003Cbody>{children}\u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  )\n}\n```\n\n```ts\n\u002F\u002F tailwind.config.ts\nimport type { Config } from 'tailwindcss'\n\nconst config: Config = {\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['var(--font-geist-sans)'],\n        mono: ['var(--font-geist-mono)'],\n      },\n    },\n  },\n}\nexport default config\n```\n\nThen use in components:\n\n```tsx\n\u003Cp className=\"font-sans\">Geist Sans text\u003C\u002Fp>\n\u003Ccode className=\"font-mono\">Geist Mono code\u003C\u002Fcode>\n```\n\n### CSS Variables\n\nGeist fonts expose CSS custom properties:\n\n| Variable | Font |\n|---|---|\n| `--font-geist-sans` | Geist Sans |\n| `--font-geist-mono` | Geist Mono |\n\nUse them in CSS:\n\n```css\nbody {\n  font-family: var(--font-geist-sans);\n}\n\ncode, pre {\n  font-family: var(--font-geist-mono);\n}\n```\n\n## Font Weights\n\nBoth Geist Sans and Geist Mono support these weights:\n\n| Weight | Value |\n|---|---|\n| Thin | 100 |\n| Extra Light | 200 |\n| Light | 300 |\n| Regular | 400 |\n| Medium | 500 |\n| Semi Bold | 600 |\n| Bold | 700 |\n| Extra Bold | 800 |\n| Black | 900 |\n\n## Typography Direction for Geist\n\nGeist is not just a font import. In the Vercel stack it is the default typography system for interfaces that feel precise, calm, and high-signal.\n\n### What good looks like\n\n- Headlines are crisp, tightly tracked, and decisive\n- Body copy is readable and restrained; secondary text is muted, not washed out\n- Numbers, commands, IDs, timestamps use Geist Mono for precision\n- Typography carries hierarchy first; color and decoration come second\n\n### Default type recipes\n\n```tsx\n\u003Ch1 className=\"text-4xl font-medium tracking-[-0.04em]\">Large page title\u003C\u002Fh1>\n\u003Cp className=\"text-sm leading-6 text-muted-foreground\">Supporting copy\u003C\u002Fp>\n\u003Cdiv className=\"font-mono text-[12px] text-muted-foreground tabular-nums\">Dense metadata\u003C\u002Fdiv>\n\u003Ch2 className=\"text-lg tracking-tight\">Section heading\u003C\u002Fh2>\n\u003Ch2 className=\"text-xl tracking-tight\">Large section heading\u003C\u002Fh2>\n\u003Clabel className=\"text-sm\">UI label\u003C\u002Flabel>\n```\n\nAvoid defaulting entire interfaces to `text-base`.\n\n### Where to use each family\n\n- Geist Sans: navigation, body copy, buttons, headings, forms, tables, dialogs\n- Geist Mono: code, shortcuts, terminal output, commit hashes, invoice amounts, metrics, timestamps, ENV keys, feature flags\n- Geist Pixel: one accent moment only - hero wordmark, campaign heading, empty-state label. Never body text or settings UI.\n\n### Anti-patterns\n\n- Mixing Geist with multiple unrelated font families\n- Using Geist Mono for long paragraphs\n- Using Geist Pixel for more than one or two focal moments\n- Making every heading bold (Geist looks strongest with restrained weight and tight tracking)\n- Letting secondary text get so faint that hierarchy disappears\n\n## Subset Configuration\n\nOptimize font loading by specifying subsets:\n\n```tsx\nimport { GeistSans } from 'geist\u002Ffont\u002Fsans'\n\n\u002F\u002F GeistSans automatically uses the 'latin' subset\n\u002F\u002F For additional subsets, configure in next.config.js\n```\n\n## Geist Pixel (Feb 6, 2026)\n\nGeist Pixel is a bitmap-inspired display typeface family designed for headlines, logos, and decorative use. It ships five variants, each built on a different geometric primitive:\n\n| Variant | Description |\n|---|---|\n| Geist Pixel Square | Square-based pixel grid |\n| Geist Pixel Grid | Dense grid pattern |\n| Geist Pixel Circle | Circular dot matrix |\n| Geist Pixel Triangle | Triangular pixel forms |\n| Geist Pixel Line | Line-based pixel strokes |\n\nGeist Pixel is intended for display sizes only — use Geist Sans for body text and Geist Mono for code.\n\n## Coding Ligatures (v1.7.0)\n\nCoding ligatures are **no longer enabled by default**. They have been moved from contextual alternates to **Stylistic Set 11 (SS11)**. If you rely on coding ligatures in your editor or terminal, enable SS11 explicitly:\n\n- **VS Code**: `\"editor.fontLigatures\": \"'ss11'\"`\n- **CSS**: `font-feature-settings: 'ss11' 1;`\n\n## Cyrillic Support (v1.7.0)\n\nGeist 1.7.0 includes a redesigned Cyrillic script for all Geist Sans and Geist Mono styles.\n\n## Key Points\n\n1. **Optimized for Next.js** — works seamlessly with `next\u002Ffont` for zero-layout-shift font loading\n2. **Three families** — Geist Sans for UI text, Geist Mono for code, Geist Pixel for decorative display\n3. **CSS variables** — `--font-geist-sans` and `--font-geist-mono` for flexible styling\n4. **Variable font** — single file supports all weights (100–900)\n5. **Self-hosted** — fonts are bundled with your app, no external requests\n6. **Import paths** — use `geist\u002Ffont\u002Fsans` and `geist\u002Ffont\u002Fmono` (not `geist\u002Ffont`)\n7. **Coding ligatures** — opt-in via Stylistic Set 11 (no longer default)\n\n## Official Resources\n\n- [Geist Font GitHub](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fgeist-font)\n- [Geist Design System](https:\u002F\u002Fvercel.com\u002Fgeist)\n",{"data":40,"body":66},{"name":4,"description":6,"metadata":41},{"priority":42,"docs":43,"sitemap":46,"pathPatterns":47,"importPatterns":58,"bashPatterns":61},4,[44,45],"https:\u002F\u002Fvercel.com\u002Ffont","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fgeist-font","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[48,49,50,51,52,53,54,55,56,57],"app\u002Flayout.*","src\u002Fapp\u002Flayout.*","app\u002Fglobals.css","src\u002Fapp\u002Fglobals.css","styles\u002F**","tailwind.config.*","apps\u002F*\u002Fapp\u002Flayout.*","apps\u002F*\u002Fsrc\u002Fapp\u002Flayout.*","apps\u002F*\u002Fapp\u002Fglobals.css","apps\u002F*\u002Fsrc\u002Fapp\u002Fglobals.css",[4,59,60],"geist\u002Ffont","geist\u002Ffont\u002F*",[62,63,64,65],"\\bnpm\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b","\\bpnpm\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b","\\bbun\\s+(install|i|add)\\s+[^\\n]*\\bgeist\\b","\\byarn\\s+add\\s+[^\\n]*\\bgeist\\b",{"type":67,"children":68},"root",[69,78,84,91,126,132,139,556,562,872,1142,1147,1263,1269,1274,1336,1341,1462,1468,1473,1612,1618,1623,1629,1654,1660,1987,1999,2005,2023,2029,2057,2063,2068,2133,2139,2144,2231,2236,2242,2262,2296,2302,2307,2313,2429,2435,2459],{"type":70,"tag":71,"props":72,"children":74},"element","h1",{"id":73},"geist-vercels-font-family",[75],{"type":76,"value":77},"text","Geist — Vercel's Font Family",{"type":70,"tag":79,"props":80,"children":81},"p",{},[82],{"type":76,"value":83},"You are an expert in Geist (v1.7.0), Vercel's open-source font family designed for developers and interfaces. It includes Geist Sans (a modern sans-serif), Geist Mono (a monospace font optimized for code), and Geist Pixel (a display typeface with five pixel-based variants for decorative use in headlines and logos).",{"type":70,"tag":85,"props":86,"children":88},"h2",{"id":87},"installation",[89],{"type":76,"value":90},"Installation",{"type":70,"tag":92,"props":93,"children":98},"pre",{"className":94,"code":95,"language":96,"meta":97,"style":97},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install geist\n","bash","",[99],{"type":70,"tag":100,"props":101,"children":102},"code",{"__ignoreMap":97},[103],{"type":70,"tag":104,"props":105,"children":108},"span",{"class":106,"line":107},"line",1,[109,115,121],{"type":70,"tag":104,"props":110,"children":112},{"style":111},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[113],{"type":76,"value":114},"npm",{"type":70,"tag":104,"props":116,"children":118},{"style":117},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[119],{"type":76,"value":120}," install",{"type":70,"tag":104,"props":122,"children":123},{"style":117},[124],{"type":76,"value":125}," geist\n",{"type":70,"tag":85,"props":127,"children":129},{"id":128},"usage-with-nextjs-nextfont",[130],{"type":76,"value":131},"Usage with Next.js (next\u002Ffont)",{"type":70,"tag":133,"props":134,"children":136},"h3",{"id":135},"app-router",[137],{"type":76,"value":138},"App Router",{"type":70,"tag":92,"props":140,"children":144},{"className":141,"code":142,"language":143,"meta":97,"style":97},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F app\u002Flayout.tsx\nimport { GeistSans } from 'geist\u002Ffont\u002Fsans'\nimport { GeistMono } from 'geist\u002Ffont\u002Fmono'\n\nexport default function RootLayout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\" className={`${GeistSans.variable} ${GeistMono.variable}`}>\n      \u003Cbody className={GeistSans.className}>\n        {children}\n      \u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  )\n}\n","tsx",[145],{"type":70,"tag":100,"props":146,"children":147},{"__ignoreMap":97},[148,157,204,242,251,332,346,446,485,504,522,539,548],{"type":70,"tag":104,"props":149,"children":150},{"class":106,"line":107},[151],{"type":70,"tag":104,"props":152,"children":154},{"style":153},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[155],{"type":76,"value":156},"\u002F\u002F app\u002Flayout.tsx\n",{"type":70,"tag":104,"props":158,"children":160},{"class":106,"line":159},2,[161,167,173,179,184,189,194,199],{"type":70,"tag":104,"props":162,"children":164},{"style":163},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[165],{"type":76,"value":166},"import",{"type":70,"tag":104,"props":168,"children":170},{"style":169},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[171],{"type":76,"value":172}," {",{"type":70,"tag":104,"props":174,"children":176},{"style":175},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[177],{"type":76,"value":178}," GeistSans",{"type":70,"tag":104,"props":180,"children":181},{"style":169},[182],{"type":76,"value":183}," }",{"type":70,"tag":104,"props":185,"children":186},{"style":163},[187],{"type":76,"value":188}," from",{"type":70,"tag":104,"props":190,"children":191},{"style":169},[192],{"type":76,"value":193}," '",{"type":70,"tag":104,"props":195,"children":196},{"style":117},[197],{"type":76,"value":198},"geist\u002Ffont\u002Fsans",{"type":70,"tag":104,"props":200,"children":201},{"style":169},[202],{"type":76,"value":203},"'\n",{"type":70,"tag":104,"props":205,"children":207},{"class":106,"line":206},3,[208,212,216,221,225,229,233,238],{"type":70,"tag":104,"props":209,"children":210},{"style":163},[211],{"type":76,"value":166},{"type":70,"tag":104,"props":213,"children":214},{"style":169},[215],{"type":76,"value":172},{"type":70,"tag":104,"props":217,"children":218},{"style":175},[219],{"type":76,"value":220}," GeistMono",{"type":70,"tag":104,"props":222,"children":223},{"style":169},[224],{"type":76,"value":183},{"type":70,"tag":104,"props":226,"children":227},{"style":163},[228],{"type":76,"value":188},{"type":70,"tag":104,"props":230,"children":231},{"style":169},[232],{"type":76,"value":193},{"type":70,"tag":104,"props":234,"children":235},{"style":117},[236],{"type":76,"value":237},"geist\u002Ffont\u002Fmono",{"type":70,"tag":104,"props":239,"children":240},{"style":169},[241],{"type":76,"value":203},{"type":70,"tag":104,"props":243,"children":244},{"class":106,"line":42},[245],{"type":70,"tag":104,"props":246,"children":248},{"emptyLinePlaceholder":247},true,[249],{"type":76,"value":250},"\n",{"type":70,"tag":104,"props":252,"children":254},{"class":106,"line":253},5,[255,260,265,271,277,282,288,293,297,302,307,312,317,322,327],{"type":70,"tag":104,"props":256,"children":257},{"style":163},[258],{"type":76,"value":259},"export",{"type":70,"tag":104,"props":261,"children":262},{"style":163},[263],{"type":76,"value":264}," default",{"type":70,"tag":104,"props":266,"children":268},{"style":267},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[269],{"type":76,"value":270}," function",{"type":70,"tag":104,"props":272,"children":274},{"style":273},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[275],{"type":76,"value":276}," RootLayout",{"type":70,"tag":104,"props":278,"children":279},{"style":169},[280],{"type":76,"value":281},"({",{"type":70,"tag":104,"props":283,"children":285},{"style":284},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[286],{"type":76,"value":287}," children",{"type":70,"tag":104,"props":289,"children":290},{"style":169},[291],{"type":76,"value":292}," }:",{"type":70,"tag":104,"props":294,"children":295},{"style":169},[296],{"type":76,"value":172},{"type":70,"tag":104,"props":298,"children":300},{"style":299},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[301],{"type":76,"value":287},{"type":70,"tag":104,"props":303,"children":304},{"style":169},[305],{"type":76,"value":306},":",{"type":70,"tag":104,"props":308,"children":309},{"style":111},[310],{"type":76,"value":311}," React",{"type":70,"tag":104,"props":313,"children":314},{"style":169},[315],{"type":76,"value":316},".",{"type":70,"tag":104,"props":318,"children":319},{"style":111},[320],{"type":76,"value":321},"ReactNode",{"type":70,"tag":104,"props":323,"children":324},{"style":169},[325],{"type":76,"value":326}," })",{"type":70,"tag":104,"props":328,"children":329},{"style":169},[330],{"type":76,"value":331}," {\n",{"type":70,"tag":104,"props":333,"children":335},{"class":106,"line":334},6,[336,341],{"type":70,"tag":104,"props":337,"children":338},{"style":163},[339],{"type":76,"value":340},"  return",{"type":70,"tag":104,"props":342,"children":343},{"style":299},[344],{"type":76,"value":345}," (\n",{"type":70,"tag":104,"props":347,"children":349},{"class":106,"line":348},7,[350,355,360,365,370,375,380,384,389,394,399,404,408,413,418,423,428,432,436,441],{"type":70,"tag":104,"props":351,"children":352},{"style":169},[353],{"type":76,"value":354},"    \u003C",{"type":70,"tag":104,"props":356,"children":357},{"style":299},[358],{"type":76,"value":359},"html",{"type":70,"tag":104,"props":361,"children":362},{"style":267},[363],{"type":76,"value":364}," lang",{"type":70,"tag":104,"props":366,"children":367},{"style":169},[368],{"type":76,"value":369},"=",{"type":70,"tag":104,"props":371,"children":372},{"style":169},[373],{"type":76,"value":374},"\"",{"type":70,"tag":104,"props":376,"children":377},{"style":117},[378],{"type":76,"value":379},"en",{"type":70,"tag":104,"props":381,"children":382},{"style":169},[383],{"type":76,"value":374},{"type":70,"tag":104,"props":385,"children":386},{"style":267},[387],{"type":76,"value":388}," className",{"type":70,"tag":104,"props":390,"children":391},{"style":169},[392],{"type":76,"value":393},"={",{"type":70,"tag":104,"props":395,"children":396},{"style":169},[397],{"type":76,"value":398},"`${",{"type":70,"tag":104,"props":400,"children":401},{"style":175},[402],{"type":76,"value":403},"GeistSans",{"type":70,"tag":104,"props":405,"children":406},{"style":169},[407],{"type":76,"value":316},{"type":70,"tag":104,"props":409,"children":410},{"style":175},[411],{"type":76,"value":412},"variable",{"type":70,"tag":104,"props":414,"children":415},{"style":169},[416],{"type":76,"value":417},"}",{"type":70,"tag":104,"props":419,"children":420},{"style":169},[421],{"type":76,"value":422}," ${",{"type":70,"tag":104,"props":424,"children":425},{"style":175},[426],{"type":76,"value":427},"GeistMono",{"type":70,"tag":104,"props":429,"children":430},{"style":169},[431],{"type":76,"value":316},{"type":70,"tag":104,"props":433,"children":434},{"style":175},[435],{"type":76,"value":412},{"type":70,"tag":104,"props":437,"children":438},{"style":169},[439],{"type":76,"value":440},"}`",{"type":70,"tag":104,"props":442,"children":443},{"style":169},[444],{"type":76,"value":445},"}>\n",{"type":70,"tag":104,"props":447,"children":449},{"class":106,"line":448},8,[450,455,460,464,468,472,476,481],{"type":70,"tag":104,"props":451,"children":452},{"style":169},[453],{"type":76,"value":454},"      \u003C",{"type":70,"tag":104,"props":456,"children":457},{"style":299},[458],{"type":76,"value":459},"body",{"type":70,"tag":104,"props":461,"children":462},{"style":267},[463],{"type":76,"value":388},{"type":70,"tag":104,"props":465,"children":466},{"style":169},[467],{"type":76,"value":393},{"type":70,"tag":104,"props":469,"children":470},{"style":175},[471],{"type":76,"value":403},{"type":70,"tag":104,"props":473,"children":474},{"style":169},[475],{"type":76,"value":316},{"type":70,"tag":104,"props":477,"children":478},{"style":175},[479],{"type":76,"value":480},"className",{"type":70,"tag":104,"props":482,"children":483},{"style":169},[484],{"type":76,"value":445},{"type":70,"tag":104,"props":486,"children":488},{"class":106,"line":487},9,[489,494,499],{"type":70,"tag":104,"props":490,"children":491},{"style":169},[492],{"type":76,"value":493},"        {",{"type":70,"tag":104,"props":495,"children":496},{"style":175},[497],{"type":76,"value":498},"children",{"type":70,"tag":104,"props":500,"children":501},{"style":169},[502],{"type":76,"value":503},"}\n",{"type":70,"tag":104,"props":505,"children":507},{"class":106,"line":506},10,[508,513,517],{"type":70,"tag":104,"props":509,"children":510},{"style":169},[511],{"type":76,"value":512},"      \u003C\u002F",{"type":70,"tag":104,"props":514,"children":515},{"style":299},[516],{"type":76,"value":459},{"type":70,"tag":104,"props":518,"children":519},{"style":169},[520],{"type":76,"value":521},">\n",{"type":70,"tag":104,"props":523,"children":525},{"class":106,"line":524},11,[526,531,535],{"type":70,"tag":104,"props":527,"children":528},{"style":169},[529],{"type":76,"value":530},"    \u003C\u002F",{"type":70,"tag":104,"props":532,"children":533},{"style":299},[534],{"type":76,"value":359},{"type":70,"tag":104,"props":536,"children":537},{"style":169},[538],{"type":76,"value":521},{"type":70,"tag":104,"props":540,"children":542},{"class":106,"line":541},12,[543],{"type":70,"tag":104,"props":544,"children":545},{"style":299},[546],{"type":76,"value":547},"  )\n",{"type":70,"tag":104,"props":549,"children":551},{"class":106,"line":550},13,[552],{"type":70,"tag":104,"props":553,"children":554},{"style":169},[555],{"type":76,"value":503},{"type":70,"tag":133,"props":557,"children":559},{"id":558},"with-tailwind-css",[560],{"type":76,"value":561},"With Tailwind CSS",{"type":70,"tag":92,"props":563,"children":565},{"className":141,"code":564,"language":143,"meta":97,"style":97},"\u002F\u002F app\u002Flayout.tsx\nimport { GeistSans } from 'geist\u002Ffont\u002Fsans'\nimport { GeistMono } from 'geist\u002Ffont\u002Fmono'\n\nexport default function RootLayout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\" className={`${GeistSans.variable} ${GeistMono.variable}`}>\n      \u003Cbody>{children}\u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  )\n}\n",[566],{"type":70,"tag":100,"props":567,"children":568},{"__ignoreMap":97},[569,576,611,646,653,716,727,810,843,858,865],{"type":70,"tag":104,"props":570,"children":571},{"class":106,"line":107},[572],{"type":70,"tag":104,"props":573,"children":574},{"style":153},[575],{"type":76,"value":156},{"type":70,"tag":104,"props":577,"children":578},{"class":106,"line":159},[579,583,587,591,595,599,603,607],{"type":70,"tag":104,"props":580,"children":581},{"style":163},[582],{"type":76,"value":166},{"type":70,"tag":104,"props":584,"children":585},{"style":169},[586],{"type":76,"value":172},{"type":70,"tag":104,"props":588,"children":589},{"style":175},[590],{"type":76,"value":178},{"type":70,"tag":104,"props":592,"children":593},{"style":169},[594],{"type":76,"value":183},{"type":70,"tag":104,"props":596,"children":597},{"style":163},[598],{"type":76,"value":188},{"type":70,"tag":104,"props":600,"children":601},{"style":169},[602],{"type":76,"value":193},{"type":70,"tag":104,"props":604,"children":605},{"style":117},[606],{"type":76,"value":198},{"type":70,"tag":104,"props":608,"children":609},{"style":169},[610],{"type":76,"value":203},{"type":70,"tag":104,"props":612,"children":613},{"class":106,"line":206},[614,618,622,626,630,634,638,642],{"type":70,"tag":104,"props":615,"children":616},{"style":163},[617],{"type":76,"value":166},{"type":70,"tag":104,"props":619,"children":620},{"style":169},[621],{"type":76,"value":172},{"type":70,"tag":104,"props":623,"children":624},{"style":175},[625],{"type":76,"value":220},{"type":70,"tag":104,"props":627,"children":628},{"style":169},[629],{"type":76,"value":183},{"type":70,"tag":104,"props":631,"children":632},{"style":163},[633],{"type":76,"value":188},{"type":70,"tag":104,"props":635,"children":636},{"style":169},[637],{"type":76,"value":193},{"type":70,"tag":104,"props":639,"children":640},{"style":117},[641],{"type":76,"value":237},{"type":70,"tag":104,"props":643,"children":644},{"style":169},[645],{"type":76,"value":203},{"type":70,"tag":104,"props":647,"children":648},{"class":106,"line":42},[649],{"type":70,"tag":104,"props":650,"children":651},{"emptyLinePlaceholder":247},[652],{"type":76,"value":250},{"type":70,"tag":104,"props":654,"children":655},{"class":106,"line":253},[656,660,664,668,672,676,680,684,688,692,696,700,704,708,712],{"type":70,"tag":104,"props":657,"children":658},{"style":163},[659],{"type":76,"value":259},{"type":70,"tag":104,"props":661,"children":662},{"style":163},[663],{"type":76,"value":264},{"type":70,"tag":104,"props":665,"children":666},{"style":267},[667],{"type":76,"value":270},{"type":70,"tag":104,"props":669,"children":670},{"style":273},[671],{"type":76,"value":276},{"type":70,"tag":104,"props":673,"children":674},{"style":169},[675],{"type":76,"value":281},{"type":70,"tag":104,"props":677,"children":678},{"style":284},[679],{"type":76,"value":287},{"type":70,"tag":104,"props":681,"children":682},{"style":169},[683],{"type":76,"value":292},{"type":70,"tag":104,"props":685,"children":686},{"style":169},[687],{"type":76,"value":172},{"type":70,"tag":104,"props":689,"children":690},{"style":299},[691],{"type":76,"value":287},{"type":70,"tag":104,"props":693,"children":694},{"style":169},[695],{"type":76,"value":306},{"type":70,"tag":104,"props":697,"children":698},{"style":111},[699],{"type":76,"value":311},{"type":70,"tag":104,"props":701,"children":702},{"style":169},[703],{"type":76,"value":316},{"type":70,"tag":104,"props":705,"children":706},{"style":111},[707],{"type":76,"value":321},{"type":70,"tag":104,"props":709,"children":710},{"style":169},[711],{"type":76,"value":326},{"type":70,"tag":104,"props":713,"children":714},{"style":169},[715],{"type":76,"value":331},{"type":70,"tag":104,"props":717,"children":718},{"class":106,"line":334},[719,723],{"type":70,"tag":104,"props":720,"children":721},{"style":163},[722],{"type":76,"value":340},{"type":70,"tag":104,"props":724,"children":725},{"style":299},[726],{"type":76,"value":345},{"type":70,"tag":104,"props":728,"children":729},{"class":106,"line":348},[730,734,738,742,746,750,754,758,762,766,770,774,778,782,786,790,794,798,802,806],{"type":70,"tag":104,"props":731,"children":732},{"style":169},[733],{"type":76,"value":354},{"type":70,"tag":104,"props":735,"children":736},{"style":299},[737],{"type":76,"value":359},{"type":70,"tag":104,"props":739,"children":740},{"style":267},[741],{"type":76,"value":364},{"type":70,"tag":104,"props":743,"children":744},{"style":169},[745],{"type":76,"value":369},{"type":70,"tag":104,"props":747,"children":748},{"style":169},[749],{"type":76,"value":374},{"type":70,"tag":104,"props":751,"children":752},{"style":117},[753],{"type":76,"value":379},{"type":70,"tag":104,"props":755,"children":756},{"style":169},[757],{"type":76,"value":374},{"type":70,"tag":104,"props":759,"children":760},{"style":267},[761],{"type":76,"value":388},{"type":70,"tag":104,"props":763,"children":764},{"style":169},[765],{"type":76,"value":393},{"type":70,"tag":104,"props":767,"children":768},{"style":169},[769],{"type":76,"value":398},{"type":70,"tag":104,"props":771,"children":772},{"style":175},[773],{"type":76,"value":403},{"type":70,"tag":104,"props":775,"children":776},{"style":169},[777],{"type":76,"value":316},{"type":70,"tag":104,"props":779,"children":780},{"style":175},[781],{"type":76,"value":412},{"type":70,"tag":104,"props":783,"children":784},{"style":169},[785],{"type":76,"value":417},{"type":70,"tag":104,"props":787,"children":788},{"style":169},[789],{"type":76,"value":422},{"type":70,"tag":104,"props":791,"children":792},{"style":175},[793],{"type":76,"value":427},{"type":70,"tag":104,"props":795,"children":796},{"style":169},[797],{"type":76,"value":316},{"type":70,"tag":104,"props":799,"children":800},{"style":175},[801],{"type":76,"value":412},{"type":70,"tag":104,"props":803,"children":804},{"style":169},[805],{"type":76,"value":440},{"type":70,"tag":104,"props":807,"children":808},{"style":169},[809],{"type":76,"value":445},{"type":70,"tag":104,"props":811,"children":812},{"class":106,"line":448},[813,817,821,826,830,835,839],{"type":70,"tag":104,"props":814,"children":815},{"style":169},[816],{"type":76,"value":454},{"type":70,"tag":104,"props":818,"children":819},{"style":299},[820],{"type":76,"value":459},{"type":70,"tag":104,"props":822,"children":823},{"style":169},[824],{"type":76,"value":825},">{",{"type":70,"tag":104,"props":827,"children":828},{"style":175},[829],{"type":76,"value":498},{"type":70,"tag":104,"props":831,"children":832},{"style":169},[833],{"type":76,"value":834},"}\u003C\u002F",{"type":70,"tag":104,"props":836,"children":837},{"style":299},[838],{"type":76,"value":459},{"type":70,"tag":104,"props":840,"children":841},{"style":169},[842],{"type":76,"value":521},{"type":70,"tag":104,"props":844,"children":845},{"class":106,"line":487},[846,850,854],{"type":70,"tag":104,"props":847,"children":848},{"style":169},[849],{"type":76,"value":530},{"type":70,"tag":104,"props":851,"children":852},{"style":299},[853],{"type":76,"value":359},{"type":70,"tag":104,"props":855,"children":856},{"style":169},[857],{"type":76,"value":521},{"type":70,"tag":104,"props":859,"children":860},{"class":106,"line":506},[861],{"type":70,"tag":104,"props":862,"children":863},{"style":299},[864],{"type":76,"value":547},{"type":70,"tag":104,"props":866,"children":867},{"class":106,"line":524},[868],{"type":70,"tag":104,"props":869,"children":870},{"style":169},[871],{"type":76,"value":503},{"type":70,"tag":92,"props":873,"children":877},{"className":874,"code":875,"language":876,"meta":97,"style":97},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F tailwind.config.ts\nimport type { Config } from 'tailwindcss'\n\nconst config: Config = {\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['var(--font-geist-sans)'],\n        mono: ['var(--font-geist-mono)'],\n      },\n    },\n  },\n}\nexport default config\n","ts",[878],{"type":70,"tag":100,"props":879,"children":880},{"__ignoreMap":97},[881,889,931,938,968,984,1000,1016,1057,1094,1102,1110,1118,1125],{"type":70,"tag":104,"props":882,"children":883},{"class":106,"line":107},[884],{"type":70,"tag":104,"props":885,"children":886},{"style":153},[887],{"type":76,"value":888},"\u002F\u002F tailwind.config.ts\n",{"type":70,"tag":104,"props":890,"children":891},{"class":106,"line":159},[892,896,901,905,910,914,918,922,927],{"type":70,"tag":104,"props":893,"children":894},{"style":163},[895],{"type":76,"value":166},{"type":70,"tag":104,"props":897,"children":898},{"style":163},[899],{"type":76,"value":900}," type",{"type":70,"tag":104,"props":902,"children":903},{"style":169},[904],{"type":76,"value":172},{"type":70,"tag":104,"props":906,"children":907},{"style":175},[908],{"type":76,"value":909}," Config",{"type":70,"tag":104,"props":911,"children":912},{"style":169},[913],{"type":76,"value":183},{"type":70,"tag":104,"props":915,"children":916},{"style":163},[917],{"type":76,"value":188},{"type":70,"tag":104,"props":919,"children":920},{"style":169},[921],{"type":76,"value":193},{"type":70,"tag":104,"props":923,"children":924},{"style":117},[925],{"type":76,"value":926},"tailwindcss",{"type":70,"tag":104,"props":928,"children":929},{"style":169},[930],{"type":76,"value":203},{"type":70,"tag":104,"props":932,"children":933},{"class":106,"line":206},[934],{"type":70,"tag":104,"props":935,"children":936},{"emptyLinePlaceholder":247},[937],{"type":76,"value":250},{"type":70,"tag":104,"props":939,"children":940},{"class":106,"line":42},[941,946,951,955,959,964],{"type":70,"tag":104,"props":942,"children":943},{"style":267},[944],{"type":76,"value":945},"const",{"type":70,"tag":104,"props":947,"children":948},{"style":175},[949],{"type":76,"value":950}," config",{"type":70,"tag":104,"props":952,"children":953},{"style":169},[954],{"type":76,"value":306},{"type":70,"tag":104,"props":956,"children":957},{"style":111},[958],{"type":76,"value":909},{"type":70,"tag":104,"props":960,"children":961},{"style":169},[962],{"type":76,"value":963}," =",{"type":70,"tag":104,"props":965,"children":966},{"style":169},[967],{"type":76,"value":331},{"type":70,"tag":104,"props":969,"children":970},{"class":106,"line":253},[971,976,980],{"type":70,"tag":104,"props":972,"children":973},{"style":299},[974],{"type":76,"value":975},"  theme",{"type":70,"tag":104,"props":977,"children":978},{"style":169},[979],{"type":76,"value":306},{"type":70,"tag":104,"props":981,"children":982},{"style":169},[983],{"type":76,"value":331},{"type":70,"tag":104,"props":985,"children":986},{"class":106,"line":334},[987,992,996],{"type":70,"tag":104,"props":988,"children":989},{"style":299},[990],{"type":76,"value":991},"    extend",{"type":70,"tag":104,"props":993,"children":994},{"style":169},[995],{"type":76,"value":306},{"type":70,"tag":104,"props":997,"children":998},{"style":169},[999],{"type":76,"value":331},{"type":70,"tag":104,"props":1001,"children":1002},{"class":106,"line":348},[1003,1008,1012],{"type":70,"tag":104,"props":1004,"children":1005},{"style":299},[1006],{"type":76,"value":1007},"      fontFamily",{"type":70,"tag":104,"props":1009,"children":1010},{"style":169},[1011],{"type":76,"value":306},{"type":70,"tag":104,"props":1013,"children":1014},{"style":169},[1015],{"type":76,"value":331},{"type":70,"tag":104,"props":1017,"children":1018},{"class":106,"line":448},[1019,1024,1028,1033,1038,1043,1047,1052],{"type":70,"tag":104,"props":1020,"children":1021},{"style":299},[1022],{"type":76,"value":1023},"        sans",{"type":70,"tag":104,"props":1025,"children":1026},{"style":169},[1027],{"type":76,"value":306},{"type":70,"tag":104,"props":1029,"children":1030},{"style":175},[1031],{"type":76,"value":1032}," [",{"type":70,"tag":104,"props":1034,"children":1035},{"style":169},[1036],{"type":76,"value":1037},"'",{"type":70,"tag":104,"props":1039,"children":1040},{"style":117},[1041],{"type":76,"value":1042},"var(--font-geist-sans)",{"type":70,"tag":104,"props":1044,"children":1045},{"style":169},[1046],{"type":76,"value":1037},{"type":70,"tag":104,"props":1048,"children":1049},{"style":175},[1050],{"type":76,"value":1051},"]",{"type":70,"tag":104,"props":1053,"children":1054},{"style":169},[1055],{"type":76,"value":1056},",\n",{"type":70,"tag":104,"props":1058,"children":1059},{"class":106,"line":487},[1060,1065,1069,1073,1077,1082,1086,1090],{"type":70,"tag":104,"props":1061,"children":1062},{"style":299},[1063],{"type":76,"value":1064},"        mono",{"type":70,"tag":104,"props":1066,"children":1067},{"style":169},[1068],{"type":76,"value":306},{"type":70,"tag":104,"props":1070,"children":1071},{"style":175},[1072],{"type":76,"value":1032},{"type":70,"tag":104,"props":1074,"children":1075},{"style":169},[1076],{"type":76,"value":1037},{"type":70,"tag":104,"props":1078,"children":1079},{"style":117},[1080],{"type":76,"value":1081},"var(--font-geist-mono)",{"type":70,"tag":104,"props":1083,"children":1084},{"style":169},[1085],{"type":76,"value":1037},{"type":70,"tag":104,"props":1087,"children":1088},{"style":175},[1089],{"type":76,"value":1051},{"type":70,"tag":104,"props":1091,"children":1092},{"style":169},[1093],{"type":76,"value":1056},{"type":70,"tag":104,"props":1095,"children":1096},{"class":106,"line":506},[1097],{"type":70,"tag":104,"props":1098,"children":1099},{"style":169},[1100],{"type":76,"value":1101},"      },\n",{"type":70,"tag":104,"props":1103,"children":1104},{"class":106,"line":524},[1105],{"type":70,"tag":104,"props":1106,"children":1107},{"style":169},[1108],{"type":76,"value":1109},"    },\n",{"type":70,"tag":104,"props":1111,"children":1112},{"class":106,"line":541},[1113],{"type":70,"tag":104,"props":1114,"children":1115},{"style":169},[1116],{"type":76,"value":1117},"  },\n",{"type":70,"tag":104,"props":1119,"children":1120},{"class":106,"line":550},[1121],{"type":70,"tag":104,"props":1122,"children":1123},{"style":169},[1124],{"type":76,"value":503},{"type":70,"tag":104,"props":1126,"children":1128},{"class":106,"line":1127},14,[1129,1133,1137],{"type":70,"tag":104,"props":1130,"children":1131},{"style":163},[1132],{"type":76,"value":259},{"type":70,"tag":104,"props":1134,"children":1135},{"style":163},[1136],{"type":76,"value":264},{"type":70,"tag":104,"props":1138,"children":1139},{"style":175},[1140],{"type":76,"value":1141}," config\n",{"type":70,"tag":79,"props":1143,"children":1144},{},[1145],{"type":76,"value":1146},"Then use in components:",{"type":70,"tag":92,"props":1148,"children":1150},{"className":141,"code":1149,"language":143,"meta":97,"style":97},"\u003Cp className=\"font-sans\">Geist Sans text\u003C\u002Fp>\n\u003Ccode className=\"font-mono\">Geist Mono code\u003C\u002Fcode>\n",[1151],{"type":70,"tag":100,"props":1152,"children":1153},{"__ignoreMap":97},[1154,1210],{"type":70,"tag":104,"props":1155,"children":1156},{"class":106,"line":107},[1157,1162,1166,1170,1174,1178,1183,1187,1192,1197,1202,1206],{"type":70,"tag":104,"props":1158,"children":1159},{"style":169},[1160],{"type":76,"value":1161},"\u003C",{"type":70,"tag":104,"props":1163,"children":1164},{"style":299},[1165],{"type":76,"value":79},{"type":70,"tag":104,"props":1167,"children":1168},{"style":267},[1169],{"type":76,"value":388},{"type":70,"tag":104,"props":1171,"children":1172},{"style":169},[1173],{"type":76,"value":369},{"type":70,"tag":104,"props":1175,"children":1176},{"style":169},[1177],{"type":76,"value":374},{"type":70,"tag":104,"props":1179,"children":1180},{"style":117},[1181],{"type":76,"value":1182},"font-sans",{"type":70,"tag":104,"props":1184,"children":1185},{"style":169},[1186],{"type":76,"value":374},{"type":70,"tag":104,"props":1188,"children":1189},{"style":169},[1190],{"type":76,"value":1191},">",{"type":70,"tag":104,"props":1193,"children":1194},{"style":175},[1195],{"type":76,"value":1196},"Geist Sans text",{"type":70,"tag":104,"props":1198,"children":1199},{"style":169},[1200],{"type":76,"value":1201},"\u003C\u002F",{"type":70,"tag":104,"props":1203,"children":1204},{"style":299},[1205],{"type":76,"value":79},{"type":70,"tag":104,"props":1207,"children":1208},{"style":169},[1209],{"type":76,"value":521},{"type":70,"tag":104,"props":1211,"children":1212},{"class":106,"line":159},[1213,1217,1221,1225,1229,1233,1238,1242,1246,1251,1255,1259],{"type":70,"tag":104,"props":1214,"children":1215},{"style":169},[1216],{"type":76,"value":1161},{"type":70,"tag":104,"props":1218,"children":1219},{"style":299},[1220],{"type":76,"value":100},{"type":70,"tag":104,"props":1222,"children":1223},{"style":267},[1224],{"type":76,"value":388},{"type":70,"tag":104,"props":1226,"children":1227},{"style":169},[1228],{"type":76,"value":369},{"type":70,"tag":104,"props":1230,"children":1231},{"style":169},[1232],{"type":76,"value":374},{"type":70,"tag":104,"props":1234,"children":1235},{"style":117},[1236],{"type":76,"value":1237},"font-mono",{"type":70,"tag":104,"props":1239,"children":1240},{"style":169},[1241],{"type":76,"value":374},{"type":70,"tag":104,"props":1243,"children":1244},{"style":169},[1245],{"type":76,"value":1191},{"type":70,"tag":104,"props":1247,"children":1248},{"style":175},[1249],{"type":76,"value":1250},"Geist Mono code",{"type":70,"tag":104,"props":1252,"children":1253},{"style":169},[1254],{"type":76,"value":1201},{"type":70,"tag":104,"props":1256,"children":1257},{"style":299},[1258],{"type":76,"value":100},{"type":70,"tag":104,"props":1260,"children":1261},{"style":169},[1262],{"type":76,"value":521},{"type":70,"tag":133,"props":1264,"children":1266},{"id":1265},"css-variables",[1267],{"type":76,"value":1268},"CSS Variables",{"type":70,"tag":79,"props":1270,"children":1271},{},[1272],{"type":76,"value":1273},"Geist fonts expose CSS custom properties:",{"type":70,"tag":1275,"props":1276,"children":1277},"table",{},[1278,1297],{"type":70,"tag":1279,"props":1280,"children":1281},"thead",{},[1282],{"type":70,"tag":1283,"props":1284,"children":1285},"tr",{},[1286,1292],{"type":70,"tag":1287,"props":1288,"children":1289},"th",{},[1290],{"type":76,"value":1291},"Variable",{"type":70,"tag":1287,"props":1293,"children":1294},{},[1295],{"type":76,"value":1296},"Font",{"type":70,"tag":1298,"props":1299,"children":1300},"tbody",{},[1301,1319],{"type":70,"tag":1283,"props":1302,"children":1303},{},[1304,1314],{"type":70,"tag":1305,"props":1306,"children":1307},"td",{},[1308],{"type":70,"tag":100,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":76,"value":1313},"--font-geist-sans",{"type":70,"tag":1305,"props":1315,"children":1316},{},[1317],{"type":76,"value":1318},"Geist Sans",{"type":70,"tag":1283,"props":1320,"children":1321},{},[1322,1331],{"type":70,"tag":1305,"props":1323,"children":1324},{},[1325],{"type":70,"tag":100,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":76,"value":1330},"--font-geist-mono",{"type":70,"tag":1305,"props":1332,"children":1333},{},[1334],{"type":76,"value":1335},"Geist Mono",{"type":70,"tag":79,"props":1337,"children":1338},{},[1339],{"type":76,"value":1340},"Use them in CSS:",{"type":70,"tag":92,"props":1342,"children":1346},{"className":1343,"code":1344,"language":1345,"meta":97,"style":97},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","body {\n  font-family: var(--font-geist-sans);\n}\n\ncode, pre {\n  font-family: var(--font-geist-mono);\n}\n","css",[1347],{"type":70,"tag":100,"props":1348,"children":1349},{"__ignoreMap":97},[1350,1361,1393,1400,1407,1428,1455],{"type":70,"tag":104,"props":1351,"children":1352},{"class":106,"line":107},[1353,1357],{"type":70,"tag":104,"props":1354,"children":1355},{"style":111},[1356],{"type":76,"value":459},{"type":70,"tag":104,"props":1358,"children":1359},{"style":169},[1360],{"type":76,"value":331},{"type":70,"tag":104,"props":1362,"children":1363},{"class":106,"line":159},[1364,1370,1374,1379,1384,1388],{"type":70,"tag":104,"props":1365,"children":1367},{"style":1366},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[1368],{"type":76,"value":1369},"  font-family",{"type":70,"tag":104,"props":1371,"children":1372},{"style":169},[1373],{"type":76,"value":306},{"type":70,"tag":104,"props":1375,"children":1376},{"style":273},[1377],{"type":76,"value":1378}," var",{"type":70,"tag":104,"props":1380,"children":1381},{"style":169},[1382],{"type":76,"value":1383},"(",{"type":70,"tag":104,"props":1385,"children":1386},{"style":175},[1387],{"type":76,"value":1313},{"type":70,"tag":104,"props":1389,"children":1390},{"style":169},[1391],{"type":76,"value":1392},");\n",{"type":70,"tag":104,"props":1394,"children":1395},{"class":106,"line":206},[1396],{"type":70,"tag":104,"props":1397,"children":1398},{"style":169},[1399],{"type":76,"value":503},{"type":70,"tag":104,"props":1401,"children":1402},{"class":106,"line":42},[1403],{"type":70,"tag":104,"props":1404,"children":1405},{"emptyLinePlaceholder":247},[1406],{"type":76,"value":250},{"type":70,"tag":104,"props":1408,"children":1409},{"class":106,"line":253},[1410,1414,1419,1424],{"type":70,"tag":104,"props":1411,"children":1412},{"style":111},[1413],{"type":76,"value":100},{"type":70,"tag":104,"props":1415,"children":1416},{"style":169},[1417],{"type":76,"value":1418},",",{"type":70,"tag":104,"props":1420,"children":1421},{"style":111},[1422],{"type":76,"value":1423}," pre",{"type":70,"tag":104,"props":1425,"children":1426},{"style":169},[1427],{"type":76,"value":331},{"type":70,"tag":104,"props":1429,"children":1430},{"class":106,"line":334},[1431,1435,1439,1443,1447,1451],{"type":70,"tag":104,"props":1432,"children":1433},{"style":1366},[1434],{"type":76,"value":1369},{"type":70,"tag":104,"props":1436,"children":1437},{"style":169},[1438],{"type":76,"value":306},{"type":70,"tag":104,"props":1440,"children":1441},{"style":273},[1442],{"type":76,"value":1378},{"type":70,"tag":104,"props":1444,"children":1445},{"style":169},[1446],{"type":76,"value":1383},{"type":70,"tag":104,"props":1448,"children":1449},{"style":175},[1450],{"type":76,"value":1330},{"type":70,"tag":104,"props":1452,"children":1453},{"style":169},[1454],{"type":76,"value":1392},{"type":70,"tag":104,"props":1456,"children":1457},{"class":106,"line":348},[1458],{"type":70,"tag":104,"props":1459,"children":1460},{"style":169},[1461],{"type":76,"value":503},{"type":70,"tag":85,"props":1463,"children":1465},{"id":1464},"font-weights",[1466],{"type":76,"value":1467},"Font Weights",{"type":70,"tag":79,"props":1469,"children":1470},{},[1471],{"type":76,"value":1472},"Both Geist Sans and Geist Mono support these weights:",{"type":70,"tag":1275,"props":1474,"children":1475},{},[1476,1492],{"type":70,"tag":1279,"props":1477,"children":1478},{},[1479],{"type":70,"tag":1283,"props":1480,"children":1481},{},[1482,1487],{"type":70,"tag":1287,"props":1483,"children":1484},{},[1485],{"type":76,"value":1486},"Weight",{"type":70,"tag":1287,"props":1488,"children":1489},{},[1490],{"type":76,"value":1491},"Value",{"type":70,"tag":1298,"props":1493,"children":1494},{},[1495,1508,1521,1534,1547,1560,1573,1586,1599],{"type":70,"tag":1283,"props":1496,"children":1497},{},[1498,1503],{"type":70,"tag":1305,"props":1499,"children":1500},{},[1501],{"type":76,"value":1502},"Thin",{"type":70,"tag":1305,"props":1504,"children":1505},{},[1506],{"type":76,"value":1507},"100",{"type":70,"tag":1283,"props":1509,"children":1510},{},[1511,1516],{"type":70,"tag":1305,"props":1512,"children":1513},{},[1514],{"type":76,"value":1515},"Extra Light",{"type":70,"tag":1305,"props":1517,"children":1518},{},[1519],{"type":76,"value":1520},"200",{"type":70,"tag":1283,"props":1522,"children":1523},{},[1524,1529],{"type":70,"tag":1305,"props":1525,"children":1526},{},[1527],{"type":76,"value":1528},"Light",{"type":70,"tag":1305,"props":1530,"children":1531},{},[1532],{"type":76,"value":1533},"300",{"type":70,"tag":1283,"props":1535,"children":1536},{},[1537,1542],{"type":70,"tag":1305,"props":1538,"children":1539},{},[1540],{"type":76,"value":1541},"Regular",{"type":70,"tag":1305,"props":1543,"children":1544},{},[1545],{"type":76,"value":1546},"400",{"type":70,"tag":1283,"props":1548,"children":1549},{},[1550,1555],{"type":70,"tag":1305,"props":1551,"children":1552},{},[1553],{"type":76,"value":1554},"Medium",{"type":70,"tag":1305,"props":1556,"children":1557},{},[1558],{"type":76,"value":1559},"500",{"type":70,"tag":1283,"props":1561,"children":1562},{},[1563,1568],{"type":70,"tag":1305,"props":1564,"children":1565},{},[1566],{"type":76,"value":1567},"Semi Bold",{"type":70,"tag":1305,"props":1569,"children":1570},{},[1571],{"type":76,"value":1572},"600",{"type":70,"tag":1283,"props":1574,"children":1575},{},[1576,1581],{"type":70,"tag":1305,"props":1577,"children":1578},{},[1579],{"type":76,"value":1580},"Bold",{"type":70,"tag":1305,"props":1582,"children":1583},{},[1584],{"type":76,"value":1585},"700",{"type":70,"tag":1283,"props":1587,"children":1588},{},[1589,1594],{"type":70,"tag":1305,"props":1590,"children":1591},{},[1592],{"type":76,"value":1593},"Extra Bold",{"type":70,"tag":1305,"props":1595,"children":1596},{},[1597],{"type":76,"value":1598},"800",{"type":70,"tag":1283,"props":1600,"children":1601},{},[1602,1607],{"type":70,"tag":1305,"props":1603,"children":1604},{},[1605],{"type":76,"value":1606},"Black",{"type":70,"tag":1305,"props":1608,"children":1609},{},[1610],{"type":76,"value":1611},"900",{"type":70,"tag":85,"props":1613,"children":1615},{"id":1614},"typography-direction-for-geist",[1616],{"type":76,"value":1617},"Typography Direction for Geist",{"type":70,"tag":79,"props":1619,"children":1620},{},[1621],{"type":76,"value":1622},"Geist is not just a font import. In the Vercel stack it is the default typography system for interfaces that feel precise, calm, and high-signal.",{"type":70,"tag":133,"props":1624,"children":1626},{"id":1625},"what-good-looks-like",[1627],{"type":76,"value":1628},"What good looks like",{"type":70,"tag":1630,"props":1631,"children":1632},"ul",{},[1633,1639,1644,1649],{"type":70,"tag":1634,"props":1635,"children":1636},"li",{},[1637],{"type":76,"value":1638},"Headlines are crisp, tightly tracked, and decisive",{"type":70,"tag":1634,"props":1640,"children":1641},{},[1642],{"type":76,"value":1643},"Body copy is readable and restrained; secondary text is muted, not washed out",{"type":70,"tag":1634,"props":1645,"children":1646},{},[1647],{"type":76,"value":1648},"Numbers, commands, IDs, timestamps use Geist Mono for precision",{"type":70,"tag":1634,"props":1650,"children":1651},{},[1652],{"type":76,"value":1653},"Typography carries hierarchy first; color and decoration come second",{"type":70,"tag":133,"props":1655,"children":1657},{"id":1656},"default-type-recipes",[1658],{"type":76,"value":1659},"Default type recipes",{"type":70,"tag":92,"props":1661,"children":1663},{"className":141,"code":1662,"language":143,"meta":97,"style":97},"\u003Ch1 className=\"text-4xl font-medium tracking-[-0.04em]\">Large page title\u003C\u002Fh1>\n\u003Cp className=\"text-sm leading-6 text-muted-foreground\">Supporting copy\u003C\u002Fp>\n\u003Cdiv className=\"font-mono text-[12px] text-muted-foreground tabular-nums\">Dense metadata\u003C\u002Fdiv>\n\u003Ch2 className=\"text-lg tracking-tight\">Section heading\u003C\u002Fh2>\n\u003Ch2 className=\"text-xl tracking-tight\">Large section heading\u003C\u002Fh2>\n\u003Clabel className=\"text-sm\">UI label\u003C\u002Flabel>\n",[1664],{"type":70,"tag":100,"props":1665,"children":1666},{"__ignoreMap":97},[1667,1720,1773,1827,1880,1933],{"type":70,"tag":104,"props":1668,"children":1669},{"class":106,"line":107},[1670,1674,1678,1682,1686,1690,1695,1699,1703,1708,1712,1716],{"type":70,"tag":104,"props":1671,"children":1672},{"style":169},[1673],{"type":76,"value":1161},{"type":70,"tag":104,"props":1675,"children":1676},{"style":299},[1677],{"type":76,"value":71},{"type":70,"tag":104,"props":1679,"children":1680},{"style":267},[1681],{"type":76,"value":388},{"type":70,"tag":104,"props":1683,"children":1684},{"style":169},[1685],{"type":76,"value":369},{"type":70,"tag":104,"props":1687,"children":1688},{"style":169},[1689],{"type":76,"value":374},{"type":70,"tag":104,"props":1691,"children":1692},{"style":117},[1693],{"type":76,"value":1694},"text-4xl font-medium tracking-[-0.04em]",{"type":70,"tag":104,"props":1696,"children":1697},{"style":169},[1698],{"type":76,"value":374},{"type":70,"tag":104,"props":1700,"children":1701},{"style":169},[1702],{"type":76,"value":1191},{"type":70,"tag":104,"props":1704,"children":1705},{"style":175},[1706],{"type":76,"value":1707},"Large page title",{"type":70,"tag":104,"props":1709,"children":1710},{"style":169},[1711],{"type":76,"value":1201},{"type":70,"tag":104,"props":1713,"children":1714},{"style":299},[1715],{"type":76,"value":71},{"type":70,"tag":104,"props":1717,"children":1718},{"style":169},[1719],{"type":76,"value":521},{"type":70,"tag":104,"props":1721,"children":1722},{"class":106,"line":159},[1723,1727,1731,1735,1739,1743,1748,1752,1756,1761,1765,1769],{"type":70,"tag":104,"props":1724,"children":1725},{"style":169},[1726],{"type":76,"value":1161},{"type":70,"tag":104,"props":1728,"children":1729},{"style":299},[1730],{"type":76,"value":79},{"type":70,"tag":104,"props":1732,"children":1733},{"style":267},[1734],{"type":76,"value":388},{"type":70,"tag":104,"props":1736,"children":1737},{"style":169},[1738],{"type":76,"value":369},{"type":70,"tag":104,"props":1740,"children":1741},{"style":169},[1742],{"type":76,"value":374},{"type":70,"tag":104,"props":1744,"children":1745},{"style":117},[1746],{"type":76,"value":1747},"text-sm leading-6 text-muted-foreground",{"type":70,"tag":104,"props":1749,"children":1750},{"style":169},[1751],{"type":76,"value":374},{"type":70,"tag":104,"props":1753,"children":1754},{"style":169},[1755],{"type":76,"value":1191},{"type":70,"tag":104,"props":1757,"children":1758},{"style":175},[1759],{"type":76,"value":1760},"Supporting copy",{"type":70,"tag":104,"props":1762,"children":1763},{"style":169},[1764],{"type":76,"value":1201},{"type":70,"tag":104,"props":1766,"children":1767},{"style":299},[1768],{"type":76,"value":79},{"type":70,"tag":104,"props":1770,"children":1771},{"style":169},[1772],{"type":76,"value":521},{"type":70,"tag":104,"props":1774,"children":1775},{"class":106,"line":206},[1776,1780,1785,1789,1793,1797,1802,1806,1810,1815,1819,1823],{"type":70,"tag":104,"props":1777,"children":1778},{"style":169},[1779],{"type":76,"value":1161},{"type":70,"tag":104,"props":1781,"children":1782},{"style":299},[1783],{"type":76,"value":1784},"div",{"type":70,"tag":104,"props":1786,"children":1787},{"style":267},[1788],{"type":76,"value":388},{"type":70,"tag":104,"props":1790,"children":1791},{"style":169},[1792],{"type":76,"value":369},{"type":70,"tag":104,"props":1794,"children":1795},{"style":169},[1796],{"type":76,"value":374},{"type":70,"tag":104,"props":1798,"children":1799},{"style":117},[1800],{"type":76,"value":1801},"font-mono text-[12px] text-muted-foreground tabular-nums",{"type":70,"tag":104,"props":1803,"children":1804},{"style":169},[1805],{"type":76,"value":374},{"type":70,"tag":104,"props":1807,"children":1808},{"style":169},[1809],{"type":76,"value":1191},{"type":70,"tag":104,"props":1811,"children":1812},{"style":175},[1813],{"type":76,"value":1814},"Dense metadata",{"type":70,"tag":104,"props":1816,"children":1817},{"style":169},[1818],{"type":76,"value":1201},{"type":70,"tag":104,"props":1820,"children":1821},{"style":299},[1822],{"type":76,"value":1784},{"type":70,"tag":104,"props":1824,"children":1825},{"style":169},[1826],{"type":76,"value":521},{"type":70,"tag":104,"props":1828,"children":1829},{"class":106,"line":42},[1830,1834,1838,1842,1846,1850,1855,1859,1863,1868,1872,1876],{"type":70,"tag":104,"props":1831,"children":1832},{"style":169},[1833],{"type":76,"value":1161},{"type":70,"tag":104,"props":1835,"children":1836},{"style":299},[1837],{"type":76,"value":85},{"type":70,"tag":104,"props":1839,"children":1840},{"style":267},[1841],{"type":76,"value":388},{"type":70,"tag":104,"props":1843,"children":1844},{"style":169},[1845],{"type":76,"value":369},{"type":70,"tag":104,"props":1847,"children":1848},{"style":169},[1849],{"type":76,"value":374},{"type":70,"tag":104,"props":1851,"children":1852},{"style":117},[1853],{"type":76,"value":1854},"text-lg tracking-tight",{"type":70,"tag":104,"props":1856,"children":1857},{"style":169},[1858],{"type":76,"value":374},{"type":70,"tag":104,"props":1860,"children":1861},{"style":169},[1862],{"type":76,"value":1191},{"type":70,"tag":104,"props":1864,"children":1865},{"style":175},[1866],{"type":76,"value":1867},"Section heading",{"type":70,"tag":104,"props":1869,"children":1870},{"style":169},[1871],{"type":76,"value":1201},{"type":70,"tag":104,"props":1873,"children":1874},{"style":299},[1875],{"type":76,"value":85},{"type":70,"tag":104,"props":1877,"children":1878},{"style":169},[1879],{"type":76,"value":521},{"type":70,"tag":104,"props":1881,"children":1882},{"class":106,"line":253},[1883,1887,1891,1895,1899,1903,1908,1912,1916,1921,1925,1929],{"type":70,"tag":104,"props":1884,"children":1885},{"style":169},[1886],{"type":76,"value":1161},{"type":70,"tag":104,"props":1888,"children":1889},{"style":299},[1890],{"type":76,"value":85},{"type":70,"tag":104,"props":1892,"children":1893},{"style":267},[1894],{"type":76,"value":388},{"type":70,"tag":104,"props":1896,"children":1897},{"style":169},[1898],{"type":76,"value":369},{"type":70,"tag":104,"props":1900,"children":1901},{"style":169},[1902],{"type":76,"value":374},{"type":70,"tag":104,"props":1904,"children":1905},{"style":117},[1906],{"type":76,"value":1907},"text-xl tracking-tight",{"type":70,"tag":104,"props":1909,"children":1910},{"style":169},[1911],{"type":76,"value":374},{"type":70,"tag":104,"props":1913,"children":1914},{"style":169},[1915],{"type":76,"value":1191},{"type":70,"tag":104,"props":1917,"children":1918},{"style":175},[1919],{"type":76,"value":1920},"Large section heading",{"type":70,"tag":104,"props":1922,"children":1923},{"style":169},[1924],{"type":76,"value":1201},{"type":70,"tag":104,"props":1926,"children":1927},{"style":299},[1928],{"type":76,"value":85},{"type":70,"tag":104,"props":1930,"children":1931},{"style":169},[1932],{"type":76,"value":521},{"type":70,"tag":104,"props":1934,"children":1935},{"class":106,"line":334},[1936,1940,1945,1949,1953,1957,1962,1966,1970,1975,1979,1983],{"type":70,"tag":104,"props":1937,"children":1938},{"style":169},[1939],{"type":76,"value":1161},{"type":70,"tag":104,"props":1941,"children":1942},{"style":299},[1943],{"type":76,"value":1944},"label",{"type":70,"tag":104,"props":1946,"children":1947},{"style":267},[1948],{"type":76,"value":388},{"type":70,"tag":104,"props":1950,"children":1951},{"style":169},[1952],{"type":76,"value":369},{"type":70,"tag":104,"props":1954,"children":1955},{"style":169},[1956],{"type":76,"value":374},{"type":70,"tag":104,"props":1958,"children":1959},{"style":117},[1960],{"type":76,"value":1961},"text-sm",{"type":70,"tag":104,"props":1963,"children":1964},{"style":169},[1965],{"type":76,"value":374},{"type":70,"tag":104,"props":1967,"children":1968},{"style":169},[1969],{"type":76,"value":1191},{"type":70,"tag":104,"props":1971,"children":1972},{"style":175},[1973],{"type":76,"value":1974},"UI label",{"type":70,"tag":104,"props":1976,"children":1977},{"style":169},[1978],{"type":76,"value":1201},{"type":70,"tag":104,"props":1980,"children":1981},{"style":299},[1982],{"type":76,"value":1944},{"type":70,"tag":104,"props":1984,"children":1985},{"style":169},[1986],{"type":76,"value":521},{"type":70,"tag":79,"props":1988,"children":1989},{},[1990,1992,1998],{"type":76,"value":1991},"Avoid defaulting entire interfaces to ",{"type":70,"tag":100,"props":1993,"children":1995},{"className":1994},[],[1996],{"type":76,"value":1997},"text-base",{"type":76,"value":316},{"type":70,"tag":133,"props":2000,"children":2002},{"id":2001},"where-to-use-each-family",[2003],{"type":76,"value":2004},"Where to use each family",{"type":70,"tag":1630,"props":2006,"children":2007},{},[2008,2013,2018],{"type":70,"tag":1634,"props":2009,"children":2010},{},[2011],{"type":76,"value":2012},"Geist Sans: navigation, body copy, buttons, headings, forms, tables, dialogs",{"type":70,"tag":1634,"props":2014,"children":2015},{},[2016],{"type":76,"value":2017},"Geist Mono: code, shortcuts, terminal output, commit hashes, invoice amounts, metrics, timestamps, ENV keys, feature flags",{"type":70,"tag":1634,"props":2019,"children":2020},{},[2021],{"type":76,"value":2022},"Geist Pixel: one accent moment only - hero wordmark, campaign heading, empty-state label. Never body text or settings UI.",{"type":70,"tag":133,"props":2024,"children":2026},{"id":2025},"anti-patterns",[2027],{"type":76,"value":2028},"Anti-patterns",{"type":70,"tag":1630,"props":2030,"children":2031},{},[2032,2037,2042,2047,2052],{"type":70,"tag":1634,"props":2033,"children":2034},{},[2035],{"type":76,"value":2036},"Mixing Geist with multiple unrelated font families",{"type":70,"tag":1634,"props":2038,"children":2039},{},[2040],{"type":76,"value":2041},"Using Geist Mono for long paragraphs",{"type":70,"tag":1634,"props":2043,"children":2044},{},[2045],{"type":76,"value":2046},"Using Geist Pixel for more than one or two focal moments",{"type":70,"tag":1634,"props":2048,"children":2049},{},[2050],{"type":76,"value":2051},"Making every heading bold (Geist looks strongest with restrained weight and tight tracking)",{"type":70,"tag":1634,"props":2053,"children":2054},{},[2055],{"type":76,"value":2056},"Letting secondary text get so faint that hierarchy disappears",{"type":70,"tag":85,"props":2058,"children":2060},{"id":2059},"subset-configuration",[2061],{"type":76,"value":2062},"Subset Configuration",{"type":70,"tag":79,"props":2064,"children":2065},{},[2066],{"type":76,"value":2067},"Optimize font loading by specifying subsets:",{"type":70,"tag":92,"props":2069,"children":2071},{"className":141,"code":2070,"language":143,"meta":97,"style":97},"import { GeistSans } from 'geist\u002Ffont\u002Fsans'\n\n\u002F\u002F GeistSans automatically uses the 'latin' subset\n\u002F\u002F For additional subsets, configure in next.config.js\n",[2072],{"type":70,"tag":100,"props":2073,"children":2074},{"__ignoreMap":97},[2075,2110,2117,2125],{"type":70,"tag":104,"props":2076,"children":2077},{"class":106,"line":107},[2078,2082,2086,2090,2094,2098,2102,2106],{"type":70,"tag":104,"props":2079,"children":2080},{"style":163},[2081],{"type":76,"value":166},{"type":70,"tag":104,"props":2083,"children":2084},{"style":169},[2085],{"type":76,"value":172},{"type":70,"tag":104,"props":2087,"children":2088},{"style":175},[2089],{"type":76,"value":178},{"type":70,"tag":104,"props":2091,"children":2092},{"style":169},[2093],{"type":76,"value":183},{"type":70,"tag":104,"props":2095,"children":2096},{"style":163},[2097],{"type":76,"value":188},{"type":70,"tag":104,"props":2099,"children":2100},{"style":169},[2101],{"type":76,"value":193},{"type":70,"tag":104,"props":2103,"children":2104},{"style":117},[2105],{"type":76,"value":198},{"type":70,"tag":104,"props":2107,"children":2108},{"style":169},[2109],{"type":76,"value":203},{"type":70,"tag":104,"props":2111,"children":2112},{"class":106,"line":159},[2113],{"type":70,"tag":104,"props":2114,"children":2115},{"emptyLinePlaceholder":247},[2116],{"type":76,"value":250},{"type":70,"tag":104,"props":2118,"children":2119},{"class":106,"line":206},[2120],{"type":70,"tag":104,"props":2121,"children":2122},{"style":153},[2123],{"type":76,"value":2124},"\u002F\u002F GeistSans automatically uses the 'latin' subset\n",{"type":70,"tag":104,"props":2126,"children":2127},{"class":106,"line":42},[2128],{"type":70,"tag":104,"props":2129,"children":2130},{"style":153},[2131],{"type":76,"value":2132},"\u002F\u002F For additional subsets, configure in next.config.js\n",{"type":70,"tag":85,"props":2134,"children":2136},{"id":2135},"geist-pixel-feb-6-2026",[2137],{"type":76,"value":2138},"Geist Pixel (Feb 6, 2026)",{"type":70,"tag":79,"props":2140,"children":2141},{},[2142],{"type":76,"value":2143},"Geist Pixel is a bitmap-inspired display typeface family designed for headlines, logos, and decorative use. It ships five variants, each built on a different geometric primitive:",{"type":70,"tag":1275,"props":2145,"children":2146},{},[2147,2163],{"type":70,"tag":1279,"props":2148,"children":2149},{},[2150],{"type":70,"tag":1283,"props":2151,"children":2152},{},[2153,2158],{"type":70,"tag":1287,"props":2154,"children":2155},{},[2156],{"type":76,"value":2157},"Variant",{"type":70,"tag":1287,"props":2159,"children":2160},{},[2161],{"type":76,"value":2162},"Description",{"type":70,"tag":1298,"props":2164,"children":2165},{},[2166,2179,2192,2205,2218],{"type":70,"tag":1283,"props":2167,"children":2168},{},[2169,2174],{"type":70,"tag":1305,"props":2170,"children":2171},{},[2172],{"type":76,"value":2173},"Geist Pixel Square",{"type":70,"tag":1305,"props":2175,"children":2176},{},[2177],{"type":76,"value":2178},"Square-based pixel grid",{"type":70,"tag":1283,"props":2180,"children":2181},{},[2182,2187],{"type":70,"tag":1305,"props":2183,"children":2184},{},[2185],{"type":76,"value":2186},"Geist Pixel Grid",{"type":70,"tag":1305,"props":2188,"children":2189},{},[2190],{"type":76,"value":2191},"Dense grid pattern",{"type":70,"tag":1283,"props":2193,"children":2194},{},[2195,2200],{"type":70,"tag":1305,"props":2196,"children":2197},{},[2198],{"type":76,"value":2199},"Geist Pixel Circle",{"type":70,"tag":1305,"props":2201,"children":2202},{},[2203],{"type":76,"value":2204},"Circular dot matrix",{"type":70,"tag":1283,"props":2206,"children":2207},{},[2208,2213],{"type":70,"tag":1305,"props":2209,"children":2210},{},[2211],{"type":76,"value":2212},"Geist Pixel Triangle",{"type":70,"tag":1305,"props":2214,"children":2215},{},[2216],{"type":76,"value":2217},"Triangular pixel forms",{"type":70,"tag":1283,"props":2219,"children":2220},{},[2221,2226],{"type":70,"tag":1305,"props":2222,"children":2223},{},[2224],{"type":76,"value":2225},"Geist Pixel Line",{"type":70,"tag":1305,"props":2227,"children":2228},{},[2229],{"type":76,"value":2230},"Line-based pixel strokes",{"type":70,"tag":79,"props":2232,"children":2233},{},[2234],{"type":76,"value":2235},"Geist Pixel is intended for display sizes only — use Geist Sans for body text and Geist Mono for code.",{"type":70,"tag":85,"props":2237,"children":2239},{"id":2238},"coding-ligatures-v170",[2240],{"type":76,"value":2241},"Coding Ligatures (v1.7.0)",{"type":70,"tag":79,"props":2243,"children":2244},{},[2245,2247,2253,2255,2260],{"type":76,"value":2246},"Coding ligatures are ",{"type":70,"tag":2248,"props":2249,"children":2250},"strong",{},[2251],{"type":76,"value":2252},"no longer enabled by default",{"type":76,"value":2254},". They have been moved from contextual alternates to ",{"type":70,"tag":2248,"props":2256,"children":2257},{},[2258],{"type":76,"value":2259},"Stylistic Set 11 (SS11)",{"type":76,"value":2261},". If you rely on coding ligatures in your editor or terminal, enable SS11 explicitly:",{"type":70,"tag":1630,"props":2263,"children":2264},{},[2265,2281],{"type":70,"tag":1634,"props":2266,"children":2267},{},[2268,2273,2275],{"type":70,"tag":2248,"props":2269,"children":2270},{},[2271],{"type":76,"value":2272},"VS Code",{"type":76,"value":2274},": ",{"type":70,"tag":100,"props":2276,"children":2278},{"className":2277},[],[2279],{"type":76,"value":2280},"\"editor.fontLigatures\": \"'ss11'\"",{"type":70,"tag":1634,"props":2282,"children":2283},{},[2284,2289,2290],{"type":70,"tag":2248,"props":2285,"children":2286},{},[2287],{"type":76,"value":2288},"CSS",{"type":76,"value":2274},{"type":70,"tag":100,"props":2291,"children":2293},{"className":2292},[],[2294],{"type":76,"value":2295},"font-feature-settings: 'ss11' 1;",{"type":70,"tag":85,"props":2297,"children":2299},{"id":2298},"cyrillic-support-v170",[2300],{"type":76,"value":2301},"Cyrillic Support (v1.7.0)",{"type":70,"tag":79,"props":2303,"children":2304},{},[2305],{"type":76,"value":2306},"Geist 1.7.0 includes a redesigned Cyrillic script for all Geist Sans and Geist Mono styles.",{"type":70,"tag":85,"props":2308,"children":2310},{"id":2309},"key-points",[2311],{"type":76,"value":2312},"Key Points",{"type":70,"tag":2314,"props":2315,"children":2316},"ol",{},[2317,2335,2345,2369,2379,2389,2419],{"type":70,"tag":1634,"props":2318,"children":2319},{},[2320,2325,2327,2333],{"type":70,"tag":2248,"props":2321,"children":2322},{},[2323],{"type":76,"value":2324},"Optimized for Next.js",{"type":76,"value":2326}," — works seamlessly with ",{"type":70,"tag":100,"props":2328,"children":2330},{"className":2329},[],[2331],{"type":76,"value":2332},"next\u002Ffont",{"type":76,"value":2334}," for zero-layout-shift font loading",{"type":70,"tag":1634,"props":2336,"children":2337},{},[2338,2343],{"type":70,"tag":2248,"props":2339,"children":2340},{},[2341],{"type":76,"value":2342},"Three families",{"type":76,"value":2344}," — Geist Sans for UI text, Geist Mono for code, Geist Pixel for decorative display",{"type":70,"tag":1634,"props":2346,"children":2347},{},[2348,2353,2355,2360,2362,2367],{"type":70,"tag":2248,"props":2349,"children":2350},{},[2351],{"type":76,"value":2352},"CSS variables",{"type":76,"value":2354}," — ",{"type":70,"tag":100,"props":2356,"children":2358},{"className":2357},[],[2359],{"type":76,"value":1313},{"type":76,"value":2361}," and ",{"type":70,"tag":100,"props":2363,"children":2365},{"className":2364},[],[2366],{"type":76,"value":1330},{"type":76,"value":2368}," for flexible styling",{"type":70,"tag":1634,"props":2370,"children":2371},{},[2372,2377],{"type":70,"tag":2248,"props":2373,"children":2374},{},[2375],{"type":76,"value":2376},"Variable font",{"type":76,"value":2378}," — single file supports all weights (100–900)",{"type":70,"tag":1634,"props":2380,"children":2381},{},[2382,2387],{"type":70,"tag":2248,"props":2383,"children":2384},{},[2385],{"type":76,"value":2386},"Self-hosted",{"type":76,"value":2388}," — fonts are bundled with your app, no external requests",{"type":70,"tag":1634,"props":2390,"children":2391},{},[2392,2397,2399,2404,2405,2410,2412,2417],{"type":70,"tag":2248,"props":2393,"children":2394},{},[2395],{"type":76,"value":2396},"Import paths",{"type":76,"value":2398}," — use ",{"type":70,"tag":100,"props":2400,"children":2402},{"className":2401},[],[2403],{"type":76,"value":198},{"type":76,"value":2361},{"type":70,"tag":100,"props":2406,"children":2408},{"className":2407},[],[2409],{"type":76,"value":237},{"type":76,"value":2411}," (not ",{"type":70,"tag":100,"props":2413,"children":2415},{"className":2414},[],[2416],{"type":76,"value":59},{"type":76,"value":2418},")",{"type":70,"tag":1634,"props":2420,"children":2421},{},[2422,2427],{"type":70,"tag":2248,"props":2423,"children":2424},{},[2425],{"type":76,"value":2426},"Coding ligatures",{"type":76,"value":2428}," — opt-in via Stylistic Set 11 (no longer default)",{"type":70,"tag":85,"props":2430,"children":2432},{"id":2431},"official-resources",[2433],{"type":76,"value":2434},"Official Resources",{"type":70,"tag":1630,"props":2436,"children":2437},{},[2438,2449],{"type":70,"tag":1634,"props":2439,"children":2440},{},[2441],{"type":70,"tag":2442,"props":2443,"children":2446},"a",{"href":45,"rel":2444},[2445],"nofollow",[2447],{"type":76,"value":2448},"Geist Font GitHub",{"type":70,"tag":1634,"props":2450,"children":2451},{},[2452],{"type":70,"tag":2442,"props":2453,"children":2456},{"href":2454,"rel":2455},"https:\u002F\u002Fvercel.com\u002Fgeist",[2445],[2457],{"type":76,"value":2458},"Geist Design System",{"type":70,"tag":2460,"props":2461,"children":2462},"style",{},[2463],{"type":76,"value":2464},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2466,"total":2582},[2467,2484,2500,2512,2532,2550,2570],{"slug":2468,"name":2468,"fn":2469,"description":2470,"org":2471,"tags":2472,"stars":28,"repoUrl":29,"updatedAt":2483},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2473,2476,2479,2482],{"name":2474,"slug":2475,"type":15},"Accessibility","accessibility",{"name":2477,"slug":2478,"type":15},"Charts","charts",{"name":2480,"slug":2481,"type":15},"Data Visualization","data-visualization",{"name":26,"slug":27,"type":15},"2026-06-30T19:00:57.102",{"slug":2485,"name":2485,"fn":2486,"description":2487,"org":2488,"tags":2489,"stars":28,"repoUrl":29,"updatedAt":2499},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2490,2493,2496],{"name":2491,"slug":2492,"type":15},"Agents","agents",{"name":2494,"slug":2495,"type":15},"Browser Automation","browser-automation",{"name":2497,"slug":2498,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2501,"name":2501,"fn":2502,"description":2503,"org":2504,"tags":2505,"stars":28,"repoUrl":29,"updatedAt":2511},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2506,2507,2510],{"name":2494,"slug":2495,"type":15},{"name":2508,"slug":2509,"type":15},"Local Development","local-development",{"name":2497,"slug":2498,"type":15},"2026-04-06T18:41:17.526867",{"slug":2513,"name":2513,"fn":2514,"description":2515,"org":2516,"tags":2517,"stars":28,"repoUrl":29,"updatedAt":2531},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2518,2519,2522,2525,2528],{"name":2491,"slug":2492,"type":15},{"name":2520,"slug":2521,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2523,"slug":2524,"type":15},"SDK","sdk",{"name":2526,"slug":2527,"type":15},"Serverless","serverless",{"name":2529,"slug":2530,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2533,"name":2533,"fn":2534,"description":2535,"org":2536,"tags":2537,"stars":28,"repoUrl":29,"updatedAt":2549},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2538,2539,2542,2545,2548],{"name":20,"slug":21,"type":15},{"name":2540,"slug":2541,"type":15},"React","react",{"name":2543,"slug":2544,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2546,"slug":2547,"type":15},"UI Components","ui-components",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:59.619419",{"slug":2551,"name":2551,"fn":2552,"description":2553,"org":2554,"tags":2555,"stars":28,"repoUrl":29,"updatedAt":2569},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2556,2559,2562,2565,2568],{"name":2557,"slug":2558,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2560,"slug":2561,"type":15},"Cost Optimization","cost-optimization",{"name":2563,"slug":2564,"type":15},"LLM","llm",{"name":2566,"slug":2567,"type":15},"Performance","performance",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:44.377464",{"slug":2571,"name":2571,"fn":2572,"description":2573,"org":2574,"tags":2575,"stars":28,"repoUrl":29,"updatedAt":2581},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2576,2577,2580],{"name":2560,"slug":2561,"type":15},{"name":2578,"slug":2579,"type":15},"Database","database",{"name":2563,"slug":2564,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2584,"total":2781},[2585,2606,2629,2646,2662,2679,2698,2710,2724,2738,2750,2765],{"slug":2586,"name":2586,"fn":2587,"description":2588,"org":2589,"tags":2590,"stars":2603,"repoUrl":2604,"updatedAt":2605},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2591,2594,2597,2600],{"name":2592,"slug":2593,"type":15},"Documents","documents",{"name":2595,"slug":2596,"type":15},"Healthcare","healthcare",{"name":2598,"slug":2599,"type":15},"Insurance","insurance",{"name":2601,"slug":2602,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2607,"name":2607,"fn":2608,"description":2609,"org":2610,"tags":2611,"stars":2626,"repoUrl":2627,"updatedAt":2628},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2612,2615,2617,2620,2623],{"name":2613,"slug":2614,"type":15},".NET","dotnet",{"name":2616,"slug":2607,"type":15},"ASP.NET Core",{"name":2618,"slug":2619,"type":15},"Blazor","blazor",{"name":2621,"slug":2622,"type":15},"C#","csharp",{"name":2624,"slug":2625,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2630,"name":2630,"fn":2631,"description":2632,"org":2633,"tags":2634,"stars":2626,"repoUrl":2627,"updatedAt":2645},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2635,2638,2641,2644],{"name":2636,"slug":2637,"type":15},"Apps SDK","apps-sdk",{"name":2639,"slug":2640,"type":15},"ChatGPT","chatgpt",{"name":2642,"slug":2643,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2647,"name":2647,"fn":2648,"description":2649,"org":2650,"tags":2651,"stars":2626,"repoUrl":2627,"updatedAt":2661},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2652,2655,2658],{"name":2653,"slug":2654,"type":15},"API Development","api-development",{"name":2656,"slug":2657,"type":15},"CLI","cli",{"name":2659,"slug":2660,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2663,"name":2663,"fn":2664,"description":2665,"org":2666,"tags":2667,"stars":2626,"repoUrl":2627,"updatedAt":2678},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2668,2671,2674,2675],{"name":2669,"slug":2670,"type":15},"Cloudflare","cloudflare",{"name":2672,"slug":2673,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2520,"slug":2521,"type":15},{"name":2676,"slug":2677,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2680,"name":2680,"fn":2681,"description":2682,"org":2683,"tags":2684,"stars":2626,"repoUrl":2627,"updatedAt":2697},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2685,2688,2691,2694],{"name":2686,"slug":2687,"type":15},"Productivity","productivity",{"name":2689,"slug":2690,"type":15},"Project Management","project-management",{"name":2692,"slug":2693,"type":15},"Strategy","strategy",{"name":2695,"slug":2696,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2699,"name":2699,"fn":2700,"description":2701,"org":2702,"tags":2703,"stars":2626,"repoUrl":2627,"updatedAt":2709},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2704,2705,2707,2708],{"name":26,"slug":27,"type":15},{"name":2706,"slug":2699,"type":15},"Figma",{"name":20,"slug":21,"type":15},{"name":2642,"slug":2643,"type":15},"2026-04-12T05:06:47.939943",{"slug":2711,"name":2711,"fn":2712,"description":2713,"org":2714,"tags":2715,"stars":2626,"repoUrl":2627,"updatedAt":2723},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2716,2717,2720,2721,2722],{"name":26,"slug":27,"type":15},{"name":2718,"slug":2719,"type":15},"Design System","design-system",{"name":2706,"slug":2699,"type":15},{"name":20,"slug":21,"type":15},{"name":2546,"slug":2547,"type":15},"2026-05-10T05:59:52.971881",{"slug":2725,"name":2725,"fn":2726,"description":2727,"org":2728,"tags":2729,"stars":2626,"repoUrl":2627,"updatedAt":2737},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2730,2731,2732,2735,2736],{"name":26,"slug":27,"type":15},{"name":2718,"slug":2719,"type":15},{"name":2733,"slug":2734,"type":15},"Documentation","documentation",{"name":2706,"slug":2699,"type":15},{"name":20,"slug":21,"type":15},"2026-05-16T06:07:47.821474",{"slug":2739,"name":2739,"fn":2740,"description":2741,"org":2742,"tags":2743,"stars":2626,"repoUrl":2627,"updatedAt":2749},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2744,2745,2746,2747,2748],{"name":26,"slug":27,"type":15},{"name":2706,"slug":2699,"type":15},{"name":20,"slug":21,"type":15},{"name":2546,"slug":2547,"type":15},{"name":2624,"slug":2625,"type":15},"2026-05-16T06:07:40.583615",{"slug":2751,"name":2751,"fn":2752,"description":2753,"org":2754,"tags":2755,"stars":2626,"repoUrl":2627,"updatedAt":2764},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2756,2759,2760,2763],{"name":2757,"slug":2758,"type":15},"Animation","animation",{"name":2659,"slug":2660,"type":15},{"name":2761,"slug":2762,"type":15},"Creative","creative",{"name":26,"slug":27,"type":15},"2026-05-02T05:31:48.48485",{"slug":2766,"name":2766,"fn":2767,"description":2768,"org":2769,"tags":2770,"stars":2626,"repoUrl":2627,"updatedAt":2780},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2771,2772,2773,2776,2779],{"name":2761,"slug":2762,"type":15},{"name":26,"slug":27,"type":15},{"name":2774,"slug":2775,"type":15},"Image Generation","image-generation",{"name":2777,"slug":2778,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]