summary refs log tree commit diff
path: root/config/init-theme.el
blob: c1bcd4e1d51c85338568bffdf2c4305eeb51979a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
;;; init-theme.el --- configure the theme -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; Configure the theme

;;; Code:

;; use various monaspace fonts
;; https://monaspace.githubnext.com
(set-face-attribute 'default nil
                    :font "Monaspace Argon"
                    :height 150)

(set-face-attribute 'fixed-pitch nil
                    :font "Monaspace Argon"
                    :height 150)

(set-face-attribute 'variable-pitch nil
                    :font "Monaspace Radon"
                    :height 150)

(add-to-list 'default-frame-alist '(background-color . "#FFFCF6"))
(add-to-list 'default-frame-alist '(foreground-color . "#101010"))

(custom-set-faces
 ;; make sure comments are distinct from the rest
 `(font-lock-comment-face ((t (:font "Monaspace Radon" :italic t :bold t :height 1.0 :background "#eeefff" :foreground "#7f0000"))))
 `(font-lock-doc-face     ((t (:font "Monaspace Radon" :italic t :bold t :height 1.0 :background "#eeefff" :foreground "#7f0000")))))

(provide 'init-theme)

;;; init-theme.el ends here