35 lines
1.8 KiB
EmacsLisp
35 lines
1.8 KiB
EmacsLisp
;;
|
|
;; Fonts/Faces
|
|
;;
|
|
|
|
;; This is where the Emacs fonts, or faces in Emacs' terminology, are configured.
|
|
|
|
;; org fonts are also configured here
|
|
|
|
;; this config is based from the Custom setting in Emacs
|
|
(custom-set-faces
|
|
'(default ((t (:inherit nil :extend nil :stipple nil :background "#ffffc8" :foreground "#282828" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :wenight normal :height 90 :width normal :family "FiraCode Nerd Font"))))
|
|
'(fixed-pitch ((t (:family "FiraCode Nerd Font"))))
|
|
'(fixed-pitch-serif ((t (:family "FiraCode Nerd Font"))))
|
|
'(variable-pitch ((t (:family "Fira Sans" :weight normal)))).
|
|
`(org-level-8 ((t (:weight bold))))
|
|
`(org-level-7 ((t (:weight bold))))
|
|
`(org-level-6 ((t (:weight bold))))
|
|
`(org-level-5 ((t (:weight bold))))
|
|
`(org-level-4 ((t (:weight bold :height 1.1))))
|
|
`(org-level-3 ((t (:weight bold :height 1.25))))
|
|
`(org-level-2 ((t (:weight bold :height 1.5))))
|
|
`(org-level-1 ((t (:weight bold :height 1.75))))
|
|
`(org-document-title ((t (:weight bold :height 2.0 :underline nil))))
|
|
'(org-block ((t (:inherit fixed-pitch))))
|
|
'(org-code ((t (:inherit (shadow fixed-pitch)))))
|
|
'(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
|
|
'(org-indent ((t (:inherit (org-hide fixed-pitch)))))
|
|
'(org-link ((t (:underline t))))
|
|
'(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
|
|
'(org-property-value ((t (:inherit fixed-pitch))) t)
|
|
'(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
|
|
'(org-table ((t (:inherit fixed-pitch))))
|
|
'(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
|
|
'(org-verbatim ((t (:inherit (shadow fixed-pitch))))))
|