Why is custom CSS an important feature for you?

For me, I couldn't stand the gray on white text color in the editor, and wanted a way to force it to black on white

3 Likes

for the most part, i use it to change the colors to make it more legible for me which seems like a subjective thing (i see most people prefer dark themes). it's nice to have a way to customize the app to even make very small changes like changing the color for ==highlighted text==.

i had emoji display problems. i think it's because i'm using a relatively older version of windows (8). i was able to solve this issue by myself by adding some emoji friendly fonts to the font list. i'm not sure if there was no way to edit the css, that it would be practical for developers to spend time on this small issue.. which probably only few people have.

2 Likes

this is a pretty late reply and in case you are still looking for the CSS selectors to style the elements in Joplin:

#react-root .CodeMirror-scroll {
    background: #292929;
}

#react-root .folders div {
    background: darkslategray;
}

#react-root .folders div:hover {
    background: tomato;
}

#react-root .list-item-container.list-item-depth-0 {
    background: #292929;
}
1 Like