Advertisement
Guest User

Tron Dark Theme

a guest
Oct 14th, 2012
547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 10.75 KB | None | 0 0
  1. ;;; tron-dark-theme.el --- Color theme inspired by Tron Legacy film
  2.  
  3. ;; This program is free software; you can redistribute it and/or modify
  4. ;; it under the terms of the GNU General Public License as published by
  5. ;; the Free Software Foundation, either version 3 of the License, or
  6. ;; (at your option) any later version.
  7.  
  8. ;; This program is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. ;; GNU General Public License for more details.
  12.  
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
  15.  
  16. ;; This file is not part of GNU Emacs.
  17.  
  18. ;; Author:  Oleg Sivokon <[email protected]>
  19. ;; Maintainer: Oleg Sivokon <[email protected]>
  20. ;; Version: 0.1
  21. ;; Keywords: theme customization
  22.  
  23. ;;; Commentary
  24.  
  25. ;; This theme is inspired by the Tron Legacy film.
  26.  
  27. ;;; Bugs/todo:
  28.  
  29. ;;; Code:
  30.  
  31. (deftheme tron-dark
  32.   "Face colors using the Tron palette (dark background).
  33. Basic, Font Lock, Isearch, Gnus, Message, Ediff, Flyspell,
  34. Semantic, and Ansi-Color faces are included.")
  35.  
  36. (let ((class '((class color) (min-colors 89)))
  37.       ;; Tron palette colors.
  38.       (tron-teal "#57b3b3")             ; foreground
  39.       (tron-night "#001519")            ; background
  40.       (tron-teal-bright "#00d4d4")      ; cursor
  41.       (tron-violette "#6a6ae6")         ; type foreground ; 5500e6
  42.       (tron-metal "#306158")            ; comments
  43.       (tron-warm-metal "#58615a")       ; doc-string ; 757169
  44.       (tron-teal-super "#a0ffff")       ; string foreground
  45.       (tron-berlin-blue "#0d131f")      ; string background, fringe, border
  46.       (tron-lantern "#f0ffff")          ; keywords foreground
  47.       (tron-berlin-night "#0d1719")     ; keyword background ; 161628
  48.       (tron-salad "#00a890")            ; builtin ; 00a06c
  49.       (tron-salad-bright "#75dbb7")     ; function name foreground, sh-heredoc ; 75bf73
  50.       (tron-deep-olive "#021a17")       ; function name background, ecb-default-highlight-face /
  51.                                         ; ediff-even-diff-A background / ediff-odd-diff-A background
  52.       (tron-seruline "#4186d2")         ; variable foreground, sh-quoted-exec
  53.       (tron-plum-light "#dd9aa7")       ; constant foreground
  54.       (tron-orange "#cc4700")           ; warning
  55.       (tron-teal-brighter "#a8f8f8")    ; isearch foreground
  56.       (tron-olive-greek "#033021")      ; isearch background
  57.       (tron-teal-brightest "#3fffff")   ; isearch lazy foreground
  58.       (tron-cold-olive "#134031")       ; isearch lazy background
  59.       (tron-berlin-darkest "#000d0f")   ; modeline background
  60.       (tron-white "#eeeeec")            ; modeline foreground
  61.       (tron-gray-light "#888a85")       ; modeline inactive foreground
  62.       (tron-orange-hot "#cf7a00")       ; minibufer prompt
  63.       (tron-turquize "#032929")         ; selection background / region / primary
  64.       (tron-green "#043d18")            ; secondary selection background
  65.       (tron-orange-pale "#804532")      ; slime-repl-inputed-output-face foreground /
  66.                                         ; ediff-odd-diff-A foreground /
  67.                                         ; ediff-even-diff-A foreground /
  68.       (tron-butter "#c4a000")           ; generic yellow
  69.       (tron-red-dark "#42071d")         ; generic dark red
  70.       (tron-brown-dark "#0a1519")       ; generic dark brown
  71.  
  72.       ;; Tango colors, these are used in Gnus-related faces, need yet to see
  73.       ;; what it looks like
  74.       (butter-2 "#edd400")
  75.       (orange-1 "#fcaf3e") (orange-2 "#f57900")
  76.       (choc-2 "#c17d11")
  77.       (cham-1 "#8ae234") (cham-2 "#73d216")
  78.       (blue-2 "#3465a4")
  79.       (plum-1 "#ad7fa8") (plum-2 "#75507b")
  80.       (plum-0 "#e6a8df"))
  81.  
  82.   (custom-theme-set-faces
  83.    'tron-dark
  84.    ;; Ensure sufficient contrast on low-color terminals.
  85.    `(default ((((class color) (min-colors 4096))
  86.            (:foreground ,tron-teal :background ,tron-night))
  87.           (((class color) (min-colors 256))
  88.            (:foreground ,tron-teal :background "#222"))
  89.           (,class
  90.            (:foreground ,tron-teal :background "black"))))
  91.    `(cursor ((,class (:background ,tron-teal-bright))))
  92.    ;; Highlighting faces
  93.    `(fringe ((,class (:background ,tron-berlin-blue))))
  94.    `(highlight ((,class (:foreground ,tron-night :background ,tron-teal-super))))
  95.    `(region ((,class (:background ,tron-turquize))))
  96.    `(secondary-selection ((,class (:background ,tron-green))))
  97.    `(isearch ((,class (:foreground ,tron-teal-brighter :background ,tron-olive-greek))))
  98.    `(lazy-highlight ((,class (:background ,tron-cold-olive
  99.                                           :foreground ,tron-teal-brightest))))
  100.    `(shadow ((,class (:foreground ,tron-metal))))
  101.    `(trailing-whitespace ((,class (:background ,tron-orange))))
  102.    ;; Mode line faces
  103.    `(mode-line-buffer-id ((,class (:bold nil))))
  104.    `(mode-line ((,class (:background ,tron-berlin-darkest :foreground ,tron-white :box nil))))
  105.    `(mode-line-inactive ((,class (:background
  106.                                   ,tron-berlin-darkest
  107.                                   :foreground
  108.                                   ,tron-gray-light
  109.                                   :box nil))))
  110.    `(compilation-mode-line-fail ((,class (:foreground ,tron-orange))))
  111.    `(compilation-mode-line-run  ((,class (:foreground ,tron-orange-hot))))
  112.    `(compilation-mode-line-exit ((,class (:foreground ,tron-salad-bright))))
  113.    ;; Escape and prompt faces
  114.    `(minibuffer-prompt ((,class (:foreground ,tron-orange-hot))))
  115.    `(escape-glyph ((,class (:foreground ,tron-orange-hot))))
  116.    `(error ((,class (:foreground ,tron-orange-hot :background ,tron-brown-dark))))
  117.    `(warning ((,class (:foreground ,tron-orange-pale))))
  118.    `(success ((,class (:foreground ,tron-olive-greek))))
  119.    ;; Font lock faces
  120.    `(font-lock-builtin-face
  121.      ((,class (:foreground ,tron-salad-bright :background ,tron-brown-dark))))
  122.    `(font-lock-comment-face ((,class (:foreground ,tron-metal))))
  123.    `(font-lock-doc-face ((,class (:foreground ,tron-metal :background nil))))
  124.    `(font-lock-doc-string-face ((,class (:foreground ,tron-warm-metal :background nil))))
  125.    `(font-lock-constant-face
  126.      ((,class (:foreground ,tron-plum-light :background ,tron-brown-dark))))
  127.    `(font-lock-function-name-face
  128.      ((,class (:foreground ,tron-salad-bright :background ,tron-deep-olive :bold t))))
  129.    `(font-lock-keyword-face
  130.      ((,class (:foreground ,tron-lantern :background ,tron-berlin-night))))
  131.    `(font-lock-string-face
  132.      ((,class (:foreground ,tron-teal-super :background ,tron-berlin-blue))))
  133.    `(font-lock-type-face
  134.      ((,class (:foreground ,tron-violette :background ,tron-berlin-blue))))
  135.    `(font-lock-variable-name-face ((,class (:foreground ,tron-seruline))))
  136.    ;; Button and link faces
  137.    `(link ((,class (:underline t :foreground ,tron-plum-light))))
  138.    `(link-visited ((,class (:underline t :foreground ,tron-gray-light))))
  139.    ;; Gnus faces
  140.    `(gnus-group-news-1 ((,class (:foreground ,plum-1))))
  141.    `(gnus-group-news-1-low ((,class (:foreground ,plum-2))))
  142.    `(gnus-group-news-2 ((,class (:foreground ,tron-seruline))))
  143.    `(gnus-group-news-2-low ((,class (:foreground ,blue-2))))
  144.    `(gnus-group-news-3 ((,class (:foreground ,cham-1))))
  145.    `(gnus-group-news-3-low ((,class (:foreground ,cham-2))))
  146.    `(gnus-group-news-4 ((,class (:foreground ,plum-0))))
  147.    `(gnus-group-news-4-low ((,class (:foreground ,choc-2))))
  148.    `(gnus-group-news-5 ((,class (:foreground ,orange-1))))
  149.    `(gnus-group-news-5-low ((,class (:foreground ,orange-2))))
  150.    `(gnus-group-news-low ((,class (:foreground ,butter-2))))
  151.    `(gnus-group-mail-1 ((,class (:foreground ,plum-1))))
  152.    `(gnus-group-mail-1-low ((,class (:foreground ,plum-2))))
  153.    `(gnus-group-mail-2 ((,class (:foreground ,tron-seruline))))
  154.    `(gnus-group-mail-2-low ((,class (:foreground ,blue-2))))
  155.    `(gnus-group-mail-3 ((,class (:foreground ,cham-1))))
  156.    `(gnus-group-mail-3-low ((,class (:foreground ,cham-2))))
  157.    `(gnus-group-mail-low ((,class (:foreground ,butter-2))))
  158.    `(gnus-header-content ((,class (:weight normal :foreground ,tron-butter))))
  159.    `(gnus-header-from ((,class (:foreground ,butter-2))))
  160.    `(gnus-header-subject ((,class (:foreground ,cham-1))))
  161.    `(gnus-header-name ((,class (:foreground ,tron-seruline))))
  162.    `(gnus-header-newsgroups ((,class (:foreground ,choc-2))))
  163.    ;; Message faces
  164.    `(message-header-name ((,class (:foreground ,tron-seruline))))
  165.    `(message-header-cc ((,class (:foreground ,tron-butter))))
  166.    `(message-header-other ((,class (:foreground ,tron-gray-light))))
  167.    `(message-header-subject ((,class (:foreground ,tron-white))))
  168.    `(message-header-to ((,class (:foreground ,tron-metal))))
  169.    `(message-cited-text ((,class (:foreground ,tron-warm-metal))))
  170.    `(message-separator ((,class (:foreground ,tron-plum-light))))
  171.    ;; SMerge faces
  172.    `(smerge-refined-change ((,class (:background ,tron-violette))))
  173.    ;; Ediff faces
  174.    `(ediff-current-diff-A ((,class (:background ,tron-metal))))
  175.    `(ediff-fine-diff-A ((,class (:background ,tron-gray-light))))
  176.    `(ediff-even-diff-A
  177.      ((,class (:background ,tron-deep-olive :foreground ,tron-orange-pale))))
  178.    `(ediff-odd-diff-A
  179.      ((,class (:background ,tron-deep-olive :foreground ,tron-orange-pale))))
  180.    `(ediff-current-diff-B ((,class (:background ,tron-teal-super))))
  181.    `(ediff-fine-diff-B ((,class (:background ,tron-gray-light))))
  182.    `(ediff-even-diff-B
  183.      ((,class (:background ,tron-deep-olive :foreground ,tron-orange-pale))))
  184.    `(ediff-odd-diff-B
  185.      ((,class (:background ,tron-deep-olive :foreground ,tron-orange-pale))))
  186.    ;; Flyspell faces
  187.    `(flyspell-duplicate ((,class (:underline ,tron-orange))))
  188.    `(flyspell-incorrect ((,class (:underline ,tron-orange-hot))))
  189.    ;; Semantic faces
  190.    `(semantic-decoration-on-includes ((,class (:underline ,tron-metal))))
  191.    `(semantic-decoration-on-private-members-face
  192.      ((,class (:background ,tron-olive-greek))))
  193.    `(semantic-decoration-on-protected-members-face
  194.      ((,class (:background ,tron-berlin-night))))
  195.    `(semantic-decoration-on-unknown-includes
  196.      ((,class (:background ,tron-red-dark))))
  197.    `(semantic-decoration-on-unparsed-includes
  198.      ((,class (:background ,tron-berlin-night))))
  199.    `(semantic-tag-boundary-face ((,class (:overline ,tron-seruline))))
  200.    `(semantic-unmatched-syntax-face ((,class (:underline ,tron-red-dark)))))
  201.  
  202.   (custom-theme-set-variables
  203.    'tron-dark
  204.    `(ansi-color-names-vector
  205.      [,tron-berlin-blue
  206.       ,tron-orange-pale
  207.       ,tron-gray-light
  208.       ,tron-butter
  209.       ,tron-seruline
  210.       ,tron-plum-light ,tron-green ,tron-teal])))
  211.  
  212. (provide-theme 'tron-dark)
  213.  
  214. ;; Local Variables:
  215. ;; no-byte-compile: t
  216. ;; End:
  217.  
  218. ;;; tron-dark-theme.el ends here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement