ample-zen icon indicating copy to clipboard operation
ample-zen copied to clipboard

Some additions to ample-zen

Open paaguti opened this issue 4 years ago • 2 comments

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'

ample-my

If you like them, just let me know and I create a PR

paaguti avatar Dec 29 '20 08:12 paaguti

Sure, looks great. Happy to merge a PR, thanks.

One question, what does ";; Appearance for the nord theme" mean?

mjwall avatar Dec 29 '20 12:12 mjwall

One question, what does ";; Appearance for the nord theme" mean? Hahaha, nothing I used another file a a template... I'm playing a lot with themes

/PA

On Tue, 29 Dec 2020 at 13:43, Michael Wall [email protected] wrote:

Sure, looks great. Happy to merge a PR, thanks.

One question, what does ";; Appearance for the nord theme" mean?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/mjwall/ample-zen/issues/3#issuecomment-752062260, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAZKU4DXZ46KFTCMXACAEPDSXHFGDANCNFSM4VM5WODQ .

-- Fragen sind nicht da um beantwortet zu werden, Fragen sind da um gestellt zu werden Georg Kreisler

paaguti avatar Dec 29 '20 15:12 paaguti