0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-11 01:20:16 -05:00
penpot-exporter-figma-plugin/src/plugin/translators/translateSolidFill.ts

10 lines
271 B
TypeScript
Raw Normal View History

import { Fill } from '../../ui/lib/types/utils/fill';
2024-04-08 10:50:01 -05:00
import { rgbToHex } from '../utils';
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
};
};