Then you just need to follow what is (not perfectly) explained in the documentation (in particular the notice) :
To make it easy to integrate a light/dark theme later, what you can do is comment out the @media (prefers-color-scheme: dark) {(don’t foget to comment the close bracket) and add dark class on body, .ios body and .md body that are inside this media.
If you removed the :root part then you can just comment/remove the media and you don’t need to add the dark class in both index.html and variables.scss. But I personnally like the fact that currently it act like I’m forcing the dark mode (and not remplacing the light one by the dark one) and if I remove the class dark in the index.html then it’ll be light mode again (+ <meta color-scheme /> to modify)
For UX purposes, I would still highly recommend you have a light theme as an option. We thought dark theme would be our default in our app. When we noticed our users were using it in bright daylight, the light mode was the preferred option for better contrast in broad daylight. Something to think about.