Skip to content

Commit

Permalink
Window divider support, better diffs.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm23 committed Oct 11, 2023
1 parent ac7c3a2 commit 2358dd3
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions darktooth.el
Original file line number Diff line number Diff line change
Expand Up @@ -254,23 +254,23 @@
(git-commit-overlong-summary (:inherit 'font-lock-warning-face))
(git-commit-pseudo-header (:inherit 'font-lock-string-face))
(git-commit-summary (:inherit 'font-lock-type-face))
(git-gutter+-added (:foreground darktooth-faded-green :background darktooth-muted-green))
(git-gutter+-added (:foreground darktooth-faded-green :background darktooth-background-green))
(git-gutter+-commit-header-face (:inherit 'font-lock-comment-face))
(git-gutter+-deleted (:foreground darktooth-faded-red :background darktooth-muted-red))
(git-gutter+-modified (:foreground darktooth-faded-purple :background darktooth-muted-purple))
(git-gutter+-separator (:foreground darktooth-faded-cyan :background darktooth-muted-cyan))
(git-gutter+-unchanged (:foreground darktooth-faded-yellow :background darktooth-muted-yellow))
(git-gutter+-deleted (:foreground darktooth-faded-red :background darktooth-background-red))
(git-gutter+-modified (:foreground darktooth-faded-purple :background darktooth-background-purple))
(git-gutter+-separator (:foreground darktooth-faded-cyan :background darktooth-background-cyan))
(git-gutter+-unchanged (:foreground darktooth-faded-yellow :background darktooth-background-yellow))
(git-gutter-fr+-added (:inherit 'git-gutter+-added))
(git-gutter-fr+-deleted (:inherit 'git-gutter+-deleted))
(git-gutter-fr+-modified (:inherit 'git-gutter+-modified))
(git-gutter-fr:added (:inherit 'git-gutter:added))
(git-gutter-fr:deleted (:inherit 'git-gutter:deleted))
(git-gutter-fr:modified (:inherit 'git-gutter:modified))
(git-gutter:added (:foreground darktooth-faded-green :background darktooth-muted-green))
(git-gutter:deleted (:foreground darktooth-faded-red :background darktooth-muted-red))
(git-gutter:modified (:foreground darktooth-faded-purple :background darktooth-muted-purple))
(git-gutter:separator (:foreground darktooth-faded-cyan :background darktooth-muted-cyan))
(git-gutter:unchanged (:foreground darktooth-faded-yellow :background darktooth-muted-yellow))
(git-gutter:added (:foreground darktooth-faded-green :background darktooth-background-green))
(git-gutter:deleted (:foreground darktooth-faded-red :background darktooth-background-red))
(git-gutter:modified (:foreground darktooth-faded-purple :background darktooth-background-purple))
(git-gutter:separator (:foreground darktooth-faded-cyan :background darktooth-background-cyan))
(git-gutter:unchanged (:foreground darktooth-faded-yellow :background darktooth-background-yellow))
(glyphless-char (:height 0.6))
(gnus-group-mail-1 (:weight 'bold :foreground darktooth-foreground-0-hard))
(gnus-group-mail-1-empty (:foreground darktooth-foreground-0-hard))
Expand Down Expand Up @@ -438,8 +438,8 @@
(magit-cherry-equivalent (:foreground darktooth-neutral-orange))
(magit-cherry-unmatched (:foreground darktooth-neutral-purple))
(magit-diff-add (:foreground darktooth-bright-green))
(magit-diff-added (:foreground darktooth-bright-green :background darktooth-mid-green))
(magit-diff-added-highlight (:foreground darktooth-bright-green :background darktooth-mid-green))
(magit-diff-added (:foreground darktooth-bright-green :background darktooth-background-green))
(magit-diff-added-highlight (:foreground darktooth-bright-green :background darktooth-background-green))
(magit-diff-context (:foreground darktooth-background-3 :background 'unspecified))
(magit-diff-context-highlight (:foreground darktooth-background-4 :background darktooth-background-0-soft))
(magit-diff-del (:foreground darktooth-bright-red))
Expand All @@ -452,8 +452,8 @@
(magit-diff-merge-proposed (:background darktooth-background-green))
(magit-diff-merge-separator (:foreground darktooth-neutral-orange))
(magit-diff-none (:foreground darktooth-medium))
(magit-diff-removed (:foreground darktooth-bright-red :background darktooth-mid-red))
(magit-diff-removed-highlight (:foreground darktooth-bright-red :background darktooth-mid-red))
(magit-diff-removed (:foreground darktooth-bright-red :background darktooth-background-red))
(magit-diff-removed-highlight (:foreground darktooth-bright-red :background darktooth-background-red))
(magit-filename (:weight 'normal))
(magit-head (:inherit 'magit-branch-local))
(magit-item-highlight (:background darktooth-background-1 :weight 'normal))
Expand Down Expand Up @@ -691,6 +691,9 @@
(whitespace-space-before-tab (:foreground darktooth-background-4 :background darktooth-background-0))
(whitespace-tab (:foreground darktooth-background-4 :background darktooth-background-0))
(whitespace-trailing (:foreground darktooth-neutral-red :background darktooth-background-1))
(window-divider (:foreground darktooth-background-1))
(window-divider-last-pixel (:foreground darktooth-background-1))
(window-divider-first-pixel (:foreground darktooth-background-1))
(woman-bold (:foreground darktooth-bright-red :bold t))
(woman-italic (:foreground darktooth-bright-green :bold t)))
,@body))
Expand Down

0 comments on commit 2358dd3

Please sign in to comment.