Skip to content

Commit

Permalink
fix(ayu-light,nord,peacock,tokyo-night): handle nil => unspecified cases
Browse files Browse the repository at this point in the history
Ref: #793
  • Loading branch information
hlissner committed Dec 6, 2023
1 parent bc9e147 commit bf69148
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion themes/doom-ayu-mirage-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ determine the exact padding."
(diff-removed :foreground vcs-removed)
(font-lock-comment-face
:foreground comments
:background (if doom-ayu-mirage-comment-bg (doom-lighten bg 0.05)))
:background (if doom-ayu-mirage-comment-bg (doom-lighten bg 0.05) 'unspecified))
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
Expand Down
2 changes: 1 addition & 1 deletion themes/doom-nord-aurora-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ determine the exact padding."

(font-lock-comment-face
:foreground comments
:background (if doom-nord-aurora-comment-bg (doom-lighten bg 0.05)))
:background (if doom-nord-aurora-comment-bg (doom-lighten bg 0.05) 'unspecified))
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
Expand Down
2 changes: 1 addition & 1 deletion themes/doom-peacock-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ determine the exact padding."
;;;; Base theme face overrides
((font-lock-comment-face
:foreground comments
:background (if doom-peacock-comment-bg (doom-lighten bg 0.05)))
:background (if doom-peacock-comment-bg (doom-lighten bg 0.05) 'unspecified))
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
Expand Down
2 changes: 1 addition & 1 deletion themes/doom-tokyo-night-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@

(font-lock-comment-face
:foreground comments
:background (if doom-tokyo-night-comment-bg (doom-lighten bg 0.05)))
:background (if doom-tokyo-night-comment-bg (doom-lighten bg 0.05) 'unspecified))
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
Expand Down

0 comments on commit bf69148

Please sign in to comment.