From d7320485ff9925e36e9953b09c0c8c55f9f8fc12 Mon Sep 17 00:00:00 2001 From: TheBlackSheep3 <40034835+TheBlackSheep3@users.noreply.github.com> Date: Sat, 15 Oct 2022 18:22:08 +0200 Subject: [PATCH 1/2] apply heading colors in PDF export --- obsidian.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/obsidian.css b/obsidian.css index c3cef62..3cd9e76 100644 --- a/obsidian.css +++ b/obsidian.css @@ -36,6 +36,12 @@ body { /* font stacks taken directly from Notion */ --font-monospace: "Hack Nerd Font", "Source Code Pro", monospace; -webkit-font-smoothing: auto; + --h1-color: var(--text-title-h1); + --h2-color: var(--text-title-h2); + --h3-color: var(--text-title-h3); + --h4-color: var(--text-title-h4); + --h5-color: var(--text-title-h5); + --h6-color: var(--text-title-h6); } /* 2. Colours */ From 0e3df3659d29547d329e1217657a3bf6a2f6fbc7 Mon Sep 17 00:00:00 2001 From: TheBlackSheep3 <40034835+TheBlackSheep3@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:13:57 +0200 Subject: [PATCH 2/2] fix link and tag color in light theme --- obsidian.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obsidian.css b/obsidian.css index 3cd9e76..d897bba 100644 --- a/obsidian.css +++ b/obsidian.css @@ -181,7 +181,7 @@ body { --interactive-accent: var(--bg5-light); --interactive-before: var(--bg5-light); --background-modifier-border: var(--bg5-light); - --text-accent: var(--bg5-light); + --text-accent: var(--light-dim-green); --interactive-accent-rgb: var(--light-dim-green); --inline-code: var(--light-blue); --code-block: var(--fg-light);