0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00

fix blend modes translation (#71)

This commit is contained in:
Alex Sánchez 2024-04-26 08:11:52 +02:00 committed by GitHub
parent e42ff510aa
commit 3dec0a4520
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"penpot-exporter": patch
---
Fix blend mode 'color' translation

View file

@ -1,4 +1,5 @@
import { import {
BLEND_MODE_COLOR,
BLEND_MODE_COLOR_BURN, BLEND_MODE_COLOR_BURN,
BLEND_MODE_COLOR_DODGE, BLEND_MODE_COLOR_DODGE,
BLEND_MODE_DARKEN, BLEND_MODE_DARKEN,
@ -50,7 +51,7 @@ export const translateUiBlendMode = (blendMode?: BlendMode): BlendMode | undefin
case 'saturation': case 'saturation':
return BLEND_MODE_SATURATION; return BLEND_MODE_SATURATION;
case 'color': case 'color':
return BLEND_MODE_COLOR_BURN; return BLEND_MODE_COLOR;
case 'luminosity': case 'luminosity':
return BLEND_MODE_LUMINOSITY; return BLEND_MODE_LUMINOSITY;
default: default: