Professional UI Chip Elements

An enterprise-ready, production-optimized suite of 30 specialized chip components crafted for micro-data handling, selection filtering, and state indicators. Seamlessly copy production HTML/CSS directly into your open-source projects.

Displaying all 30 high-fidelity configurations

01. Basic Chip

Core Style

Standard low-level grey badge designed for basic metadata representation without structural prioritization.

Basic Label
<div class="uiv-chip-primitive" role="note">Basic Label</div>
.uiv-chip-primitive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  background-color: var(--uiv-color-bg-base-grey, #2e2e34);
  color: var(--uiv-color-text-base-white, #f5f5f7);
  font-size: 13px;
  font-weight: 500;
  border-radius: 16px;
  white-space: nowrap;
}

02. Filled Chip

Core Style

High-contrast solid colored implementation ideal for emphasizing primary structural terms.

Primary Token
<div class="uiv-chip-solid-filled" role="note">Primary Token</div>
.uiv-chip-solid-filled {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background-color: var(--uiv-primary-blue, #007bff);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 16px;
  transition: background var(--uiv-speed-fast, 0.2s);
}
.uiv-chip-solid-filled:hover {
  background-color: #0062cc;
}

03. Outlined Chip

Core Style

Light border framework variant suited for neutral categorizations and non-intrusive layouts.

Outlined Tag
<div class="uiv-chip-outlined-style" role="note">Outlined Tag</div>
.uiv-chip-outlined-style {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background-color: transparent;
  border: 1px solid var(--uiv-border-color-dim, rgba(255,255,255,0.2));
  color: var(--uiv-text-secondary, #afafb6);
  font-size: 13px;
  font-weight: 500;
  border-radius: 16px;
  transition: all 0.2s ease;
}
.uiv-chip-outlined-style:hover {
  border-color: #ffffff;
  color: #ffffff;
}

04. Gradient Chip

FX Module

Utilizes UIverse dual chromatic interpolation curves to optimize user attention capture profiles.

Gradient Layer
<div class="uiv-chip-gradient-vfx" role="note">Gradient Layer</div>
.uiv-chip-gradient-vfx {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ff007f, #7f00ff);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.2);
}

05. Glassmorphism Chip

FX Module

Utilizes high-blur alpha backdrops to integrate into dynamic, dark UI asset sheets seamlessly.

Glass Accent
<div class="uiv-chip-glassmorphism" role="note">Glass Accent</div>
.uiv-chip-glassmorphism {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 16px;
}

06. Neon Chip

FX Module

Cyberpunk-inspired luminescent badge that projects light shadows into localized node surfaces.

Neon Active
<div class="uiv-chip-neon-vfx" role="note">Neon Active</div>
.uiv-chip-neon-vfx {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background-color: #0e1a1f;
  border: 1px solid #00f3ff;
  color: #00f3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0,243,255,0.3), inset 0 0 4px rgba(0,243,255,0.2);
}

07. Avatar Chip

Data Stream

Pairs a circular compressed portrait mask with an alphanumeric title container string.

Alex Rivers
<div class="uiv-chip-avatar-identity" role="link" tabindex="0">
  <svg class="uiv-avatar-vector" viewBox="0 0 32 32">
    <circle cx="16" cy="16" r="16" fill="#007bff"/>
    <path d="M16 8a4 4 0 100 8 4 4 0 000-8zM6 24c0-4.4 4.5-6 10-6s10 1.6 10 6v2H6v-2z" fill="#ffffff"/>
  </svg>
  <span class="uiv-avatar-label">Alex Rivers</span>
</div>
.uiv-chip-avatar-identity {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px 0 6px;
  background-color: #232329;
  border-radius: 18px;
  color: #f5f5f7;
  font-size: 13px;
  cursor: pointer;
}
.uiv-avatar-vector {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

08. Status Chip

Data Stream

Pairs a pulsing localized node vector signal with state reporting textual metrics.

Operational
<div class="uiv-chip-status-monitor" role="status">
  <span class="uiv-status-pulse-dot"></span>
  <span class="uiv-status-txt">Operational</span>
</div>
.uiv-chip-status-monitor {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background-color: rgba(52, 199, 89, 0.1);
  color: #34c759;
  font-size: 12px;
  font-weight: 600;
  border-radius: 14px;
}
.uiv-status-pulse-dot {
  width: 6px; height: 6px;
  background-color: #34c759;
  border-radius: 50%;
  margin-right: 8px;
  animation: uiv-pulse-fx 1.8s infinite;
}
@keyframes uiv-pulse-fx {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 1; }
}

09. Notification Chip

Interactive

Features an incorporated numeric counter badge designed to summarize unresolved unread records.

Inbox Queue 14
<div class="uiv-chip-notification-inbox" role="button" tabindex="0">
  <i class="fas fa-envelope"></i>
  <span>Inbox Queue</span>
  <span class="uiv-notification-numeric-pill">14</span>
</div>
.uiv-chip-notification-inbox {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 8px 0 12px;
  background-color: #24242b;
  border-radius: 16px;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
}
.uiv-notification-numeric-pill {
  height: 20px; min-width: 20px;
  padding: 0 6px;
  background-color: #ff3b30;
  color: #ffffff;
  border-radius: 10px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 8px;
}

10. Closable Chip

Interactive

Equipped with a terminal close action glyph mapped to execute immediate DOM destruction loops.

Dismissible Asset
<div class="uiv-chip-closable-action" role="button">
  <span>Dismissible Asset</span>
  <button class="uiv-close-glyph-trigger-node" aria-label="Dismiss item">&times;</button>
</div>
.uiv-chip-closable-action {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 8px 0 14px;
  background-color: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  border-radius: 16px;
  font-size: 13px;
}
.uiv-close-glyph-trigger-node {
  background: none; border: none;
  color: #ff3b30; font-size: 18px;
  cursor: pointer; margin-left: 6px;
  display: flex; align-items: center; justify-content: center;
}
.uiv-close-glyph-trigger-node:hover { color: #ff453a; }

11. Removable Chip

Interactive

Utilizes a structured minus glyph to enable data removal workflows within data lists.

Removable Entry
<div class="uiv-chip-removable-node">
  <span>Removable Entry</span>
  <i class="fas fa-minus-circle uiv-remove-icon-action" role="button" aria-label="Remove element" tabindex="0"></i>
</div>
.uiv-chip-removable-node {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px 0 14px;
  background-color: #2c2c35;
  color: var(--uiv-text-primary, #f5f5f7);
  border-radius: 16px;
  font-size: 13px;
}
.uiv-remove-icon-action {
  color: #ff9500; margin-left: 8px;
  cursor: pointer; transition: color 0.2s;
}
.uiv-remove-icon-action:hover { color: #ffb340; }

12. Selectable Chip

Interactive

Supports active selection states toggled programmatically via generic runtime element clicks.

<div class="uiv-chip-selectable-toggle" role="checkbox" aria-checked="false" tabindex="0">



\n\n