Always Dark Mode

Hi there,

I am new to Ghost (and web development in general) and I am setting up my personal blog. Right now, I am using the Liebling theme (GitHub - eddiesigner/liebling: Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼). However, I really would like the website to always display in dark mode, and would like to remove the dark mode toggle in the top right corner of the webpages as well. How might I go about accomplishing this?

Sorry in advance for my lack of background knowledge in this area!

You could copy and paste the darkmode CSS into the Code Injection > Site Header so it overrides all of the prior CSS,

and

also include in that same CSS (to hide the icon for dark/light toggle):

.m-toggle-darkmode {
display: none;
}