[Atomic Glue](atomicglue.co)
CRO
Home › Glossary › Cro· 124 ·

Dark Patterns

/dɑːrk ˈpætərnz/noun phrase
Filed underCroLegalUXBackend
In brief · quick answer

Dark patterns are user interface designs intentionally crafted to trick or manipulate users into doing things they would not otherwise do. They are the opposite of ethical CRO. They produce short-term gains and long-term trust destruction. Avoid them completely.

§ 1 Definition

Dark patterns are deceptive user interface designs that trick users into taking actions they did not intend. Coined by UX specialist Harry Brignull, the term covers a range of manipulative tactics: hidden costs revealed at checkout, forced account creation, confusing cancellation flows, pre-checked opt-in boxes, false urgency (fake countdown timers), misdirected confirmations (the 'No' button is hard to find), and bait-and-switch (the advertised offer is not what you get). Dark patterns are distinct from legitimate persuasive design. Persuasion helps users make decisions they want to make. Dark patterns exploit cognitive biases to serve the company's interests at the user's expense.

§ 2 Common Types of Dark Patterns

The most common dark patterns: (1) Confirmshaming: guilting the user into accepting ('No thanks, I hate saving money'). (2) Forced continuity: making it easy to sign up and nearly impossible to cancel. (3) Hidden costs: revealing additional fees only at the final checkout step. (4) Misdirection: visually emphasizing the option the company wants while hiding the user's preferred option. (5) Social proof manipulation: showing fake activity ('5 people are viewing this right now'). (6) Roach motel: easy to get in, impossible to get out. (7) Privacy zuckering: tricking users into sharing more data than they intend.

§ 3 Why Dark Patterns Are a Bad Strategy

Dark patterns produce short-term conversion gains at the cost of long-term trust. The damage compounds: (1) User backlash: angry social media posts, negative reviews, and PR disasters. (2) Regulatory risk: GDPR, CCPA, and emerging regulations specifically target dark patterns. The EU's Digital Services Act and the FTC's 'Click to Cancel' rule are direct responses to dark pattern abuse. (3) Brand erosion: every dark pattern interaction trains the user to distrust your brand. Distrust is a conversion killer. A user who trusts your brand converts at 2-3x the rate of a user who does not. Dark patterns destroy that premium.

§ 4 The Ethical CRO Alternative

Instead of dark patterns, use ethical persuasive design: (1) Be transparent about pricing, terms, and data collection. (2) Make cancellation as easy as sign-up. (3) Use genuine urgency and scarcity, not fabricated scarcity. (4) Make opt-out the default, with clear, simple language. (5) Design for the user's long-term interest, not the short-term conversion. The CRO community has a zero-tolerance policy for dark patterns. They are not 'optimization'. They are exploitation. If you are considering a dark pattern, you are not doing CRO. You are doing something else.

§ 5 Note

The EU's Digital Services Act (DSA) and the FTC's updated 'Click to Cancel' rule specifically target dark patterns. The regulatory trend is clear: dark patterns are becoming illegal. If ethical considerations are not enough to dissuade you, the legal risk should be. Do not use dark patterns. Period.

§ 6 In code

<!-- Dark pattern (anti-pattern): Confirmshaming -->
<!-- DO NOT DO THIS -->
<div class="dark-pattern-example">
  <form class="newsletter-form">
    <label>
      <input type="checkbox" name="subscribe" checked>
      Get exclusive tips and offers
    </label>
    <button type="submit">
      <span>Yes, I want to save money</span>
    </button>
    <a href="#" class="decline-link" style="font-size: 0.7rem; color: #999;">
      No thanks, I hate saving money
    </a>
  </form>
</div>

<!-- Ethical alternative: Transparent, no manipulation -->
<form class="ethical-form">
  <label>
    <input type="checkbox" name="subscribe">
    Send me monthly CRO tips (unsubscribe anytime)
  </label>
  <button type="submit">Complete Purchase</button>
</form>

§ 7 Common questions

Q. Are dark patterns ever acceptable?
A. No. There is no ethical use case for dark patterns. They are designed to deceive users. Any short-term gain is offset by long-term damage to trust, brand reputation, and regulatory risk.
Q. What is the difference between a dark pattern and persuasive design?
A. Persuasive design respects the user's autonomy and helps them make a decision they want to make. Dark patterns remove the user's autonomy and trick them into decisions they would not make if they had full information. The difference is transparency and respect.
Q. Are dark patterns illegal?
A. Increasingly, yes. The EU's Digital Services Act, the FTC's 'Click to Cancel' rule, and the California Consumer Privacy Act all explicitly target dark patterns. The regulatory landscape is shifting rapidly. What was a gray area five years ago is now illegal.
Key takeaways
  • Dark patterns are deceptive interfaces that trick users. They are not CRO. They are exploitation
  • Common types: confirmshaming, forced continuity, hidden costs, roach motel, false urgency
  • Dark patterns produce short-term gains and long-term trust destruction
  • Regulatory risk is increasing. DSA, FTC, and CCPA specifically target dark patterns
  • The ethical alternative: transparency, user autonomy, and genuine value
How Atomic Glue helps

Atomic Glue has a strict ethical policy: no dark patterns, ever. We achieve results through genuine value, transparent design, and ethical persuasion. Conversion Optimization services

Get in touch
# Dark Patterns

Dark patterns are user interface designs intentionally crafted to trick or manipulate users into doing things they would not otherwise do. They are the opposite of ethical CRO. They produce short-term gains and long-term trust destruction. Avoid them completely.

Category: Cro (also: Legal, UX, Backend)

Author: Atomic Glue Research Team

## Definition

Dark patterns are deceptive user interface designs that trick users into taking actions they did not intend. Coined by UX specialist Harry Brignull, the term covers a range of manipulative tactics: hidden costs revealed at checkout, forced account creation, confusing cancellation flows, pre-checked opt-in boxes, false urgency (fake countdown timers), misdirected confirmations (the 'No' button is hard to find), and bait-and-switch (the advertised offer is not what you get). Dark patterns are distinct from legitimate persuasive design. Persuasion helps users make decisions they want to make. Dark patterns exploit cognitive biases to serve the company's interests at the user's expense.

## Common Types of Dark Patterns

The most common dark patterns: (1) Confirmshaming: guilting the user into accepting ('No thanks, I hate saving money'). (2) Forced continuity: making it easy to sign up and nearly impossible to cancel. (3) Hidden costs: revealing additional fees only at the final checkout step. (4) Misdirection: visually emphasizing the option the company wants while hiding the user's preferred option. (5) Social proof manipulation: showing fake activity ('5 people are viewing this right now'). (6) Roach motel: easy to get in, impossible to get out. (7) Privacy zuckering: tricking users into sharing more data than they intend.

## Why Dark Patterns Are a Bad Strategy

Dark patterns produce short-term conversion gains at the cost of long-term trust. The damage compounds: (1) User backlash: angry social media posts, negative reviews, and PR disasters. (2) Regulatory risk: GDPR, CCPA, and emerging regulations specifically target dark patterns. The EU's Digital Services Act and the FTC's 'Click to Cancel' rule are direct responses to dark pattern abuse. (3) Brand erosion: every dark pattern interaction trains the user to distrust your brand. Distrust is a conversion killer. A user who trusts your brand converts at 2-3x the rate of a user who does not. Dark patterns destroy that premium.

## The Ethical CRO Alternative

Instead of dark patterns, use ethical persuasive design: (1) Be transparent about pricing, terms, and data collection. (2) Make cancellation as easy as sign-up. (3) Use genuine urgency and scarcity, not fabricated scarcity. (4) Make opt-out the default, with clear, simple language. (5) Design for the user's long-term interest, not the short-term conversion. The CRO community has a zero-tolerance policy for dark patterns. They are not 'optimization'. They are exploitation. If you are considering a dark pattern, you are not doing CRO. You are doing something else.

## Note

The EU's Digital Services Act (DSA) and the FTC's updated 'Click to Cancel' rule specifically target dark patterns. The regulatory trend is clear: dark patterns are becoming illegal. If ethical considerations are not enough to dissuade you, the legal risk should be. Do not use dark patterns. Period.

## In code

<!-- Dark pattern (anti-pattern): Confirmshaming -->
<!-- DO NOT DO THIS -->
<div class="dark-pattern-example">
  <form class="newsletter-form">
    <label>
      <input type="checkbox" name="subscribe" checked>
      Get exclusive tips and offers
    </label>
    <button type="submit">
      <span>Yes, I want to save money</span>
    </button>
    <a href="#" class="decline-link" style="font-size: 0.7rem; color: #999;">
      No thanks, I hate saving money
    </a>
  </form>
</div>

<!-- Ethical alternative: Transparent, no manipulation -->
<form class="ethical-form">
  <label>
    <input type="checkbox" name="subscribe">
    Send me monthly CRO tips (unsubscribe anytime)
  </label>
  <button type="submit">Complete Purchase</button>
</form>

## Common questions

Q: Are dark patterns ever acceptable?

A: No. There is no ethical use case for dark patterns. They are designed to deceive users. Any short-term gain is offset by long-term damage to trust, brand reputation, and regulatory risk.

Q: What is the difference between a dark pattern and persuasive design?

A: Persuasive design respects the user's autonomy and helps them make a decision they want to make. Dark patterns remove the user's autonomy and trick them into decisions they would not make if they had full information. The difference is transparency and respect.

Q: Are dark patterns illegal?

A: Increasingly, yes. The EU's Digital Services Act, the FTC's 'Click to Cancel' rule, and the California Consumer Privacy Act all explicitly target dark patterns. The regulatory landscape is shifting rapidly. What was a gray area five years ago is now illegal.

## Key takeaways

## Related entries


Last updated July 2026. Permalink: atomicglue.co/glossary/dark-patterns

Schedule a call

30 min · Video call

1
Date
2
Time
3
Details