Skip to content

Instantly share code, notes, and snippets.

@airicbear
Created July 2, 2020 23:04
Show Gist options
  • Save airicbear/8786759356446f8659ecfea7e304baad to your computer and use it in GitHub Desktop.
Save airicbear/8786759356446f8659ecfea7e304baad to your computer and use it in GitHub Desktop.
Emacs Theme for Zorin OS Dark Mode with Blue Tint
(deftheme ZorinBlue-Dark
"Emacs theme for Zorin OS dark mode with blue tint")
(custom-theme-set-faces
'ZorinBlue-Dark
'(cursor ((t (:background "#bde6fb"))))
'(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"))))
'(minibuffer-prompt ((t (:foreground "CadetBlue1"))))
'(highlight ((t (:background "#191f22"))))
'(region ((t (:background "#323d42"))))
'(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50")) (((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70")) (((class color) (min-colors 8) (background light)) (:foreground "green")) (((class color) (min-colors 8) (background dark)) (:foreground "yellow"))))
'(secondary-selection ((((class color) (min-colors 88) (background light)) (:background "yellow1")) (((class color) (min-colors 88) (background dark)) (:background "SkyBlue4")) (((class color) (min-colors 16) (background light)) (:background "yellow")) (((class color) (min-colors 16) (background dark)) (:background "SkyBlue4")) (((class color) (min-colors 8)) (:foreground "black" :background "cyan")) (t (:inverse-video t))))
'(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
'(font-lock-builtin-face ((t (:foreground "LightCoral"))))
'(font-lock-comment-delimiter-face ((t (:foreground "gray50"))))
'(font-lock-comment-face ((t (:foreground "gray50"))))
'(font-lock-constant-face ((t (:foreground "DarkOliveGreen3"))))
'(font-lock-doc-face ((t (:foreground "moccasin"))))
'(font-lock-function-name-face ((t (:foreground "khaki2"))))
'(font-lock-keyword-face ((t (:foreground "DeepSkyBlue1"))))
'(font-lock-negation-char-face ((t nil)))
'(font-lock-preprocessor-face ((t (:foreground "gold"))))
'(font-lock-regexp-grouping-backslash ((t (:weight bold))))
'(font-lock-regexp-grouping-construct ((t (:weight bold))))
'(font-lock-string-face ((t (:foreground "burlywood"))))
'(font-lock-type-face ((t (:foreground "CadetBlue1"))))
'(font-lock-variable-name-face ((t (:foreground "SeaGreen2"))))
'(font-lock-warning-face ((t (:inherit (error)))))
'(button ((t (:inherit (link)))))
'(link ((t (:foreground "#bde6fb" :underline t))))
'(link-visited ((default (:inherit (link))) (((class color) (background light)) (:foreground "magenta4")) (((class color) (background dark)) (:foreground "violet"))))
'(fringe ((t (:background "black"))))
'(header-line ((default (:inherit (mode-line))) (((type tty)) (:underline (:color foreground-color :style line) :inverse-video nil)) (((class color grayscale) (background light)) (:box nil :foreground "grey20" :background "grey90")) (((class color grayscale) (background dark)) (:box nil :foreground "grey90" :background "grey20")) (((class mono) (background light)) (:underline (:color foreground-color :style line) :box nil :inverse-video nil :foreground "black" :background "white")) (((class mono) (background dark)) (:underline (:color foreground-color :style line) :box nil :inverse-video nil :foreground "white" :background "black"))))
'(tooltip ((((class color)) (:inherit (variable-pitch) :foreground "black" :background "lightyellow")) (t (:inherit (variable-pitch)))))
'(mode-line ((t (:background "#bde6fb" :foreground "#191f22" :box (:line-width 1 :style released-button)))))
'(mode-line-buffer-id ((t (:foreground "#191f22" :weight bold))))
'(mode-line-emphasis ((t (:weight bold))))
'(mode-line-highlight ((t (:box (:line-width 2 :color "#bde6fb" :style released-button)))))
'(mode-line-inactive ((t (:background "#686f66" :foreground "#191f22" :box (:line-width 1 :color "gray40")))))
'(isearch ((t (:background "#323d42" :foreground "white"))))
'(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 (:background "#434e53" :foreground "white"))))
'(match ((t (:background "DeepPink4"))))
'(next-error ((t (:inherit (region)))))
'(query-replace ((t (:inherit (isearch)))))
'(default ((t (:inherit nil :stipple nil :background "#191f22" :foreground "gray80" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 143 :width normal :foundry "GOOG" :family "Arimo")))))
(provide-theme 'ZorinBlue-Dark)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment