I want to put the color from a defined string flag
grey_flag = 1
fig_color = "white"
if grey_flag == 1
fig_color = "#f5f0f5"
end
f = Figure(backgroundcolor = :fig_color)
It throws an error as it attempts to see fig_color from the default colors of the package.
How can i achieve this?