Platform colors wont work (reanimation error) when used with transitions
Describe the bug
If you define a color in the tailwind.config.ts e.g. platformColor("systemRed") as shown [here] (https://www.nativewind.dev/customization/colors) and you have an a element that has a classname that uses a transition property you will get the following error from react-reanimated ReanimatedError: [Reanimated] Tried to synchronously call a non-worklet function 'removeListener' on the UI thread.. I understand that transitions are still experimental so I wanted to put this on your radar.
Reproduction
I cant exactly reproduce this on stackblitz as it needs to be running in an ios enviroment but I have put together a stacblitz demo here so you can better understand the code and the issue.
Expected behavior
I would expect the platform color transpiled ahead of time so it would not need to be called during the animtion in the ui thread and thus not break.
Additional context
I'm using expo 52.0.23 with nativewind 4.1.3 and react-native 0.76.5 with react 18.
Source: nativewind/nativewind