Skip to content

Instantly share code, notes, and snippets.

@schell
Created May 22, 2021 16:45
Show Gist options
  • Save schell/ac722e76374ca52319ab197e6677de34 to your computer and use it in GitHub Desktop.
Save schell/ac722e76374ca52319ab197e6677de34 to your computer and use it in GitHub Desktop.
Birds of Ruin - Emacs theme
(deftheme birds-of-ruin
"Created 2021-03-16.")
(custom-theme-set-faces
'birds-of-ruin
'(cursor ((t (:foreground "#865C38" :background "#E6E1C4"))))
'(fixed-pitch ((t (:family "Monospace"))))
'(variable-pitch ((((type w32)) (:foundry "outline" :family "Arial")) (t (:family "Sans Serif"))))
'(escape-glyph ((t (:foreground "#BE73FD"))))
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
'(minibuffer-prompt ((t (:foreground "#6C99BB" :inherit (bold)))))
'(highlight ((t (:background "black" :foreground "#E6E1C4"))))
'(region ((t (:extend t :background "#523D2B"))))
'(shadow ((t (:foreground "color-130"))))
'(secondary-selection ((t (:extend t :background "#121212"))))
'(trailing-whitespace ((t (:background "#865C38"))))
'(font-lock-builtin-face ((t (:foreground "#6C99BB"))))
'(font-lock-comment-delimiter-face ((default (:inherit (font-lock-comment-face)))))
'(font-lock-comment-face ((t (:slant italic :foreground "#865C38" :background "#262626"))))
'(font-lock-constant-face ((t (:foreground "#6C99BB"))))
'(font-lock-doc-face ((t (:foreground "#865C38"))))
'(font-lock-function-name-face ((t (:foreground "#EFAC32" :inherit (bold)))))
'(font-lock-keyword-face ((t (:slant normal :foreground "#EF5D32" :inherit (bold)))))
'(font-lock-negation-char-face ((t (:foreground "#7DAF9C"))))
'(font-lock-preprocessor-face ((t (:foreground "#BE3250"))))
'(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))
'(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))
'(font-lock-string-face ((t (:foreground "#D9D762"))))
'(font-lock-type-face ((t (:weight bold :foreground "#EFAC32" :inherit (bold)))))
'(font-lock-variable-name-face ((t (:foreground "#7DAF9C"))))
'(font-lock-warning-face ((t (:background "#000000" :foreground "#99aa00"))))
'(button ((t (:weight bold :underline (:color foreground-color :style line) :foreground "#D9D762" :background "#7DAF9C"))))
'(link ((t (:underline (:color foreground-color :style line) :foreground "#D9D762"))))
'(link-visited ((t (:underline (:color foreground-color :style line) :foreground "#d75fd7"))))
'(fringe ((t (:foreground "#654D4D" :background "#3E2929"))))
'(header-line ((t (:background "#1c1c1c"))))
'(tooltip ((t (:weight normal :slant normal :underline nil :foreground "#b2b2b2" :background "#333333"))))
'(mode-line ((t (:box (:line-width 1 :color "#111111" :style nil) :foreground "#E6E1C4" :background "#865C38"))))
'(mode-line-buffer-id ((t (:foreground "#d75fd7" :inherit (bold)))))
'(mode-line-emphasis ((t (:weight bold))))
'(mode-line-highlight ((((class color) (min-colors 88)) (:box (:line-width 2 :color "grey40" :style released-button))) (t (:inherit (highlight)))))
'(mode-line-inactive ((t (:box (:line-width 1 :color "#111111" :style nil) :foreground "#E6E1C4" :background "#4e4e4e"))))
'(isearch ((t (:foreground "#262626" :background "#86dc2f"))))
'(isearch-fail ((((class color) (min-colors 88) (background light)) (:background "RosyBrown1")) (((class color) (min-colors 88) (background dark)) (:background "red4")) (((class color) (min-colors 16)) (:background "red")) (((class color) (min-colors 8)) (:background "red")) (((class color grayscale)) (:foreground "grey")) (t (:inverse-video t))))
'(lazy-highlight ((t (:weight normal :background "#262626"))))
'(match ((t (:foreground "#86dc2f" :background "#444444"))))
'(next-error ((t (:inherit (region)))))
'(query-replace ((t (:inherit (isearch)))))
'(default ((t (:inherit nil :extend nil :stipple nil :background "color-232" :foreground "#E6E1C4" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 1 :width normal :foundry "default" :family "default")))))
(provide-theme 'birds-of-ruin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment