- How do I make a CSS gradient?
- Pick two or three colors, choose linear, radial or conic, set the angle, and copy the output. The generator writes both lines you want in production: a background-color as the fallback, then the background-image with the gradient, ready to paste into any stylesheet.
- What does the smooth blend option do?
- A browser blends between two stops in straight RGB, and between distant hues that path cuts through a grey dead zone in the middle. Smooth blend replaces the two-stop gradient with a dozen computed stops that walk the shortest way around the color wheel instead, so the middle of the run stays as alive as the ends.
- What is the difference between linear, radial and conic gradients?
- Linear runs the colors along a straight line at your chosen angle. Radial grows them outward from the center in rings. Conic sweeps them around the center like a clock hand, which is the one to reach for when you want a color wheel effect or a pie-chart look from pure CSS.
- Why does the output include a background-color line?
- It is the fallback: anything that cannot paint the gradient, an old email client, a print stylesheet, a browser mid-load, shows the first stop as a flat color instead of nothing. One extra line is cheap insurance for text that must stay readable on the background you meant.
- Can I share a gradient I made?
- Yes. The address bar tracks the gradient as you build it, so copying the link is enough, and Copy link puts it on your clipboard. Anyone opening it sees the same colors, angle and settings, and the space bar deals a fresh one when you want to start over.
- What is a gradient scale?
- The same blend expressed as a ladder of solid colors rather than one continuous image: every step the gradient passes through, each with its own hex. The blend-as-steps section below the output shows exactly that, and copies as CSS custom properties, which is how a design system stores the tints between two brand colors.