Currently, I have a tag with a fixed color value:
<p style={{ color: '#646464' }}>
Instead of hard-coding the color, I want to utilize a LESS variable that I have set up, known as @tertiary-col
. However, when I try using this variable like so:
<p style={{ color: '@tertiary-col' }}>
, it doesn't work as expected.