Design system
Lean CSS tokens keep everything chic and consistent.
Devani exposes the exact CSS powering your layouts, so designers can finesse the vibe while developers rest easy knowing the code is pristine.
What you control
- Global typography scale & fluid spacing.
- Dark, light, and high-contrast palettes from one settings panel.
- Reusable layout tokens for hero rows, product grids, and CTA bands.
:root {
--font-body: 'Inter', sans-serif;
--font-display: 'General Sans', var(--font-body);
--color-accent: #4338ca;
--color-neutral-900: #111827;
--layout-container: min(1180px, 92vw);
--space-500: clamp(48px, 6vw, 80px);
}
.devani-section {
padding-block: var(--space-500);
background: var(--surface, #ffffff);
border-radius: 28px;
box-shadow: 0 32px 80px -32px rgba(15,23,42,0.28);
}
.devani-button {
border-radius: 999px;
padding: 14px 28px;
background: linear-gradient(135deg, #1f1f3d, #111827);
color: #fff;
}