I am working with 2 color pickers, one for background and one for text.
These are connected to the styles of a button
<button :style="`background-color: ${bg_colour}; color: ${text_colour};`">TEST BUTTON</button>
Everything is functioning well.
I am looking to interchange these variables when the button is hovered over or active. Meaning, the background color would switch to become the text color, and vice versa.
Do you have any suggestions? Is this even feasible?
Thank you in advance!