Skip to content

CSS Glassmorphism Generator

Create stunning glassmorphism effects with customizable backdrop filters, frosted glass backgrounds, and modern CSS styling

Updated

What is the CSS Glassmorphism Generator?

How it works

Examples

Frosted Glass Card

Background: white at 25% opacity, 16px blur, 180% saturation, 1px white border at 40% opacity, 16px border radius
.glass { background: rgba(255,255,255,0.25); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border: 1px solid rgba(255,255,255,0.4); border-radius: 16px; }

Dark Glass Dashboard

Background: black at 30% opacity, 20px blur, 140% saturation, 90% brightness, 1px white border at 15% opacity, 24px border radius, drop shadow
.glass-dark { background: rgba(0,0,0,0.3); backdrop-filter: blur(20px) saturate(140%) brightness(90%); border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; box-shadow: 0 12px 30px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.1); }

Vibrant Gradient Glass

Gradient from purple 20% to pink 15%, 24px blur, 200% saturation, 110% brightness, 2px purple border at 50% opacity, 32px border radius
.glass-vibrant { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.15)); backdrop-filter: blur(24px) saturate(200%) brightness(110%); border: 2px solid rgba(167,139,250,0.5); border-radius: 32px; }

Frequently asked questions