Dracula-for-Obsidian.md
Dracula-for-Obsidian.md copied to clipboard
Accessibility: font size is not able to be changed
If you're reporting an UI issue, make sure you take a screenshot that shows the actual bug.
This theme is lovely! Except for one thing: the theme takes over font size such that it is no longer changeable. This is a showstopper for me, and probably for other people out there with poor eyesight (I need a larger font size than Dracula provides).
It was a bit tough for me to find a way to take a good screenshot showing this. I included a picture of a note, then two pictures of the Settings > Appearance menu--once with font size maximized, and once minimized.
Same here for me. Loved the theme, but not being able to adjust the fonts is a showstopper.
I'm having the same issue, I do love the colors of this theme! Great to look at
My guess is that the section starting here is the culprit. I have very little CSS experience, but I'd think that changing the font size values from absolute (pixels) to relative (em?) might fix it. I'll experiment and submit a patch when I have the time which.... might not be for a long time--pretty busy right now.
Didn't work, at least not the way I did it. Sorry y'all, I just don't know enough about CSS, HTML, etc
So the recent Obsidian Update has made the fonts for the headers too big. It takes up all of my screen and I'm not able to zoom out.
Same here. The theme is awesome tho
Didn't work, at least not the way I did it. Sorry y'all, I just don't know enough about CSS, HTML, etc
Here is a fix to bring down the global font size:
:root
{
--font-size-normal: 15px;
--font-size-code: 16px;
--font-size-side-dock: 16px;
--font-size-side-dock-title: 18px;
--font-size-status-bar: 16px;
--font-size-h1: 20px;
--font-size-h2: 19px;
--font-size-h3: 18px;
--font-size-h4: 17px;
--font-size-h5: 16px;
--font-size-h6: 15px;
--font-family-editor: Avenir, Avenir Next, sans-serif;
--font-family-preview: Avenir, Avenir Next, sans-serif;
}
I like this theme, but this problem is a fatal ~