CSS Gradient
cssgradient.io
CSS Gradient โ Generator, Maker, and Background
As a free CSS gradient generator tool, this website lets you create a colorful gradient background for your website, blog, or social media profile.
Gradients
Looking for gradient inspiration? Youโve come to the right place. Browse our nicely curated collection of beautiful gradients in all colors: blue, red and more.
Color Shades
Color shades are lighter and darker variations of a particular color, created by adding white or black. Explore shades of red, blue, green, yellow, purple and pink.
Backgrounds
Discover the best gradient backgrounds from a curated collection of the ultimate list of gradient sites. With 1000+ gradients, it's easy to find the ๐ color!
CSS Gradient Text
Add eye-catching gradient effects to your website text using pure CSS. Learn how to create vibrant, image-free text gradients with step-by-step syntax examples and tips.
ColorZilla
colorzilla.com โบ gradient-editor
Ultimate CSS Gradient Generator - ColorZilla.com
ยป Copy to clipboard button for quickly grabbing the generated code ยท ยป Easy resizing of preview panel by dragging its corner ... ยท Create transparent css gradients, or add fade-in, fade-out, semi-transparency and similar effects
Videos
10:23
Creating an HTML, CSS, and JavaScript Gradient Generator | ...
14:32
How to Create a CSS Gradient Generator for Beginners ...
13:16
Build CSS Gradient Generator Tool | Custom CSS Variables ...
02:53
Learn to Create a Random Linear Gradient Generator with HTML, CSS, ...
00:41
๐จ Explore 3 Free Amazing CSS Gradient Generators๐#uidesign ...
Ultimate CSS Gradient Generator
I used this one a lot until I started using LESS. Now I just do it with mixins.
Something like this for the mixin (taken from the bootstrap mixins file):
#gradient {
.horizontal(@startColor: #555, @endColor: #333) {
background-color: @endColor;
background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(left, @startColor, @endColor); // IE10
background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(left, @startColor, @endColor); // Le standard
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE9 and down
}
.vertical(@startColor: #555, @endColor: #333) {
background-color: mix(@startColor, @endColor, 60%);
background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
background-image: linear-gradient(top, @startColor, @endColor); // The standard
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down
}
}
Then just do something like this when you want a gradient:
.some-div{
#gradient .vertical(#ccc, #fff);
}
And BAM! Gradient code generated.
More on reddit.comHow do people make gradients like these? They are really beautiful but I cant seem to find a generator online?
You can use Mesher https://www.csshero.org/mesher/?fbclid=IwAR17R0d0GjYbTqrzGMvfGfhthcdTasBfH8r_OsX_cpvPMiLnhmYrQOzp5jQ More on reddit.com
Complex gradients and css?
Perhaps this site might be useful. It's quite old and I mainly made it for myself, but you can play around with the positions and colours and should give you exactly what you are looking for. More on reddit.com
How to make a gradient background like this?
Hey if you look at the element of the first website it looks like a canvas running a WebGL gradient with javascript. Here's an example CodePen of the concept and a Medium article about animated JavaScript and WebGL gradients More on reddit.com
ColorSpace
mycolor.space โบ gradient
ColorSpace - CSS Gradient Color Generator
New Feature: You can now create a gradient out of 3 colors! ... CSS Code: background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
Josh W. Comeau
joshwcomeau.com โบ gradient-generator
CSS Gradient Generator
.gradient { background-image: linear-gradient( 45deg, hsl(240deg 100% 20%) 0%, hsl(281deg 100% 21%) 8%, hsl(304deg 100% 23%) 17%, hsl(319deg 100% 30%) 25%, hsl(329deg 100% 36%) 33%, hsl(336deg 100% 41%) 42%, hsl(346deg 83% 51%) 50%, hsl(3deg 95% 61%) 58%, hsl(17deg 100% 59%) 67%, hsl(30deg 100% 55%) 75%, hsl(40deg 100% 50%) 83%, hsl(48deg 100% 50%) 92%, hsl(55deg 100% 50%) 100% ); } Copy URLCopy CSS ยท
W3Schools
w3schools.com โบ css โบ css3_gradients.asp
CSS Gradients
The CSS gradient functions are used within the background-image property. ... The CSS linear-gradient() function creates a linear gradient.
CSS Gradient Generator
css-gradient.com
CSS Gradient Generator - Make and generate beautiful gradients
Free tool to easily make and generate cross browser linear or radial css gradients. You can generate your custom css gradient in HEX or RGBA color format.
MDN Web Docs
developer.mozilla.org โบ en-US โบ docs โบ Web โบ CSS โบ Reference โบ Values โบ gradient โบ linear-gradient
linear-gradient() - CSS | MDN
A color can be declared as two adjacent color-stops by including both positions in the CSS declaration. The following three gradients are equivalent: ... linear-gradient(red 0%, orange 10%, orange 30%, yellow 50%, yellow 70%, green 90%, green 100%); linear-gradient(red, orange 10% 30%, yellow 50% 70%, green 90%); linear-gradient(red 0%, orange 10% 30%, yellow 50% 70%, green 90% 100%);
ColorGradient
colorgradient.dev โบ gradient-generator
Color Gradient - The best CSS gradient generator. - ColorGradient
It started from the frustration of having to specify the CSS gradient syntax by hand without having immediate feedback. Of course, other tools are available, but they didnโt allow for defining multi-layered and more complex gradients. So I decided to build the best gradient generator I could. This gradient editor allows for creating linear, radial and conic gradients, as well as the repeating-linear, repeating-radial and the repeating-conic ones.
Gradient
gradient.style
CSS HDR Gradients
:root { --hdr-gradient: linear-gradient( to right in oklab, oklch(70% 0.5 340) 0%, oklch(90% 0.5 200) 100% ); --sdr-gradient: linear-gradient(to right, #ff00fa 0%, #0ff 100%); background: var(--hdr-gradient); } Copy
Coolors
coolors.co โบ gradient-palette
Create a Gradient palette - Coolors
Discover List of Colors List of Gradients Gradient Maker Gradient Palette Image Converter SVG Recolor Collage Maker Free Fonts Font Generator ยท Download iOS APP Figma Plugin Adobe Extension Chrome Extension ยท Company Pricing Help Center Features ...
Gradientmagic
gradientmagic.com
Gradient Magic - Fantastic and Unique CSS Gradients
A Free Gallery of Fantastic and Unique CSS Gradients.
Colorbeta
colorbeta.com
ColorBeta - Advanced CSS Gradient Generator
ColorBeta is a free online tool for creating and editing CSS gradients (linear, radial, conic).
Elementor
elementor.com โบ home โบ css gradient generator
CSS Gradient Generator
September 9, 2025 - The journey begins with selecting the fundamental structure of your gradient. Our **CSS Gradient Generator** offers the two most common and versatile gradient types: Linear Gradients: These gradients transition colors along a straight line. You can define the angle of this line, allowing for ...