Status Breathing
A copy-paste badges & tags component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Badges & TagsHTMLCSSany framework
Operational
Copy into your project
HTML
<span class="nuda-status-breathe" aria-label="Operational">
<span class="nuda-status-breathe__dot"></span>
Operational
</span>CSS
/* Status Breathing
Status chip with a slow breathing glow. */
.nuda-status-breathe {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 5px 12px;
background: rgba(228, 255, 84, 0.06);
border: 1px solid rgba(228, 255, 84, 0.22);
color: #e4ff54;
border-radius: 99px;
font-size: 12px;
font-weight: 600;
animation: nuda-status-breathe 3s ease-in-out infinite;
}
.nuda-status-breathe__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #e4ff54;
}
@keyframes nuda-status-breathe {
0%, 100% { box-shadow: 0 0 6px rgba(228, 255, 84, 0.25); }
50% { box-shadow: 0 0 16px rgba(228, 255, 84, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
.nuda-status-breathe { animation: none; }
}How to use Status Breathing
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.