Robert Birming

Bear Halloween Theme

Bear Halloween Theme

Get ready to dive into the spookiest, creepiest, and most fun time of the year! Transform your blog into a haunted house of Halloween thrills with just a few lines of code.

In your Bear dashboard, select the "Themes" menu option.

To retain your existing color scheme, add this code at the very top of your theme:

@import url("https://fonts.bunny.net/css2?family=Henny+Penny&family=Nosifer&display=swap");
h1, h2, h3, h4, h5, h6 {
  font-family: "Nosifer", sans-serif !important;
}
a {
  font-family: "Henny Penny", system-ui !important;
}
.title h1::after {
  margin-left: 5px;
  content: "👻";
}

If you're feeling adventurous and want to go all-in with a black and red color scheme, use this code instead:
@import url("https://fonts.bunny.net/css2?family=Henny+Penny&family=Nosifer&display=swap");
body {
  color: white !important;
  background-color: black !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Nosifer", sans-serif !important;
  color: red !important;
}
a {
  font-family: "Henny Penny", system-ui !important;
  color: red !important;
}
.title h1::after {
  margin-left: 5px;
  content: "👻";
}

That's it! Your blog is now ready for Halloween. 🎃👻

PS. The result will naturally vary depending on your particular blog theme, but it should look quite decent in most cases.