/* Responsive: 1 col on mobile, 2 on tablet, 3 on desktop */@media (min-width: 768px) { .md\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .lg\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
UI Components Live Preview
Buttons
Card
Card Title
Description text that provides context about this card's content.
Form Elements
Badges & Tags
ActiveReadyComing SoonBlueAmberRedGreen
Navigation
UnoCSS / Tailwind Utility Reference
These utilities are usable in your SvelteKit (Telos) and Next.js (klookup) projects.
Installed via UnoCSS
Layout
flex
display: flex
flex-col
flex-direction: column
flex-wrap
flex-wrap: wrap
flex-1
flex: 1
items-center
align-items: center
justify-center
justify-content: center
justify-between
justify-content: space-between
gap-1..gap-12
gap: 4px .. 48px
grid
display: grid
grid-cols-2
grid-template: repeat(2,1fr)
Spacing
p-1..p-12
padding: 4px..48px
px-1..px-12
padding-x
py-1..py-12
padding-y
m-1..m-12
margin: 4px..48px
mx-auto
margin: 0 auto
Typography
text-sm
font-size: 0.875rem
text-lg
font-size: 1.125rem
text-xl
font-size: 1.25rem
text-2xl
font-size: 1.5rem
font-bold
font-weight: 700
font-mono
font-family: monospace
text-center
text-align: center
text-brand
color: #6c63ff
Colors
text-white/80
opacity: 0.8 white
bg-brand
background: #6c63ff
bg-surface
background: #14171c
border-default
border-color: #2a2e38
Responsive Prefixes
/* Prefix any utility with a breakpoint to make it responsive */ sm:flex /* ≥640px */ md:grid-cols-2 /* ≥768px */ lg:flex-row /* ≥1024px */ xl:gap-8 /* ≥1280px */