Hi
A couple of customisations I made on ample-zen
;;
;; Appearance for the nord theme
;;
(load-theme 'ample-zen t)
(custom-set-faces
;;
;; I need this to be more visually impacting
;;
;; `(show-paren-mismatch ((t (:foreground ,ample-zen-red-3 :background ,ample-zen-bg :weight bold))))
'(show-paren-mismatch ((t (:background "#ff5542" :foreground "#18191f" :weight bold))))
;; `(show-paren-match ((t (:foreground ,ample-zen-blue-1 :background ,ample-zen-bg :weight bold))))
'(show-paren-match ((t (:background "#528fd1" :foreground "#18191f" :weight bold))))
;;
;; yasnippets
;;
;; ("ample-zen-bg-2" . "#4c4c4c")
'(yas-field-highlight-face ((t (:background "#4c4c4c" ))))
)
(when (display-graphic-p)
(custom-set-faces
;;
;; Thicker mode-line à la doom
;;
;; `(mode-line
;; ((,class (:foreground ,ample-zen-fg-1
;; :background ,ample-zen-bg+3
;; :box (:line-width -1 :style released-button)))
'(mode-line ((t (:foreground "#c9c9c9" :background "#000000" :weight bold :box (:line-width 6 :color "#000000")))))
;; `(mode-line-inactive
;; ((t (:foreground ,ample-zen-fg+1
;; :background ,ample-zen-bg-1
;; :box nil :weight light))))
'(mode-line-inactive ((t (:foreground "#9b9b9b" :background "#3b3b3b" :box (:line-width 6 :color "#3b3b3b")))))
;;
;; Mainly for the vcs at the right end in my mode-line
;; ("ample-zen-yellow-2" . "#baba36")
'(mode-line-highlight ((t (:background nil :foreground "#baba36" :weight bold))))
;;
;; Thicker tab-line
;;
'(tab-line ((t (:inherit fringe :box (:line-width 4 :color "#212121")))))
'(tab-line-tab ((t (:inherit tab-line-tab))))
'(tab-line-tab-current ((t (:inherit tab-line-tab))))
'(tab-line-tab-inactive ((t (:foreground "#9b9b9b" :background "#000000" :box (:line-width 4 :color "#000000")))))
)
)
And the resulting 'optics'

If you like them, just let me know and I create a PR
Hi
A couple of customisations I made on ample-zen
And the resulting 'optics'
If you like them, just let me know and I create a PR