From bae71b3ea43035b4445171258e38b56346c382d3 Mon Sep 17 00:00:00 2001 From: dx Date: Mon, 20 Jul 2020 21:13:01 +0100 Subject: +my own custom theme Using the customize-create-theme function, I just created a form of monokai theme without the background color (essentially a monokai with a black background) so that my eye's aren't strained by the lighter grey background. --- Doom/.config/doom/org/config.org | 2 +- .../doom/themes/derivative-new-molokai-theme.el | 55 ++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 Doom/.config/doom/themes/derivative-new-molokai-theme.el (limited to 'Doom/.config') diff --git a/Doom/.config/doom/org/config.org b/Doom/.config/doom/org/config.org index 8185895..8fa9f3d 100644 --- a/Doom/.config/doom/org/config.org +++ b/Doom/.config/doom/org/config.org @@ -19,7 +19,7 @@ (map! :leader "," nil) (setq doom-themes-enable-italic nil doom-themes-enable-bold t - doom-theme 'doom-monokai-classic + doom-theme 'derivative-new-molokai doom-font (font-spec :family "Source Code Pro" :size 15))) #+END_SRC ** Other variables diff --git a/Doom/.config/doom/themes/derivative-new-molokai-theme.el b/Doom/.config/doom/themes/derivative-new-molokai-theme.el new file mode 100644 index 0000000..20abc7c --- /dev/null +++ b/Doom/.config/doom/themes/derivative-new-molokai-theme.el @@ -0,0 +1,55 @@ +(deftheme derivative-new-molokai + "Created 2020-07-19.") + +(custom-theme-set-faces + 'derivative-new-molokai + '(cursor ((t (:background "#F92660")))) + '(fixed-pitch ((t (:family "Source Code Pro" :foundry "ADBO" :width normal :height 113 :weight normal :slant normal)))) + '(variable-pitch ((((type w32)) (:foundry "outline" :family "Arial")) (t (:family "Sans Serif")))) + '(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown")))) + '(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown")))) + '(minibuffer-prompt ((t (:foreground "#FD971F")))) + '(highlight ((t (:background "#333333")))) + '(region ((t (:extend t :background "dim gray")))) + '(shadow ((t (:foreground "#555556")))) + '(secondary-selection ((t (:extend t :background "#525254")))) + '(trailing-whitespace ((t (:background "red")))) + '(font-lock-builtin-face ((t (:foreground "#FD971F")))) + '(font-lock-comment-delimiter-face ((t (:inherit (font-lock-comment-face))))) + '(font-lock-comment-face ((t (:slant normal :foreground "#555556")))) + '(font-lock-constant-face ((t (:foreground "#FFFFFFF")))) + '(font-lock-doc-face ((t (:slant normal :foreground "#7f7f80")))) + '(font-lock-function-name-face ((t (:foreground "#A6E22E")))) + '(font-lock-keyword-face ((t (:foreground "#F92660")))) + '(font-lock-negation-char-face ((t (:foreground "#F92660" :inherit (bold))))) + '(font-lock-preprocessor-face ((t (:foreground "#F92660" :inherit (bold))))) + '(font-lock-regexp-grouping-backslash ((t (:foreground "#F92660" :inherit (bold))))) + '(font-lock-regexp-grouping-construct ((t (:foreground "#F92660" :inherit (bold))))) + '(font-lock-string-face ((t (:foreground "#E6DB74")))) + '(font-lock-type-face ((t (:slant normal :foreground "#66D9EF")))) + '(font-lock-variable-name-face ((t (:foreground "#F8F8F2")))) + '(font-lock-warning-face ((t (:inherit (warning))))) + '(button ((t (:inherit (link))))) + '(link ((t (:weight bold :underline (:color foreground-color :style line) :foreground "#FD971F")))) + '(link-visited ((t (:foreground "violet" :inherit (link))))) + '(fringe ((t (:foreground "#4E4E4E" :inherit (default))))) + '(header-line ((t (:foreground "#F8F8F2" :background "#272822")))) + '(tooltip ((t (:foreground "#F8F8F2" :background "#2D2E2E")))) + '(mode-line ((t (:box nil :background "#161613")))) + '(mode-line-buffer-id ((t (:weight bold)))) + '(mode-line-emphasis ((t (:foreground "#FD971F")))) + '(mode-line-highlight ((t (:inherit (highlight))))) + '(mode-line-inactive ((t (:box nil :foreground "#4E4E4E" :background "#171819")))) + '(isearch ((t (:foreground "#1B2229" :background "#A6E22E")))) + '(isearch-fail ((t (:weight bold :foreground "#1B2229" :background "#E74C3C")))) + '(lazy-highlight ((t (:weight bold :foreground "#1B2229" :background "#9C91E4")))) + '(match ((t (:weight bold :foreground "#A6E22E" :background "#1B2229")))) + '(next-error ((t (:inherit (region))))) + '(query-replace ((t (:inherit (isearch))))) + '(company-tooltip-selection ((t (:background "blue")))) + '(company-tooltip-annotation ((t (:foreground "deep sky blue")))) + '(default ((t (:inherit nil :extend nil :stipple nil :background "black" :foreground "#F8F8F2" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "ADBO" :family "Source Code Pro")))) + '(company-box-background ((t (:inherit company-tooltip)))) + '(company-tooltip ((t (:background "dim gray" :foreground "white"))))) + +(provide-theme 'derivative-new-molokai) -- cgit v1.2.3-13-gbd6f