Make RST titles readable on my theme.

This commit is contained in:
Julien Palard 2023-09-20 11:12:09 +02:00
parent 7912717da6
commit 2aa53bd9d3
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 13 additions and 3 deletions

View File

@ -241,10 +241,20 @@
(load-theme 'spacemacs-light t)
(custom-theme-set-faces
'spacemacs-light
'(rst-level-1 ((t (:background "grey15" :foreground "white smoke"))))
'(rst-level-2 ((t (:background "grey15" :foreground "white smoke"))))
'(rst-reference ((t (:foreground "white smoke"))))
'(rst-level-1 ((t (:background "grey85" :foreground "white smoke"))))
'(rst-level-2 ((t (:background "grey78" :foreground "white smoke"))))
'(rst-level-3 ((t (:background "grey71" :foreground "white smoke"))))
'(rst-level-4 ((t (:background "grey64" :foreground "white smoke"))))
'(rst-level-5 ((t (:background "grey57" :foreground "white smoke"))))
'(rst-level-6 ((t (:background "grey50" :foreground "white smoke"))))
)
(enable-theme 'spacemacs-light)
(add-to-list 'default-frame-alist '(font . "DejaVuSansMono:size=18"))
(set-face-attribute 'default t :font "DejaVuSansMono:size=18")
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)