Neumorphism Soft UI Generator
Create soft UI neumorphism CSS effects with customizable dual shadows and 4 shape types.
① Pick a base color & shape ② Adjust shadow distance & blur ③ Copy the CSS
.neumorphic {
background: #e0e5ec;
border-radius: 16px;
box-shadow: 10px 10px 20px #b0bdcf, -10px -10px 20px #ffffff;
/* light: #ffffff | dark: #b0bdcf */
}What is Neumorphism?
Neumorphism (Soft UI) is a UI design trend that creates extruded plastic-like surfaces by combining flat design and skeuomorphism. It uses two carefully crafted dual box-shadows — one light (highlight) and one dark (shadow) — applied with opposite offsets to the same element. The element color closely matches the background, giving a "pushed out from the surface" look. Key CSS: box-shadow: 10px 10px 20px #darkColor, -10px -10px 20px #lightColor. For the pressed variant, use the inset keyword. For concave and convex shapes, add a radial-gradient background. The shadow colors are derived from the base by adjusting HSL lightness by ±15–25%.