created | modified |
---|---|
2024-12-11 14:29:08 UTC |
2024-12-12 11:45:42 UTC |
Reference: Minimal Documentation > Get started
Open in Obsidian or follow the steps below:
- Open Obsidian Settings
- Go to
Appearance
and clickManage
- Search for Minimal and click
Install and use
Open in Obsidian or follow the steps below:
- Go to
Community Plugins
and turn offSafe mode
- Search for Minimal Theme Settings and click
Install
, thenEnable
- Style Settings allows you to create custom Color schemes and tweak Minimal with more fine-grained control.
- Hider hides UI elements such as window frame, scrollbars, tooltips, etc.
One of the issues for me, personally, after applying the Minimal theme in Obsidian is the reduced sizes of headings. This makes it difficult for me to easily distinguish the various levels of headings, as illustrated in the screenshot below:
Consequently, I customize the heading colors using CSS snippets. With just a little bit of CSS, the various heading levels now appear in different colors:
body {
--h1-color: var(--color-purple);
--h2-color: var(--color-blue);
--h3-color: var(--color-green);
--h4-color: var(--color-yellow);
--h5-color: var(--color-orange);
--h6-color: var(--color-red);
}
Note: The CSS rules use extended color variables in order to support both light and dark modes.