From 169b78220ffc40507081b9192068de3d70f33f44 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 29 Jul 2026 11:20:53 -0400 Subject: [PATCH] Use a CSS snippet instead of the style settings plugin --- appearance.json | 3 ++- community-plugins.json | 3 +-- snippets/text-normalize.css | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 snippets/text-normalize.css diff --git a/appearance.json b/appearance.json index ced4953..7559027 100644 --- a/appearance.json +++ b/appearance.json @@ -7,7 +7,8 @@ "baseFontSize": 18, "enabledCssSnippets": [ "font", - "vim-cursor" + "vim-cursor", + "text-normalize" ], "accentColor": "" } \ No newline at end of file diff --git a/community-plugins.json b/community-plugins.json index 09cec7e..90207fa 100644 --- a/community-plugins.json +++ b/community-plugins.json @@ -5,6 +5,5 @@ "multi-vault-links", "typewriter-mode", "obsidian-vimrc-support", - "tag-wrangler", - "obsidian-style-settings" + "tag-wrangler" ] \ No newline at end of file diff --git a/snippets/text-normalize.css b/snippets/text-normalize.css new file mode 100644 index 0000000..b856081 --- /dev/null +++ b/snippets/text-normalize.css @@ -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; +}