diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 01bd8af..734793b 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -215,6 +215,7 @@ value `italic'." (global-set-key (kbd "C-c b") 'magit-blame) ;; faces +(require 'cus-edit) ; custom faces (let ((fixedpt "Roboto Mono") ( varpt "Roboto")) @@ -226,11 +227,26 @@ value `italic'." (fixed-pitch :family fixedpt :weight regular) (font-lock-comment-face :slant italic) (font-lock-keyword-face :slant italic) + (link :foreground "#89b4fa" :underline t) (help-key-binding :family fixedpt :background "#181825" :foreground "#89b4fa" :box (:line-width (-1 . -1) :color "#11111b" :style nil)) + (widget-field + :extend t + :background "#181825" + :box (:line-width (1 . 1) :color "#11111b")) + (custom-button + :background "#181825" + :foreground "white" + :box (:line-width (1 . 1) :color "#11111b" :style nil)) + (custom-button-mouse :background "#11111b" :foreground "white") + (custom-button-pressed :inherit custom-button-mouse + :box (:line-width (1 . 1) :color "#11111b")) + (info-xref :inherit link + :background "#181825" + :foreground "#cdd6f4") (anzu-mode-line :foreground "#89b4fa")))) ;; custom