Hello,
I am trying to make a simple GUI using Makie.jl.
I would like to allow users to change themes by pressing a button.
I found that the following code doesn’t work:
set_theme!(theme_light())
while that snippet works:
figure.scene.backgroundcolor[] = styles.darkmode.background
The problem with the second version is that I don’t really know which properties should be updated and I would really appreciate the first approach working in the statefull app (Figure is stored in memory).
Thanks in advance!