How do I set the daisy-ui theme in a phoenix (--no-live) project? I tried adding to the html tag in the root.html.heex by changing it to <html lang="en" data-theme="cupcake">. But with `checkbox-primary` it does not pick up the primary color of the cupcake theme (it remains the default orange). I also tried adding a script tag after all the script tags in root.html.heex with the following content. But that does not help either.
Thank you.
<script>
localStorage.setItem("phx:theme", "cupcake");
document.documentElement.setAttribute("data-theme", "cupcake");
</script>






















