[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/modus-vivendi-theme 72de79b 044/110: Use bold weight co
From: |
Stefan Monnier |
Subject: |
[elpa] externals/modus-vivendi-theme 72de79b 044/110: Use bold weight conditionally in more indicators |
Date: |
Wed, 29 Apr 2020 21:40:03 -0400 (EDT) |
branch: externals/modus-vivendi-theme
commit 72de79b367b17ca616e3f4f463da7e21264a4da0
Author: Protesilaos Stavrou <address@hidden>
Commit: Protesilaos Stavrou <address@hidden>
Use bold weight conditionally in more indicators
The idea with this is that strong emphasis should be used only where
necessary or only if the user opts for its more gratuitous application.
---
modus-operandi-theme.el | 34 +++++++++++++++++-----------------
modus-vivendi-theme.el | 34 +++++++++++++++++-----------------
2 files changed, 34 insertions(+), 34 deletions(-)
diff --git a/modus-operandi-theme.el b/modus-operandi-theme.el
index 2b9df60..8dc40a0 100644
--- a/modus-operandi-theme.el
+++ b/modus-operandi-theme.el
@@ -953,13 +953,13 @@ AMOUNT is a customisation option."
`(company-posframe-metadata ((,class (:background ,bg-inactive :foreground
,fg-inactive))))
;;;; compilation feedback
`(compilation-column-number ((,class (:foreground ,magenta-alt-other))))
- `(compilation-error ((,class (:foreground ,red :weight bold))))
+ `(compilation-error ((,class (:foreground ,red :weight ,modus-theme-bold))))
`(compilation-info ((,class (:foreground ,fg-special-cold))))
`(compilation-line-number ((,class (:foreground ,fg-special-warm))))
- `(compilation-mode-line-exit ((,class (:foreground ,blue-active :weight
bold))))
- `(compilation-mode-line-fail ((,class (:foreground ,red-active :weight
bold))))
- `(compilation-mode-line-run ((,class (:foreground ,magenta-active :weight
bold))))
- `(compilation-warning ((,class (:foreground ,yellow :weight bold))))
+ `(compilation-mode-line-exit ((,class (:foreground ,blue-active :weight
,modus-theme-bold))))
+ `(compilation-mode-line-fail ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(compilation-mode-line-run ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(compilation-warning ((,class (:foreground ,yellow :weight
,modus-theme-bold))))
;;;; completions
`(completions-annotations ((,class (:foreground ,fg-special-cold :slant
,modus-theme-slant))))
`(completions-common-part ((,class (:foreground ,cyan-alt-other))))
@@ -1116,9 +1116,9 @@ AMOUNT is a customisation option."
`(dired-symlink ((,class (:foreground ,blue-alt :underline t))))
`(dired-warning ((,class (:foreground ,yellow :weight bold))))
;;;; dired-async
- `(dired-async-failures ((,class (:foreground ,red-active :weight bold))))
- `(dired-async-message ((,class (:foreground ,green-active :weight bold))))
- `(dired-async-mode-message ((,class (:foreground ,cyan-active :weight
bold))))
+ `(dired-async-failures ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(dired-async-message ((,class (:foreground ,green-active :weight
,modus-theme-bold))))
+ `(dired-async-mode-message ((,class (:foreground ,cyan-active :weight
,modus-theme-bold))))
;;;; dired-git
`(dired-git-branch-else ((,class (:foreground ,magenta-alt :weight bold))))
`(dired-git-branch-master ((,class (:foreground ,magenta-alt-other :weight
bold))))
@@ -1406,11 +1406,11 @@ AMOUNT is a customisation option."
`(flycheck-warning ((,class (:foreground ,yellow :underline t))))
;;;; flycheck-indicator
`(flycheck-indicator-disabled ((,class (:foreground ,fg-inactive :slant
,modus-theme-slant))))
- `(flycheck-indicator-error ((,class (:foreground ,red-active :weight
bold))))
- `(flycheck-indicator-info ((,class (:foreground ,blue-active :weight
bold))))
- `(flycheck-indicator-running ((,class (:foreground ,magenta-active :weight
bold))))
- `(flycheck-indicator-success ((,class (:foreground ,green-active :weight
bold))))
- `(flycheck-indicator-warning ((,class (:foreground ,yellow-active :weight
bold))))
+ `(flycheck-indicator-error ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-info ((,class (:foreground ,blue-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-running ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-success ((,class (:foreground ,green-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-warning ((,class (:foreground ,yellow-active :weight
,modus-theme-bold))))
;;;; flycheck-posframe
`(flycheck-posframe-background-face ((,class (:background ,bg-alt))))
`(flycheck-posframe-border-face ((,class (:foreground ,fg-alt))))
@@ -2816,12 +2816,12 @@ AMOUNT is a customisation option."
`(undo-tree-visualizer-register-face ((,class (:foreground
,magenta-intense))))
`(undo-tree-visualizer-unmodified-face ((,class (:foreground
,green-intense))))
;;;; vc
- `(vc-conflict-state ((,class (:foreground ,red-active :weight bold))))
+ `(vc-conflict-state ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
`(vc-edited-state ((,class (:foreground ,fg-special-warm))))
`(vc-locally-added-state ((,class (:foreground ,cyan-active))))
- `(vc-locked-state ((,class (:foreground ,magenta-active :weight bold))))
- `(vc-missing-state ((,class (:foreground ,yellow-active :weight bold))))
- `(vc-needs-update-state ((,class (:foreground ,fg-special-mild :weight
bold))))
+ `(vc-locked-state ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(vc-missing-state ((,class (:foreground ,yellow-active :weight
,modus-theme-bold))))
+ `(vc-needs-update-state ((,class (:foreground ,fg-special-mild :weight
,modus-theme-bold))))
`(vc-removed-state ((,class (:foreground ,red-active))))
`(vc-state-base ((,class (:foreground ,fg-active))))
`(vc-up-to-date-state ((,class (:foreground ,fg-special-cold))))
diff --git a/modus-vivendi-theme.el b/modus-vivendi-theme.el
index 82a4f65..fbca886 100644
--- a/modus-vivendi-theme.el
+++ b/modus-vivendi-theme.el
@@ -953,13 +953,13 @@ AMOUNT is a customisation option."
`(company-posframe-metadata ((,class (:background ,bg-inactive :foreground
,fg-inactive))))
;;;; compilation feedback
`(compilation-column-number ((,class (:foreground ,magenta-alt-other))))
- `(compilation-error ((,class (:foreground ,red :weight bold))))
+ `(compilation-error ((,class (:foreground ,red :weight ,modus-theme-bold))))
`(compilation-info ((,class (:foreground ,fg-special-cold))))
`(compilation-line-number ((,class (:foreground ,fg-special-warm))))
- `(compilation-mode-line-exit ((,class (:foreground ,blue-active :weight
bold))))
- `(compilation-mode-line-fail ((,class (:foreground ,red-active :weight
bold))))
- `(compilation-mode-line-run ((,class (:foreground ,magenta-active :weight
bold))))
- `(compilation-warning ((,class (:foreground ,yellow :weight bold))))
+ `(compilation-mode-line-exit ((,class (:foreground ,blue-active :weight
,modus-theme-bold))))
+ `(compilation-mode-line-fail ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(compilation-mode-line-run ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(compilation-warning ((,class (:foreground ,yellow :weight
,modus-theme-bold))))
;;;; completions
`(completions-annotations ((,class (:foreground ,fg-special-cold :slant
,modus-theme-slant))))
`(completions-common-part ((,class (:foreground ,cyan-alt-other))))
@@ -1116,9 +1116,9 @@ AMOUNT is a customisation option."
`(dired-symlink ((,class (:foreground ,blue-alt :underline t))))
`(dired-warning ((,class (:foreground ,yellow :weight bold))))
;;;; dired-async
- `(dired-async-failures ((,class (:foreground ,red-active :weight bold))))
- `(dired-async-message ((,class (:foreground ,green-active :weight bold))))
- `(dired-async-mode-message ((,class (:foreground ,cyan-active :weight
bold))))
+ `(dired-async-failures ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(dired-async-message ((,class (:foreground ,green-active :weight
,modus-theme-bold))))
+ `(dired-async-mode-message ((,class (:foreground ,cyan-active :weight
,modus-theme-bold))))
;;;; dired-git
`(dired-git-branch-else ((,class (:foreground ,magenta-alt :weight bold))))
`(dired-git-branch-master ((,class (:foreground ,magenta-alt-other :weight
bold))))
@@ -1406,11 +1406,11 @@ AMOUNT is a customisation option."
`(flycheck-warning ((,class (:foreground ,yellow :underline t))))
;;;; flycheck-indicator
`(flycheck-indicator-disabled ((,class (:foreground ,fg-inactive :slant
,modus-theme-slant))))
- `(flycheck-indicator-error ((,class (:foreground ,red-active :weight
bold))))
- `(flycheck-indicator-info ((,class (:foreground ,blue-active :weight
bold))))
- `(flycheck-indicator-running ((,class (:foreground ,magenta-active :weight
bold))))
- `(flycheck-indicator-success ((,class (:foreground ,green-active :weight
bold))))
- `(flycheck-indicator-warning ((,class (:foreground ,yellow-active :weight
bold))))
+ `(flycheck-indicator-error ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-info ((,class (:foreground ,blue-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-running ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-success ((,class (:foreground ,green-active :weight
,modus-theme-bold))))
+ `(flycheck-indicator-warning ((,class (:foreground ,yellow-active :weight
,modus-theme-bold))))
;;;; flycheck-posframe
`(flycheck-posframe-background-face ((,class (:background ,bg-alt))))
`(flycheck-posframe-border-face ((,class (:foreground ,fg-alt))))
@@ -2816,12 +2816,12 @@ AMOUNT is a customisation option."
`(undo-tree-visualizer-register-face ((,class (:foreground
,magenta-intense))))
`(undo-tree-visualizer-unmodified-face ((,class (:foreground
,green-intense))))
;;;; vc
- `(vc-conflict-state ((,class (:foreground ,red-active :weight bold))))
+ `(vc-conflict-state ((,class (:foreground ,red-active :weight
,modus-theme-bold))))
`(vc-edited-state ((,class (:foreground ,fg-special-warm))))
`(vc-locally-added-state ((,class (:foreground ,cyan-active))))
- `(vc-locked-state ((,class (:foreground ,magenta-active :weight bold))))
- `(vc-missing-state ((,class (:foreground ,yellow-active :weight bold))))
- `(vc-needs-update-state ((,class (:foreground ,fg-special-mild :weight
bold))))
+ `(vc-locked-state ((,class (:foreground ,magenta-active :weight
,modus-theme-bold))))
+ `(vc-missing-state ((,class (:foreground ,yellow-active :weight
,modus-theme-bold))))
+ `(vc-needs-update-state ((,class (:foreground ,fg-special-mild :weight
,modus-theme-bold))))
`(vc-removed-state ((,class (:foreground ,red-active))))
`(vc-state-base ((,class (:foreground ,fg-active))))
`(vc-up-to-date-state ((,class (:foreground ,fg-special-cold))))
- [elpa] externals/modus-vivendi-theme aacd88a 027/110: Add support for TRASHED, (continued)
- [elpa] externals/modus-vivendi-theme aacd88a 027/110: Add support for TRASHED, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 075c29f 030/110: Improve section about demo content in the README, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 91aeae2 017/110: Minor doc update on new subtle diffs option, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 003941a 016/110: Internal: implement macro for scaling headings, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 1086949 023/110: Add single missing parenthesis to the README, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme afbe3ce 028/110: Add support for VISIBLE-MARK, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 6d288f9 038/110: Refine colours for C-q chars and regexp groupings, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme c419e9b 034/110: Add support for new ICOMPLETE-VERTICAL package, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme e6c7b7f 033/110: Document already-supported ICOMPLETE and FLX, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme d8d266d 043/110: Add missing newline char in end of file, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 72de79b 044/110: Use bold weight conditionally in more indicators,
Stefan Monnier <=
- [elpa] externals/modus-vivendi-theme ded2d1f 035/110: Provide concise docs of customisation options, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme ca9a69d 040/110: Add support for AG, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 530787e 048/110: Refine FLYSPELL: use new dedicated lang colours, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 409648d 049/110: Refine FLYMAKE: new linter colours, better fringes, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme f635f9b 050/110: Refine ARTBOLLOCKS-MODE: use new lang colours, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme a0e9380 055/110: Add tentative support for Emacs27 TAB-{BAR, LINE}, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme b298d30 067/110: Add note on package list refresh in the README, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 1cb0353 068/110: Simplify `outline-minor-faces', Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme f744335 069/110: Add support for ORDERLESS, Stefan Monnier, 2020/04/29
- [elpa] externals/modus-vivendi-theme 75199a6 071/110: Minor formatting change in README, Stefan Monnier, 2020/04/29