updated on:

27 Jul

,

2026

Badge UI Design: Types, Best Practices, and 20+ Examples

13

min to read

Table of contents

TL;DR

Badges signal status, count, or category — but only work when used sparingly and accurately. Pick the right type for what you're communicating, design for edge cases like "999+", pair color with text or icons always, and don't skip the accessibility markup. A badge is a promise — only make it when you can keep it.

Badge UI components are among the tiniest elements in any interface, yet they carry a lot of responsibility. A small dot on a nav icon tells you something changed. A number on a cart icon tells you how many items are waiting. A "New" label on a feature tells you where to look first.

Simple stuff but easy to get wrong. A stale count erodes trust. Too many badges at once and users stop noticing them entirely. And without accessibility in mind, some users won't get that information at all.

Most resources on badges are also oddly incomplete — designers get inspiration galleries with no rationale, developers get API docs with no design context, and nobody agrees on whether the thing they're looking at is a badge, a tag, a chip, or a pill.

After a decade of designing SaaS products at Eleken, we've built badge systems more times than we can count — and the same questions come up every time:

  • What badges are
  • How they differ from similar components
  • When to use them
  • How to design them well.

In this guide, we will try to cover all of it (with a lot of real examples, of course).

What is a UI badge?

A badge is a small, non-interactive visual indicator attached to a parent element — an icon, a button, a list item, a navigation label. Its job is to signal that something is there without interrupting whatever the user is doing.

badge UI example of a SaaS app
Three badge types in one screen: a status dot, a numeric count, and a boolean indicator. TextNow app.

Here are some things to remember about badges:

  • They don't ask for action
  • They don't open a dialog or trigger a flow. 
  • They just sit there and say "hey, something changed — go check when you're ready."

To sum up, most badges do one of two things: inform (something happened) or quantify (here's how much). A dot on a chat icon informs. A number on that same icon quantifies. Both are badges — just different levels of detail.

types of badge UI by Material design
Three badge UI design variants from Material Design 3: a dot (signals existence), a number (quantifies), and a truncated count (caps at a readable threshold).

Anatomy of a badge

At its core, a badge has three parts:

  • Container — the shape that holds everything (circle, pill, rounded rectangle)
  • Label — text, number, or icon inside it; sometimes absent entirely (dot badge)
  • Position — always anchored to a parent element, never floating standalone
badge UI anatomy

One thing badges can't do

Badges surface information, but they can't carry context. A badge showing "5" tells you there are five somethings — it can't tell you who sent them, why they matter, or what to do about them. When the context is that important, a badge alone isn't enough.

The difference between badge vs. tag vs. chip

If you've ever argued with a teammate about whether something is a badge or a tag, you're not alone. Different design systems use these terms differently — Material Design, Tailwind, Shadcn, and Dell Design System don't fully agree on the naming. So let's settle it with one simple rule:

Badges UI isn’t always static and non-interactive. The moment a user can click it, filter with it, or remove it — it's a chip or a tag.

Here's how the four components break down:

Static Interactive
Status / Count Badge
Category / Label Tag Chip

A few practical distinctions worth knowing:

Tag — labels content or categorizes it. Usually static. "In Progress", "Beta", "New" on a feature announcement. The user reads it, doesn't touch it.

Tag UI example from a SaaS app
Tags ("PAYMENT", "LEASES") categorize content. Numeric badges ("3", "21") count activity. Same screen, different jobs. Process Enablement Platform designed by Eleken.

Chip — looks similar to a tag but responds to user interaction. Users can click to filter, select, or remove it. If it has an ✕ on it, it's a chip.

real SaaS example of a chip UI
Chip UI example in Apollo app: "founder", "sales manager", "United States" — these are chips, not badges. The user selected them, and can remove or change them. The sparkle icon on each chip is an embedded icon badge — signaling AI-suggested values without interrupting the filter interaction.

Taking into account the confusion between the terms, name your components explicitly in your design system. Calling everything a "badge" because it looks small and rounded is how you end up with inconsistent behavior across your product.

Types of badges with visual examples

Badges come in more shapes than most people realize. The red dot on an app icon and the "Beta" label on a nav item are both badges — but they work very differently. Here's a breakdown of the main types, organized by what they contain and where they sit.

UI badges by content

The most fundamental way to categorize badges is by what's inside them. Each content type serves a different communication job, and choosing the wrong one is usually how badge clutter starts.

Numeric badge

What it is: a badge that displays a count — unread messages, cart items, pending tasks.

numeric badge UI example from mobile SaaS app
A classic numeric badge UI example on the notification bell tells caregivers how many updates are waiting — without pulling them away from the current task. From the FlourishOn app designed by Eleken.

When to use it: when the quantity itself helps the user triage. The difference between 1 notification and 84 notifications changes how urgently someone acts.

Best practice: decide your truncation threshold early and design for it. "99+" and "999+" are both valid — the right choice depends on context. A chat app and an e-commerce cart have very different scales. Also, never let the badge overflow your layout, design for the longest possible string from day one.

Dot badge (boolean badge)

What it is: no number, just a colored dot. Signals that something happened without quantifying it.

dot or boolean badge UI design example

When to use it: When the count doesn't matter — a new feature announcement, an unread thread, an online status indicator. It's also a valid fallback when querying for an exact count is expensive.

Best practice: Don't mix dot badges and numeric badges designs on the same navigation bar, it creates visual inconsistency and confuses the signal. Pick one system and stick to it.

Text/label badge

What it is: a short text label — "New", "Beta", "Live", "Sale" — used to categorize content or announce a feature state.

text/label badge UI example from a SaaS mobile app
In b.well's redesigned Vitals section, label badges replace raw data interpretation with clear, color-coded verdicts. Users see whether their metrics are healthy at a glance, without needing to compare values against reference ranges themselves.

When to use it: when you need to describe something rather than count it. Feature flags, content categories, release stages.

Best practice: keep it to one or two words maximum. If it needs more than that, it's not a badge — it's a tooltip or a description. Also, don't use text badges as a permanent fixture; "New" should disappear after a reasonable time or it loses meaning entirely.

Icon badge

What it is: a symbol instead of text — a checkmark for verified, a lock for secure, a warning triangle for an alert.

icon badge UI
Alert badges on map pins signal issues that need immediate user's attentio — red for critical, orange for warnings — without interrupting the user's spatial overview. Smartpin platform designed by Eleken

When to use it: when the icon's meaning is universally understood and adding text would clutter the UI.

Best practice: Stick to conventions. A checkmark means verified, a warning triangle means caution — don't reinvent these. And always pair an icon badge with a text alternative for accessibility (we will cover more on that in Section 6).

UI badges by position

Position doesn't change what a badge is — it changes where it lives relative to its parent element.

Corner-overlaid

Corner-overlaid badges sits on top of an icon, top-right corner by default. The classic notification badge. Think the red dot on an app icon or an inbox count on a mail tab.

corner-overlaid badge design example
The orange "1" on the Tasks tab is a corner-overlaid numeric badge — top-right position, anchored to a nav icon, impossible to miss. Brex app.

Inline

This type of UI badge appears next to a list item, nav label, or table row. Common in dashboards UI and order management systems where status needs to be scannable across multiple rows at once.

inline badge UI example
Inline status badges in a transaction table of the Unisap app — "Sold" and "Listed" tell the user exactly where each item stands without opening a single detail view. Color and icon reinforce the message; neither works alone.

Embedded

Lives inside another component, like a filter count inside a button ("Filters · 3") or a status label inside a card UI. Useful when the badge is part of an interactive element but still needs to communicate secondary information passively.

embedded badge UI example
The "6" next to "Active" tab is a solid embedded example, showing a count embedded directly into a tab label. ArcaneForge app.

When to use a badge

Badges are easy to add, perhaps that’s why they can be easy to overuse as well. Before reaching for one, it's worth asking a simple question: does the user actually need to know this right now, without being interrupted?

If yes, a badge is probably the right tool. If not, you might be adding noise.

Use badges when:

  • The information changes dynamically. Badges earn their place when the count or status updates in real time — unread messages, pending approvals, new activity. A badge that never changes is just a label.

Below is an example of dynamically changing badges designed by Eleken for a drone management platform Involi.

badge UI design example use cases
In Involi's receiver dashboard, status badges update in real time as devices connect, disconnect, or encounter errors — making them genuinely dynamic rather than decorative.
  • The quantity helps the user triage. There's a meaningful difference between 1 unread notification and 47. When the number changes what the user decides to do next, show it.
use cases of when to use badge design element with real-life example
Shopee's notification screen shows counts across multiple categories — a user with 19 Finance Updates and 6 Shopee Updates will instinctively open Finance first. The number does the triage.
  • A feature or content is genuinely new. A "New" label directs attention to something the user would otherwise miss. It's a one-time signal — useful on arrival, noise if it overstays.
when to use badge UI with examples

Don't use badges when:

  • The count is stale or unreliable. A badge showing the wrong number is worse than no badge at all. It breaks trust immediately — and trust, once broken by a UI element, is hard to rebuild. If you can't keep the count accurate, use a dot badge or remove it entirely.
  • Everything has one. Badge inflation is real. When every nav item, every card, and every button has a badge, none of them mean anything. The signal disappears into the noise. A good rule of thumb: if you're adding a fourth badge to the same screen, stop and reconsider.
  • The information needs context. Badges are blunt instruments. A badge showing "3" can't tell the user who sent the incoming messages, how urgent they are, or whether any action is required. When context is what the user needs, a badge isn't enough — consider a notification panel or an inline summary instead.
  • A simpler indicator would do. Sometimes a color change on an icon or a subtle state change communicates the same thing without the visual weight of a badge. Ask whether the badge is adding information or just adding decoration.
  • The "too many states" problem. One of the most common mistakes in complex SaaS products is designing a badge system with too many distinct states. Eight different status labels with eight different colors isn't a badge system — it's a legend that users have to learn and remember.

To sum up, a badge is a promise to the user that something is worth their attention — the design work is making sure that promise is always true.

Visual and UX guidelines on designing badges

Getting a badge to function well across breakpoints, dark mode, edge cases, and a full design system may be a thought task. Below, we will provide you with main UI/UX design principles on designing badges.

Shape and size

Three shapes dominate badge design: 

  • the circle (standard for numeric notification badges)
  • the pill (most common for text and status labels)
  • the rounded rectangle (common in table and list contexts).
examples of badge shapes

A standard badge container starts at 16–20px height. But more important than the starting size is designing for your worst case. A badge that looks fine showing "5" can break your layout at "1,284". Define your truncation threshold early — "99+" or "999+" depending on context — and build for it before you need it.

Color: semantic vs. brand

The universal system most users already understand: 

  • red for errors or alerts
  • green for success or active states
  • yellow/orange for warnings
  • blue for informational
  • gray for neutral or inactive
badges of different color
In b.well's Vitals dashboard, badge color does the diagnostic work — red flags a dangerous reading, green confirms a healthy one, and amber signals a value worth watching.

The problem designers actually face is when brand colors conflict with this system. A brand built around red, for example, creates immediate confusion when red also means "error". When this happens, the practical solution is to treat your status colors as a separate information design palette — one that complements your brand but isn't overridden by it.

In RedOwl's fintech dashboard that we created UI/UX design for, red serves as the brand's primary color — but it's also the natural color for alerts and errors. The design team kept brand red confined to the logo and navigation, using neutral tones for primary actions to protect the status color system.

brand colors conflict with badge design

So, here’re a few approaches when you're stuck:

  • Collapse your states into three tiers — fewer colors needed overall
  • Use text as the primary indicator and color as a secondary reinforcement
  • Use a left-border accent to bring in brand color without overriding semantic fill
  • Invert text color (white on dark, dark on light) to maintain contrast across a gradient

And one rule that's non-negotiable: never rely on color alone. Always pair color with text or an icon. This matters for accessibility, but also for users who simply skim — text and icons are parsed faster than color in peripheral vision.

Want to know more on how to cope with UI issues? Check out our YouTube video on how to fix confusing interfaces.

Content rules

Keep badge labels as short as possible, no detailed information needed. "New" not "New Feature Available". "Beta" not "Currently in Beta Testing".

badge labels example

For numeric badges, truncate at a defined threshold and be consistent about it across your product. A chat module that shows "99+" while a notification panel shows "999+" creates unnecessary inconsistency.

Keep in mind, don't truncate text badges. If a text badge needs truncation, it's too long to be a badge. Shorten the label or reconsider whether a badge is the right component at all.

Positioning

Corner-overlaid badges default to the top-right — this is the M3 standard and the most widely recognized convention. For RTL (right-to-left) layouts, flip to top-left.

badge UI design in right to left design
Badge component in RTL designs. Source

When a badge sits on a colorful or busy surface, use a cutout border — a thin ring of background color between the badge and its parent. It creates visual separation and stops the badge from blending into whatever is behind it.

badge UI in a colorful interface
A thin white cutout border separates the alert badge from the avatar behind it — without it, the yellow badge would blur into the gray circle. Wise app badge UI design example.

For inline badges in list or table views, right-align them in a dedicated column. It makes the entire list scannable in a single eye pass rather than forcing the user to hunt across each row.

inline badge UI design example
Right-aligned count badges in Pipedrive's inbox create a vertical scan line — a user can assess all folder counts in a single glance down the right edge.

Accessibility: The Part Most Designers Skip

Badge accessibility is one of the most consistently underleveraged areas in UI design. Most teams get the visuals right and stop there. But a badge that looks correct can be completely invisible to a user relying on a screen reader — or meaningless to someone with color vision deficiency. Here's what actually needs to happen.

  1. Color contrast

Meet WCAG AA as a baseline — a minimum contrast ratio of 4.5:1 for text. But contrast ratio alone isn't enough. A red badge on a white background can pass contrast checks and still be unreadable to someone with red-green color blindness. Which brings us to the next rule.

  1. Never convey meaning through color alone

Screen readers don't announce color. A red badge and a green badge look identical to assistive technology. Always pair color with text or an icon — not as a nice-to-have, but as a hard requirement. This is also why Eleken's approach on B.well and Involi — pairing every status color with a unique icon — is the right call even beyond the medical context.

  1. The numeric badge problem

A badge showing "5" reads as "5" to a screen reader. That's not useful. It should read "5 unread messages" or "5 pending approvals" — enough context to understand what the number refers to. 

  1. Dot badges

A dot conveys nothing to assistive technology on its own. Any element with a dot badge needs a descriptive aria-label on its parent — something like aria-label="Notifications, new activity".

  1. Badges should never receive keyboard focus

Badges are non-interactive by definition. They should never appear in the tab order. Don't add tabindex to a badge element — if it's not in the DOM as a focusable element, it won't be. If you've wrapped a badge in a <button> or <a> tag for any reason, reconsider the structure.

  1. Motion

Animated badges — a bounce, a pulse, a count increment — must respect prefers-reduced-motion. Users who have enabled reduced motion in their OS settings should see a static badge, not an animation.

Before you add that badge

Badges are small, but the decisions behind them aren't. The type you choose, the color you pick, where you place it, and whether a screen reader can interpret it — each of these details shapes whether the badge does its job or quietly erodes the experience.

The framework is straightforward: 

  • Match the badge type to what you're communicating (existence, quantity, category, or status)
  • Use color and icons together rather than either alone
  • Keep the label short enough to scan in under a second
  • Make sure the information is accurate enough to trust.

Most importantly — a badge is a promise to the user that something is worth their attention. Break that promise through a stale count, badge inflation, or a signal that's invisible to assistive technology, and you break something harder to fix than a component.

Lastly, if you're building a consistent badge system, you'll need more than good intentions — a solid UI kit is where that consistency actually lives.

Share
written by:
image
Darina Silchenko

Senior UI/UX Designer and UI mentor at Eleken. 5 years experience, former UI teacher at Beetroot Academy. Inspired by bold design decision that pushes boundaries.

imageimage
reviewed by:
image
Kateryna Mayka

Senior content writer at Eleken with 5+ years of experience covering product design, UX, and SaaS. Kateryna works closely with designers and specializes in translating complex UI/UX concepts into practical insights for product teams.

imageimage

Explore our blog posts

By clicking “Accept All”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information.