Composed entirely from utility classes — no custom CSS needed.
example.html
<divclass="vel-flexvel-flex-colvel-gap-3vel-p-6vel-rounded-xlvel-bg-surface-2vel-bordervel-border-base"><h2class="vel-text-xlvel-font-boldvel-text-white">Card Title</h2><pclass="vel-text-smvel-text-muted">Composed entirely from utility classes — no custom CSS needed.</p><buttonclass="vel-btnvel-btn-primary">Get started</button></div>
Why utility-first?
Everything in one place — no context switching.
example.html
<!-- Traditional approach: write custom CSS in a stylesheet
.my-card { padding: 1.5rem; background: #111827; border-radius: 0.75rem; }
VeloraCSS approach: apply utilities directly in HTML --><divclass="vel-p-6vel-bg-surface-2vel-rounded-xl">
Everything in one place — no context switching.
</div>