I came across an issue with transforming transparent values. Or maybe this is just me doing something wrong. I am not quite sure, so this might be a problem on the implementation level on my end. Maybe you would be able to help me out.
Let's say what I am getting in my JSON file is something like:
"foo": {
"background": {
"value": "#FFFFFF00", <- this is transparent
"type": "color"
}
}
In my config I am defining some specific things to be able to export it for one of the platforms
What I would expect is that specifying color/hex8 would allow me to keep the transparency definition - in that case #FFFFFF00, but it is unfortunately not working for me, and what I get in my output is:
"FooBackground": {
"light": "#ffffffff",
...
}
Maybe someone came across similar problem?
Thanks a lot for any help!
Hey there!
I came across an issue with transforming transparent values. Or maybe this is just me doing something wrong. I am not quite sure, so this might be a problem on the implementation level on my end. Maybe you would be able to help me out.
Let's say what I am getting in my JSON file is something like:
In my config I am defining some specific things to be able to export it for one of the platforms
and here I have my definition of the transform group:
What I would expect is that specifying
color/hex8
would allow me to keep the transparency definition - in that case#FFFFFF00
, but it is unfortunately not working for me, and what I get in my output is:Maybe someone came across similar problem? Thanks a lot for any help!