Customise face foregound for shr-text and org-table
This commit is contained in:
parent
78abb0cbd6
commit
638f3eaeeb
33
init.el
33
init.el
|
@ -162,6 +162,11 @@
|
||||||
(use-package eshell
|
(use-package eshell
|
||||||
:bind (("C-c t e" . eshell)))
|
:bind (("C-c t e" . eshell)))
|
||||||
|
|
||||||
|
(use-package shr
|
||||||
|
:config
|
||||||
|
(require 'catppuccin-theme)
|
||||||
|
(set-face-attribute 'shr-text nil :foreground (catppuccin-get-color 'text)))
|
||||||
|
|
||||||
(use-package eww
|
(use-package eww
|
||||||
:defer t
|
:defer t
|
||||||
:custom
|
:custom
|
||||||
|
@ -450,26 +455,6 @@ Try `magit-clone-default-directory' if available, fall back to
|
||||||
:config
|
:config
|
||||||
(load-theme 'catppuccin t))
|
(load-theme 'catppuccin t))
|
||||||
|
|
||||||
;; Theme
|
|
||||||
(use-package modus-themes
|
|
||||||
:disabled t
|
|
||||||
:custom
|
|
||||||
(modus-themes-disable-other-themes t)
|
|
||||||
(modus-themes-to-toggle '(modus-operandi-tinted modus-vivendi-tinted))
|
|
||||||
(modus-themes-bold-constructs t)
|
|
||||||
(modus-themes-italic-constructs t)
|
|
||||||
(modus-themes-org-blocks nil)
|
|
||||||
(modus-themes-completions '((matches . (extrabold underline))
|
|
||||||
(selection . (semibold italic))))
|
|
||||||
(modus-themes-headings '((1 . (1.4))
|
|
||||||
(2 . (1.3))
|
|
||||||
(3 . (1.2))
|
|
||||||
(agenda-date . (1.3))
|
|
||||||
(agenda-structure . (light 1.8))
|
|
||||||
(t . (1.1))))
|
|
||||||
:config
|
|
||||||
(modus-themes-load-theme 'modus-vivendi-tinted))
|
|
||||||
|
|
||||||
(use-package nerd-icons
|
(use-package nerd-icons
|
||||||
:config (nerd-icons-set-font "Symbols Nerd Font Mono-12"))
|
:config (nerd-icons-set-font "Symbols Nerd Font Mono-12"))
|
||||||
|
|
||||||
|
@ -653,8 +638,12 @@ Try `magit-clone-default-directory' if available, fall back to
|
||||||
(python . t)))
|
(python . t)))
|
||||||
:config
|
:config
|
||||||
;; Ensure tables and src blocks use fixed-pitch font.
|
;; Ensure tables and src blocks use fixed-pitch font.
|
||||||
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
(set-face-attribute 'org-table nil
|
||||||
(set-face-attribute 'org-block nil :inherit 'fixed-pitch)
|
:inherit 'fixed-pitch
|
||||||
|
:foreground (catppuccin-get-color 'overlay2))
|
||||||
|
(set-face-attribute 'org-block nil
|
||||||
|
:inherit 'fixed-pitch
|
||||||
|
:foreground (catppuccin-get-color 'overlay2))
|
||||||
;; Let quote and verse blocks use variable-pitch font, if configured
|
;; Let quote and verse blocks use variable-pitch font, if configured
|
||||||
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
||||||
(set-face-attribute 'org-verse nil :inherit 'variable-pitch)
|
(set-face-attribute 'org-verse nil :inherit 'variable-pitch)
|
||||||
|
|
Loading…
Reference in a new issue