emacs: style custom and info faces
This commit is contained in:
parent
3cc8f2c7e0
commit
3d4e9168bb
1 changed files with 16 additions and 0 deletions
|
@ -215,6 +215,7 @@ value `italic'."
|
||||||
(global-set-key (kbd "C-c b") 'magit-blame)
|
(global-set-key (kbd "C-c b") 'magit-blame)
|
||||||
|
|
||||||
;; faces
|
;; faces
|
||||||
|
(require 'cus-edit) ; custom faces
|
||||||
(let
|
(let
|
||||||
((fixedpt "Roboto Mono")
|
((fixedpt "Roboto Mono")
|
||||||
( varpt "Roboto"))
|
( varpt "Roboto"))
|
||||||
|
@ -226,11 +227,26 @@ value `italic'."
|
||||||
(fixed-pitch :family fixedpt :weight regular)
|
(fixed-pitch :family fixedpt :weight regular)
|
||||||
(font-lock-comment-face :slant italic)
|
(font-lock-comment-face :slant italic)
|
||||||
(font-lock-keyword-face :slant italic)
|
(font-lock-keyword-face :slant italic)
|
||||||
|
(link :foreground "#89b4fa" :underline t)
|
||||||
(help-key-binding
|
(help-key-binding
|
||||||
:family fixedpt
|
:family fixedpt
|
||||||
:background "#181825"
|
:background "#181825"
|
||||||
:foreground "#89b4fa"
|
:foreground "#89b4fa"
|
||||||
:box (:line-width (-1 . -1) :color "#11111b" :style nil))
|
: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"))))
|
(anzu-mode-line :foreground "#89b4fa"))))
|
||||||
|
|
||||||
;; custom
|
;; custom
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue