OK, here's my issue:
I'm trying to apply some styles (colors) to my existing controls, e.g. set the Foreground of a Button.
To achieve this, I'm using "Static Resources", e.g. Foreground="{StaticResource PhoneSubtleBrush}". So, no matter what the Theme is (Dark or Light) the correct colours is being chosen.
Now, what if I want to define a custom style, not already included in the Static Resources? What if - let's say - I want a specific Button to appear with a Red background (on Dark mode) and with a Blue background (on Light mode) ?
How can I do that?