chonnz206 downloadsA full Notion-style visual overhaul for Obsidian — typography, code blocks, callouts, tables and more, with light/dark mode support.
A full Notion visual overhaul for Obsidian. Every part of the interface — typography, sidebar, code blocks, callouts, tables, and interactive elements — is redesigned to match Notion's clean, minimal aesthetic. Supports light and dark mode, and is optimized for both desktop and mobile.
light theme:

dark theme:

-apple-system, BlinkMacSystemFont, Segoe UI, with full CJK coverage: Simplified Chinese (Microsoft YaHei, Noto Sans SC), Traditional Chinese (Microsoft JhengHei, Noto Sans TC), Japanese (Meiryo, Yu Gothic, Noto Sans JP), Korean (Malgun Gothic, Noto Sans KR)1.875em → H6 0.875em), bold weights, and tight letter-spacing on H1/H2-webkit-font-smoothing: subpixel-antialiased#eb5757 light / #ff7b72 dark), compact border radiusSFMono-Regular, Menlo, Consolas fallback stackrgba(135, 131, 120, 0.07)) in light mode and #232829 in dark modeFive color families with colored left border, tinted background, and styled title:
| Family | Keywords | Color |
|---|---|---|
| Info | info, note |
Blue |
| Tip | tip, success, abstract, check, done |
Green |
| Warning | warning, caution, attention, question, help, faq |
Yellow |
| Danger | danger, error, bug, failure, fail, missing |
Red |
| Quote | quote, cite, example |
Gray |
Collapsible callouts ([!note]-) are supported with a smooth fold animation.
●, ◦, ▪)---) — thin, low-contrast separatorFully styled dark theme using Notion's latest dark palette:
#191919)rgba(255,255,255,0.81) → 0.50 → 0.35Via Community Themes (recommended)
Settings → AppearanceManage → Browse Community ThemesManual installation
theme.css from this repository.obsidian/themes/Notion Style/ folder (create the folder if it doesn't exist)Settings → Appearance → select Notion StyleRecommended Settings
Settings → AppearanceAccent color→ Input rgb(37, 131, 226)Use the following Markdown syntax to create Notion-style callout blocks:
> [!info] Information
> A blue callout for general notes and explanations.
> [!tip] Tip
> A green callout for suggestions, best practices, or success states.
> [!warning] Warning
> A yellow callout for cautions that need attention.
> [!danger] Danger
> A red callout for errors, critical issues, or destructive actions.
> [!quote] Quote
> A gray callout for quotations or example content.
> [!note]- Collapsible callout (collapsed by default)
> Click the title to expand. Add `-` after the type to collapse by default,
> or `+` to expand by default.
All supported callout keywords:
| Type | Keywords |
|---|---|
| Info (blue) | info, note |
| Tip (green) | tip, success, abstract, check, done |
| Warning (yellow) | warning, caution, attention, question, help, faq |
| Danger (red) | danger, error, bug, failure, fail, missing |
| Quote (gray) | quote, cite, example |
All colors are defined as CSS custom properties at the top of theme.css under Section 1 — DESIGN TOKENS. You can override any value without touching the rest of the file.
| Variable | Default | Purpose |
|---|---|---|
--notion-bg-primary |
#ffffff |
Page background |
--notion-bg-secondary |
#fafaf8 |
Secondary surfaces |
--notion-bg-sidebar |
#fafaf8 |
Sidebar background |
--notion-bg-hover |
rgba(55,53,47,0.06) |
Hover state |
--notion-bg-active |
rgba(55,53,47,0.12) |
Active/selected state |
--notion-text-primary |
#37352f |
Main body text |
--notion-text-secondary |
#787774 |
Subdued text |
--notion-text-tertiary |
#9b9a97 |
Placeholder / metadata |
--notion-text-link |
#2382e2 |
Link color |
--notion-border |
rgba(55,53,47,0.16) |
Dividers and borders |
--notion-code-text |
#eb5757 |
Inline code text |
--notion-codeblock-bg |
#f9f8f7 |
Code block background |
| Variable | Default | Purpose |
|---|---|---|
--notion-bg-primary |
#191919 |
Page & sidebar background |
--notion-bg-secondary |
#1f1f1f |
Secondary surfaces |
--notion-text-primary |
rgba(255,255,255,0.81) |
Main body text |
--notion-text-secondary |
rgba(255,255,255,0.50) |
Subdued text |
--notion-text-link |
#529cca |
Link color |
--notion-border |
rgba(255,255,255,0.13) |
Dividers and borders |
--notion-code-text |
#ff7b72 |
Inline code text |
--notion-codeblock-bg |
#232829 |
Code block background |
| Variable group | Light | Dark |
|---|---|---|
--notion-callout-info-* |
Blue #2382e2 |
Blue #529cca |
--notion-callout-tip-* |
Green #0f9d58 |
Green #4ca16a |
--notion-callout-warn-* |
Amber #f2a93b |
Amber #d4a050 |
--notion-callout-error-* |
Red #e03e3e |
Red #d05050 |
--notion-callout-quote-* |
Gray #9b9a97 |
White rgba(255,255,255,0.25) |
To override any value, open theme.css and edit the variables in Section 1. You can also paste overrides into Obsidian's CSS snippets (Settings → Appearance → CSS snippets) so your changes survive theme updates.
/* Change page background to warm white */
.theme-light {
--notion-bg-primary: #fefdf9;
}
/* Change link color to purple */
.theme-light {
--notion-text-link: #7c4dff;
}
/* Wider content area */
.theme-light, .theme-dark {
--notion-content-width: 1200px;
--file-line-width: 1200px;
}
This theme is provided as is, and is designed for my personal use of Obsidian on macOS. As such it is not thoroughly tested across all operating systems and use cases.
This theme modifies significant parts of the Obsidian interface, so it may break with future updates. It may also be incompatible with other bits of custom CSS you have.