Back to Hub
Sample / Neumorphism ← Hub

Neumorphism

A minimalist look that keeps the same color as the background and relies solely on light and shadow embossing for depth.

Volume Form

Input fields and backgrounds use inner shadows for an inset structure, while buttons use drop shadows for a raised embossed structure.

AI Request Prompt

Design a clean Neumorphism-style control panel / controller UI.

Requirements:
1) Colors: Use the same blue-gray background (#e0e5ec) for background, cards, and buttons. Text is #344055, muted is #8a96a8.
2) No borders: Achieve depth using only box-shadow, no border properties.
3) Raised (convex): 10px 10px 20px rgba(163,177,198,0.6), -10px -10px 20px rgba(255,255,255,0.5)
4) Inset (concave): inset 8px 8px 16px rgba(163,177,198,0.6), inset -8px -8px 16px rgba(255,255,255,0.5)
5) Interaction: Buttons default to raised, slightly enlarge on hover, switch to inset on active (0.2s transition).
6) Rounded: Apply 20-40px rounded corners to all elements.
7) Font: Poppins (300/400/600), letter-spacing -0.02em.
8) Layout: Hero (center-aligned) + 2-column inset panel grid.

Responsive:
- Mobile (~768px): 2 columns to 1-column stack
- Desktop: max-width 1000px

Restrictions:
- No border property allowed (box-shadow only)
- No colorful backgrounds or gradients
- No dark mode

Output:
1) Raised/inset CSS variables (shadow-out, shadow-in) and color tokens
2) Hero / inset panel grid / button set structure
3) HTML/CSS code with responsive support