insanum / obsidian_nord

A nord theme for Obsidian
MIT License
236 stars 62 forks source link

Applying theme font does not change #19

Closed ghost closed 2 years ago

ghost commented 3 years ago

I have a fresh install of Obisdian and when I apply this theme (Obsidian nord) my writing font does not change to reflect what is in the theme (in edit mode) - which looks like Source Code Pro from the screenshot. When I try the Obisdian gruvbox theme all the fonts are changed and work.

Is there something missing that might be causing this?

shelbyspees commented 3 years ago

I just ran into this too. I looked at the css in the gruvbox theme and found this snippet setting the CodeMirror font-family:

https://github.com/insanum/obsidian_gruvbox/blob/master/obsidian.css#L261-L267

I isolated it down to this:

.CodeMirror-code {
    font-family: var(--font-monospace);
}

@aluciani as a workaround to use the monospace font in the editor for your local theme, create a css file with that snippet under {vault}/.obsidian/snippets/.

I'd like to open a PR with the fix as well if I can get to it this week.

ghost commented 3 years ago

Thank you @shelbyspees for helping out, really appreciate it :)

insanum commented 2 years ago

Fixed.