I can’t seem to get Sass variables to work, it always displays as Array.
Here’s what I’m using in my template
<Set sass=color type=raw><Field show_color_1 type=raw /></Set>
Here’s what I’m using in the style tab:
body {
background: $color;
}
I developer’s console I just get:
body {
background: Array;
}
If I leave the “type” out of the variable I get:
body {
background: "Array";
}
The field I'm using is an ACF color picker but I've tried just passing a plain text field with the same result.