Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow

A beautiful minimalism theme for Obsidian.
https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow

dark-mode dark-theme light-mode light-theme obsidian obsidian-md obsidian-theme theme

Last synced: 2 days ago
JSON representation

A beautiful minimalism theme for Obsidian.

Awesome Lists containing this project

README

        

# Obsidian Theme - Mado Miniflow

---

**_NOTE: This theme is now on maintenance mode and won't be updated in the future.
You may check out [this issue](https://github.com/hydescarf/Obsidian-Theme-Mado-11/issues/21) for possible css snippet fixes past Obsidian v16.0._**

---

Mado Miniflow is a minimalism [Obsidian](https://obsidian.md/) theme, derived from the theme [Mado-11](https://github.com/hydescarf/Obsidian-Theme-Mado-11) and is inspired by the app design of [Doctave](https://www.doctave.com/).
The wave design in the background is made with https://www.shapedivider.app/

This theme aims for a very simplified and clean workflow, unlike how spacious with Mado 11 is, Mado Miniflow lets you focus easily at the center of the screen.

![](img/light-theme.png)
![](img/dark-theme.png)

Recommended fonts for this theme:
- Text: Segoe UI, Noto Sans
- Code: Fira Code

## Style Settings Available

![](img/stylesettings.png)

- Customizable theme colours, basic layout modifying, element hide-&-unhiding, and some basic markdown styling.
- To use, you need to install a community plugin called [Style Settings](https://github.com/mgmeyers/obsidian-style-settings).

## Mado CSS Classes For Fun!

Mado Heading

![](img/mado-heading.png)

```
cssclass: mado-heading
```

Mado Explorer

![](img/mado-explorer.png)

```
cssclass: mado-explorer
```

When placed onto the sidebar, it will become exactly like how File Explorer would look like. A.k.a. pseudo-File Explorer!
There are rules for this to work:

```
1. You may only use (link),

(h1 heading) and


  • (list) in the note.
    2.
    will act as first level file title.
    3.

    will act as first level folder title.
    4.


  • will act as first level folder's children, where its contents should fill with just , and itself should be placed below

    .
    5. Second level folder, or nested


  • , is not possible.
    6. For

    to be foldable, you have to enable the foldable option in the settings.
    7. To make a solo-file below a folder list, use an empty

    to act as a separator.
    ```

    Example:

    ```
    [[File 1]]
    [[File 2]]
    # Folder 1
    - [[Listed File 1]]
    - [[Listed File 2]]
    [[File 3]]
    ```





  • Mado Table

    ![](img/mado-table.png)

    ```
    cssclass: mado-table
    ```

    ```
    cssclass: mado-table (special styling)
    cssclass: mado-table-XXX (special styling with XXX being the options)
    cssclass: mado-table-XXX, mado-table-XXX (special styling with multiple options)
    ```

    ```
    Options:
    mado-table-auto (auto-widen table size by its contents and center it)
    mado-table-normal (no special styling, include this if you wish to use other options without special styling)

    mado-table-stripe, mado-table-border (stripe/border design)
    mado-table-left, mado-table-right, mado-table-top, mado-table-bottom (define table-header position)
    mado-table-topless (remove table-header position on the top)
    ```

    Mado Panel

    ![](img/mado-panel.png)

    ```
    cssclass: mado-panel
    ```

    ```
    cssclass: mado-panel (transform all lists into panels)
    cssclass: mado-panel-XXX (XXX being the options)
    cssclass: mado-panel-XXX, mado-panel-XXX (including more options, in this case, only `auto` is available as an extra)

    Options:
    mado-panel-list (long and thin size, lists can be nested)
    mado-panel-list-rightbox (the position of the checkbox in a list will be placed on the right instead of left)
    mado-panel-small, mado-panel-medium, mado-panel-large, mado-panel-long, mado-panel-short (define fixed-size, lists cannot be nested)
    mado-panel-auto (maintain the minimum fixed-size of above, while auto-widen based on its contents, not applicable to mado-panel-list)
    mado-panel-link (turns link into a full button. Must not mix with plain text inside a single list)
    ```

    Rule:

    ```
    1. Only

  • (list) will turn into panel.
    2. The list can consist of (link) or "[]"(Checkbox), or plain text.
    ```
    Callout version is also available if you need only one part of the list to become panel.
    Options in callout version can be chained directly. (Only `auto` and `link` are currently available to be chained)
    Example:

    ```
    > [!mado-panel-small-auto]
    > - Listing
    ```


  • Mado Timeline

    ![](img/mado-timeline.png)

    ```
    cssclass: mado-timeline
    ```

    Mado Daily

    ![](img/mado-daily.png)

    ```
    cssclass: mado-daily
    ```

    Feel like logging into a game to turn in for daily bonus? Well, now you can with this manual-stamp daily!
    You can set the reward for every 2nd and 5th day, and then start filling in with any value or emoji in the empty cells. The reward will mark as checked when the previous cell is filled in.
    Also, adding in another cssclass `mado-table` will give it a better looking, optional of course!

    Mado Table Check & List2Table

    ![](img/mado-table-check.png)

    Stamp a checkmark by manually using "strikethrough" (`~~~~`/``) inside the block, either on the value or beside the value!

    ```
    cssclass: mado-table-check
    ```

    Don't like manually stamping? Then try out callout `mado-list2table`! By turning a list of checklists into a pseudo-table, you can now mark a check on the block by directly clicking onto it!

    ```
    > [!mado-list2table]
    > - Title
    > - [ ] Checkboxes
    > - [ ] Checkboxes
    ```