Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some additions to ample-zen #3

Open
paaguti opened this issue Dec 29, 2020 · 2 comments
Open

Some additions to ample-zen #3

paaguti opened this issue Dec 29, 2020 · 2 comments

Comments

@paaguti
Copy link

paaguti commented Dec 29, 2020

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

@mjwall
Copy link
Owner

mjwall commented Dec 29, 2020

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

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

@paaguti
Copy link
Author

paaguti commented Dec 29, 2020 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants