Yangson Hung203 downloadsVSCode 2026 Fluent theme for Obsidian — Light + Dark with first-class macOS vibrancy support.
A faithful port of Microsoft Visual Studio 2026's Fluent visual language to Obsidian, with first-class macOS vibrancy support.

#005FB8 / #2F72C4 accent, #F6F8FC / #DDE7FF Light surfaces, #1F1F1F / #181818 Dark surfacesprefers-reduced-motion supportbackdrop-filter blur when Translucent window is enabled
manifest.json and theme.css from the latest Release.<vault>/.obsidian/themes/VSCode 2026/.color-mix(), requires Chromium 111+).Every color is a CSS variable. Override in a snippet:
/* .obsidian/snippets/my-tweaks.css */
.theme-dark {
--interactive-accent: #4EC9B0; /* swap accent to teal */
--code-keyword: #C586C0; /* purple keywords */
}
.theme-light {
--background-primary: #FAFBFD;
}
Common variables to tweak:
| Variable | Purpose |
|---|---|
--interactive-accent |
Primary accent color (links, active tab top border, status bar) |
--background-primary / --background-secondary |
Editor and sidebar backgrounds |
--code-{keyword,string,comment,function,variable,type,number,control} |
Syntax highlight tokens |
--callout-{note,tip,info,success,question,warning,failure,error,bug,example,quote,abstract,todo} |
Callout colors (RGB triplets) |
--radius-{s,m,l,xl} |
Corner radii (default: 6 / 8 / 12 / 16 px) |
--vibrancy-blur / --vibrancy-saturation |
macOS vibrancy strength |
MIT — see LICENSE.