HermanMartinus / bearblog

Free, no-nonsense, super fast blogging.
MIT License
2.36k stars 73 forks source link

Dark mode turn off #270

Closed jsiddharth24 closed 5 months ago

jsiddharth24 commented 5 months ago

Hey Herman,

Love the simplicity of the blog. A few questions from my side.

  1. How can we turn the dark mode off using CSS?
  2. How can you hide the dates?
  3. How can you change the font for the landing page title
HermanMartinus commented 5 months ago

Glad you love the project :)

These are all done in Themes in the CSS editor. You can remove the entire @media query with prefers-color-scheme-dark to remove dark mode for everyone, regardless of what their system settings are.

You can hide the dates by setting

time {
    display: none;
}

And you can also set the font in the CSS editor by modifying the main and secondary font in the :root section at the top of the CSS.