From 16afbd038fd3d610d30f263edcde76b589329635 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 9 Jun 2022 18:56:13 +0200 Subject: [PATCH] Do not show links in Org mode with bold face It took me surprisingly long to realize that the bold face is harder to read than with normal weight. --- themes/db-dark-theme.el | 1 + themes/db-light-theme.el | 1 + 2 files changed, 2 insertions(+) diff --git a/themes/db-dark-theme.el b/themes/db-dark-theme.el index 0a46421..46982a3 100644 --- a/themes/db-dark-theme.el +++ b/themes/db-dark-theme.el @@ -17,6 +17,7 @@ Known to work well with the `solarized-dark’ theme.") '(org-clock-overlay ((t (:background "black")))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal)))) '(org-headline-done ((t (:foreground "#859900")))) + '(org-link ((t (:inherit link :weight normal)))) '(outline-4 ((t (:inherit org-level-4)))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) diff --git a/themes/db-light-theme.el b/themes/db-light-theme.el index 163b65c..7fdccf4 100644 --- a/themes/db-light-theme.el +++ b/themes/db-light-theme.el @@ -17,6 +17,7 @@ '(org-clock-overlay ((t (:background "black")))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono")))) '(org-headline-done ((t (:foreground "#859900")))) + '(org-link ((t (:inherit link :weight normal)))) '(outline-4 ((t (:inherit org-level-4)))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))