I got bored today, so I made a silly little simple Flarum theme!
It uses Comic Sans, but I don't think it looks too bad, actually! Here's the CSS:
@config-primary-color: #4286f4;
@config-colored-header: true;
@body-bg: #fafafa;
@border-radius: 14px;
body{font-family:Comic Sans MS,Comic Sans,ComicSans,cursive}
.IndexPage-newDiscussion {
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
color: #fff;
background-size: 1800% 1800%;
-webkit-animation: rainbow 15s ease infinite;
-z-animation: rainbow 15s ease infinite;
-o-animation: rainbow 15s ease infinite;
animation: rainbow 15s ease infinite;
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
You can see it in action at https://vanillify.freeflarum.com, I guess..