Skip to main content

Color Value Type

Color type is an union of two subtypes: Solid color or Gradient color.

Solid color

{
isGradient: false,
color: string
}

Gradient color

{
isGradient: true,
gradientType: "linear" | "radial",
degree: number,
colorStops: {
step: number,
color: string
}[]
}