summaryrefslogtreecommitdiff
path: root/dracula-custom-theme.el
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-04-01 18:50:14 +0200
committeryuzu-eva <stevenhu@web.de>2023-04-01 18:50:14 +0200
commitc8f60b035a30a0e2cfeb4eeedfb397c6b5c3bbe5 (patch)
tree209bbcb97e3c2de1dc2f162268fcded3c1189558 /dracula-custom-theme.el
parentf29369a7df27b03f1e09590e77de60366e0bd163 (diff)
init commit
Diffstat (limited to 'dracula-custom-theme.el')
-rw-r--r--dracula-custom-theme.el53
1 files changed, 53 insertions, 0 deletions
diff --git a/dracula-custom-theme.el b/dracula-custom-theme.el
new file mode 100644
index 0000000..d9b3949
--- /dev/null
+++ b/dracula-custom-theme.el
@@ -0,0 +1,53 @@
+(deftheme dracula-custom
+ "Created 2022-11-27.")
+
+(custom-theme-set-faces
+ 'dracula-custom
+ '(cursor ((t (:background "#ccccc7"))))
+ '(fixed-pitch ((t (:family "Monospace"))))
+ '(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 (:weight bold :foreground "#ff79c6"))))
+ '(highlight ((t (:foreground "#ccccc7" :background "#464752"))))
+ '(region ((t (:extend t :inherit (match)))))
+ '(shadow ((t (:foreground "#6272a4"))))
+ '(secondary-selection ((((class color) (min-colors 88) (background light)) (:extend t :background "yellow1")) (((class color) (min-colors 88) (background dark)) (:extend t :background "SkyBlue4")) (((class color) (min-colors 16) (background light)) (:extend t :background "yellow")) (((class color) (min-colors 16) (background dark)) (:extend t :background "SkyBlue4")) (((class color) (min-colors 8)) (:extend t :foreground "black" :background "cyan")) (t (:inverse-video t))))
+ '(trailing-whitespace ((t (:background "#ffb86c"))))
+ '(font-lock-builtin-face ((t (:slant italic :foreground "#8be9fd"))))
+ '(font-lock-comment-delimiter-face ((t (:inherit (shadow)))))
+ '(font-lock-comment-face ((t (:inherit (shadow)))))
+ '(font-lock-constant-face ((t (:foreground "#bd93f9"))))
+ '(font-lock-doc-face ((t (:foreground "#6272a4"))))
+ '(font-lock-doc-markup-face ((t (:inherit (font-lock-constant-face)))))
+ '(font-lock-function-name-face ((t (:weight bold :foreground "#50fa7b"))))
+ '(font-lock-keyword-face ((t (:foreground "#ff79c6" :weight bold))))
+ '(font-lock-negation-char-face ((t (:foreground "#8be9fd"))))
+ '(font-lock-preprocessor-face ((t (:foreground "#ffb86c"))))
+ '(font-lock-regexp-grouping-backslash ((t (:foreground "#8be9fd"))))
+ '(font-lock-regexp-grouping-construct ((t (:foreground "#bd93f9"))))
+ '(font-lock-string-face ((t (:foreground "#f1fa8c"))))
+ '(font-lock-type-face ((t (:inherit (font-lock-builtin-face)))))
+ '(font-lock-variable-name-face ((t (:foreground "#d8a5f8" :weight bold))))
+ '(font-lock-warning-face ((t (:background "#373844" :inherit (warning)))))
+ '(button ((t (:inherit (link)))))
+ '(link ((t (:underline (:color foreground-color :style line) :foreground "#8be9fd"))))
+ '(link-visited ((default (:inherit (link))) (((class color) (background light)) (:foreground "magenta4")) (((class color) (background dark)) (:foreground "violet"))))
+ '(fringe ((t (:foreground "#b6b6b2" :background "#282a36"))))
+ '(header-line ((t (:inherit 'mode-line))))
+ '(tooltip ((t (:foreground "#f8f8f2" :background "#44475a"))))
+ '(mode-line ((t (:box (:line-width (1 . 1) :color "#44475a" :style nil) :inverse-video nil :foreground "#f8f8f2" :background "#44475a"))))
+ '(mode-line-buffer-id ((t (:weight bold))))
+ '(mode-line-emphasis ((t (:weight bold))))
+ '(mode-line-highlight ((((supports :box t) (class color) (min-colors 88)) (:box (:line-width (2 . 2) :color "grey40" :style released-button))) (t (:inherit (highlight)))))
+ '(mode-line-inactive ((t (:box (:line-width (1 . 1) :color "#373844" :style nil) :inverse-video nil :foreground "#b6b6b2" :background "#282a36"))))
+ '(isearch ((t (:weight bold :inherit (match)))))
+ '(isearch-fail ((t (:foreground "#282a36" :background "#ffb86c"))))
+ '(lazy-highlight ((t (:foreground "#e2e2dc" :background "#373844"))))
+ '(match ((t (:foreground "#282a36" :background "#f1fa8c"))))
+ '(next-error ((t (:inherit (region)))))
+ '(query-replace ((t (:inherit (isearch)))))
+ '(default ((t (:family "Hack Nerd Font" :foundry "SRC" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#F8F8F2" :background "#262626" :stipple nil :inherit nil)))))
+
+(provide-theme 'dracula-custom)
+