mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { rgbToHex } from '@plugin/utils';
|
|
|
|
import { Fill } from '@ui/lib/types/utils/fill';
|
|
|
|
export const translateSolidFill = (fill: SolidPaint): Fill => {
|
|
return {
|
|
fillColor: rgbToHex(fill.color),
|
|
fillOpacity: fill.visible === false ? 0 : fill.opacity
|
|
};
|
|
};
|