Glow Badge
A copy-paste badges & tags component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Badges & TagsHTMLCSSany framework
FEATURED
Copy into your project
HTML
<span class="nuda-glowbadge">FEATURED</span>CSS
.nuda-glowbadge {
display: inline-flex;
padding: 3px 10px;
background: rgba(228, 255, 84, 0.08);
border: 1px solid #e4ff54;
color: #e4ff54;
border-radius: 99px;
font-weight: 700;
letter-spacing: 0.1em;
animation: nuda-glow-b 2.4s ease-in-out infinite;
}
@keyframes nuda-glow-b {
0%, 100% { box-shadow: 0 0 8px rgba(228, 255, 84, 0.3); }
50% { box-shadow: 0 0 18px rgba(228, 255, 84, 0.6); }
}How to use Glow Badge
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.