diff options
author | ThanosApollo <[email protected]> | 2022-10-21 04:08:06 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-21 04:08:06 +0300 |
commit | 32b8e2ef597f8f8d67609b1eae6aa4924e9b9538 (patch) | |
tree | f237e59fcf861134978fde8fb964ad1cbde3239d /.config/doom/orgThemes.el | |
parent | 6b53dbefcad40ad31794692e954b6cfd9bcac2ec (diff) |
Add anki dracula, remove duplicates
Diffstat (limited to '.config/doom/orgThemes.el')
-rw-r--r-- | .config/doom/orgThemes.el | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/.config/doom/orgThemes.el b/.config/doom/orgThemes.el index ebb468d..61a72bf 100644 --- a/.config/doom/orgThemes.el +++ b/.config/doom/orgThemes.el @@ -65,22 +65,6 @@ (set-face-attribute (nth 0 face) nil :font doom-variable-pitch-font :weight (nth 3 face) :height (nth 1 face) :foreground (nth 2 face))) (set-face-attribute 'org-table nil :font doom-font :weight 'normal :height 1.0 :foreground "#bfafdf")) -(defun apollo/org-colors-monokai-pro () - "Enable Monokai Pro colors for Org headers." - (interactive) - (dolist - (face - '((org-level-1 1.7 "#78dce8" ultra-bold) - (org-level-2 1.6 "#ab9df2" extra-bold) - (org-level-3 1.5 "#a9dc76" bold) - (org-level-4 1.4 "#fc9867" semi-bold) - (org-level-5 1.3 "#ff6188" normal) - (org-level-6 1.2 "#ffd866" normal) - (org-level-7 1.1 "#78dce8" normal) - (org-level-8 1.0 "#ab9df2" normal))) - (set-face-attribute (nth 0 face) nil :font doom-variable-pitch-font :weight (nth 3 face) :height (nth 1 face) :foreground (nth 2 face))) - (set-face-attribute 'org-table nil :font doom-font :weight 'normal :height 1.0 :foreground "#bfafdf")) - (defun apollo/org-colors-nord () "Enable Nord colors for Org headers." (interactive) @@ -176,3 +160,19 @@ (org-level-8 1.0 "#9ec400" normal))) (set-face-attribute (nth 0 face) nil :font doom-variable-pitch-font :weight (nth 3 face) :height (nth 1 face) :foreground (nth 2 face))) (set-face-attribute 'org-table nil :font doom-font :weight 'normal :height 1.0 :foreground "#bfafdf")) + +(defun anki-org-dracula () + "Dracula theme for org-anki." + (interactive) + (dolist + (face + '((org-level-1 1.7 "#8be9fd" ultra-bold) + (org-level-2 1.6 "#bd93f9" extra-bold) + (org-level-3 1.2 "#50fa7b" bold) + (org-level-4 1.1 "#ff79c6" semi-bold) + (org-level-5 1.0 "#9aedfe" normal) + (org-level-6 1.0 "#caa9fa" normal) + (org-level-7 1.0 "#5af78e" normal) + (org-level-8 1.0 "#ff92d0" normal))) + (set-face-attribute (nth 0 face) nil :font doom-variable-pitch-font :weight (nth 3 face) :height (nth 1 face) :foreground (nth 2 face))) + (set-face-attribute 'org-table nil :font doom-font :weight 'normal :height 1.0 :foreground "#bfafdf")) |