How can I change the font?

I would like to change the font throughout RemNote, i.e. the general interface, within the editor, queue etc. All of it. Have no idea how to do it by myself, so I would like to ask you all :slight_smile:
I want to change it to Inter, or Nunito Sans.

Thank you in advance for your help!

1 Like
.rem-text,
.rem-text.rem-header--1,
.rem-text.rem-header--2,
.rem-text.rem-header--3,
#document-sidebar .RichTextViewer {
	font-family: 'Nunito Sans', sans-serif; /* change here! but you have to import font first using @import method */
}
2 Likes

Thank you! :star_struck:
This worked to change the font within the editor as I expected. I was hoping to also change the font of everything in the sidebar as well, is there a way to do that?

1 Like

My pleasure! I updated. check the snip again.

The second selector will change the queue font (it is actually Inter by default, but you can obviously pick your own).

1 Like

right :man_facepalming:I changed the scope!