You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using Recursive font for latest theme's main body and code text.
If you want to revert back to the old styles, you can almost do that:
Use body { font-family: var(--font-family-old); } for body text
And h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-header-old); } for the headers
Copy monokai.less and add as :root { } styles
Paste in the Manage Note Types -> APF: ... -> Cards ... -> Styling (at the bottom)
Do the same for all Anki Programming Flashcards (APF) card note types!
Or if you're using the compiler in a forked version just change the variables for the text, and:
@import '../variables/monokai'; in style/base/html/_root.less
Comment out breezedark-modified)
The original Breeze Dark theme
There's also a breezedark.less file that Pandoc uses if you want to use that instead. The modified version is better overall, in my opinion. Just copy the variables in that file and add in :root { } as above with Monokai.
The text was updated successfully, but these errors were encountered:
body { font-family: var(--font-family-old); }
for body texth1, h2, h3, h4, h5, h6 { font-family: var(--font-family-header-old); }
for the headersmonokai.less
and add as:root { }
stylesManage Note Types -> APF: ... -> Cards ... -> Styling
(at the bottom)Anki Programming Flashcards (APF)
card note types!Or if you're using the compiler in a forked version just change the variables for the text, and:
@import '../variables/monokai';
instyle/base/html/_root.less
breezedark-modified
)The original Breeze Dark theme
There's also a
breezedark.less
file that Pandoc uses if you want to use that instead. The modified version is better overall, in my opinion. Just copy the variables in that file and add in:root { }
as above with Monokai.The text was updated successfully, but these errors were encountered: