duply
Back to blog

2 July 2026

Why AI-generated apps look the same: what Reddit actually says

Search "why do AI generated apps look the same" and nearly every result is a Reddit thread, because Reddit is where people are honest about it. The same question appears in r/vibecoding, r/webdesign and r/replit every few weeks, and the answers converge on one cause and one fix. This page rounds up the actual threads so you don't have to dig, then shows the workflow that ends the problem.

Minimal illustration: four identical browser window outlines, the last filled sage green

The Reddit threads people keep citing

What the answers boil down to

1. Models output the average of their training data. An AI agent with no specific target predicts the most statistically likely interface: Inter, purple-tinted gradients, centered hero, three rounded cards. Distinctive design lives in the tails of the distribution, and averaging destroys the tails. The "regurgitation" answer above is the folk version of this.

2. "Prompt better" is not a fix. The r/vibecoding threads are full of people who tried adjectives ("modern", "clean", "premium") and got the same output. Adjectives don't constrain anything: the model still picks every actual value itself, and it picks the average. This isn't limited to hobby projects either; an analysis of 1,590 Show HN landing pages found more than half carry the same recognizable AI-default fingerprint.

3. The fix that keeps coming up: give the agent a concrete design target. The answers that get upvoted are variations of the same idea: stop describing taste in prose and hand the agent a real design system as a file it loads. Exact tokens (colors, type scale, spacing, radius) plus written rules. Anthropic reached the same conclusion: their official frontend-design skill for Claude Code is a markdown file that forces an aesthetic commitment before any code.

The workflow

This is exactly what a DESIGN.md file is for: one markdown file with a real product's extracted tokens and usage rules that your agent builds against.

  1. Browse the duply library and pick a design language you actually want: Linear for restrained dev-tool minimalism, Stripe for polished fintech, Vercel for clean monochrome.
  2. Copy its DESIGN.md into your repo so it's in context on every prompt.
  3. Tell the agent: use these tokens, don't invent colors or sizes, follow the do's and don'ts.

The full step-by-step for Cursor, Claude Code, v0, Lovable and Bolt is in how to give your AI agent a real design system.

FAQ

Why does Reddit say AI apps look the same? Because models generate the statistical average of the interfaces they trained on. Without a concrete design target, every user gets the same median output regardless of prompt wording.

Can better prompting fix generic AI UI? Not reliably. Adjectives don't pin down values. A design system file does: it replaces the model's averaged guesses with exact tokens and rules.

Where do I get a design system my AI agent can use? Copy a DESIGN.md from the duply library: 100+ real products' design systems, extracted into a format any coding agent reads.