Zeronoise Theme

12946 views 26 replies Created 2020-12-01 00:21
:discourse2: Summary Zeronoise focusses on having clear color accents and subtly differentiated content areas trying to create a pleasant reading experience.
๐Ÿ‘“ Preview Preview on Discourse Theme Creator
๐Ÿ› ๏ธ Repository Link https://github.com/discourse/zeronoise
๐Ÿ“– New to Discourse Themes? Beginnerโ€™s guide to using Discourse Themes

Install this theme

Features

Hello Meta! Iโ€™ve built a theme for discourse focusing on having clear color accents and subtly differentiated content areas trying to create a pleasant reading experience.

In the desktop version I also moved the topic creator avatar to the left side of the title In order to give it a higher hierarchy in the design.

It was also fun to play with serif fonts and in the end โ€œPlayfair Displayโ€ really gives a character (hehe) to the theme.

Another fun thing is that, since the theme header is black, you can play with some aspects of the logo through Theme Settings (color inversion, hue rotation and brightness).

I hope you enjoy it, use it and fork it ๐Ÿ’ฏ!

Settings

Name Description
logo invert colors
logo hue rotation Specify a value in degrees to change the color of your logo. If you donโ€™t know what this is you could leave it in 0 or google โ€˜css filter hue rotationโ€™
logo brightness Set the amount of brightness you want to add to your logo (if you want to make it darker, set a negative number)

Credits

Created by @ruidovisual


:discourse2: Hosted by us? Themes are available to use on our Standard, Business, and Enterprise plans.

Last edited by @JammyDodger 2024-06-17T13:43:50Z

Check documentPerform check on document:

Wow! Beautiful theme! Many of the elements should honestly be baked into Material Theme, but both themes are awesome. Great job! ๐Ÿ‘

This theme actually looks good. Will definitely try this on my website.

Honestly this is one of the best looking themes I have found! Thank you so much ๐Ÿ™‚

I just need one help, if itโ€™s not too much trouble @ruidovisual ๐Ÿ™‚

  • I am a complete noob with all this, so forgive my naivety. I have managed to fork your file and change the colour themes. I need to change the font and I see I can do that by importing my own font family inside the variable SCSS?
  • What I am not able to figure is how to set two different fonts, one for the titles, headers etc., and the other for the body.

It will be so great if you could help me out here, I know this might be totally out of scope but it would certainly help a lot ๐Ÿ™‚

Hey Karthikk! Iโ€™m glad you like the theme : )

The easiest way would be to define a font-family for the body (I think doing it in common.scss would be the best):

body {
  font-family: 'The Name of your Font Family', [FALLBACKS];
} 

I donโ€™t know if you are adding your own fonts or picking up some google fonts, but, I would advise that you pick a family from the google catalog.

Remember to replace [FALLBACKS] with your fallbacks depending on what type of font youโ€™ve chosen, you can see more on font-family fallbacks here

About changing the font for titles and headers, I think thatโ€™s the part that you already figured out, but as a reminder, besides from importing it you need to declare it in the line 116 of variables.scss

Hope it helps! have a nice weekend : )

You mean a custom component for the theme? in this case the answer is no. Itโ€™s there with position: fixed See line 36 of mobile.scss

Have a nice weekend and thank you for your patience : )

Very nice theme! I canโ€™t wait building a new theme for our discourse based upon zeronoise.
Thank you for sharing!

excellent theme. high on my personal like list. ๐Ÿ™‚

would be even more interesting if font could be optionally same as whatever was chosen in the wizard.

Hi @ruidovisual ,

I like your Theme a lot.

Is it possible to change the purple color to red? Can you release a red version of your theme?

I tried it myself but after that I lost the Theme effects and it wasnโ€™t red. ๐Ÿ˜

@ruidovisual Thanks for the explanation, I have figure out how to change the fonts, thanks to you!

I am now playing around with my own light and dark version of the theme. I am using the Color Palettes to achieve this, as I wish to stay away from CSS as much as possible.

I have managed to tweak almost everything except these two elements :

  1. The status bar below the post has a special effect in your theme and I am not able to control it with the Color Palette. How do I tweak this using CSS? Which part do I target?

  2. The bar on top of all topics in the separate category view stays white no matter what colour I set in the palette

Would be great if you could help me with these ๐Ÿ™‚

P.S. This is my Color Palette for your reference :

Great theme.

One question, has anyone been able to make it work with โ€œBox-typeโ€ Categories? They just get random shapes and the text remains white.

This is extremely clean and modern. The community makes the best themes ever!

Hi,This theme looks great
However, there seems to be some problems with the style in the Chinese forum.

zeronoise theme

default theme

Probably a formatting issue with Chinese characters

First of all, thank you very much for this beautiful theme @ruidovisual . I have been using it for my community forum for almost 2 months now.

I have one question. Is it possible to remove the navigation dropdown on mobile?

Thanks in advance.

Thanks for this theme, loving it so far! One of the most pleasant discourse-styles I have yet seen ๐Ÿ™‚

Only one issue: When performing mass operations in a category, the checkboxes do not appear, thus I canโ€™t select multiple topics. This is really bugging me and I am unable to regularly use the theme, due to this issue. Could this be fixed? <3

This does not have anything to do with Chinese characters, it is an issue with the category style โ€œboxโ€ setting.

afbeelding

.badge {
  &-category-bg,  /* <------ bad!! */
  &-wrapper.bullet &-category-parent-bg,
  &-wrapper.bullet &-category-parent-bg + &-category-bg {
    border-radius: 50%;
    width: 9px;
  }

To resolve this, apply this as a theme component

.badge {
  &-wrapper.bar &-category-bg,
  &-wrapper.bar &-category-parent-bg,
  &-wrapper.bar &-category-parent-bg + &-category-bg {
     border-radius: 0%;
  }
  &-wrapper.box &-category-bg,
  &-wrapper.box &-category-parent-bg,
  &-wrapper.box &-category-parent-bg + &-category-bg {
    border-radius: 0%;
    width: 100%;
  }
}

Love the theme butโ€ฆ ๐Ÿ˜‰

Could you help me or fix this print view as itโ€™s not usable:

  • title should be small
  • the border with shadow should not be visible

Also the topic selection doesnโ€™t work

CleanShot 2022-11-20 at 00.12.18

Also, how can I globally change the font to this theme ?

Very impressive, thank you very much.

Will deploy now, hopefully more to contribute soon ๐Ÿ™‚

Is it correct that using this (any) theme disables theme components?

I have the table builder theme component installed, but when I use zeronoise it seems to be disabled.

Thanks!

You would need to attach the theme component to each theme from the componentโ€™s setting page. ๐Ÿ‘

Thank you, I did not know that. Pardon the ignorance

EDIT: thank you @JammyDodger that worked

Hi there all,

I have another question:

How can I hide the shadows / paper moving over background

I understand that this goes against the idea of the theme, I just want to have a look.

Thanks,
Bastiaan

This theme looks nice and easy on the eyes. I have suggested this onto the forum that i usually use.

Is it true that on mobile it looks like this?

I have this on two different setups with 2 different color themes

My absolute favorite theme Iโ€™ve found but this and many other themes Iโ€™ve tried have this weird red issue in mobile please help me fix it! ๐Ÿ™