0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-23 06:04:01 -05:00
penpot-exporter-figma-plugin/plugin-src/translators/translateSolidFill.ts

11 lines
272 B
TypeScript
Raw Normal View History

import { rgbToHex } from '@plugin/utils';
import { Fill } from '@ui/lib/types/utils/fill';
2024-04-08 10:50:01 -05:00
2024-04-10 06:43:44 -05:00
export const translateSolidFill = (fill: SolidPaint): Fill => {
2024-04-08 10:50:01 -05:00
return {
fillColor: rgbToHex(fill.color),
fillOpacity: fill.visible === false ? 0 : fill.opacity
};
};