Minimal Theme

Minimal is an Obsidian theme meticulously designed to feel native on desktop, mobile and tablet. You can customize colors, fonts and more with the companion plugins Minimal Theme Settings and Hider. :sparkles:Winner of Obsidian’s official Best Theme award!

Minimal and my plugins are offered as pay what you want software. If you enjoy using them, consider supporting my work via Patreon, Buy me a coffee or following me @kepano on Twitter.

image

Installing Minimal

To get the best experience I recommend installing all three of the latest versions:

  • Minimal Theme, available in community themes.
  • Minimal Theme Settings plugin, available in third-party plugins. Allows you to customize fonts, colors, and more details of the Minimal Theme.
  • Hider plugin, available in third-party plugins. Allows you to selectively hide parts of the Obsidian interface. (Also compatible with other themes)

Goals

  • Simplify the Obsidian UI for a more focused editing experience
  • Create a native look and feel on MacOS, iOS and iPadOS
  • Make colors, fonts, and display features customizable

Features

The following features can be toggled on/off using Minimal Theme Settings plugin:

  • Background styles — multiple levels of contrast for light and dark mode, including True Black for OLED devices
  • Focus mode — hides everything but the text sidebars are collapsed
  • Fancy cursor — uses accent color for the cursor
  • Hide sidebar borders
  • Trim filenames
  • Relationship lines
  • Use system default cursor for UI elements

Other enhancements

  • When using Hider to turn off menu ribbon, it can be accessed by hovering over the bottom left edge of the window
  • Click + hold to zoom in on images
  • Use #invert to invert images in dark mode, e.g. ![[image.jpeg#invert]]

Plugin support

Gallery



55 Likes

The theme has been updated with a few options that you can toggle on/off at the top of the file. I personally have all of these turned off, but I can imagine some folks wanting them.

  • Status bar
  • Tooltips
  • Scroll bars
  • File matches
  • Root name
3 Likes

I’m really digging this. Thank you!

Hello. Love the theme! I have noticed some minor issues regarding bullets.

When I create double line breaks between bullets, they work fine on edit mode but on preview, the paragraph is no longer in the same line as the bullet. Here’s what I mean:

Edit mode:
Screen Shot 2020-07-27 at 6.25.31 PM

Preview:
Screen Shot 2020-07-27 at 6.25.21 PM

Another issue in preview is that when a number list is below a bullet, a bullet appears in front of the numbers.

Screen Shot 2020-07-28 at 4.41.19 PM

But the bullet doesn’t appear when there’s no bullet list
Screen Shot 2020-07-28 at 10.56.45 AM
Screen Shot 2020-07-28 at 4.38.56 PM

2 Likes

@3mbry0 — thanks I’ll address these shortly. If it’s an immediate problem for you, you can comment out the section called “Lists” from the CSS and it should work again for you.

1 Like

Is there a way to re-enable the “link” button in Unlinked Mentions?

Love the theme! The focus mode is great.

When I go to bold something (with “**”), the bold doesn’t show up in the preview or editor mode. Is there a way to fix this?

@jellyfish What OS do you use? Bold is currently set to 500 instead of 600. It’s possible that your OS doesn’t have a 500 weight font installed. Try downloading the latest version of the theme. I’ve added a setting that allows you to change the weight from 500 to 600.

1 Like

Yes, you will need to remove the “File matches” rules at the top of the CSS settings in the “Disabled features” section.

This theme looks very familiar in dark mode. I can’t quite place what it reminds me of, but it is very daring of you to make the creative choices you did. I can tell that, as a designer, you’re a regular fireball!

This should be fixed in the latest version!

1 Like

Hah! I just added a special feature just for you. You can now easily change the colors of the theme using HSL!

Go to the top of the file and try changing the color values to these:

--color: 210, 10%;
--d: 32%;

3 Likes

Made for the Minimal theme: a Keyboard Maestro macro to enable/disable a zen/focus mode: Zen/focus mode with automation

2 Likes

That’s quite a clever solution to toggle modes! This and the Pisum theme’s ability to use Andy mode in the light version are both ingenious in their own ways. The mode switching to toggle seems quicker since it works with a hotkey in Obsidian and requires no 3rd party app. But your solution seems more flexible. In fact, I think it can be extended to even switch themes entirely by picking a random one from a folder full of Obsidian.css files. Imagine having a new theme everyday! That or different colours for each day of the week. The possibilities seem endless. Thanks for sharing!

Oh, totally. You can extend the pattern I set up (append CSS to enable and find-and-replace CSS to disable) to create ways of turning on and off a variety of CSS only features. I’ll do Andy Mode next.

I like the light/dark toggle hack though… clever.

Various improvements have been made to the theme which you can grab from the Github repo, or now directly from the Community Themes in Obsidian Settings.

  • Most of the theme colors including accent color for links are now driven by a few HSL values that you can customize meaning that the backgrounds, borders, and various shades are automatically generated for you.
  • Better documentation of options (see top of the CSS file)
  • Small fixes for 0.8.2
  • Various fixes to issues with bulleted and numbered lists
4 Likes

It’s my favorite dark theme. I want to change the font to Courier Prime, but I don’t know how to do it in the css file. Could you help me?

On Mac:

After you have installed the font into Font Book, open the obsidian.css file in Text Edit and change the font-family:

body, input, button, .cm-s-obsidian .cm-formatting-hashtag, .cm-s-obsidian {
font-family: "Courier Prime" !important;
letter-spacing:0.02rem;
font-size:var(--font-normal);
-webkit-font-smoothing:subpixel-antialiased !important;

Save and it should change to the correct font.

3 Likes

I really love this theme! It is both useful and nice-looking, but I haven’t been able to tweak a couple of typographical things that I always change in my custom CSS. I hope I don’t come across as being overly picky, I’m honestly trying to learn how Obsidian theming works and Minimal is my favorite one so far.

How can I set a different font for the Edit mode only?

EDIT: I figured this one out. The usual CSS I would add at the end of the file was this:

.markdown-source-view {
   font-family: 'IBM Plex Mono', monospace;
}

It worked on the default theme and on some other themes I’ve tried, but it wasn’t working with Minimal. The right way to target the source view was this:

.cm-s-obsidian {
   font-family: 'IBM Plex Mono', monospace !important;
}

The !important needs to be there because the theme already uses it for setting the general font for the whole interface, so it won’t override it unless you set this font-family property to !important as well.


How to enable contextual alternates when using Obsidian’s default font?

On the other hand, I’d also like to make Minimal work with Inter, which is Obsidian’s default font, but I can’t seem to enable the contextual alternates feature. An example of a contextual alternative is when the software changes a hyphen and a greater-than sign -> into a beautiful -> arrow glyph. This is enabled by default in Obsidian, and it even works right here in the forum, but when I edit Minimal’s CSS in order to use Inter by using --text:"Inter"; the contextual alternatives stop working.

This OpenType feature is supposed to be enabled by default in CSS, but I nonetheless tried specifying it with:

html {
    font-variant-ligatures: contextual;
    -moz-font-feature-settings: "calt";
    -webkit-font-feature-settings: "calt";
    font-feature-settings: "calt";
}

But it isn’t working. I’m not sure if this can be easily done, but I’d love to hear from the developers of the theme to see if they have an idea of why this happens, since I can’t find anything in the theme’s CSS that could be overriding the contextual alternatives feature.

Sorry again for getting so hung up on nerdy typographical features, but I’m a typography student and I obsess over these kind of things. Still, this is my favorite Obsidian theme! It’s really helped me focus on my writing, while making Obsidian look beautiful in the process.

1 Like

Thank you!