Toggle Sidebar B
Light & dark mode D

RadialGradient

Radial gradient radiating from a center point

Radial gradient radiating from a center point

Props

PropTypeDefaultDescription
colorAcolor#ff0000The starting color at the center of the gradient
colorBcolor#0000ffThe ending color at the edge of the gradient
centerposition{"x":0.5,"y":0.5}The center point of the radial gradient
radiusrange1The radius of the gradient (normalized, 0.0-1.0)
repeatrange1Number of times the gradient repeats. Values above 1 create concentric rings.
aspectrange1Stretches the gradient into an ellipse. Values below 1 compress vertically, above 1 compress horizontally.
skewAnglerange0Rotates the ellipse axis in degrees. Only visible when Aspect is not 1.
colorSpace"linear" | "oklch" | "oklab" | "hsl" | "hsv" | "lch"linearColor space for color interpolation

Usage

vue
<Shader>
  <RadialGradient
    :radius="1"
  />
</Shader>