- Linear Gradient
- A CSS gradient that transitions colors along a straight line at a specified angle or direction, such as linear-gradient(to right, #ff0000, #0000ff).
- Radial Gradient
- A CSS gradient that emanates outward from a center point as a circle or ellipse, transitioning through specified color stops from inside to outside.
- Conic Gradient
- A CSS gradient where color transitions sweep around a center point like clock hands, making it suited for pie charts, color wheels, and angular patterns.
- Color Stop
- An individual color value at a specific position within a gradient, defined as a color plus an optional length or percentage that determines where the color peaks.
- Gradient Angle
- The direction of a linear gradient specified in degrees, measured clockwise from the top. 0deg is upward, 90deg is rightward, and 180deg is downward.
- Mesh Gradient
- A complex multi-point gradient effect where colors blend from several anchor points simultaneously. Approximated in CSS by layering multiple semi-transparent radial gradients.