Smooth gradient

Hello guys. I was just watching one of Kevins videos and noticed a smooth gradient which he used. How do you do so smooth gradient?
No description
6 Replies
Zoë
Zoë7mo ago
background: linear-gradient(135deg, blue, red) https://codepen.io/z-/pen/mdvOggL/4f42a1100c998359a32fbc66d9e9c525
Zed Dash
CodePen
mdvOggL
...
Zoë
Zoë7mo ago
Can also recommend this site for making gradients https://gradient.style
CSS HD Gradients
Wide gamut Color 4 compliant CSS gradient builder.
willko22
willko227mo ago
So its just basic 2 color gradient. Interesting. Thank you How do i close the post?
Jochem
Jochem7mo ago
you can just add the solved tag Also, you can make three color gradients like that too
background-image: linear-gradient(135deg, blue, green, red);
background-image: linear-gradient(135deg, blue, green, red);
and remember that it's an image, and not a color if you ever want to use the non-shorthand version
Gashy
Gashy7mo ago
Adding onto this I think colourspaces, colour combinations and gradient settings will have an effect on the smoothness of the gradient whilst it's trying to calculate the blended colours
Gashy
Gashy7mo ago
Just a small example of what I was on about
No description