Skip to content

필사 모드: 2026 AI Design & UI Generation Tools Head-to-Head — v0, Lovable, Bolt.new, Figma AI, Galileo, Uizard, Subframe, Magic Patterns, Tempo Deep Dive

English
0%
정확도 0%
💡 왼쪽 원문을 읽으면서 오른쪽에 따라 써보세요. Tab 키로 힌트를 받을 수 있습니다.
원문 렌더가 준비되기 전까지 텍스트 가이드로 표시합니다.

Prologue — The Year Design Became Code's First-Class Citizen

In spring 2026, the design-tool landscape flipped for the second time. The first flip, in the late 2010s, was the cloud migration from Sketch to Figma. The second flip is happening now — **the era when production-grade components fall out of a prompt.** One sentence ("put the button inside a card with dark-mode support") yields shadcn/ui-based React JSX. v0 answers before a designer can open Figma.

Does this kill design? No. **It moves design's front door.** The 2026 designer is not someone who draws pixels but someone who curates design systems, defines tokens, and polishes the drafts AI spits out. Just as Pixar didn't kill hand drawing, AI design tools don't kill design as a profession — they raise the abstraction level of the tools they use.

This article puts 25+ AI design and UI generation tools side by side along the same axes. **v0, Lovable, Bolt.new, Figma AI, Figma Make, Galileo, Uizard, Subframe, Magic Patterns, Tempo, Builder.io Mantis, Plasmic, Phase, Anima, Locofy, Khroma, Spline, Microsoft Designer, Adobe Firefly Design, Canva Magic Studio, Penpot AI, ChatGPT Canvas, Claude Artifacts, Polymet** — each was built for a different workflow. There is no "best." The right answer depends on whether you are a designer or developer, solo or part of a team, with or without a design system.

> Design is becoming software, and software is becoming design. AI lives at the line where those two professions blur.

Chapter 1 · The Comparison Axes — What Actually Matters

Picking AI design tools by "looks pretty / doesn't" leads to regret within three months. Decompose the choice along these eight axes.

**Axis 1 · Surface (where does it run)**

Browser web app, Figma plugin, VS Code extension, native desktop, CLI. A tool's surface determines how naturally it fits your workflow. v0 lives in the browser, Figma AI inside Figma, Subframe in the browser with code export, Bolt.new in a browser IDE. If 90 percent of a designer's day is inside Figma, tools that run inside Figma take priority; a developer writing Next.js prefers a browser tool that emits React JSX.

**Axis 2 · Output format**

React JSX (Next.js compatible), Vue SFC, HTML+CSS, Tailwind classes, vanilla CSS, Figma frames, Sketch, design tokens. Ask for the same "button" and v0 spits React using shadcn/ui, Uizard spits a Figma frame, Locofy converts an existing Figma file into React. **The output has to fit your workflow** for the tool to be worth anything.

**Axis 3 · Design-system fidelity**

What it means to "know your tokens." Does the tool (a) recognize and consistently use color/spacing/typography tokens, (b) interoperate with existing component libraries (shadcn, MUI, Mantine, Radix), and (c) learn or accept your internal design system. v0 defaults to shadcn/ui; Subframe treats Tailwind tokens as a first-class citizen. Lovable and Bolt have weaker fidelity here — fine for greenfield, painful for companies with an established system.

**Axis 4 · Autonomy level**

Snippet generation (one component) → page generation (multiple components assembled) → full-app generation (routing, state, DB, auth included). v0 lives in the component-to-page range; Lovable and Bolt do full apps; Figma AI does frames and components; Uizard generates connected wireframe flows. Higher autonomy is faster, but **the debugging burden when the AI gets it wrong is also bigger.**

**Axis 5 · Refinement loop**

First outputs are never 100 percent. Is the loop for iterating on the second and third prompt smooth? Natural-language chat, direct visual editing, diff review? v0's "make this card more compact" chat loop, Subframe's hybrid visual editing plus prompt, Magic Patterns' variant gallery — each is a different pattern.

**Axis 6 · Pricing model**

Flat subscription (the standard around $20/month for individuals at Pro tier), usage-based (tokens or generation credits), seat-based (teams), and existing tools like Figma adding a seat plus AI usage layer. As of early 2026, v0, Lovable, Bolt, and Figma AI all advertise around $20/month, but the actual usage bill for heavy users is a different story. Tools that charge per message or credit, like Lovable, can quickly hit 100 to 200 dollars when building a sizable app.

**Axis 7 · Non-developer friendliness**

This axis is decisive. Can a marketer, PM, or designer take a tool end-to-end without code, or is there a point where "call a developer" is needed? Lovable and Bolt are designed so non-developers can ship to deploy. v0 is optimized for developers grafting components into a Next.js project — a non-developer running it alone hits the next-step wall fast. Canva Magic Studio and Microsoft Designer target non-technical design users entirely; no code is emitted.

**Axis 8 · Accessibility and semantic quality**

The real test of AI-emitted code. Does it use a div with onClick or a button element? Are alt texts present? Are ARIA attributes correct? Does keyboard navigation work? Does color contrast clear WCAG AA? **As of spring 2026, no tool handles accessibility perfectly on its own.** v0 and Subframe, both rooted in shadcn/Radix, fare better, but humans still have to verify.

The weighting across these eight axes changes by role. For designers, axes 1, 2, 3, 5 are decisive; for developers, axes 2, 3, 4; for marketers and PMs, axis 7 dominates. The same table places different tools at number one depending on the reader. That is why headlines like "the best AI design tool" are meaningless — the question is wrong.

Chapter 2 · Vercel v0 — The Benchmark for Developer-Led Component Generation

**Surface**: browser web app (v0.dev). Chat-style prompt to React JSX. The primary workflow is copy-paste into a Next.js project.

**What it does well**

v0's identity is a strong opinion: **shadcn/ui + Tailwind + Next.js**. A tool with an opinion gives consistent output, which developers can absorb. The backend mixes GPT-4-class and Claude-class models, and the output almost always compiles. A prompt like "three pricing cards with a gradient header" returns a result in five seconds; the follow-up "add a dark-mode toggle" picks up smoothly.

The Blocks concept — small units (Hero, PricingCard, Sidebar) picked from a gallery and assembled — is powerful. Discovery, reuse, and variation feel natural. Because shadcn/ui itself is a Vercel/Radix lineage, what v0 emits is close to production quality out of the gate.

**Design-system fidelity**

Default output uses shadcn/ui and Radix primitives, so **projects already on shadcn experience nearly zero friction.** Tailwind tokens are recognized, dark mode is built in, and accessibility baseline benefits from Radix. The downside: non-shadcn systems (MUI, Mantine, Chakra) need conversion, and internal house systems don't drop in cleanly.

**Autonomy**

Component-to-page is the sweet spot. "Full app" is weak. Routing, state management, auth, and DB wiring are not installed automatically. That area is filled by hand inside the Next.js project after importing the v0 output.

**Pricing**

As of early 2026, a free tier exists, Pro is around $20/month with extra messages and generation credits added at higher tiers, and team plans are seat-based. Heavy users routinely see 50 to 100 dollars of usage billed.

**Weaknesses**

- **Non-developers can't run solo.** The output is code that needs a Next.js context to be useful.

- **Friction outside shadcn.** MUI and Mantine projects pay a translation cost on every drop.

- **Full-app generation is weak.** For anything beyond a page, other tools are better.

**When not to use it**

- A designer wants to finish inside Figma — Figma AI is better.

- You need full-app output (routing, state, DB, auth) in one shot — Lovable or Bolt are better.

- A non-technical person wants to ship a marketing page alone — Canva or Microsoft Designer.

**One-line summary**: in 2026, the benchmark for developers grafting React components into Next.js + shadcn projects. Overkill or unsuitable elsewhere.

Chapter 3 · Lovable — Where Non-Developers Reach Full-Stack

**Surface**: browser web app (lovable.dev). One-line prompt produces a React + Supabase full-stack app. Formerly known as GPT Engineer.

**What it does well**

Lovable's identity is **end-to-end**. Type "build a book-club membership app" and you get routing, UI, Supabase schema, auth, and deploy options in one shot. Non-developers see a working app from the first touch. Where v0 emits one piece, Lovable emits a whole system.

Supabase integration is first-class, so DB, auth, and storage drop in without extra setup. Deploy options include Lovable hosting with a custom domain, plus a GitHub export for self-hosting. The code is React + Tailwind, so a developer can take over and refine.

**Design-system fidelity**

**Weak.** The output looks clean as default styling, but it doesn't feel like it came from a consistent design system. Tokens aren't handled explicitly, and there's no equivalent of shadcn/ui as a baseline. Fast for greenfield, but "match our company's design system" doesn't go smoothly.

**Autonomy**

The highest in this category. Full-stack — UI plus backend schema plus auth plus deploy — handled autonomously. The cost is **the debugging burden when something goes wrong.** High autonomy makes it harder for humans to trace where the AI's assumption diverged.

**Pricing**

As of early 2026, free tier (limited messages) plus Starter $20/month plus Pro $50/month tier structure. Message- and credit-based billing means building a serious app can quickly reach 100 to 200 dollars. Attractive for light users; heavy users need to manage cost actively.

**Weaknesses**

- **Weak design-system fidelity.** Companies with a system pay translation costs.

- **Heavy-use bills rise fast.** Watch the usage model.

- **Code-quality impression is below v0.** It works, but the confidence of "drop straight into production" is a notch lower.

- **Backend lock-in.** Supabase is tightly integrated; switching to Firebase or a custom API takes work.

**When not to use it**

- Adding partial components to an existing Next.js or Vite project — v0 is better.

- Strict adherence to a company design system is required — Subframe or v0 are better.

- A designer wants pixel-level control — Figma-family tools are better.

**One-line summary**: the smoothest path for non-developers to reach a full-stack app. Weaknesses are design-system fidelity and cost control.

Chapter 4 · Bolt.new — Full-Stack IDE on WebContainer

**Surface**: browser IDE (bolt.new). StackBlitz's WebContainer technology with an LLM agent on top. The distinguishing feature: Node.js, npm, and a dev server actually run inside the browser.

**What it does well**

Bolt's differentiator is that **the runtime exists in the browser.** WebContainer runs npm install, the dev server, and logs all in-browser. Unlike other tools that emit code and verify behavior on the user's machine, Bolt runs it on the spot.

Like Lovable, it generates full-stack apps. The output is a normal Vite/Next.js/Astro project that can be exported to GitHub and hosted anywhere. As of early 2026 the default backend is Anthropic Claude, and large changes are handled autonomously — one prompt like "convert this component into a modal" edits several files at once.

**Design-system fidelity**

**Medium.** Slightly better than Lovable, weaker than v0. shadcn/ui or Mantine can be selected as defaults, but token consistency isn't enforced as strictly as v0.

**Autonomy**

High. Full-app generation plus an in-browser runtime. As with Lovable, the trade-off is traceability — "why did it write it this way?" is hard to recover, and failures often mean prompting from scratch.

**Pricing**

As of early 2026, a free tier plus Pro starting around $20/month. Token-based billing makes large apps expensive fast. Billing pattern resembles Lovable.

**Weaknesses**

- **WebContainer limits.** Running inside the browser caps heavy or native-module-dependent libraries.

- **Token cost.** Heavy users frequently exceed 100 dollars a month.

- **Design precision lags v0.** Output is fast but less consistent pixel by pixel.

**When not to use it**

- A designer wants to work inside Figma.

- Strict adherence to a corporate design system is required.

- The goal is "add components to an existing Next.js project."

**One-line summary**: the smoothest way to build and immediately run a full-stack app entirely in the browser. Direct competitor to Lovable.

Chapter 5 · Figma AI · Figma Make — Finishing Inside Figma

**Surface**: First Draft and Make features within the Figma desktop and web app. Not a separate tool but Figma's own AI layer.

**What it does well**

Figma AI's biggest value is **the designer never leaves the tool they already use every day.** First Draft takes a text prompt and returns Figma frames (components, pages) while honoring existing component libraries, variables (design tokens), and variants. If the company design system lives in Figma, Figma AI uses it directly during generation.

Figma Make goes a step further — it turns Figma designs into **full-stack code** (React plus backend). It's the most aggressive attempt to close the design-to-code gap and has accelerated through 2026. Text-to-design, design-to-code, and redesign (improving an existing design) coexist on the same canvas.

Prompt assist, auto-layout suggestions, auto-align, and variant generation all reduce daily friction.

**Design-system fidelity**

**The strongest.** Recognizing and using the internal Figma library is first-class. Variables (design tokens) are first-class. If the company's system lives in Figma, no other tool matches.

**Autonomy**

Frame and component level. Full-app generation is in Figma Make's territory and not as autonomous as v0, Lovable, or Bolt.

**Pricing**

Figma's seat-based pricing plus AI usage. As of early 2026, Professional at $15/seat/month plus AI feature usage. Because AI is billed separately, large teams using it heavily incur extra cost.

**Weaknesses**

- **Lives inside Figma only.** Not using Figma blocks entry entirely.

- **Direct usability of emitted code lags v0 and Lovable.** Figma Make output needs polish.

- **Watch the usage layer.** Seat pricing isn't the whole bill once AI usage kicks in.

**When not to use it**

- You're not a designer or your team doesn't use Figma.

- You want a full-stack app end-to-end — Lovable or Bolt are better.

- The company design system lives outside Figma (e.g., Storybook plus custom tokens).

**One-line summary**: the most natural fit for designer workflows. The stronger the in-Figma design system, the higher the value.

Chapter 6 · Galileo AI — Text to Figma

**Surface**: browser web app. Text prompt to Figma-ready frames is the core function. Acquired by Google in 2024, and the tech is being folded into Google's design tooling line.

**What it does well**

Galileo's identity is **text to Figma immediately.** It removes the friction of starting on a blank canvas. A prompt like "a dashboard with a calendar widget" returns frames that import directly into Figma.

Post-acquisition the integration with Material Design has deepened, and the direction has shifted toward mobile (Android, iOS) mocking. A successor tool called Stitch has launched — effectively the next-generation Galileo, focused on Material 3-based UI generation.

**Design-system fidelity**

Strong inside Material Design; friction-laden for other systems.

**Pricing**

Free beta plus paid tier as of early 2026. The pricing has shifted often since the Google integration; verify directly.

**Weaknesses**

- **Absorbed into Google's lineup.** Standalone-tool flavor has weakened; users are nudged toward Stitch.

- **Material Design bias.** Less compelling outside that system.

**One-line summary**: the pioneer of text-to-Figma, continuing in 2026 as Google's Stitch. Strong for Material-based mobile design.

Chapter 7 · Uizard — From Wireframe to UI

**Surface**: browser web app. Generates digital UI designs from text, screenshots, or hand-drawn wireframes. Acquired by Miro in 2024.

**What it does well**

Uizard's differentiator is **input variety.** Beyond text, it accepts photos of wireframes drawn on paper, competitor app screenshots, and hand sketches as input. The workflow of a PM or UX researcher turning a meeting whiteboard sketch into a UI on the spot is smooth.

Multi-screen flows (app navigation) are generated in one pass, accelerating the move from wireframe to prototype.

**Design-system fidelity**

Weak. Consistent within Uizard's own design system, but options to learn or inject a corporate system are limited.

**Pricing**

As of early 2026, free plus Pro $19/month plus Business $39/month. Reasonable surface pricing; heavy use requires the higher tier.

**Weaknesses**

- **Production-usable code output is low.** Uizard is a design-stage tool, not a code generator.

- **Weak corporate design-system fidelity.**

**One-line summary**: strong for getting design drafts quickly from wireframes, screenshots, or sketches. A design-stage tool rather than a code generator.

Chapter 8 · Subframe — Tailwind-First Design + Code Hybrid

**Surface**: browser web app. Bundles visual editing, prompt input, and code export into one tool.

**What it does well**

Subframe's identity is **a design tool that treats Tailwind as a first-class citizen.** Build components inside the visual editor and immediately get React, Vue, or HTML code with clean Tailwind classes. Design-system tokens are recognized, and internal tokens can be imported.

The market positioning: stronger visual editing than v0, cleaner code output than Figma. It targets the workflow where designers and developers collaborate on the same canvas.

**Design-system fidelity**

Strong. Tailwind tokens, shadcn/ui, and Radix primitives are first-class, and importing an internal system is supported.

**Pricing**

Free plus Pro $20/month as of early 2026 — similar surface pricing to Figma and v0.

**Weaknesses**

- **Value drops sharply on non-Tailwind projects.**

- **Full-app generation is weak.** Stays in the component-to-page range.

**One-line summary**: optimal for designer-developer collaboration in Tailwind + shadcn environments. A direct competitor to v0 with stronger visual editing.

Chapter 9 · Magic Patterns — Variant-Gallery UI Generation

**Surface**: browser web app (magicpatterns.com). The distinctive UX: a gallery of multiple variants from a single prompt.

**What it does well**

Magic Patterns' differentiator is **variants at once.** A single prompt produces four to eight alternatives, the user picks a favorite, and the next round refines. It accelerates the "draw 10, keep one" pattern designers already use.

React output is clean and Tailwind-default — same space as v0. The variant-comparison UX is smoother than v0's.

**Design-system fidelity**

shadcn/ui and Tailwind base; comparable to v0.

**Pricing**

Free plus Pro $20/month as of early 2026.

**Weaknesses**

- **Weak on full-app territory.**

- **Smaller ecosystem than v0.**

**One-line summary**: differentiates from v0 in the same lane via a variant-gallery UX. Strong when designer-friendly comparison matters.

Chapter 10 · Tempo — AI for Design Systems Themselves

**Surface**: browser web app. AI design tool specialized in the React-components-plus-Storybook layer.

**What it does well**

Tempo's identity is **letting AI build the design system itself.** Component libraries, variants, Storybook stories, and tokens are generated together. The focus is the foundation of the whole design system rather than one component.

Useful for startups and new teams starting from zero. Less valuable to teams that already have a mature system.

**Design-system fidelity**

A tool that defines fidelity rather than conforming to it. Strong at building new systems, less so at adapting to existing ones.

**Pricing**

Pro around $30/month as of early 2026.

**Weaknesses**

- **Weak for workflows that must conform to an existing system.**

- **Full-app territory belongs to v0 and Lovable.**

**One-line summary**: strong for bootstrapping a new design system quickly. Unsuitable for workflows that must conform to a legacy system.

Chapter 11 · Builder.io · Plasmic · Anima · Locofy — The Figma-to-Code Lineup

**Builder.io** (Mantis lineup): visual builder plus Figma-to-code. Converts Figma into React, Vue, Angular, or Qwik, strong for content areas like marketing pages where visual CMS is the use case.

**Plasmic**: visual page and component builder plus AI. Designers build visually; developers import into a code environment. Resembles a headless-CMS flow.

**Anima**: the original Figma-to-React/Vue/HTML converter. Pixel accuracy is the priority; design-to-dev handoff automation is the core.

**Locofy**: Figma-to-React, React Native, or HTML. Uses AI for semantic detection ("this is a button, that is a card") before emitting code.

**Common strengths**: closing the design-to-code gap for teams where Figma is the source of truth.

**Common weaknesses**: automatic conversion quality isn't "production-ready as-is." Semantics (div vs button), responsiveness, and state management still need human refinement. Whether "React identical to the Figma drawing" is good React is a separate question — design is free-form; code follows patterns.

**One-line summary**: strong at automating design-to-dev handoff. Suits the workflow where 90 percent of Figma conversions are accepted and the last 10 percent is human-completed.

Chapter 12 · Phase · Khroma · Spline — Specialized Tools

**Phase**: a Korean-origin design tool specialized in motion and interaction design. Smooth animations without writing code. As of 2026, AI motion-generation features are being added.

**Khroma**: an AI color-palette generator. Learns "the colors you like" and recommends palettes endlessly. A tool for inspiration during design-token definition.

**Spline**: 3D design plus AI. Build web-ready 3D scenes visually with AI assistance for text-to-3D object creation. Use cases include marketing-page 3D heroes and interactive product viewers.

**One-line summary**: complementary tools that cover specialized areas (motion, color, 3D) general UI generators don't handle. They supplement, not replace, the main design tool.

Chapter 13 · Diagram AI (Figma-acquired) · Microsoft Designer · Adobe Firefly · Canva Magic Studio

**Diagram (acquired by Figma)**: the company behind Figma plugins like Magician; the tech is now part of Figma AI.

**Microsoft Designer + Copilot Design**: Microsoft 365-integrated. Generates marketing graphics, social posts, and presentation slides from text. No code output; non-technical target.

**Adobe Firefly Design + Express AI**: integrated with the Adobe ecosystem. AI assists design inside Photoshop, Illustrator, and InDesign. Express is the non-technical, simple-design entry point. No code output.

**Canva Magic Studio + Magic Design**: the dominant non-technical design tool. Text to social, presentation, or print design. No code output; design assets only.

**One-line summary**: design tools that don't emit code. Suited to marketing and non-technical workflows, unsuitable for developer use cases.

Chapter 14 · Penpot AI · ChatGPT Canvas · Claude Artifacts · Polymet

**Penpot AI**: an open-source Figma alternative. Penpot is SVG-based and self-hostable. AI features are being added. Use cases include teams that need open source or on-prem (security regulations, government).

**ChatGPT Canvas + Claude Artifacts**: not formal design tools, but the feature that generates and previews HTML/CSS/JS or React artifacts directly inside an LLM chat. Suited for fast prototyping and disposable UI — the "exploration before the formal tool" stage.

**Polymet**: a relatively new AI design tool. Plays in the v0 lane with an emphasis on designer-friendly UX. Rapidly evolving as of spring 2026.

**One-line summary**: variants outside the main flow — open source (Penpot), LLM-embedded (ChatGPT, Claude), new competitors (Polymet) — that fill needs the mainstream tools miss.

Chapter 15 · The Big Comparison Table

Core tools across the eight axes at a glance. (Score: A=strong, B=medium, C=weak; pricing is surface as of early 2026.)

| Tool | Surface | Output | Design System | Autonomy | Non-Dev | Price (Individual) |

| --- | --- | --- | --- | --- | --- | --- |

| Vercel v0 | Browser | React + shadcn | A (shadcn) | Component-Page | C | Free / Pro 20/mo |

| Lovable | Browser | React + Supabase | C | Full App | A | Free / 20-50/mo |

| Bolt.new | Browser IDE | Various | B | Full App | A | Free / 20/mo+ |

| Figma AI | Figma | Figma Frames | A (internal lib) | Frames | B | Figma Seat + AI |

| Figma Make | Figma | Figma + Code | A | Frames-App | B | Figma + AI |

| Galileo / Stitch | Browser | Figma + Material | B | Frames | B | Free + Paid |

| Uizard | Browser | UI Design | C | Wireframe-Flow | A | Free / 19-39/mo |

| Subframe | Browser | React+Tailwind | A (Tailwind) | Component | B | Free / 20/mo |

| Magic Patterns | Browser | React + Tailwind | A | Component-Page | B | Free / 20/mo |

| Tempo | Browser | React System | A | System bootstrap | C | 30/mo tier |

| Builder.io | Visual builder | React/Vue/Angular | B | Page | B | Free + Seat |

| Plasmic | Visual builder | React | B | Page | B | Free + Seat |

| Anima | Figma plugin | React/Vue/HTML | B | Conversion | C | Free + Paid |

| Locofy | Figma plugin | React/React Native | B | Conversion | C | Free + Paid |

| Spline | Browser | 3D + Code | n/a | 3D scenes | B | Free + Paid |

| Canva Magic Studio | Browser | Design assets | n/a | Design | A | Free + Pro |

| ChatGPT Canvas | ChatGPT | HTML/React | C | Disposable | A | ChatGPT sub |

| Claude Artifacts | Claude | HTML/React | C | Disposable | A | Claude sub |

Don't read the table as a catalog — read it through your workflow's axis weighting. Designers should focus on axes 1, 3, 5; developers on 2, 3, 4; non-technical users on axis 7.

Chapter 16 · Decision Matrix — Which Tool for Which Situation

Five situations, mapped to recommendations.

**Situation A · A solo developer wants fast components for a Next.js project**

→ **v0** first. shadcn-based output drops in directly. Add **Magic Patterns** if variant comparison helps. If the design system is Tailwind, **Subframe** is also strong.

**Situation B · A non-developer wants to ship a full app**

→ **Lovable** first. Supabase integration is smoothest. If in-browser preview matters, **Bolt.new**. For marketing pages at most, no code via **Canva Magic Studio** or **Microsoft Designer**.

**Situation C · A designer wants to finish inside Figma**

→ **Figma AI + Figma Make** first. The strongest fidelity to in-house systems. For Material-based mobile, **Galileo/Stitch** is an option.

**Situation D · Automating design-to-dev handoff**

→ **Locofy + Anima + Builder.io** based on workflow fit. Builder.io's visual CMS is attractive for marketing-page-heavy use; Anima when pixel accuracy is paramount.

**Situation E · A new team bootstrapping a design system**

→ **Tempo** plus **Khroma** (color) plus **shadcn/ui** (baseline). Quickly stand up tokens, components, and variants.

**Combination anti-patterns**

- v0 plus Lovable both used heavily — overlapping coverage, doubled cost.

- Figma AI plus Locofy — duplicate automation in the same flow.

- Trying every new AI tool simultaneously — friction accumulates. Narrow to 2-3 and re-evaluate quarterly.

Chapter 17 · Toss · Naver · Mercari · CyberAgent Case Studies

**Toss**: a Korean fintech that operates its own design system (TDS, Toss Design System). Reports in 2026 describe workflows where v0-type tools generate fast prototypes that are migrated into TDS. The key lesson: the stronger the in-house system, the higher the "translation cost" of re-mapping AI output into it.

**Naver**: Naver's design organization runs its own system (NUI). Marketing pages and experimental prototypes lean on v0 and Figma AI, while the production main line stays on the internal system.

**Mercari**: a Japanese secondhand marketplace. Their design system syncs Storybook with Figma. Figma AI and Figma Make are being gradually adopted into designer workflows.

**CyberAgent**: a Japanese advertising and media giant. With many subsidiaries, design systems vary widely. Reports describe building prototypes for new services with Lovable or Bolt class tools, then migrating to the in-house system when the service joins the main line.

**Shared pattern**

1. AI design tools generate prototypes fast.

2. The work migrates into the in-house design system.

3. The "feel" of AI output is absorbed by a verified system.

The 2026 industry reality: AI design tools don't replace a company's design system — **they accelerate the entrance into it.**

Chapter 18 · Designer-Led vs Developer-Led Workflows

The camps split cleanly into two.

**Designer-led camp**: Figma AI/Make, Galileo, Uizard, Anima, Locofy, Penpot AI, Builder.io

- Design is the source of truth

- Code is auto-conversion or handoff

- In-house design-system fidelity is the priority

- Designers retain pixel-level control

**Developer-led camp**: v0, Subframe, Magic Patterns, Tempo, Lovable, Bolt.new

- Code is the source of truth

- Design is the output of code

- Code baselines like shadcn or Tailwind are the priority

- Developers retain component-level control

Both camps solve the same problem (prompt to UI) but differ on starting point and source of truth. The camp a company picks effectively decides the tool. Simplified — **if the design system lives in Figma, designer-led; if it lives in code, developer-led.**

The future trend is the camps converging. Figma Make bridges from the designer side to the developer side; Subframe and Tempo approach from the developer side toward designer friendliness. By 2027-2028, this line is likely to blur further.

Chapter 19 · The Real Traps of AI Design

These tools are not magic. Walking into them blind gets you a six-month regret.

**Trap 1 · Spec drift**

AI output varies slightly with every run. The same prompt yields slightly different colors, spacing, and text tone. Without a design system, generating many components produces drift. **Build the system first, then the components.**

**Trap 2 · Inconsistent components**

One is named Button, another CTA, another ActionButton. AI invents a new name each time. Without human consolidation, the codebase becomes a component garden.

**Trap 3 · The accessibility blind spot**

A div with onClick replacing a button element, images without alt text, toggles unreachable by keyboard. AI does not auto-validate accessibility. **WCAG validation is human work**, augmented by automated tools like axe or Pa11y.

**Trap 4 · Non-semantic markup**

Drawing a heading via div with className text-2xl font-bold. Visually identical, but not a heading to a screen reader. Semantic tags (h1, nav, main) need human review.

**Trap 5 · The fake-data trap**

AI-emitted components shine with fake data. They break under real data (empty states, long text, error states, loading states). **Test empty, error, and long-data states deliberately.**

**Trap 6 · Responsive lies**

Desktop view looks fine; mobile and tablet break. AI output tends to be weakly responsive — verify at every size.

**Trap 7 · System collision**

Company design system and AI output collide. Translation costs accumulate. The fix: train the AI tool on your system, or generate output constrained to the in-house system from the start.

**Trap 8 · Cost accumulation**

Surface prices look like 20 dollars but usage charges pile up. Heavy users routinely hit 100 to 200 dollars. Measure quarterly.

**Trap 9 · License and ownership**

Who owns the copyright on AI-emitted code? Each tool's terms differ. Verify policy before merging into proprietary code.

**Trap 10 · Atrophied design thinking**

AI delivers a first answer fast, so humans settle for it. **Force the habit of exploring two or three other directions** or design variety shrinks.

Chapter 20 · Integration Workflows — How to Combine Tools

Three patterns proven in 2026 practice.

**Pattern 1 · Designer-centric**

1. Figma AI for First Draft → designer polishes

2. Migrate to in-house design-system components

3. Convert to React via Figma Make or Locofy

4. Developer fills in state, routing, and data to ship

**Pattern 2 · Developer-centric**

1. v0 or Subframe for component drafts

2. Normalize against shadcn/ui or the in-house library

3. Developer merges into Next.js project

4. Designer visually reviews and fine-tunes

**Pattern 3 · Non-developer fast-track**

1. Lovable or Bolt.new for full-app prototype

2. Automatic backend setup via Supabase or similar

3. Direct deploy or GitHub export

4. Developer joins later to productionize if needed

**Combination principles**

- Don't narrow to a single tool — different tools win at different stages.

- Keep the in-house design system as the source of truth — AI is the entrance, the system is the main line.

- Don't skip verification — semantics, accessibility, responsiveness must be checked.

Chapter 21 · Cursor + shadcn vs AI Design Tools

A common developer question: "v0-class tools vs Cursor + shadcn by hand." Breaking it down:

**v0-class strengths**

- Design discovery — find inspiration in a gallery

- Variant comparison — see several options side by side

- Fast prototyping — chat for immediate results

- Designer friendliness — non-technical collaboration possible

**Cursor + shadcn strengths**

- Context — sees the whole existing project

- Consistency — follows in-house conventions

- Integration — one tool from design to deploy

- Cost control — fits inside a flat subscription

**Conclusion**: the two are complements, not competitors. **First draft of a new component — v0 or Subframe.** **Merging and adjusting inside existing code — Cursor.** Heavy users in 2026 run both.

Chapter 22 · 2026-2027 Trends — Where the Field Is Going

**Trend 1 · Design and code becoming one flow**

Tools that blur the design-code boundary, like Figma Make, are multiplying. Designers create code without reading code; developers create design without drawing.

**Trend 2 · AI treats design tokens as first class**

The most important change of 2025-2026 — AI recognizes and uses tokens. CSS variables, Figma variables, and the W3C design-token draft standard are flowing into AI output automatically.

**Trend 3 · Accessibility-first AI**

Regulatory pressure (the European Accessibility Act took effect in 2025) and market demand push automated accessibility validation into first-class status. Tools like axe and Pa11y get built into output pipelines.

**Trend 4 · Multimodal input expanding**

Beyond text — screenshot, hand sketch, voice, and video as inputs for design generation. Uizard pioneered the space; by 2026 v0 and Lovable are catching up.

**Trend 5 · Internal design-system integration**

"Learn my company's design system" becomes a standard feature. Tools import in-house Storybook, Figma libraries, and tokens, then constrain generation to stay within them.

**Trend 6 · The end of design-to-dev handoff?**

The phrase "designer-to-developer handoff" may vanish. Both roles work on the same canvas. Handoff-automation tools like Anima and Locofy get absorbed into integrated tools like Figma Make and Subframe.

**Trend 7 · Open source arrives**

v0's output (shadcn-based) is effectively open source; Penpot AI is open source as a tool. The premise that "AI design tools equal SaaS only" breaks.

Epilogue — Checklist · Anti-Patterns · Coming Next

Spring 2026: the AI design tool field has split into designer-led and developer-led camps, both evolving fast. There is no "best." There are tool combinations that match your role, design system, and team size.

**Tool-selection checklist (in order)**

1. Fix your role first — designer / developer / marketer or PM / non-technical.

2. Identify the source of truth — inside Figma / inside code / none.

3. Decide the tool's surface — browser / inside Figma / IDE / CLI.

4. Match output format to workflow — React / Vue / Figma / visual assets.

5. Set autonomy level — component / page / full app.

6. Estimate pricing model and heavy-user actual cost.

7. Verify design-system fidelity — shadcn / Tailwind / Material / internal.

8. Narrow candidates to 2-3 — the table is a narrowing tool.

9. Validate via one week of real work — quantitative plus qualitative.

10. Re-evaluate quarterly with a half day — the field is fast.

**Anti-patterns (don't)**

- **Shipping first output straight to production** — verify semantics, accessibility, responsiveness.

- **Keeping AI-emitted component names as-is** — they invent new names. Normalize.

- **Ignoring the in-house design system** — AI is the entrance; the system is the main line.

- **Trusting only the surface price** — measure real usage charges.

- **Treating one tool as a religion** — different stages prefer different tools.

- **Skipping variant exploration** — settling for the first answer narrows design.

- **Postponing accessibility** — verify from the start.

- **Skipping quarterly re-evaluation** — six months later, the tool is dated.

**Coming next**

In the same series: (1) shadcn/ui deep dive — why it became the standard, (2) design tokens' real standard — W3C, CSS variables, Figma variables, (3) accessibility-first component library comparison, (4) Figma alternatives — Penpot, Sketch, Phase, regional tools.

> The tool is the entrance; the design system is the main line. As AI accelerates the entrance, the consistency of the main line decides value.

References

1. [Vercel v0](https://v0.dev) — official

2. [shadcn/ui](https://ui.shadcn.com) — library powering v0 output

3. [Lovable](https://lovable.dev) — official (formerly GPT Engineer)

4. [Bolt.new](https://bolt.new) — StackBlitz

5. [Figma AI](https://www.figma.com/ai/) — Figma's official AI page

6. [Figma Make](https://www.figma.com/make/) — Figma's design-to-code integration

7. [Galileo AI / Stitch](https://stitch.withgoogle.com) — successor after Google acquisition

8. [Uizard](https://uizard.io) — Miro acquired

9. [Subframe](https://www.subframe.com) — Tailwind-first

10. [Magic Patterns](https://www.magicpatterns.com) — variant gallery

11. [Tempo](https://www.tempo.new) — design-system bootstrap

12. [Builder.io](https://www.builder.io) — Mantis · Figma to code

13. [Plasmic](https://www.plasmic.app) — visual builder

14. [Anima](https://www.animaapp.com) — Figma to code

15. [Locofy](https://www.locofy.ai) — Figma to React

16. [Khroma](https://www.khroma.co) — AI color palette

17. [Spline](https://spline.design) — 3D design AI

18. [Microsoft Designer](https://designer.microsoft.com) — Microsoft 365 integrated

19. [Adobe Firefly](https://www.adobe.com/products/firefly.html) — Adobe AI

20. [Canva Magic Studio](https://www.canva.com/magic-studio/) — non-technical design

21. [Penpot](https://penpot.app) — open-source Figma alternative

22. [Phase](https://phase.com) — motion and interaction (Korean origin)

23. [W3C Design Tokens Community Group](https://www.w3.org/community/design-tokens/) — token standard

24. [European Accessibility Act 2025](https://commission.europa.eu/strategy-and-policy/policies/justice-and-fundamental-rights/disability/union-equality-strategy-rights-persons-disabilities-2021-2030/european-accessibility-act_en) — EU regulation

25. [shadcn/ui · Radix](https://www.radix-ui.com) — accessibility baseline

현재 단락 (1/353)

In spring 2026, the design-tool landscape flipped for the second time. The first flip, in the late 2...

작성 글자: 0원문 글자: 33,188작성 단락: 0/353