diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2020-10-03 10:31:53 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2020-10-03 10:31:53 +0300 |
| commit | 2fb8276fa5e2a00802ccea054cd8f5dc8b6874dd (patch) | |
| tree | 79011ae807d97aba1faa2b3454e7fcf3641d38e0 | |
| parent | 3df79c61c05a489baba380e645d885fdf6533c7f (diff) | |
Update org-roam faces
This matches the current state of the project.
The main colour of org-roam links is now different than standard links.
It is an attempt to differentiate between backlinks to other parts of
the knowledge base and whatever else a user may link to. If this is not
desired, you can evaluate the following:
(setq org-roam-link-use-custom-faces nil)
| -rw-r--r-- | modus-operandi-theme.el | 7 | ||||
| -rw-r--r-- | modus-vivendi-theme.el | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/modus-operandi-theme.el b/modus-operandi-theme.el index 1a6de2e..8f1eeba 100644 --- a/modus-operandi-theme.el +++ b/modus-operandi-theme.el @@ -3677,8 +3677,11 @@ Also bind `class' to ((class color) (min-colors 89))." ;;;;; org-recur `(org-recur ((,class :foreground ,magenta-active))) ;;;;; org-roam - `(org-roam-link ((,class :inherit button :foreground ,blue-alt-other))) - `(org-roam-backlink ((,class :inherit button :foreground ,green-alt-other))) + `(org-roam-link ((,class :inherit button :foreground ,green))) + `(org-roam-link-current ((,class :inherit button :foreground ,green-alt))) + `(org-roam-link-invalid ((,class :inherit button :foreground ,red))) + `(org-roam-link-shielded ((,class :inherit button :foreground ,yellow))) + `(org-roam-tag ((,class :foreground ,fg-alt :slant italic))) ;;;;; org-superstar `(org-superstar-item ((,class :foreground ,fg-main))) `(org-superstar-leading ((,class :foreground ,fg-whitespace))) diff --git a/modus-vivendi-theme.el b/modus-vivendi-theme.el index f47406b..e7b338e 100644 --- a/modus-vivendi-theme.el +++ b/modus-vivendi-theme.el @@ -3677,8 +3677,11 @@ Also bind `class' to ((class color) (min-colors 89))." ;;;;; org-recur `(org-recur ((,class :foreground ,magenta-active))) ;;;;; org-roam - `(org-roam-link ((,class :inherit button :foreground ,blue-alt-other))) - `(org-roam-backlink ((,class :inherit button :foreground ,green-alt-other))) + `(org-roam-link ((,class :inherit button :foreground ,green))) + `(org-roam-link-current ((,class :inherit button :foreground ,green-alt))) + `(org-roam-link-invalid ((,class :inherit button :foreground ,red))) + `(org-roam-link-shielded ((,class :inherit button :foreground ,yellow))) + `(org-roam-tag ((,class :foreground ,fg-alt :slant italic))) ;;;;; org-superstar `(org-superstar-item ((,class :foreground ,fg-main))) `(org-superstar-leading ((,class :foreground ,fg-whitespace))) |
