Skip to content

Instantly share code, notes, and snippets.

@condotti
Created March 8, 2012 11:27
Show Gist options
  • Select an option

  • Save condotti/2000571 to your computer and use it in GitHub Desktop.

Select an option

Save condotti/2000571 to your computer and use it in GitHub Desktop.

Revisions

  1. condotti created this gist Mar 8, 2012.
    102 changes: 102 additions & 0 deletions clarity-theme.el
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,102 @@
    ;;; clarity-theme.el --- White on black color theme by Richard Wellum, created 2003-01-16.

    ;; Copyright (C) 2012 condotti

    ;; Author: Akio Kondo <akondo21@gmail.com>
    ;; Keywords:

    ;; This program is free software; you can redistribute it and/or modify
    ;; it under the terms of the GNU General Public License as published by
    ;; the Free Software Foundation, either version 3 of the License, or
    ;; (at your option) any later version.

    ;; This program is distributed in the hope that it will be useful,
    ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
    ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    ;; GNU General Public License for more details.

    ;; You should have received a copy of the GNU General Public License
    ;; along with this program. If not, see <http://www.gnu.org/licenses/>.

    ;;; Commentary:

    ;; Imported from color-theme

    ;;; Code:

    (deftheme clarity
    "White on black color theme by Richard Wellum, created 2003-01-16.")

    (custom-theme-set-faces
    'clarity
    '(default ((t (:background "black" :foreground "white"))))
    '(cursor ((t (:foreground "yellow"))))
    '(highlight ((t (:background "#444444"))))
    '(CUA-global-mark-face ((t (:background "cyan" :foreground "black"))))
    '(CUA-rectangle-face ((t (:background "maroon" :foreground "white"))))
    '(CUA-rectangle-noselect-face ((t (:background "dimgray" :foreground "white"))))
    '(bold ((t (:bold t :weight bold))))
    '(bold-italic ((t (:italic t :bold t :slant italic :weight bold))))
    '(border ((t (:background "white"))))
    '(clearcase-dired-checkedout-face ((t (:foreground "red"))))
    '(comint-highlight-input ((t (:bold t :weight bold))))
    '(comint-highlight-prompt ((t (:foreground "cyan"))))
    '(cursor ((t (:background "yellow"))))
    '(fixed-pitch ((t (:family "courier"))))
    '(flash-paren-face-off ((t (nil))))
    '(flash-paren-face-on ((t (nil))))
    '(flash-paren-face-region ((t (nil))))
    '(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
    '(font-lock-comment-face ((t (:foreground "OrangeRed"))))
    '(font-lock-constant-face ((t (:foreground "Aquamarine"))))
    '(font-lock-doc-face ((t (:foreground "LightSalmon"))))
    '(font-lock-function-name-face ((t (:foreground "LightSkyBlue"))))
    '(font-lock-keyword-face ((t (:foreground "Cyan"))))
    '(font-lock-string-face ((t (:foreground "LightSalmon"))))
    '(font-lock-type-face ((t (:foreground "PaleGreen"))))
    '(font-lock-variable-name-face ((t (:foreground "LightGoldenrod"))))
    '(font-lock-warning-face ((t (:bold t :foreground "Pink" :weight bold))))
    '(fringe ((t (:background "grey10"))))
    '(header-line ((t (:box (:line-width -1 :style released-button) :foreground "grey20" :background "grey90" :box nil))))
    '(highlight ((t (:background "darkolivegreen"))))
    '(ibuffer-deletion-face ((t (:foreground "red"))))
    '(ibuffer-marked-face ((t (:foreground "green"))))
    '(isearch ((t (:background "palevioletred2" :foreground "brown4"))))
    '(isearch-lazy-highlight-face ((t (:background "paleturquoise4"))))
    '(italic ((t (:italic t :slant italic))))
    '(menu ((t (nil))))
    '(mode-line ((t (:foreground "yellow" :background "darkslateblue" :box (:line-width -1 :style released-button)))))
    '(mouse ((t (:background "white"))))
    '(region ((t (:background "blue"))))
    '(scroll-bar ((t (nil))))
    '(secondary-selection ((t (:background "darkslateblue"))))
    '(show-block-face1 ((t (:background "gray10"))))
    '(show-block-face2 ((t (:background "gray15"))))
    '(show-block-face3 ((t (:background "gray20"))))
    '(show-block-face4 ((t (:background "gray25"))))
    '(show-block-face5 ((t (:background "gray30"))))
    '(show-block-face6 ((t (:background "gray35"))))
    '(show-block-face7 ((t (:background "gray40"))))
    '(show-block-face8 ((t (:background "gray45"))))
    '(show-block-face9 ((t (:background "gray50"))))
    '(show-paren-match-face ((t (:background "turquoise"))))
    '(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
    '(tool-bar ((t (:background "grey75" :foreground "black" :box (:line-width 1 :style released-button)))))
    '(tooltip ((t (:background "lightyellow" :foreground "black"))))
    '(trailing-whitespace ((t (:background "red"))))
    '(underline ((t (:underline t))))
    '(variable-pitch ((t (:family "helv"))))
    '(widget-button-face ((t (:bold t :weight bold))))
    '(widget-button-pressed-face ((t (:foreground "red"))))
    '(widget-documentation-face ((t (:foreground "lime green"))))
    '(widget-field-face ((t (:background "dim gray"))))
    '(widget-inactive-face ((t (:foreground "light gray"))))
    '(widget-single-line-field-face ((t (:background "dim gray")))))

    ;;;###autoload
    (when load-file-name
    (add-to-list 'custom-theme-load-path
    (file-name-as-directory (file-name-directory load-file-name))))

    (provide-theme 'clarity)
    ;;; clarity-theme.el ends here