Generador de Gradientes CSS
Crea hermosos gradientes CSS con un editor visual intuitivo. Elige de presets o personaliza colores, ángulos y paradas.
0°90°180°270°360°
%
%
background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
CSS Gradients - Detalles técnicos
CSS gradients let you display smooth transitions between two or more colors. They're created using the background-image property with linear-gradient() or radial-gradient() functions.
Alternativa de línea de comandos
/* Linear Gradient */\nbackground: linear-gradient(135deg, #00d4ff, #a855f7);\n\n/* Radial Gradient */\nbackground: radial-gradient(circle, #00d4ff, #a855f7);