Use a CSS snippet instead of the style settings plugin

This commit is contained in:
2026-07-29 11:20:53 -04:00
parent d5924d3436
commit 169b78220f
3 changed files with 19 additions and 3 deletions

View File

@@ -7,7 +7,8 @@
"baseFontSize": 18, "baseFontSize": 18,
"enabledCssSnippets": [ "enabledCssSnippets": [
"font", "font",
"vim-cursor" "vim-cursor",
"text-normalize"
], ],
"accentColor": "" "accentColor": ""
} }

View File

@@ -5,6 +5,5 @@
"multi-vault-links", "multi-vault-links",
"typewriter-mode", "typewriter-mode",
"obsidian-vimrc-support", "obsidian-vimrc-support",
"tag-wrangler", "tag-wrangler"
"obsidian-style-settings"
] ]

View File

@@ -0,0 +1,16 @@
/* Minimal -- heading overrides */
body {
--h1-size: 18px;
--h1-weight: 600;
--h2-size: 18px;
--h2-weight: 600;
--h3-size: 18px;
--h3-weight: 600;
--h4-size: 18px;
--h4-weight: 600;
--h5-size: 18px;
--h5-weight: 600;
--h6-size: 18px;
--h6-weight: 600;
--h6-variant: normal;
}