mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-23 06:04:01 -05:00
3118d36f0a
* refactor * changeset * fixes
24 lines
693 B
TypeScript
24 lines
693 B
TypeScript
import { calculateRadialGradient, rgbToHex } from '@plugin/utils';
|
|
|
|
import { Fill } from '@ui/lib/types/utils/fill';
|
|
|
|
export const translateGradientRadialFill = (fill: GradientPaint): Fill => {
|
|
const points = calculateRadialGradient(fill.gradientTransform);
|
|
|
|
return {
|
|
fillColorGradient: {
|
|
type: 'radial',
|
|
startX: points.start[0],
|
|
startY: points.start[1],
|
|
endX: points.end[0],
|
|
endY: points.end[1],
|
|
width: 1,
|
|
stops: fill.gradientStops.map(stop => ({
|
|
color: rgbToHex(stop.color),
|
|
offset: stop.position,
|
|
opacity: stop.color.a * (fill.opacity ?? 1)
|
|
}))
|
|
},
|
|
fillOpacity: !fill.visible ? 0 : fill.opacity
|
|
};
|
|
};
|