Compare commits
3 commits
b40e15664c
...
afd61b5209
| Author | SHA1 | Date | |
|---|---|---|---|
| afd61b5209 | |||
| 2d97873c1c | |||
| c9a7cff17a |
201 changed files with 76893 additions and 42 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
||||||
|
elpa/archives
|
||||||
|
eshell
|
||||||
backup/
|
backup/
|
||||||
*.elc
|
*.elc
|
||||||
|
|
|
||||||
6
.gitmodules
vendored
6
.gitmodules
vendored
|
|
@ -1,9 +1,3 @@
|
||||||
[submodule "stuff/go-mode.el"]
|
[submodule "stuff/go-mode.el"]
|
||||||
path = stuff/go.el
|
path = stuff/go.el
|
||||||
url = https://github.com/dominikh/go-mode.el.git
|
url = https://github.com/dominikh/go-mode.el.git
|
||||||
[submodule "stuff/dockerfile-mode"]
|
|
||||||
path = stuff/dockerfile-mode
|
|
||||||
url = https://github.com/spotify/dockerfile-mode
|
|
||||||
[submodule "stuff/sass-mode"]
|
|
||||||
path = stuff/sass-mode
|
|
||||||
url = https://github.com/nex3/sass-mode
|
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,72 @@
|
||||||
(require 'edje-mode)
|
(require 'edje-mode)
|
||||||
(add-to-list 'auto-mode-alist '("\\.edc$" . edje-mode))
|
(add-to-list 'auto-mode-alist '("\\.edc$" . edje-mode))
|
||||||
|
|
||||||
|
;; web-mode
|
||||||
|
(require 'web-mode)
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.svelte$" . web-mode))
|
||||||
|
(setq web-mode-code-indent-offset 4)
|
||||||
|
(setq web-mode-css-indent-offset 4)
|
||||||
|
(setq web-mode-markup-indent-offset 4)
|
||||||
|
(setq web-mode-script-padding 4)
|
||||||
|
(setq web-mode-style-padding 4)
|
||||||
|
(setq web-mode-void-elements
|
||||||
|
'("area" "base" "br" "command" "embed" "hr" "img" "input" "keygen"
|
||||||
|
"link" "meta" "param" "source" "track" "wbr" "tmpl_var"))
|
||||||
|
|
||||||
|
;; Vue.js-mode
|
||||||
|
(require 'vue-mode)
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.vue$" . vue-mode))
|
||||||
|
;(setq mmm-js-mode-enter-hook (lambda () (setq syntax-ppss-table nil)))
|
||||||
|
;(setq mmm-typescript-mode-enter-hook (lambda () (setq syntax-ppss-table nil)))
|
||||||
|
(defun fix-mmm-syntax ()
|
||||||
|
(save-restriction
|
||||||
|
(setq-local syntax-ppss-table typescript-mode-syntax-table)
|
||||||
|
))
|
||||||
|
(add-hook 'mmm-typescript-mode-enter-hook 'fix-mmm-syntax)
|
||||||
|
(setq js-indent-level 2)
|
||||||
|
(setq vue-html-extra-indent 2)
|
||||||
|
(setq-default indent-tabs-mode nil)
|
||||||
|
|
||||||
|
(add-hook 'mmm-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(set-face-background 'mmm-default-submode-face nil)
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-col" \n ("cols" "6") ("sm" "6") ("md" "6") ("lg" "6") ("xl" "6") ("offset" "6") ("offset-sm" "6") ("offset-md" "6") ("offset-lg" "6") ("offset-xl" "6") ("order" "1") ("order-sm" "1") ("order-md" "1") ("order-lg" "1") ("order-xl" "1") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-container" \n ("fluid") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-row" \n ("no-gutters") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-row" \n ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-alert" \n ("variant" "info") ("dismissible") ("dismiss-label" "Close") ("show") ("fade") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-badge" \n ("href" "#") ("rel" "") ("target" "_self") ("active") ("disabled") ("to" "") ("append") ("replace") ("event" "click") ("active-class" "") ("exact") ("exact-active-class" "") ("router-tag" "a") ("no-prefetch") ("tag" "span") ("variant" "info") ("pill") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-breadcrumb" \n ("items" "") (":items" "{}") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-button" \n ("href" "#") ("rel" "") ("target" "_self") ("active") ("disabled") ("to" "") ("append") ("replace") ("event" "click") ("active-class" "") ("exact") ("exact-active-class" "") ("router-tag" "a") ("no-prefetch") ("block") ("size" "sm") ("variant" "info") ("type" "button") ("tag" "button") ("pill") ("squared") ("pressed") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-button-group" \n ("vertical") ("size" "sm") ("tag" "div") ("aria-role" "group") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-button-toolbar" \n ("justify") ("key-nav") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-calendar" \n ("id" "") ("value" "") ("value-as-date") ("initial-date" "") ("disabled") ("readonly") ("min" "") ("max" "") ("date-disabled-fn" "") ("start-weekday" "0") ("locale" "") ("direction" "") ("selected-variant" "primary") ("today-variant" "") ("no-highlight-today") ("date-info-fn" "") ("width" "270px") ("block") ("hide-header") ("show-decade-nav") ("hidden") ("aria-controls" "") ("role-description" "") ("label-prev-decade" "Previous decade") ("label-prev-year" "Previous year") ("label-prev-month" "Previous month") ("label-current-month" "Current month") ("label-next-month" "Next month") ("label-next-year" "Next year") ("label-next-decade" "Next decade") ("label-today" "Today") ("label-selected" "Selected date") ("label-no-date-selected" "No date selected") ("label-calendar" "Calendar") ("label-nav" "Calendar navigation") ("label-help" "Use cursor keys to navigate calendar dates") ("date-format-options" "{}") ("weekday-header-format" "short") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form" \n ("id" "") ("inline") ("novalidate") ("validated") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-text" \n ("id" "") ("tag" "small") ("inline") ("text-variant" "muted") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-invalid-feedback" \n ("id" "") ("tag" "small") ("tooltip") ("force-show") ("state") ("aria-live" "") ("role" "") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-valid-feedback" \n ("id" "") ("tag" "small") ("tooltip") ("force-show") ("state") ("aria-live" "") ("role" "") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-datalist" \n (":options" "{}") ("value-field" "value") ("text-field" "text") ("html-field" "html") ("disabled-field" "disabled") ("id" "") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-form-input" \n ("id" "") ("name" "") ("disabled") ("required") ("form" "") ("autofocus") ("size" "sm") ("state") ("value" "") ("aria-invalid") ("readonly") ("plaintext") ("autocomplete" "") ("placeholder" "") ("formatter" "") ("lazy-formatter") ("trim") ("number") ("lazy") ("debounce" "0") ("type" "text") ("no-wheel") ("min" "") ("max" "") ("step" "") ("list" "{}") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-input-group" \n ("id" "") ("size" "sm") ("prepend" "") ("prepend-html" "") ("append" "") ("append-html" "") ("tag" "div") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-input-group-prepend" \n ("id" "") ("tag" "div") ("is-text") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-input-group-append" \n ("id" "") ("tag" "div") ("is-text") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-input-group-text" \n ("tag" "div") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-input-group-addon" \n ("id" "") ("tag" "div") ("is-text") ("append") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-nav" \n ("tag" "ul") ("fill") ("justified") ("align" "") ("tabs") ("pills") ("vertical") ("small") ("card-header") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-nav-item" \n ("href" "") ("rel" "") ("target" "") ("active") ("disabled") ("to" "") ("append") ("replace") ("event" "") ("active-class" "") ("exact") ("exact-active-class" "") ("router-tag" "a") ("no-prefetch") ("link-attrs" "{}") ("link-classes" "") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-nav-text" \n ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-nav-form" \n ("id" "") ("novalidate") ("validated") ("form-class" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-nav-item-dropdown" \n ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-navbar" \n ("tag" "nav") ("type" "light") ("variant" "") ("toggleable") ("fixed" "") ("sticky") ("print") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-navbar-nav" \n ("tag" "ul") ("fill") ("justified") ("align" "") ("small") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-navbar-brand" \n ("href" "#") ("ref" "") ("target" "_self") ("active") ("disabled") ("to" "") ("replace") ("event" "click") ("active-class" "") ("exact") ("exact-active-class" "") ("router-tag" "a") ("no-prefetch") ("tag" "div") ("v-model" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-navbar-toggle" \n ("label" "") ("target" "") ("v-if" "") ("v-for" "")))
|
||||||
|
(add-to-list 'sgml-tag-alist '("b-spinner" \n ("type" "border") ("label" "") ("variant" "primary") ("small") ("role" "status") ("tag" "span") ("v-if" "") ("v-for" "")))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;; Org-mode
|
;; Org-mode
|
||||||
(require 'org-install)
|
;(require 'org-install)
|
||||||
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
|
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
|
||||||
(define-key global-map "\C-cl" 'org-store-link)
|
(define-key global-map "\C-cl" 'org-store-link)
|
||||||
(define-key global-map "\C-ca" 'org-agenda)
|
(define-key global-map "\C-ca" 'org-agenda)
|
||||||
|
|
@ -57,8 +121,3 @@
|
||||||
; (add-to-list 'flymake-allowed-file-name-masks
|
; (add-to-list 'flymake-allowed-file-name-masks
|
||||||
; '("\\.py\\'" flymake-pyflakes-init)))
|
; '("\\.py\\'" flymake-pyflakes-init)))
|
||||||
;(add-hook 'find-file-hook 'flymake-find-file-hook)
|
;(add-hook 'find-file-hook 'flymake-find-file-hook)
|
||||||
|
|
||||||
;; mmm-mode
|
|
||||||
(add-hook 'mmm-mode-hook
|
|
||||||
(lambda ()
|
|
||||||
(set-face-background 'mmm-default-submode-face nil)))
|
|
||||||
|
|
|
||||||
87
elpa/color-theme-modern-0.0.3/aalto-dark-theme.el
Normal file
87
elpa/color-theme-modern-0.0.3/aalto-dark-theme.el
Normal file
|
|
@ -0,0 +1,87 @@
|
||||||
|
;;; aalto-dark-theme.el --- aalto-dark theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of aalto-dark theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme aalto-dark
|
||||||
|
"aalto-dark theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'aalto-dark
|
||||||
|
|
||||||
|
'(default ((t (:background "DeepSkyBlue3" :foreground "white"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "yellow"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(bold ((t (:bold t :background "blue3" :foreground "white"))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :foreground "blue3"))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(diary-face ((t (:foreground "red"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "OrangeRed"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(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"))))
|
||||||
|
'(highlight ((t (:background "blue3" :foreground "white"))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:italic t :bold t))))
|
||||||
|
'(info-xref ((t (:bold t))))
|
||||||
|
'(italic ((t (:italic t :background "gray"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:bold t :foreground "green4"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "yellow"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "#b00000"))))
|
||||||
|
'(message-header-subject-face ((t (:foreground "green3"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "green2"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "blue3"))))
|
||||||
|
'(modeline ((t (:background "white" :foreground "DeepSkyBlue3"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "white" :foreground "DeepSkyBlue3"))))
|
||||||
|
'(modeline-mousable ((t (:background "white" :foreground "DeepSkyBlue3"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "white" :foreground "DeepSkyBlue3"))))
|
||||||
|
'(region ((t (:background "gray"))))
|
||||||
|
'(secondary-selection ((t (:background "darkslateblue"))))
|
||||||
|
'(show-paren-match-face ((t (:background "turquoise"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(underline ((t (:underline t)))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'aalto-dark)
|
||||||
|
|
||||||
|
;;; aalto-dark-theme.el ends here
|
||||||
168
elpa/color-theme-modern-0.0.3/aalto-light-theme.el
Normal file
168
elpa/color-theme-modern-0.0.3/aalto-light-theme.el
Normal file
|
|
@ -0,0 +1,168 @@
|
||||||
|
;;; aalto-light-theme.el --- aalto-light theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 Jari Aalto
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of aalto-light theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme aalto-light
|
||||||
|
"aalto-light theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'aalto-light
|
||||||
|
|
||||||
|
'(default ((t (:background "#FFFFE0" :foreground "DarkSlateGray4"))))
|
||||||
|
'(mouse ((t (:foreground "LawnGreen"))))
|
||||||
|
'(cursor ((t (:background "black"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(gnus-mouse-face ((t (:background "darkseagreen2"))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t))))
|
||||||
|
'(tinyreplace-:face ((t (:background "darkseagreen2"))))
|
||||||
|
'(view-highlight-face ((t (:background "darkseagreen2"))))
|
||||||
|
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(cvs-filename-face ((t (:foreground "blue4"))))
|
||||||
|
'(cvs-handled-face ((t (:foreground "pink"))))
|
||||||
|
'(cvs-header-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(cvs-marked-face ((t (:bold t :foreground "green3"))))
|
||||||
|
'(cvs-msg-face ((t (:italic t))))
|
||||||
|
'(cvs-need-action-face ((t (:foreground "orange"))))
|
||||||
|
'(cvs-unknown-face ((t (:foreground "red"))))
|
||||||
|
'(diary-face ((t (:foreground "red"))))
|
||||||
|
'(eshell-test-failed-face ((t (:bold t :foreground "OrangeRed"))))
|
||||||
|
'(eshell-test-ok-face ((t (:bold t :foreground "Green"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "Orchid"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "Firebrick"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "CadetBlue"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "Blue"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "Purple"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "RosyBrown"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "DarkGoldenrod"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:underline t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:underline t :italic t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:underline t :italic t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-header-content-face ((t (:italic t :foreground "indianred4"))))
|
||||||
|
'(gnus-header-from-face ((t (:foreground "red3"))))
|
||||||
|
'(gnus-header-name-face ((t (:foreground "maroon"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:italic t :foreground "MidnightBlue"))))
|
||||||
|
'(gnus-header-subject-face ((t (:foreground "red4"))))
|
||||||
|
'(gnus-signature-face ((t (:italic t))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "Brown"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:italic t :foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:italic t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:italic t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:italic t))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "firebrick"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(highlight ((t (:background "darkseagreen2"))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:italic t :bold t))))
|
||||||
|
'(info-xref ((t (:bold t))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "MidnightBlue"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "cornflower blue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "blue4"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "steel blue"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "navy blue"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "brown"))))
|
||||||
|
'(modeline ((t (:background "black" :foreground "white"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "black" :foreground "white"))))
|
||||||
|
'(modeline-mousable ((t (:background "black" :foreground "white"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "black" :foreground "white"))))
|
||||||
|
'(region ((t (:background "gray"))))
|
||||||
|
'(secondary-selection ((t (:background "paleturquoise"))))
|
||||||
|
'(sgml-comment-face ((t (:foreground "dark turquoise"))))
|
||||||
|
'(sgml-doctype-face ((t (:foreground "red"))))
|
||||||
|
'(sgml-end-tag-face ((t (:foreground "blue"))))
|
||||||
|
'(sgml-entity-face ((t (:foreground "magenta"))))
|
||||||
|
'(sgml-ignored-face ((t (:background "gray60" :foreground "gray40"))))
|
||||||
|
'(sgml-ms-end-face ((t (:foreground "green"))))
|
||||||
|
'(sgml-ms-start-face ((t (:foreground "green"))))
|
||||||
|
'(sgml-pi-face ((t (:foreground "lime green"))))
|
||||||
|
'(sgml-sgml-face ((t (:foreground "brown"))))
|
||||||
|
'(sgml-short-ref-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(sgml-start-tag-face ((t (:foreground "blue"))))
|
||||||
|
'(show-paren-match-face ((t (:background "turquoise"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "gray85")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'aalto-light)
|
||||||
|
|
||||||
|
;;; aalto-light-theme.el ends here
|
||||||
147
elpa/color-theme-modern-0.0.3/aliceblue-theme.el
Normal file
147
elpa/color-theme-modern-0.0.3/aliceblue-theme.el
Normal file
|
|
@ -0,0 +1,147 @@
|
||||||
|
;;; aliceblue-theme.el --- aliceblue theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2002 by Girish Bharadwaj
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of aliceblue theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme aliceblue
|
||||||
|
"aliceblue theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'aliceblue
|
||||||
|
|
||||||
|
'(default ((t (:background "AliceBlue" :foreground "DarkSlateGray4"))))
|
||||||
|
'(mouse ((t (:background "black"))))
|
||||||
|
'(cursor ((t (:background "black"))))
|
||||||
|
'(border ((t (:background "black"))))
|
||||||
|
|
||||||
|
'(bold ((t (:bold t :weight bold))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :slant italic :weight bold))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "dark blue"))))
|
||||||
|
'(custom-button-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style released-button)))))
|
||||||
|
'(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style pressed-button)))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-comment-face ((t (:background "gray85"))))
|
||||||
|
'(custom-comment-tag-face ((t (:foreground "blue4"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:bold t :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face ((t (:bold t :foreground "blue" :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:bold t :foreground "red" :weight bold :height 1.2))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "dark green"))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(custom-variable-tag-face ((t (:bold t :foreground "blue" :weight bold :height 1.2))))
|
||||||
|
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "Orchid"))))
|
||||||
|
'(font-lock-comment-face ((t (:italic t :foreground "Firebrick" :slant oblique))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "CadetBlue"))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "Blue" :weight extra-bold))))
|
||||||
|
'(font-lock-keyword-face ((t (:bold t :foreground "Purple" :weight semi-bold))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "CadetBlue"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "Orchid"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "RosyBrown"))))
|
||||||
|
'(font-lock-type-face ((t (:italic t :foreground "ForestGreen" :slant italic))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "DarkGoldenrod" :width condensed))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Red" :weight bold))))
|
||||||
|
'(fringe ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(header-line ((t (:box (:line-width -1 :style released-button) :background "grey90" :foreground "grey20" :box nil))))
|
||||||
|
'(highlight ((t (:background "darkseagreen2"))))
|
||||||
|
'(isearch ((t (:background "magenta4" :foreground "lightskyblue1"))))
|
||||||
|
'(isearch-lazy-highlight-face ((t (:background "paleturquoise"))))
|
||||||
|
'(italic ((t (:italic t :slant italic))))
|
||||||
|
'(jde-bug-breakpoint-cursor ((t (:background "brown" :foreground "cyan"))))
|
||||||
|
'(jde-db-active-breakpoint-face ((t (:background "red" :foreground "black"))))
|
||||||
|
'(jde-db-requested-breakpoint-face ((t (:background "yellow" :foreground "black"))))
|
||||||
|
'(jde-db-spec-breakpoint-face ((t (:background "green" :foreground "black"))))
|
||||||
|
'(jde-java-font-lock-api-face ((t (:foreground "dark goldenrod"))))
|
||||||
|
'(jde-java-font-lock-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(jde-java-font-lock-code-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-constant-face ((t (:foreground "CadetBlue"))))
|
||||||
|
'(jde-java-font-lock-doc-tag-face ((t (:foreground "green4"))))
|
||||||
|
'(jde-java-font-lock-italic-face ((t (:italic t :slant italic))))
|
||||||
|
'(jde-java-font-lock-link-face ((t (:foreground "blue" :underline t :slant normal))))
|
||||||
|
'(jde-java-font-lock-modifier-face ((t (:foreground "Orchid"))))
|
||||||
|
'(jde-java-font-lock-number-face ((t (:foreground "RosyBrown"))))
|
||||||
|
'(jde-java-font-lock-operator-face ((t (:foreground "medium blue"))))
|
||||||
|
'(jde-java-font-lock-package-face ((t (:foreground "blue3"))))
|
||||||
|
'(jde-java-font-lock-pre-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-underline-face ((t (:underline t))))
|
||||||
|
'(menu ((t (nil))))
|
||||||
|
'(modeline ((t (:background "grey75" :foreground "black" :box (:line-width -1 :style released-button)))))
|
||||||
|
'(modeline-buffer-id ((t (:background "grey75" :foreground "black"))))
|
||||||
|
'(modeline-mousable ((t (:background "grey75" :foreground "black"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "grey75" :foreground "black"))))
|
||||||
|
'(primary-selection ((t (:background "lightgoldenrod2"))))
|
||||||
|
'(region ((t (:background "lightgoldenrod2"))))
|
||||||
|
'(scroll-bar ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "yellow"))))
|
||||||
|
'(semantic-dirty-token-face ((t (:background "lightyellow"))))
|
||||||
|
'(semantic-unmatched-syntax-face ((t (:underline "red"))))
|
||||||
|
'(senator-intangible-face ((t (:foreground "gray25"))))
|
||||||
|
'(senator-momentary-highlight-face ((t (:background "gray70"))))
|
||||||
|
'(senator-read-only-face ((t (:background "#CCBBBB"))))
|
||||||
|
'(show-paren-match-face ((t (:background "turquoise"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "green4"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "blue4"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "cyan4"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "green"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "red" :underline t))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "brown"))))
|
||||||
|
'(template-message-face ((t (:bold t :weight bold))))
|
||||||
|
'(tool-bar ((t (:background "grey75" :foreground "black" :box (:line-width 1 :style released-button)))))
|
||||||
|
'(trailing-whitespace ((t (:background "red"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
|
||||||
|
'(widget-button-face ((t (:bold t :weight bold))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "gray85"))))
|
||||||
|
'(trailing-whitespace ((t (:background "red"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
|
||||||
|
'(widget-button-face ((t (:bold t :weight bold))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "gray85"))))
|
||||||
|
'(zmacs-region ((t (:background "lightgoldenrod2")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'aliceblue)
|
||||||
|
|
||||||
|
;;; aliceblue-theme.el ends here
|
||||||
220
elpa/color-theme-modern-0.0.3/andreas-theme.el
Normal file
220
elpa/color-theme-modern-0.0.3/andreas-theme.el
Normal file
|
|
@ -0,0 +1,220 @@
|
||||||
|
;;; andreas-theme.el --- andreas theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2003 by Andreas Busch
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of andreas theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme andreas
|
||||||
|
"andreas theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'andreas
|
||||||
|
|
||||||
|
'(default ((t (:background "white" :foreground "black"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "black"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
'(OrangeRed ((t (nil))))
|
||||||
|
'(gnus-mouse-face ((t (nil))))
|
||||||
|
'(ispell-highlight-face ((t (nil))))
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(border-glyph ((t (nil))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(color-mode-face-@ ((t (:foreground "orange"))))
|
||||||
|
'(color-mode-face-a ((t (:foreground "blue"))))
|
||||||
|
'(color-mode-face-b ((t (:foreground "red"))))
|
||||||
|
'(color-mode-face-c ((t (:foreground "green3"))))
|
||||||
|
'(color-mode-face-d ((t (:background "red" :foreground "white"))))
|
||||||
|
'(color-mode-face-e ((t (:background "orange" :foreground "blue"))))
|
||||||
|
'(color-mode-face-f ((t (:background "blue" :foreground "yellow"))))
|
||||||
|
'(color-mode-face-g ((t (:background "lightblue" :foreground "brown"))))
|
||||||
|
'(color-mode-face-h ((t (:background "brown" :foreground "white"))))
|
||||||
|
'(custom-button-face ((t (:bold t))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:underline t :foreground "blue"))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:underline t :foreground "red"))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "dark green"))))
|
||||||
|
'(custom-variable-button-face ((t (:underline t :bold t :background "gray90"))))
|
||||||
|
'(custom-variable-tag-face ((t (:underline t :background "gray95" :foreground "blue"))))
|
||||||
|
'(diary-face ((t (:foreground "red"))))
|
||||||
|
'(display-time-mail-balloon-enhance-face ((t (:background "orange"))))
|
||||||
|
'(display-time-mail-balloon-gnus-group-face ((t (:foreground "blue"))))
|
||||||
|
'(display-time-time-balloon-face ((t (:foreground "red"))))
|
||||||
|
'(emacs-wiki-bad-link-face ((t (:bold t :foreground "red"))))
|
||||||
|
'(emacs-wiki-link-face ((t (:bold t :foreground "green"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "orange1"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "green4"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "red1"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "green4"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "#6920ac"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(gnu-cite-face-3 ((t (nil))))
|
||||||
|
'(gnu-cite-face-4 ((t (nil))))
|
||||||
|
'(gnus-cite-attribution-face ((t (:underline t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "MidnightBlue"))))
|
||||||
|
'(gnus-cite-face-10 ((t (:foreground "medium purple"))))
|
||||||
|
'(gnus-cite-face-11 ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "firebrick"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "dark green"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "OrangeRed"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "dark violet"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "SteelBlue4"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "magenta"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "violet"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:underline t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:underline t :italic t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:underline t :italic t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-header-content-face ((t (:italic t :foreground "indianred4"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "red3"))))
|
||||||
|
'(gnus-header-name-face ((t (:foreground "maroon"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:italic t :bold t :foreground "MidnightBlue"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "red4"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "red"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "DarkRed"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:italic t :foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:italic t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:italic t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:italic t))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "Red"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(gnus-x-face ((t (nil))))
|
||||||
|
'(green ((t (:foreground "green"))))
|
||||||
|
'(gui-button-face ((t (:background "grey75"))))
|
||||||
|
'(gui-element ((t (:background "Gray80"))))
|
||||||
|
'(highlight ((t (nil))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(hyper-apropos-documentation ((t (:foreground "darkred"))))
|
||||||
|
'(hyper-apropos-heading ((t (:bold t))))
|
||||||
|
'(hyper-apropos-hyperlink ((t (:foreground "blue4"))))
|
||||||
|
'(hyper-apropos-major-heading ((t (:bold t))))
|
||||||
|
'(hyper-apropos-section-heading ((t (:italic t :bold t))))
|
||||||
|
'(hyper-apropos-warning ((t (:bold t :foreground "red"))))
|
||||||
|
'(info-node ((t (:italic t :bold t))))
|
||||||
|
'(info-xref ((t (:bold t))))
|
||||||
|
'(isearch ((t (:background "yellow" :foreground "red"))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(kai-gnus-cite-face-1 ((t (:foreground "LightCyan4"))))
|
||||||
|
'(kai-gnus-cite-face-2 ((t (:foreground "LightSkyBlue2"))))
|
||||||
|
'(kai-gnus-cite-face-3 ((t (:foreground "DodgerBlue3"))))
|
||||||
|
'(kai-gnus-group-mail-face ((t (:foreground "darkslategrey"))))
|
||||||
|
'(kai-gnus-group-nonempty-mail-face ((t (:foreground "DarkRed"))))
|
||||||
|
'(kai-gnus-group-starred-face ((t (:foreground "grey50"))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(list-mode-item-selected ((t (:background "gray68"))))
|
||||||
|
'(message-cited-text ((t (:italic t))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "MidnightBlue"))))
|
||||||
|
'(message-header-contents ((t (:italic t))))
|
||||||
|
'(message-header-name-face ((t (:foreground "cornflower blue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "blue4"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "steel blue"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "navy blue"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-headers ((t (:bold t))))
|
||||||
|
'(message-highlighted-header-contents ((t (:italic t :bold t))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "brown"))))
|
||||||
|
'(modeline ((t (:background "Gray75" :foreground "Black"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "Gray75" :foreground "blue4"))))
|
||||||
|
'(modeline-mousable ((t (:background "Gray75" :foreground "firebrick"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "Gray75" :foreground "green4"))))
|
||||||
|
'(paren-blink-off ((t (:foreground "gray80"))))
|
||||||
|
'(paren-match ((t (:background "red" :foreground "white"))))
|
||||||
|
'(paren-mismatch ((t (:background "DeepPink"))))
|
||||||
|
'(pointer ((t (:foreground "blue"))))
|
||||||
|
'(primary-selection ((t (:background "gray65"))))
|
||||||
|
'(red ((t (:foreground "red"))))
|
||||||
|
'(region ((t (:background "gray75"))))
|
||||||
|
'(right-margin ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "paleturquoise"))))
|
||||||
|
'(text-cursor ((t (:background "red" :foreground "LightYellow1"))))
|
||||||
|
'(toolbar ((t (:background "Gray80"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(vertical-divider ((t (:background "Gray80"))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(x-face ((t (:background "white"))))
|
||||||
|
'(yellow ((t (:foreground "yellow"))))
|
||||||
|
'(zmacs-region ((t (:background "gray65" :foreground "yellow")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'andreas)
|
||||||
|
|
||||||
|
;;; andreas-theme.el ends here
|
||||||
246
elpa/color-theme-modern-0.0.3/arjen-theme.el
Normal file
246
elpa/color-theme-modern-0.0.3/arjen-theme.el
Normal file
|
|
@ -0,0 +1,246 @@
|
||||||
|
;;; arjen-theme.el --- arjen theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 -- 2008 Arjen Wiersma
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Arjen Wiersma <arjen@wiersma.org>
|
||||||
|
;; Maintainers: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of arjen theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme arjen
|
||||||
|
"arjen theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'arjen
|
||||||
|
|
||||||
|
'(default ((t (:background "black" :foreground "White"))))
|
||||||
|
'(mouse ((t (:foreground "sienna1"))))
|
||||||
|
'(cursor ((t (:background "yellow"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(default ((t (:background "black" :foreground "white"))))
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:bold t))))
|
||||||
|
'(border-glyph ((t (nil))))
|
||||||
|
'(buffers-tab ((t (:background "black" :foreground "white"))))
|
||||||
|
'(buffers-tab-face ((t (:background "black" :foreground "white"))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(cperl-array-face ((t (:foreground "darkseagreen"))))
|
||||||
|
'(cperl-hash-face ((t (:foreground "darkseagreen"))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(cperl-here-face ((t (:foreground "Orange"))))
|
||||||
|
'(cperl-invalid-face ((nil (:underline nil))))
|
||||||
|
'(cperl-pod-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(cperl-pod-head-face ((t (:foreground "darkseagreen"))))
|
||||||
|
'(custom-button-face ((t (nil))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:underline t :foreground "light blue"))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:underline t :foreground "pink"))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "lime green"))))
|
||||||
|
'(custom-variable-button-face ((t (:underline t :bold t))))
|
||||||
|
'(custom-variable-tag-face ((t (:underline t :foreground "light blue"))))
|
||||||
|
'(diary-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(erc-action-face ((t (:bold t))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "sandybrown"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(erc-input-face ((t (:foreground "Beige"))))
|
||||||
|
'(erc-inverse-face ((t (:background "wheat" :foreground "darkslategrey"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-prompt-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-underline-face ((t (:underline t))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "Grey"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "MediumSlateBlue"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:foreground "Coral"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "Violet"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "sandybrown"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "Gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "White"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-prompt-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(fl-comment-face ((t (:foreground "pink"))))
|
||||||
|
'(fl-doc-string-face ((t (:foreground "purple"))))
|
||||||
|
'(fl-function-name-face ((t (:foreground "red"))))
|
||||||
|
'(fl-keyword-face ((t (:foreground "cadetblue"))))
|
||||||
|
'(fl-string-face ((t (:foreground "green"))))
|
||||||
|
'(fl-type-face ((t (:foreground "yellow"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "DarkOrange"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "YellowGreen"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "PaleYellow"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "SlateBlue"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "Orange"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "Green"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "darkseagreen"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Pink"))))
|
||||||
|
'(qt-classes-face ((t (:foreground "Red"))))
|
||||||
|
'(gnus-cite-attribution-face ((t (nil))))
|
||||||
|
'(gnus-cite-face-1 ((t (:bold nil :foreground "deep sky blue"))))
|
||||||
|
'(gnus-cite-face-10 ((t (:foreground "medium purple"))))
|
||||||
|
'(gnus-cite-face-11 ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:bold nil :foreground "cadetblue"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:bold nil :foreground "gold"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "light pink"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "pale green"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:bold nil :foreground "chocolate"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "orange"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "magenta"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "violet"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold nil))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:bold nil))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (nil))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:underline t :bold nil))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:underline t :bold nil))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:underline t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "aquamarine1"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold nil :foreground "aquamarine1"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "aquamarine2"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold nil :foreground "aquamarine2"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "aquamarine3"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold nil :foreground "aquamarine3"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "aquamarine4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold nil :foreground "aquamarine4"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "PaleTurquoise"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold nil :foreground "PaleTurquoise"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold nil :foreground "turquoise"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold nil))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold nil))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold nil))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold nil))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkTurquoise"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold nil :foreground "DarkTurquoise"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "forest green"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold nil :foreground "spring green"))))
|
||||||
|
'(gnus-header-name-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:bold nil :foreground "purple"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold nil :foreground "orange"))))
|
||||||
|
'(gnus-signature-face ((t (:bold nil :foreground "khaki"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "Brown"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold nil :foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold nil :foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold nil :foreground "pink"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold nil))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "pink"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(green ((t (:foreground "green"))))
|
||||||
|
'(gui-button-face ((t (:background "grey75" :foreground "black"))))
|
||||||
|
'(gui-element ((t (:background "#D4D0C8" :foreground "black"))))
|
||||||
|
'(highlight ((t (:background "darkolivegreen"))))
|
||||||
|
'(highline-face ((t (:background "SeaGreen"))))
|
||||||
|
'(holiday-face ((t (:background "DimGray"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:underline t :bold t :foreground "DodgerBlue1"))))
|
||||||
|
'(info-xref ((t (:underline t :foreground "DodgerBlue1"))))
|
||||||
|
'(isearch ((t (:background "blue"))))
|
||||||
|
'(isearch-secondary ((t (:foreground "red3"))))
|
||||||
|
'(italic ((t (nil))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(list-mode-item-selected ((t (:background "gray68" :foreground "white"))))
|
||||||
|
'(message-cited-text-face ((t (:bold t :foreground "green"))))
|
||||||
|
'(message-header-cc-face ((t (:bold t :foreground "green4"))))
|
||||||
|
'(message-header-name-face ((t (:bold t :foreground "orange"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:bold t :foreground "violet"))))
|
||||||
|
'(message-header-other-face ((t (:bold t :foreground "chocolate"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "yellow"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "cadetblue"))))
|
||||||
|
'(message-header-xheader-face ((t (:bold t :foreground "light blue"))))
|
||||||
|
'(message-mml-face ((t (:bold t :foreground "Green3"))))
|
||||||
|
'(message-separator-face ((t (:foreground "blue3"))))
|
||||||
|
'(modeline ((t (:background "DarkRed" :foreground "white" :box (:line-width 1 :style released-button)))))
|
||||||
|
'(modeline-buffer-id ((t (:background "DarkRed" :foreground "white"))))
|
||||||
|
'(modeline-mousable ((t (:background "DarkRed" :foreground "white"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "DarkRed" :foreground "white"))))
|
||||||
|
'(p4-depot-added-face ((t (:foreground "blue"))))
|
||||||
|
'(p4-depot-deleted-face ((t (:foreground "red"))))
|
||||||
|
'(p4-depot-unmapped-face ((t (:foreground "grey30"))))
|
||||||
|
'(p4-diff-change-face ((t (:foreground "dark green"))))
|
||||||
|
'(p4-diff-del-face ((t (:foreground "red"))))
|
||||||
|
'(p4-diff-file-face ((t (:background "gray90"))))
|
||||||
|
'(p4-diff-head-face ((t (:background "gray95"))))
|
||||||
|
'(p4-diff-ins-face ((t (:foreground "blue"))))
|
||||||
|
'(pointer ((t (nil))))
|
||||||
|
'(primary-selection ((t (:background "blue"))))
|
||||||
|
'(red ((t (:foreground "red"))))
|
||||||
|
'(region ((t (:background "blue"))))
|
||||||
|
'(right-margin ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "darkslateblue"))))
|
||||||
|
'(show-paren-match-face ((t (:background "Aquamarine" :foreground "SlateBlue"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "Red" :foreground "White"))))
|
||||||
|
'(text-cursor ((t (:background "yellow" :foreground "black"))))
|
||||||
|
'(toolbar ((t (nil))))
|
||||||
|
'(underline ((nil (:underline nil))))
|
||||||
|
'(vc-mode-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(vertical-divider ((t (nil))))
|
||||||
|
'(widget ((t (nil))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(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"))))
|
||||||
|
'(woman-bold-face ((t (:bold t))))
|
||||||
|
'(woman-italic-face ((t (:foreground "beige"))))
|
||||||
|
'(woman-unknown-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(yellow ((t (:foreground "yellow"))))
|
||||||
|
'(zmacs-region ((t (:background "snow" :foreground "blue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'arjen)
|
||||||
|
|
||||||
|
;;; arjen-theme.el ends here
|
||||||
63
elpa/color-theme-modern-0.0.3/beige-diff-theme.el
Normal file
63
elpa/color-theme-modern-0.0.3/beige-diff-theme.el
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
;;; beige-diff-theme.el --- beige-diff theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of beige-diff theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme beige-diff
|
||||||
|
"beige-diff theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'beige-diff
|
||||||
|
|
||||||
|
'(change-log-acknowledgement-face ((t (:foreground "firebrick"))))
|
||||||
|
'(change-log-conditionals-face ((t (:foreground "khaki" :background "sienna"))))
|
||||||
|
'(change-log-date-face ((t (:foreground "gold"))))
|
||||||
|
'(change-log-email-face ((t (:foreground "khaki" :underline t))))
|
||||||
|
'(change-log-file-face ((t (:bold t :foreground "lemon chiffon"))))
|
||||||
|
'(change-log-function-face ((t (:foreground "khaki" :background "sienna"))))
|
||||||
|
'(change-log-list-face ((t (:foreground "wheat"))))
|
||||||
|
'(change-log-name-face ((t (:bold t :foreground "light goldenrod"))))
|
||||||
|
'(diff-added-face ((t (nil))))
|
||||||
|
'(diff-changed-face ((t (nil))))
|
||||||
|
'(diff-context-face ((t (:foreground "grey50"))))
|
||||||
|
'(diff-file-header-face ((t (:bold t :foreground "lemon chiffon"))))
|
||||||
|
'(diff-function-face ((t (:foreground "grey50"))))
|
||||||
|
'(diff-header-face ((t (:foreground "lemon chiffon"))))
|
||||||
|
'(diff-hunk-header-face ((t (:foreground "light goldenrod"))))
|
||||||
|
'(diff-index-face ((t (:bold t :underline t))))
|
||||||
|
'(diff-nonexistent-face ((t (:bold t :background "grey70" :weight bold))))
|
||||||
|
'(diff-removed-face ((t (nil))))
|
||||||
|
'(log-view-message-face ((t (:foreground "lemon chiffon")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'beige-diff)
|
||||||
|
|
||||||
|
;;; beige-diff-theme.el ends here
|
||||||
59
elpa/color-theme-modern-0.0.3/beige-eshell-theme.el
Normal file
59
elpa/color-theme-modern-0.0.3/beige-eshell-theme.el
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
;;; beige-eshell-theme.el --- beige-eshell theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of beige-eshell theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme beige-eshell
|
||||||
|
"beige-eshell theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'beige-eshell
|
||||||
|
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "Grey"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "dark khaki"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:foreground "Coral"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "gold")))) ; non-standard face
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "dark sea green"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "light steel blue"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "peach puff"))))
|
||||||
|
'(eshell-ls-text-face ((t (:foreground "moccasin")))) ; non-standard face
|
||||||
|
'(eshell-ls-todo-face ((t (:bold t :foreground "yellow green")))) ; non-standard face
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-prompt-face ((t (:foreground "lemon chiffon")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'beige-eshell)
|
||||||
|
|
||||||
|
;;; beige-eshell-theme.el ends here
|
||||||
317
elpa/color-theme-modern-0.0.3/bharadwaj-slate-theme.el
Normal file
317
elpa/color-theme-modern-0.0.3/bharadwaj-slate-theme.el
Normal file
|
|
@ -0,0 +1,317 @@
|
||||||
|
;;; bharadwaj-slate-theme.el --- bharadwaj-slate theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2002 by Girish Bharadwaj
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of bharadwaj-slate theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme bharadwaj-slate
|
||||||
|
"bharadwaj-slate theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'bharadwaj-slate
|
||||||
|
|
||||||
|
'(default ((t (:background "DarkSlateGray" :foreground "palegreen"))))
|
||||||
|
'(mouse ((t (:background "black"))))
|
||||||
|
'(cursor ((t (:background "khaki"))))
|
||||||
|
'(border ((t (:background "black"))))
|
||||||
|
|
||||||
|
'(display-time-mail-face ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(gnus-article-button-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-article-mouse-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(gnus-mouse-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(help-highlight-face ((t (:underline t))))
|
||||||
|
'(ibuffer-deletion-face ((t (:foreground "lightblue3"))))
|
||||||
|
'(ibuffer-filter-group-name-face ((t (:bold t :weight bold))))
|
||||||
|
'(ibuffer-marked-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(ibuffer-title-face ((t (:foreground "lightblue3"))))
|
||||||
|
'(list-matching-lines-buffer-name-face ((t (:underline t))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t :weight bold))))
|
||||||
|
'(view-highlight-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(widget-mouse-face ((t (:background "darkolivegreen"))))
|
||||||
|
|
||||||
|
'(bg:erc-color-face0 ((t (:background "White"))))
|
||||||
|
'(bg:erc-color-face1 ((t (:background "black"))))
|
||||||
|
'(bg:erc-color-face10 ((t (:background "lightblue1"))))
|
||||||
|
'(bg:erc-color-face11 ((t (:background "cyan"))))
|
||||||
|
'(bg:erc-color-face12 ((t (:background "blue"))))
|
||||||
|
'(bg:erc-color-face13 ((t (:background "deeppink"))))
|
||||||
|
'(bg:erc-color-face14 ((t (:background "gray50"))))
|
||||||
|
'(bg:erc-color-face15 ((t (:background "gray90"))))
|
||||||
|
'(bg:erc-color-face2 ((t (:background "blue4"))))
|
||||||
|
'(bg:erc-color-face3 ((t (:background "green4"))))
|
||||||
|
'(bg:erc-color-face4 ((t (:background "red"))))
|
||||||
|
'(bg:erc-color-face5 ((t (:background "brown"))))
|
||||||
|
'(bg:erc-color-face6 ((t (:background "purple"))))
|
||||||
|
'(bg:erc-color-face7 ((t (:background "orange"))))
|
||||||
|
'(bg:erc-color-face8 ((t (:background "yellow"))))
|
||||||
|
'(bg:erc-color-face9 ((t (:background "green"))))
|
||||||
|
'(bold ((t (:bold t :weight bold))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :weight bold))))
|
||||||
|
'(button ((t (:underline t))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(custom-button-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style released-button)))))
|
||||||
|
'(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style pressed-button)))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-comment-face ((t (:background "dim gray"))))
|
||||||
|
'(custom-comment-tag-face ((t (:foreground "gray80"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:bold t :family "helv" :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face ((t (:bold t :foreground "light blue" :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:bold t :family "helv" :foreground "pink" :weight bold :height 1.2))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "lime green"))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(custom-variable-tag-face ((t (:bold t :family "helv" :foreground "light blue" :weight bold :height 1.2))))
|
||||||
|
'(erc-action-face ((t (:bold t :box (:line-width 2 :color "grey75") :weight bold))))
|
||||||
|
'(erc-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(erc-error-face ((t (:background "Red" :foreground "White"))))
|
||||||
|
'(erc-input-face ((t (:foreground "lightblue"))))
|
||||||
|
'(erc-inverse-face ((t (:background "Black" :foreground "White"))))
|
||||||
|
'(erc-notice-face ((t (:bold t :foreground "dodgerblue" :weight bold))))
|
||||||
|
'(erc-prompt-face ((t (:bold t :background "black" :foreground "white" :weight bold))))
|
||||||
|
'(erc-timestamp-face ((t (:bold t :foreground "green" :weight bold))))
|
||||||
|
'(erc-underline-face ((t (:underline t))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "Orchid" :weight bold))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:bold t :foreground "OrangeRed" :weight bold))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "SkyBlue" :weight bold))))
|
||||||
|
'(eshell-ls-executable-face ((t (:bold t :foreground "Green" :weight bold))))
|
||||||
|
'(eshell-ls-missing-face ((t (:bold t :foreground "Red" :weight bold))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "Pink"))))
|
||||||
|
'(eshell-ls-special-face ((t (:bold t :foreground "Magenta" :weight bold))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:bold t :foreground "Cyan" :weight bold))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DarkGrey"))))
|
||||||
|
'(eshell-prompt-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(fg:erc-color-face0 ((t (:foreground "White"))))
|
||||||
|
'(fg:erc-color-face1 ((t (:foreground "black"))))
|
||||||
|
'(fg:erc-color-face10 ((t (:foreground "lightblue1"))))
|
||||||
|
'(fg:erc-color-face11 ((t (:foreground "cyan"))))
|
||||||
|
'(fg:erc-color-face12 ((t (:foreground "blue"))))
|
||||||
|
'(fg:erc-color-face13 ((t (:foreground "deeppink"))))
|
||||||
|
'(fg:erc-color-face14 ((t (:foreground "gray50"))))
|
||||||
|
'(fg:erc-color-face15 ((t (:foreground "gray90"))))
|
||||||
|
'(fg:erc-color-face2 ((t (:foreground "blue4"))))
|
||||||
|
'(fg:erc-color-face3 ((t (:foreground "green4"))))
|
||||||
|
'(fg:erc-color-face4 ((t (:foreground "red"))))
|
||||||
|
'(fg:erc-color-face5 ((t (:foreground "brown"))))
|
||||||
|
'(fg:erc-color-face6 ((t (:foreground "purple"))))
|
||||||
|
'(fg:erc-color-face7 ((t (:foreground "orange"))))
|
||||||
|
'(fg:erc-color-face8 ((t (:foreground "yellow"))))
|
||||||
|
'(fg:erc-color-face9 ((t (:foreground "green"))))
|
||||||
|
'(fixed-pitch ((t (:family "courier"))))
|
||||||
|
'(font-lock-builtin-face ((t (:bold t :foreground "pink" :weight bold :height 1.1))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "violet" :height 1.0))))
|
||||||
|
'(font-lock-constant-face ((t (:bold t :foreground "tomato" :weight bold :height 1.0))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "DodgerBlue" :weight bold))))
|
||||||
|
'(font-lock-keyword-face ((t (:bold t :foreground "turquoise" :weight bold))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:bold t :foreground "tomato" :weight bold :height 1.0))))
|
||||||
|
'(font-lock-reference-face ((t (:bold t :foreground "pink" :weight bold :height 1.1))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "red" :height 1.0))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "lightblue3"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:bold t :foreground "gray" :weight bold :height 1.0))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(fringe ((t (:background "DarkSlateGray"))))
|
||||||
|
'(gnus-cite-attribution-face ((t (:italic t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "light blue"))))
|
||||||
|
'(gnus-cite-face-10 ((t (:foreground "medium purple"))))
|
||||||
|
'(gnus-cite-face-11 ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "light yellow"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "light pink"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "pale green"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "beige"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "orange"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "magenta"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "violet"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t :weight bold))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t :weight bold))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:italic t :underline t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "aquamarine1"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "aquamarine1" :weight bold))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "aquamarine2"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "aquamarine2" :weight bold))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "aquamarine3"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "aquamarine3" :weight bold))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "aquamarine4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "aquamarine4" :weight bold))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "PaleTurquoise"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "PaleTurquoise" :weight bold))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "turquoise" :weight bold))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkTurquoise"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "DarkTurquoise" :weight bold))))
|
||||||
|
'(gnus-header-content-face ((t (:italic t :foreground "forest green"))))
|
||||||
|
'(gnus-header-from-face ((t (:foreground "spring green"))))
|
||||||
|
'(gnus-header-name-face ((t (:foreground "SeaGreen"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:italic t :foreground "yellow"))))
|
||||||
|
'(gnus-header-subject-face ((t (:foreground "SeaGreen3"))))
|
||||||
|
'(gnus-signature-face ((t (:italic t))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "Brown"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "SkyBlue" :weight bold))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "PaleGreen" :weight bold))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "pink" :weight bold))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:italic t :foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:italic t :foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:italic t :foreground "pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:italic t))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "pink"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(header-line ((t (:underline "blueviolet" :overline "blueviolet" :background "grey20" :foreground "grey90"))))
|
||||||
|
'(highlight ((t (:background "darkolivegreen"))))
|
||||||
|
'(html-helper-bold-face ((t (:bold t :foreground "wheat" :weight bold))))
|
||||||
|
'(html-helper-italic-face ((t (:italic t :foreground "spring green"))))
|
||||||
|
'(html-helper-underline-face ((t (:foreground "cornsilk" :underline t))))
|
||||||
|
'(html-tag-face ((t (:bold t :foreground "deep sky blue" :weight bold))))
|
||||||
|
'(info-menu-6 ((t (nil))))
|
||||||
|
'(isearch ((t (:background "palevioletred2" :foreground "brown4"))))
|
||||||
|
'(isearch-lazy-highlight-face ((t (:background "paleturquoise4"))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(jde-bug-breakpoint-cursor ((t (:background "brown" :foreground "cyan"))))
|
||||||
|
'(jde-db-active-breakpoint-face ((t (:background "red" :foreground "black"))))
|
||||||
|
'(jde-db-requested-breakpoint-face ((t (:background "yellow" :foreground "black"))))
|
||||||
|
'(jde-db-spec-breakpoint-face ((t (:background "green" :foreground "black"))))
|
||||||
|
'(jde-java-font-lock-api-face ((t (:foreground "light goldenrod"))))
|
||||||
|
'(jde-java-font-lock-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(jde-java-font-lock-code-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(jde-java-font-lock-doc-tag-face ((t (:foreground "light coral"))))
|
||||||
|
'(jde-java-font-lock-italic-face ((t (:italic t))))
|
||||||
|
'(jde-java-font-lock-link-face ((t (:foreground "blue" :underline t :slant normal))))
|
||||||
|
'(jde-java-font-lock-modifier-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(jde-java-font-lock-number-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(jde-java-font-lock-operator-face ((t (:foreground "medium blue"))))
|
||||||
|
'(jde-java-font-lock-package-face ((t (:foreground "steelblue1"))))
|
||||||
|
'(jde-java-font-lock-pre-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-underline-face ((t (:underline t))))
|
||||||
|
'(menu ((t (nil))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:bold t :foreground "green4" :weight bold))))
|
||||||
|
'(message-header-name-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "yellow" :weight bold))))
|
||||||
|
'(message-header-other-face ((t (:foreground "#b00000"))))
|
||||||
|
'(message-header-subject-face ((t (:foreground "green3"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "green2" :weight bold))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "blue3"))))
|
||||||
|
'(minibuffer-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(mode-line ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(mode-line-inactive ((t (:italic t :underline "blueviolet" :overline "blueviolet" :background "white" :foreground "cadetblue" :weight light))))
|
||||||
|
'(modeline ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(modeline-mousable ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "Darkslategray" :foreground "white" :overline "blueviolet" :underline "blueviolet"))))
|
||||||
|
'(primary-selection ((t (:background "dimgray"))))
|
||||||
|
'(region ((t (:background "dimgray"))))
|
||||||
|
'(scroll-bar ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "SkyBlue4"))))
|
||||||
|
'(semantic-dirty-token-face ((t (:background "lightyellow"))))
|
||||||
|
'(semantic-unmatched-syntax-face ((t (:underline "red"))))
|
||||||
|
'(senator-intangible-face ((t (:foreground "gray75"))))
|
||||||
|
'(senator-momentary-highlight-face ((t (:background "gray30"))))
|
||||||
|
'(senator-read-only-face ((t (:background "#664444"))))
|
||||||
|
'(show-paren-match-face ((t (:bold t :foreground "lightblue" :weight bold :height 1.1))))
|
||||||
|
'(show-paren-mismatch-face ((t (:bold t :foreground "red" :weight bold :height 1.1))))
|
||||||
|
'(show-tabs-space-face ((t (:foreground "yellow"))))
|
||||||
|
'(show-tabs-tab-face ((t (:foreground "red"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "green3"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "light blue"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "cyan"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "sea green"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "red" :underline t))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "yellow"))))
|
||||||
|
'(template-message-face ((t (:bold t :weight bold))))
|
||||||
|
'(term-black ((t (:foreground "black"))))
|
||||||
|
'(term-blackbg ((t (:background "black"))))
|
||||||
|
'(term-blue ((t (:foreground "blue"))))
|
||||||
|
'(term-bluebg ((t (:background "blue"))))
|
||||||
|
'(term-bold ((t (:bold t :weight bold))))
|
||||||
|
'(term-cyan ((t (:foreground "cyan"))))
|
||||||
|
'(term-cyanbg ((t (:background "cyan"))))
|
||||||
|
'(term-default ((t (:background "DarkSlateGray" :foreground "palegreen"))))
|
||||||
|
'(term-default-bg ((t (nil))))
|
||||||
|
'(term-default-bg-inv ((t (nil))))
|
||||||
|
'(term-default-fg ((t (nil))))
|
||||||
|
'(term-default-fg-inv ((t (nil))))
|
||||||
|
'(term-green ((t (:foreground "green"))))
|
||||||
|
'(term-greenbg ((t (:background "green"))))
|
||||||
|
'(term-invisible ((t (nil))))
|
||||||
|
'(term-invisible-inv ((t (nil))))
|
||||||
|
'(term-magenta ((t (:foreground "magenta"))))
|
||||||
|
'(term-magentabg ((t (:background "magenta"))))
|
||||||
|
'(term-red ((t (:foreground "red"))))
|
||||||
|
'(term-redbg ((t (:background "red"))))
|
||||||
|
'(term-underline ((t (:underline t))))
|
||||||
|
'(term-white ((t (:foreground "white"))))
|
||||||
|
'(term-whitebg ((t (:background "white"))))
|
||||||
|
'(term-yellow ((t (:foreground "yellow"))))
|
||||||
|
'(term-yellowbg ((t (:background "yellow"))))
|
||||||
|
'(tool-bar ((t (:background "DarkSlateGray" :foreground "White"))))
|
||||||
|
'(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"))))
|
||||||
|
'(zmacs-region ((t (:background "dimgray")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'bharadwaj-slate)
|
||||||
|
|
||||||
|
;;; bharadwaj-slate-theme.el ends here
|
||||||
377
elpa/color-theme-modern-0.0.3/bharadwaj-theme.el
Normal file
377
elpa/color-theme-modern-0.0.3/bharadwaj-theme.el
Normal file
|
|
@ -0,0 +1,377 @@
|
||||||
|
;;; bharadwaj-theme.el --- bharadwaj theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 by Girish Bharadwaj
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of bharadwaj theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme bharadwaj
|
||||||
|
"bharadwaj theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'bharadwaj
|
||||||
|
|
||||||
|
'(default ((t (:background "gainsboro" :foreground "black"))))
|
||||||
|
'(mouse ((t (:foreground "grey15"))))
|
||||||
|
'(cursor ((t (:background "grey15"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(gnus-mouse-face ((t (:background "LightSkyBlue"))))
|
||||||
|
'(smiley-mouse-face ((t (:background "LightSkyBlue"))))
|
||||||
|
|
||||||
|
'(bbdb-company ((t (nil))))
|
||||||
|
'(bbdb-field-name ((t (:bold t))))
|
||||||
|
'(bbdb-field-value ((t (nil))))
|
||||||
|
'(bbdb-name ((t (:underline t))))
|
||||||
|
'(blank-space-face ((t (nil))))
|
||||||
|
'(blank-tab-face ((t (nil))))
|
||||||
|
'(blue ((t (nil))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:bold t))))
|
||||||
|
'(border-glyph ((t (nil))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(comint-input-face ((t (:foreground "deepskyblue"))))
|
||||||
|
'(cperl-array-face ((t (:bold t :background "lightyellow2" :foreground "Blue"))))
|
||||||
|
'(cperl-hash-face ((t (:bold t :background "lightyellow2" :foreground "Red"))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "chartreuse3"))))
|
||||||
|
'(custom-button-face ((t (:bold t))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:underline t :bold t :foreground "blue"))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:underline t :foreground "red"))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "dark green"))))
|
||||||
|
'(custom-variable-button-face ((t (:underline t :bold t))))
|
||||||
|
'(custom-variable-tag-face ((t (:underline t :bold t :foreground "blue"))))
|
||||||
|
'(cvs-filename-face ((t (:foreground "blue4"))))
|
||||||
|
'(cvs-handled-face ((t (:foreground "pink"))))
|
||||||
|
'(cvs-header-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(cvs-marked-face ((t (:bold t :foreground "green3"))))
|
||||||
|
'(cvs-msg-face ((t (nil))))
|
||||||
|
'(cvs-need-action-face ((t (:foreground "orange"))))
|
||||||
|
'(cvs-unknown-face ((t (:foreground "red"))))
|
||||||
|
'(diary-face ((t (:bold t :foreground "red"))))
|
||||||
|
'(dired-face-boring ((t (:foreground "Gray65"))))
|
||||||
|
'(dired-face-directory ((t (:bold t :foreground "forestgreen"))))
|
||||||
|
'(dired-face-executable ((t (:foreground "indianred"))))
|
||||||
|
'(dired-face-flagged ((t (:background "SlateGray"))))
|
||||||
|
'(dired-face-marked ((t (:background "darkblue" :foreground "deepskyblue"))))
|
||||||
|
'(dired-face-permissions ((t (nil))))
|
||||||
|
'(dired-face-setuid ((t (:foreground "Red"))))
|
||||||
|
'(dired-face-socket ((t (:foreground "magenta"))))
|
||||||
|
'(dired-face-symlink ((t (:foreground "grey95"))))
|
||||||
|
'(display-time-mail-balloon-enhance-face ((t (:background "orange"))))
|
||||||
|
'(display-time-mail-balloon-gnus-group-face ((t (:foreground "blue"))))
|
||||||
|
'(display-time-time-balloon-face ((t (:foreground "red"))))
|
||||||
|
'(ediff-current-diff-face-A ((t (:background "pale green" :foreground "firebrick"))))
|
||||||
|
'(ediff-current-diff-face-Ancestor ((t (:background "VioletRed" :foreground "Black"))))
|
||||||
|
'(ediff-current-diff-face-B ((t (:background "Yellow" :foreground "DarkOrchid"))))
|
||||||
|
'(ediff-current-diff-face-C ((t (:background "Pink" :foreground "Navy"))))
|
||||||
|
'(ediff-even-diff-face-A ((t (:background "light grey" :foreground "Black"))))
|
||||||
|
'(ediff-even-diff-face-Ancestor ((t (:background "Grey" :foreground "White"))))
|
||||||
|
'(ediff-even-diff-face-B ((t (:background "Grey" :foreground "White"))))
|
||||||
|
'(ediff-even-diff-face-C ((t (:background "light grey" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-A ((t (:background "sky blue" :foreground "Navy"))))
|
||||||
|
'(ediff-fine-diff-face-Ancestor ((t (:background "Green" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-B ((t (:background "cyan" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-C ((t (:background "Turquoise" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-A ((t (:background "Grey" :foreground "White"))))
|
||||||
|
'(ediff-odd-diff-face-Ancestor ((t (:background "light grey" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-B ((t (:background "light grey" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-C ((t (:background "Grey" :foreground "White"))))
|
||||||
|
'(erc-action-face ((t (:bold t))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (nil))))
|
||||||
|
'(erc-error-face ((t (:bold t))))
|
||||||
|
'(erc-input-face ((t (nil))))
|
||||||
|
'(erc-inverse-face ((t (nil))))
|
||||||
|
'(erc-notice-face ((t (nil))))
|
||||||
|
'(erc-pal-face ((t (nil))))
|
||||||
|
'(erc-prompt-face ((t (nil))))
|
||||||
|
'(erc-underline-face ((t (nil))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "Orchid"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "OrangeRed"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:bold t :foreground "OrangeRed"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "Blue"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:bold t :foreground "ForestGreen"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(eshell-ls-picture-face ((t (nil))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "OrangeRed"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "Brown"))))
|
||||||
|
'(eshell-ls-special-face ((t (:bold t :foreground "Magenta"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:bold t :foreground "DarkCyan"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "Grey30"))))
|
||||||
|
'(eshell-prompt-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(eshell-test-failed-face ((t (:bold t :foreground "OrangeRed"))))
|
||||||
|
'(eshell-test-ok-face ((t (:bold t :foreground "Green"))))
|
||||||
|
'(excerpt ((t (nil))))
|
||||||
|
'(ff-paths-non-existant-file-face ((t (:bold t :foreground "NavyBlue"))))
|
||||||
|
'(fg:black ((t (:foreground "black"))))
|
||||||
|
'(fixed ((t (:bold t))))
|
||||||
|
'(flyspell-duplicate-face ((t (:underline t :bold t :foreground "Gold3"))))
|
||||||
|
'(flyspell-incorrect-face ((t (:underline t :bold t :foreground "OrangeRed"))))
|
||||||
|
'(font-latex-bold-face ((t (nil))))
|
||||||
|
'(font-latex-italic-face ((t (nil))))
|
||||||
|
'(font-latex-math-face ((t (nil))))
|
||||||
|
'(font-latex-sedate-face ((t (nil))))
|
||||||
|
'(font-latex-string-face ((t (nil))))
|
||||||
|
'(font-latex-warning-face ((t (nil))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "grey55"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "OliveDrab"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(font-lock-exit-face ((t (nil))))
|
||||||
|
'(font-lock-function-name-face ((t (:italic t :bold t :foreground "SlateBlue"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "DarkBlue"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "DarkRed"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "SteelBlue4"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "DarkGoldenrod"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "VioletRed"))))
|
||||||
|
'(fringe ((t (:background "grey95"))))
|
||||||
|
'(gnus-cite-attribution-face ((t (:bold t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "MidnightBlue"))))
|
||||||
|
'(gnus-cite-face-10 ((t (:foreground "medium purple"))))
|
||||||
|
'(gnus-cite-face-11 ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "firebrick"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "dark green"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "OrangeRed"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "dark violet"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "SteelBlue4"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "magenta"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "violet"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (nil))))
|
||||||
|
'(gnus-emphasis-italic ((t (nil))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:underline t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:underline t :bold t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:underline t))))
|
||||||
|
'(gnus-filterhist-face-1 ((t (nil))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "DeepPink3"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "HotPink3"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "magenta4"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "DeepPink4"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "CadetBlue4"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "indianred4"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "red3"))))
|
||||||
|
'(gnus-header-name-face ((t (:bold t :foreground "maroon"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "red4"))))
|
||||||
|
'(gnus-picons-face ((t (:background "white" :foreground "black"))))
|
||||||
|
'(gnus-picons-xbm-face ((t (:background "white" :foreground "black"))))
|
||||||
|
'(gnus-signature-face ((t (nil))))
|
||||||
|
'(gnus-splash ((t (nil))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:bold t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "RoyalBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:bold t :foreground "firebrick"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (:bold t))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(gnus-x-face ((t (:background "white" :foreground "black"))))
|
||||||
|
'(green ((t (nil))))
|
||||||
|
'(gui-button-face ((t (:background "grey75"))))
|
||||||
|
'(gui-element ((t (:background "Gray80"))))
|
||||||
|
'(highlight ((t (:background "LightSkyBlue"))))
|
||||||
|
'(highlight-changes-delete-face ((t (:underline t :foreground "red"))))
|
||||||
|
'(highlight-changes-face ((t (:foreground "red"))))
|
||||||
|
'(highline-face ((t (:background "grey95"))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(html-helper-italic-face ((t (nil))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:bold t))))
|
||||||
|
'(info-xref ((t (:bold t))))
|
||||||
|
'(isearch ((t (:background "yellow"))))
|
||||||
|
'(isearch-secondary ((t (:foreground "red3"))))
|
||||||
|
'(italic ((t (nil))))
|
||||||
|
'(lazy-highlight-face ((t (:bold t :foreground "dark magenta"))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(linemenu-face ((t (nil))))
|
||||||
|
'(list-mode-item-selected ((t (nil))))
|
||||||
|
'(makefile-space-face ((t (:background "hotpink"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "cornflower blue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "steel blue"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "navy blue"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:bold t))))
|
||||||
|
'(message-separator-face ((t (:foreground "brown"))))
|
||||||
|
'(modeline ((t (:background "white" :foreground "black"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "white" :foreground "black"))))
|
||||||
|
'(modeline-mousable ((t (:background "white" :foreground "black"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "white" :foreground "black"))))
|
||||||
|
'(paren-blink-off ((t (:foreground "gray80"))))
|
||||||
|
'(paren-face-match ((t (:background "turquoise"))))
|
||||||
|
'(paren-face-mismatch ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(paren-face-no-match ((t (:background "yellow" :foreground "black"))))
|
||||||
|
'(paren-match ((t (:background "darkseagreen2"))))
|
||||||
|
'(paren-mismatch ((t (:background "DeepPink" :foreground "black"))))
|
||||||
|
'(paren-mismatch-face ((t (:bold t))))
|
||||||
|
'(paren-no-match-face ((t (:bold t))))
|
||||||
|
'(pointer ((t (nil))))
|
||||||
|
'(primary-selection ((t (nil))))
|
||||||
|
'(red ((t (nil))))
|
||||||
|
'(region ((t (:background "grey80"))))
|
||||||
|
'(right-margin ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "grey55"))))
|
||||||
|
'(sgml-comment-face ((t (:foreground "dark turquoise"))))
|
||||||
|
'(sgml-doctype-face ((t (nil))))
|
||||||
|
'(sgml-end-tag-face ((t (nil))))
|
||||||
|
'(sgml-entity-face ((t (nil))))
|
||||||
|
'(sgml-ignored-face ((t (nil))))
|
||||||
|
'(sgml-ms-end-face ((t (:foreground "green"))))
|
||||||
|
'(sgml-ms-start-face ((t (:foreground "green"))))
|
||||||
|
'(sgml-pi-face ((t (:foreground "lime green"))))
|
||||||
|
'(sgml-sgml-face ((t (nil))))
|
||||||
|
'(sgml-short-ref-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(sgml-start-tag-face ((t (nil))))
|
||||||
|
'(shell-option-face ((t (:foreground "blue"))))
|
||||||
|
'(shell-output-2-face ((t (:foreground "darkseagreen"))))
|
||||||
|
'(shell-output-3-face ((t (:foreground "slategrey"))))
|
||||||
|
'(shell-output-face ((t (:foreground "palegreen"))))
|
||||||
|
'(shell-prompt-face ((t (:foreground "red"))))
|
||||||
|
'(show-paren-match-face ((t (:background "grey80"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:bold t :background "purple" :foreground "white"))))
|
||||||
|
'(speedbar-button-face ((t (:bold t :foreground "green4"))))
|
||||||
|
'(speedbar-directory-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(speedbar-file-face ((t (:bold t :foreground "cyan4"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "green"))))
|
||||||
|
'(speedbar-selected-face ((t (:underline t :foreground "red"))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "brown"))))
|
||||||
|
'(swbuff-current-buffer-face ((t (:bold t))))
|
||||||
|
'(template-message-face ((t (:bold t))))
|
||||||
|
'(term-black ((t (:foreground "black"))))
|
||||||
|
'(term-blackbg ((t (:background "black"))))
|
||||||
|
'(term-blue ((t (:foreground "blue"))))
|
||||||
|
'(term-bluebg ((t (:background "blue"))))
|
||||||
|
'(term-bold ((t (:bold t))))
|
||||||
|
'(term-cyan ((t (:foreground "cyan"))))
|
||||||
|
'(term-cyanbg ((t (:background "cyan"))))
|
||||||
|
'(term-default-bg ((t (nil))))
|
||||||
|
'(term-default-bg-inv ((t (nil))))
|
||||||
|
'(term-default-fg ((t (nil))))
|
||||||
|
'(term-default-fg-inv ((t (nil))))
|
||||||
|
'(term-green ((t (:foreground "green"))))
|
||||||
|
'(term-greenbg ((t (:background "green"))))
|
||||||
|
'(term-invisible ((t (nil))))
|
||||||
|
'(term-invisible-inv ((t (nil))))
|
||||||
|
'(term-magenta ((t (:foreground "magenta"))))
|
||||||
|
'(term-magentabg ((t (:background "magenta"))))
|
||||||
|
'(term-red ((t (:foreground "red"))))
|
||||||
|
'(term-redbg ((t (:background "red"))))
|
||||||
|
'(term-underline ((t (:underline t))))
|
||||||
|
'(term-white ((t (:foreground "white"))))
|
||||||
|
'(term-whitebg ((t (:background "white"))))
|
||||||
|
'(term-yellow ((t (:foreground "yellow"))))
|
||||||
|
'(term-yellowbg ((t (:background "yellow"))))
|
||||||
|
'(text-cursor ((t (:background "grey15" :foreground "gainsboro"))))
|
||||||
|
'(toolbar ((t (nil))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(vc-annotate-face-0046FF ((t (nil))))
|
||||||
|
'(vcursor ((t (:underline t :background "cyan" :foreground "blue"))))
|
||||||
|
'(vertical-divider ((t (nil))))
|
||||||
|
'(vhdl-font-lock-attribute-face ((t (:foreground "Orchid"))))
|
||||||
|
'(vhdl-font-lock-directive-face ((t (:foreground "CadetBlue"))))
|
||||||
|
'(vhdl-font-lock-enumvalue-face ((t (:foreground "Gold4"))))
|
||||||
|
'(vhdl-font-lock-function-face ((t (:foreground "Orchid4"))))
|
||||||
|
'(vhdl-font-lock-prompt-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(vhdl-font-lock-reserved-words-face ((t (:bold t :foreground "Orange"))))
|
||||||
|
'(vhdl-font-lock-translate-off-face ((t (:background "LightGray"))))
|
||||||
|
'(vhdl-speedbar-architecture-face ((t (:foreground "Blue"))))
|
||||||
|
'(vhdl-speedbar-architecture-selected-face ((t (:underline t :foreground "Blue"))))
|
||||||
|
'(vhdl-speedbar-configuration-face ((t (:foreground "DarkGoldenrod"))))
|
||||||
|
'(vhdl-speedbar-configuration-selected-face ((t (:underline t :foreground "DarkGoldenrod"))))
|
||||||
|
'(vhdl-speedbar-entity-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(vhdl-speedbar-entity-selected-face ((t (:underline t :foreground "ForestGreen"))))
|
||||||
|
'(vhdl-speedbar-instantiation-face ((t (:foreground "Brown"))))
|
||||||
|
'(vhdl-speedbar-instantiation-selected-face ((t (:underline t :foreground "Brown"))))
|
||||||
|
'(vhdl-speedbar-package-face ((t (:foreground "Grey50"))))
|
||||||
|
'(vhdl-speedbar-package-selected-face ((t (:underline t :foreground "Grey50"))))
|
||||||
|
'(viper-minibuffer-emacs-face ((t (:background "darkseagreen2" :foreground "Black"))))
|
||||||
|
'(viper-minibuffer-insert-face ((t (:background "pink" :foreground "Black"))))
|
||||||
|
'(viper-minibuffer-vi-face ((t (:background "grey" :foreground "DarkGreen"))))
|
||||||
|
'(viper-replace-overlay-face ((t (:background "darkseagreen2" :foreground "Black"))))
|
||||||
|
'(viper-search-face ((t (:background "khaki" :foreground "Black"))))
|
||||||
|
'(vvb-face ((t (:background "pink" :foreground "black"))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "navy" :foreground "white"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "royalblue" :foreground "white"))))
|
||||||
|
'(woman-bold-face ((t (:bold t))))
|
||||||
|
'(woman-italic-face ((t (nil))))
|
||||||
|
'(woman-unknown-face ((t (nil))))
|
||||||
|
'(xref-keyword-face ((t (:foreground "blue"))))
|
||||||
|
'(xref-list-pilot-face ((t (:foreground "navy"))))
|
||||||
|
'(xref-list-symbol-face ((t (:foreground "navy"))))
|
||||||
|
'(yellow ((t (nil))))
|
||||||
|
'(zmacs-region ((t (:background "royalblue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'bharadwaj)
|
||||||
|
|
||||||
|
;;; bharadwaj-theme.el ends here
|
||||||
217
elpa/color-theme-modern-0.0.3/billw-theme.el
Normal file
217
elpa/color-theme-modern-0.0.3/billw-theme.el
Normal file
|
|
@ -0,0 +1,217 @@
|
||||||
|
;;; billw-theme.el --- billw theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of billw theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme billw
|
||||||
|
"billw theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'billw
|
||||||
|
|
||||||
|
'(default ((t (:background "black" :foreground "cornsilk"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "white"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(modeline ((t (:foreground "black" :background "wheat"))))
|
||||||
|
'(modeline-buffer-id ((t (:foreground "black" :background "wheat"))))
|
||||||
|
'(modeline-mousable ((t (:foreground "black" :background "wheat"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:foreground "black" :background "wheat"))))
|
||||||
|
'(highlight ((t (:foreground "wheat" :background "darkslategray"))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(bold-italic ((t (:bold t :italic t))))
|
||||||
|
'(region ((t (:background "dimgray"))))
|
||||||
|
'(secondary-selection ((t (:background "deepskyblue4"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(info-node ((t (:foreground "yellow" :bold t :italic t))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-xref ((t (:foreground "yellow" :bold t))))
|
||||||
|
'(diary-face ((t (:foreground "orange"))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(holiday-face ((t (:background "red"))))
|
||||||
|
'(show-paren-match-face ((t (:background "deepskyblue4"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:foreground "white" :background "red"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "gold"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "orange"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "cyan1"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "mediumspringgreen"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "light salmon"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "yellow1"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "salmon"))))
|
||||||
|
'(font-lock-warning-face ((t (:foreground "gold" :bold t))))
|
||||||
|
'(blank-space-face ((t (:background "LightGray"))))
|
||||||
|
'(blank-tab-face ((t (:foreground "black" :background "cornsilk"))))
|
||||||
|
'(highline-face ((t (:background "gray35"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:foreground "green" :bold t))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "Cyan" :bold t))))
|
||||||
|
'(eshell-ls-executable-face ((t (:foreground "orange" :bold t))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "gray"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DarkGrey"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "Magenta" :bold t))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "Red" :bold t))))
|
||||||
|
'(eshell-ls-archive-face ((t (:foreground "Orchid" :bold t))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "blue" :bold t))))
|
||||||
|
'(sgml-start-tag-face ((t (:foreground "mediumspringgreen"))))
|
||||||
|
'(custom-button-face ((t (:foreground "white"))))
|
||||||
|
'(sgml-ignored-face ((t (:foreground "gray20" :background "gray60"))))
|
||||||
|
'(sgml-doctype-face ((t (:foreground "orange"))))
|
||||||
|
'(sgml-sgml-face ((t (:foreground "yellow"))))
|
||||||
|
'(vc-annotate-face-0046FF ((t (:foreground "wheat" :background "black"))))
|
||||||
|
'(custom-documentation-face ((t (:foreground "white"))))
|
||||||
|
'(sgml-end-tag-face ((t (:foreground "greenyellow"))))
|
||||||
|
'(linemenu-face ((t (:background "gray30"))))
|
||||||
|
'(sgml-entity-face ((t (:foreground "gold"))))
|
||||||
|
'(message-header-to-face ((t (:foreground "floral white" :bold t))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "ivory"))))
|
||||||
|
'(message-header-subject-face ((t (:foreground "papaya whip" :bold t))))
|
||||||
|
'(message-header-newsgroups-face ((t (:foreground "lavender blush" :bold t :italic t))))
|
||||||
|
'(message-header-other-face ((t (:foreground "pale turquoise"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "light sky blue"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-separator-face ((t (:foreground "sandy brown"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "plum1"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:foreground "white" :bold t))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "white"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:foreground "lightcyan" :bold t))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "lightcyan"))))
|
||||||
|
'(gnus-group-news-3-face ((t (:foreground "tan" :bold t))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (:foreground "tan"))))
|
||||||
|
'(gnus-group-news-4-face ((t (:foreground "white" :bold t))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (:foreground "white"))))
|
||||||
|
'(gnus-group-news-5-face ((t (:foreground "wheat" :bold t))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (:foreground "wheat"))))
|
||||||
|
'(gnus-group-news-6-face ((t (:foreground "tan" :bold t))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (:foreground "tan"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:foreground "DarkTurquoise" :bold t))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkTurquoise"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:foreground "white" :bold t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "gray80"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:foreground "lightcyan" :bold t))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "lightcyan"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:foreground "tan" :bold t))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "tan"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:foreground "aquamarine4" :bold t))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "aquamarine4"))))
|
||||||
|
'(gnus-summary-selected-face ((t (:background "deepskyblue4" :underline t))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:foreground "black" :background "gray"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:foreground "gray70" :bold t))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "gray70" :bold t))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "gray70" :bold t))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:foreground "SkyBlue" :bold t))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "SkyBlue" :italic t))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:italic t))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:foreground "PaleGreen" :bold t))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "PaleGreen" :italic t))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "gold"))))
|
||||||
|
'(font-latex-bold-face ((t (nil))))
|
||||||
|
'(font-latex-italic-face ((t (nil))))
|
||||||
|
'(font-latex-math-face ((t (nil))))
|
||||||
|
'(font-latex-sedate-face ((t (:foreground "Gray85"))))
|
||||||
|
'(font-latex-string-face ((t (:foreground "orange"))))
|
||||||
|
'(font-latex-warning-face ((t (:foreground "gold"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "lime green"))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-field-face ((t (:background "gray20"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "gray20"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "wheat"))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(custom-invalid-face ((t (:foreground "yellow" :background "red"))))
|
||||||
|
'(custom-rogue-face ((t (:foreground "pink" :background "black"))))
|
||||||
|
'(custom-modified-face ((t (:foreground "white" :background "blue"))))
|
||||||
|
'(custom-set-face ((t (:foreground "blue"))))
|
||||||
|
'(custom-changed-face ((t (:foreground "wheat" :background "skyblue"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-state-face ((t (:foreground "light green"))))
|
||||||
|
'(custom-variable-tag-face ((t (:foreground "skyblue" :underline t))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t))))
|
||||||
|
'(custom-face-tag-face ((t (:foreground "white" :underline t))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:foreground "pink" :underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:foreground "skyblue" :underline t))))
|
||||||
|
'(swbuff-current-buffer-face ((t (:foreground "red" :bold t))))
|
||||||
|
'(ediff-current-diff-face-A ((t (:foreground "firebrick" :background "pale green"))))
|
||||||
|
'(ediff-current-diff-face-B ((t (:foreground "DarkOrchid" :background "Yellow"))))
|
||||||
|
'(ediff-current-diff-face-C ((t (:foreground "white" :background "indianred"))))
|
||||||
|
'(ediff-current-diff-face-Ancestor ((t (:foreground "Black" :background "VioletRed"))))
|
||||||
|
'(ediff-fine-diff-face-A ((t (:foreground "Navy" :background "sky blue"))))
|
||||||
|
'(ediff-fine-diff-face-B ((t (:foreground "Black" :background "cyan"))))
|
||||||
|
'(ediff-fine-diff-face-C ((t (:foreground "Black" :background "Turquoise"))))
|
||||||
|
'(ediff-fine-diff-face-Ancestor ((t (:foreground "Black" :background "Green"))))
|
||||||
|
'(ediff-even-diff-face-A ((t (:foreground "Black" :background "light grey"))))
|
||||||
|
'(ediff-even-diff-face-B ((t (:foreground "White" :background "Grey"))))
|
||||||
|
'(ediff-even-diff-face-C ((t (:foreground "Black" :background "light grey"))))
|
||||||
|
'(ediff-even-diff-face-Ancestor ((t (:foreground "White" :background "Grey"))))
|
||||||
|
'(ediff-odd-diff-face-A ((t (:foreground "White" :background "Grey"))))
|
||||||
|
'(ediff-odd-diff-face-B ((t (:foreground "Black" :background "light grey"))))
|
||||||
|
'(ediff-odd-diff-face-C ((t (:foreground "White" :background "Grey"))))
|
||||||
|
'(ediff-odd-diff-face-Ancestor ((t (:foreground "Black" :background "light grey"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:foreground "white" :background "goldenrod4"))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:foreground "black" :background "yellow" :bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:foreground "black" :background "yellow" :italic t :underline t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:bold t :italic t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:foreground "black" :background "yellow" :bold t :italic t :underline t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:foreground "yellow" :background "black"))))
|
||||||
|
'(gnus-signature-face ((t (:italic t))))
|
||||||
|
'(gnus-header-from-face ((t (:foreground "wheat"))))
|
||||||
|
'(gnus-header-subject-face ((t (:foreground "wheat" :bold t))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:foreground "wheat" :italic t))))
|
||||||
|
'(gnus-header-name-face ((t (:foreground "white"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "tan" :italic t))))
|
||||||
|
'(gnus-filterhist-face-1 ((t (nil))))
|
||||||
|
'(gnus-splash ((t (:foreground "Brown"))))
|
||||||
|
'(gnus-cite-attribution-face ((t (:italic t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "light blue"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "light yellow"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "light pink"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "pale green"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "beige"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "orange"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "magenta"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "violet"))))
|
||||||
|
'(gnus-cite-face-10 ((t (:foreground "medium purple"))))
|
||||||
|
'(gnus-cite-face-11 ((t (:foreground "turquoise")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'billw)
|
||||||
|
|
||||||
|
;;; billw-theme.el ends here
|
||||||
123
elpa/color-theme-modern-0.0.3/black-on-gray-theme.el
Normal file
123
elpa/color-theme-modern-0.0.3/black-on-gray-theme.el
Normal file
|
|
@ -0,0 +1,123 @@
|
||||||
|
;;; black-on-gray-theme.el --- black-on-gray theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2002 by sbhojwani
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of black-on-gray theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme black-on-gray
|
||||||
|
"black-on-gray theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'black-on-gray
|
||||||
|
|
||||||
|
'(default ((t (:background "white" :foreground "black"))))
|
||||||
|
'(border ((t (:foreground "blue"))))
|
||||||
|
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t :size "10pt"))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :size "10pt"))))
|
||||||
|
'(border-glyph ((t (:size "11pt"))))
|
||||||
|
'(buffers-tab ((t (:background "gray75"))))
|
||||||
|
'(buffers-tab-face ((t (:background "gray75"))))
|
||||||
|
'(display-time-mail-balloon-enhance-face ((t (:background "orange"))))
|
||||||
|
'(display-time-mail-balloon-gnus-group-face ((t (:foreground "blue"))))
|
||||||
|
'(display-time-time-balloon-face ((t (:foreground "red"))))
|
||||||
|
'(ecb-bucket-token-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(ecb-default-general-face ((t (nil))))
|
||||||
|
'(ecb-default-highlight-face ((t (:background "cornflower blue" :foreground "yellow"))))
|
||||||
|
'(ecb-directories-general-face ((t (nil))))
|
||||||
|
'(ecb-directory-face ((t (:background "cornflower blue" :foreground "yellow"))))
|
||||||
|
'(ecb-history-face ((t (:background "cornflower blue" :foreground "yellow"))))
|
||||||
|
'(ecb-history-general-face ((t (nil))))
|
||||||
|
'(ecb-method-face ((t (:background "cornflower blue" :foreground "yellow"))))
|
||||||
|
'(ecb-methods-general-face ((t (nil))))
|
||||||
|
'(ecb-source-face ((t (:background "cornflower blue" :foreground "yellow"))))
|
||||||
|
'(ecb-source-in-directories-buffer-face ((t (:foreground "medium blue"))))
|
||||||
|
'(ecb-sources-general-face ((t (nil))))
|
||||||
|
'(ecb-token-header-face ((t (:background "SeaGreen1"))))
|
||||||
|
'(ecb-type-token-class-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(ecb-type-token-enum-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(ecb-type-token-group-face ((t (:bold t :size "10pt" :foreground "dimgray"))))
|
||||||
|
'(ecb-type-token-interface-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(ecb-type-token-struct-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(ecb-type-token-typedef-face ((t (:bold t :size "10pt"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "blue"))))
|
||||||
|
'(font-lock-doc-face ((t (:foreground "green4"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "green4"))))
|
||||||
|
'(font-lock-function-name-face ((t (nil))))
|
||||||
|
'(font-lock-keyword-face ((t (nil))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-string-face ((t (nil))))
|
||||||
|
'(font-lock-type-face ((t (nil))))
|
||||||
|
'(font-lock-variable-name-face ((t (nil))))
|
||||||
|
'(font-lock-warning-face ((t (nil))))
|
||||||
|
'(green ((t (:foreground "green"))))
|
||||||
|
'(gui-button-face ((t (:background "grey75"))))
|
||||||
|
'(gui-element ((t (:size "8pt" :background "gray75"))))
|
||||||
|
'(highlight ((t (:background "darkseagreen2"))))
|
||||||
|
'(isearch ((t (:background "paleturquoise"))))
|
||||||
|
'(isearch-secondary ((t (:foreground "red3"))))
|
||||||
|
'(italic ((t (:size "10pt"))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(list-mode-item-selected ((t (:background "gray68"))))
|
||||||
|
'(modeline ((t (:background "gray75"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "gray75" :foreground "blue4"))))
|
||||||
|
'(modeline-mousable ((t (:background "gray75" :foreground "firebrick"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "gray75" :foreground "green4"))))
|
||||||
|
'(paren-blink-off ((t (:foreground "gray"))))
|
||||||
|
'(paren-match ((t (:background "darkseagreen2"))))
|
||||||
|
'(paren-mismatch ((t (nil))))
|
||||||
|
'(pointer ((t (nil))))
|
||||||
|
'(primary-selection ((t (:background "gray65"))))
|
||||||
|
'(red ((t (:foreground "red"))))
|
||||||
|
'(region ((t (:background "gray65"))))
|
||||||
|
'(right-margin ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "paleturquoise"))))
|
||||||
|
'(semantic-dirty-token-face ((t (nil))))
|
||||||
|
'(semantic-unmatched-syntax-face ((t (nil))))
|
||||||
|
'(text-cursor ((t (:background "red" :foreground "gray"))))
|
||||||
|
'(toolbar ((t (:background "gray75"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(vertical-divider ((t (:background "gray75"))))
|
||||||
|
'(widget ((t (:size "8pt" :background "gray75"))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (nil))))
|
||||||
|
'(yellow ((t (:foreground "yellow"))))
|
||||||
|
'(zmacs-region ((t (:background "gray65")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'black-on-gray)
|
||||||
|
|
||||||
|
;;; black-on-gray-theme.el ends here
|
||||||
99
elpa/color-theme-modern-0.0.3/blippblopp-theme.el
Normal file
99
elpa/color-theme-modern-0.0.3/blippblopp-theme.el
Normal file
|
|
@ -0,0 +1,99 @@
|
||||||
|
;;; blippblopp-theme.el --- blippblopp theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 by Thomas Sicheritz-Ponten
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blippblopp theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blippblopp
|
||||||
|
"blippblopp theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blippblopp
|
||||||
|
|
||||||
|
'(default ((t (:background "white" :foreground "black"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "Red3"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(excerpt ((t (:italic t))))
|
||||||
|
'(ff-paths-non-existant-file-face ((t (:bold t :foreground "NavyBlue"))))
|
||||||
|
'(fg:black ((t (:foreground "black"))))
|
||||||
|
'(fixed ((t (:bold t))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "orange"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "darkgreen"))))
|
||||||
|
'(font-lock-exit-face ((t (:foreground "green"))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "red"))))
|
||||||
|
'(font-lock-keyword-face ((t (:bold t :foreground "steelblue"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "blue3"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "red3"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "green4"))))
|
||||||
|
'(font-lock-type-face ((t (:bold t :foreground "blue"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "black"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Red"))))
|
||||||
|
'(green ((t (:foreground "green"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "MidnightBlue"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "cornflower blue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "blue4"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "steel blue"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "navy blue"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "MidnightBlue"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "brown"))))
|
||||||
|
'(modeline ((t (:background "dimgray" :foreground "lemonchiffon"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "dimgray" :foreground "green3"))))
|
||||||
|
'(modeline-mousable ((t (:background "dimgray" :foreground "orange"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "dimgray" :foreground "blue4"))))
|
||||||
|
'(primary-selection ((t (:background "gray65"))))
|
||||||
|
'(red ((t (:foreground "red"))))
|
||||||
|
'(region ((t (:background "gray65"))))
|
||||||
|
'(secondary-selection ((t (:background "paleturquoise"))))
|
||||||
|
'(show-paren-match-face ((t (:background "turquoise"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(text-cursor ((t (:background "Red3" :foreground "white"))))
|
||||||
|
'(toolbar ((t (:background "Gray80"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(vcursor ((t (:underline t :background "cyan" :foreground "blue"))))
|
||||||
|
'(vertical-divider ((t (:background "Gray80"))))
|
||||||
|
'(xref-keyword-face ((t (:foreground "blue"))))
|
||||||
|
'(xref-list-pilot-face ((t (:foreground "navy"))))
|
||||||
|
'(xref-list-symbol-face ((t (:foreground "navy"))))
|
||||||
|
'(yellow ((t (:foreground "yellow"))))
|
||||||
|
'(zmacs-region ((t (:background "gray65")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blippblopp)
|
||||||
|
|
||||||
|
;;; blippblopp-theme.el ends here
|
||||||
90
elpa/color-theme-modern-0.0.3/blue-erc-theme.el
Normal file
90
elpa/color-theme-modern-0.0.3/blue-erc-theme.el
Normal file
|
|
@ -0,0 +1,90 @@
|
||||||
|
;;; blue-erc-theme.el --- blue-erc theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blue-erc theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blue-erc
|
||||||
|
"blue-erc theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blue-erc
|
||||||
|
|
||||||
|
'(erc-action-face ((t (nil))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-current-nick-face ((t (:bold t :foreground "yellow"))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(erc-highlight-face ((t (:bold t :foreground "pale green"))))
|
||||||
|
'(erc-input-face ((t (:foreground "light blue"))))
|
||||||
|
'(erc-inverse-face ((t (:background "steel blue"))))
|
||||||
|
'(erc-keyword-face ((t (:foreground "orange" :bold t))))
|
||||||
|
'(erc-notice-face ((t (:foreground "light salmon"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-prompt-face ((t (:foreground "light blue" :bold t))))
|
||||||
|
'(fg:erc-color-face0 ((t (:foreground "white"))))
|
||||||
|
'(fg:erc-color-face1 ((t (:foreground "beige"))))
|
||||||
|
'(fg:erc-color-face2 ((t (:foreground "lemon chiffon"))))
|
||||||
|
'(fg:erc-color-face3 ((t (:foreground "light cyan"))))
|
||||||
|
'(fg:erc-color-face4 ((t (:foreground "powder blue"))))
|
||||||
|
'(fg:erc-color-face5 ((t (:foreground "sky blue"))))
|
||||||
|
'(fg:erc-color-face6 ((t (:foreground "dark sea green"))))
|
||||||
|
'(fg:erc-color-face7 ((t (:foreground "pale green"))))
|
||||||
|
'(fg:erc-color-face8 ((t (:foreground "medium spring green"))))
|
||||||
|
'(fg:erc-color-face9 ((t (:foreground "khaki"))))
|
||||||
|
'(fg:erc-color-face10 ((t (:foreground "pale goldenrod"))))
|
||||||
|
'(fg:erc-color-face11 ((t (:foreground "light goldenrod yellow"))))
|
||||||
|
'(fg:erc-color-face12 ((t (:foreground "light yellow"))))
|
||||||
|
'(fg:erc-color-face13 ((t (:foreground "yellow"))))
|
||||||
|
'(fg:erc-color-face14 ((t (:foreground "light goldenrod"))))
|
||||||
|
'(fg:erc-color-face15 ((t (:foreground "lime green"))))
|
||||||
|
'(bg:erc-color-face0 ((t (nil))))
|
||||||
|
'(bg:erc-color-face1 ((t (nil))))
|
||||||
|
'(bg:erc-color-face2 ((t (nil))))
|
||||||
|
'(bg:erc-color-face3 ((t (nil))))
|
||||||
|
'(bg:erc-color-face4 ((t (nil))))
|
||||||
|
'(bg:erc-color-face5 ((t (nil))))
|
||||||
|
'(bg:erc-color-face6 ((t (nil))))
|
||||||
|
'(bg:erc-color-face7 ((t (nil))))
|
||||||
|
'(bg:erc-color-face8 ((t (nil))))
|
||||||
|
'(bg:erc-color-face9 ((t (nil))))
|
||||||
|
'(bg:erc-color-face10 ((t (nil))))
|
||||||
|
'(bg:erc-color-face11 ((t (nil))))
|
||||||
|
'(bg:erc-color-face12 ((t (nil))))
|
||||||
|
'(bg:erc-color-face13 ((t (nil))))
|
||||||
|
'(bg:erc-color-face14 ((t (nil))))
|
||||||
|
'(bg:erc-color-face15 ((t (nil)))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blue-erc)
|
||||||
|
|
||||||
|
;;; blue-erc-theme.el ends here
|
||||||
64
elpa/color-theme-modern-0.0.3/blue-eshell-theme.el
Normal file
64
elpa/color-theme-modern-0.0.3/blue-eshell-theme.el
Normal file
|
|
@ -0,0 +1,64 @@
|
||||||
|
;;; blue-eshell-theme.el --- blue-eshell theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blue-eshell theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blue-eshell
|
||||||
|
"blue-eshell theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blue-eshell
|
||||||
|
|
||||||
|
'(default ((t (:background "Blue-Eshell" :foreground "DarkSlateGray4"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "black"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "Grey"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "MediumSlateBlue"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:foreground "Coral"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "Violet")))) ; non-standard face
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "Gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "White"))))
|
||||||
|
'(eshell-ls-text-face ((t (:foreground "medium aquamarine")))) ; non-standard face
|
||||||
|
'(eshell-ls-todo-face ((t (:bold t :foreground "aquamarine")))) ; non-standard face
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-prompt-face ((t (:foreground "powder blue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blue-eshell)
|
||||||
|
|
||||||
|
;;; blue-eshell-theme.el ends here
|
||||||
114
elpa/color-theme-modern-0.0.3/blue-gnus-theme.el
Normal file
114
elpa/color-theme-modern-0.0.3/blue-gnus-theme.el
Normal file
|
|
@ -0,0 +1,114 @@
|
||||||
|
;;; blue-gnus-theme.el --- blue-gnus theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blue-gnus theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blue-gnus
|
||||||
|
"blue-gnus theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blue-gnus
|
||||||
|
|
||||||
|
'(gnus-cite-attribution-face ((t (:foreground "lemon chiffon" :bold t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "Khaki"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "Coral"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "yellow green"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "bisque"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "peru"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "light coral"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "plum"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:italic t :underline t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "LightSkyBlue3"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-header-name-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-signature-face ((t (:foreground "Grey"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "Black" :foreground "Yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t :foreground "beige"))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "DimGray"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "slate gray"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "Pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:foreground "LightGray"))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "light cyan"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-separator-face ((t (:foreground "chocolate")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blue-gnus)
|
||||||
|
|
||||||
|
;;; blue-gnus-theme.el ends here
|
||||||
136
elpa/color-theme-modern-0.0.3/blue-mood-theme.el
Normal file
136
elpa/color-theme-modern-0.0.3/blue-mood-theme.el
Normal file
|
|
@ -0,0 +1,136 @@
|
||||||
|
;;; blue-mood-theme.el --- blue-mood theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2002 by Nelson Loyola
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blue-mood theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blue-mood
|
||||||
|
"blue-mood theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blue-mood
|
||||||
|
|
||||||
|
'(default ((t (:background "DodgerBlue4" :foreground "white smoke"))))
|
||||||
|
'(mouse ((t (:foreground "black"))))
|
||||||
|
'(cursor ((t (:background "DarkGoldenrod1"))))
|
||||||
|
'(border ((t (:foreground "Blue"))))
|
||||||
|
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (nil))))
|
||||||
|
'(border-glyph ((t (nil))))
|
||||||
|
'(cmode-bracket-face ((t (:bold t))))
|
||||||
|
'(cperl-array-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(cperl-hash-face ((t (:bold t :foreground "chartreuse"))))
|
||||||
|
'(custom-button-face ((t (nil))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:underline t :foreground "blue"))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:underline t :foreground "red"))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:bold t :foreground "cyan"))))
|
||||||
|
'(custom-variable-button-face ((t (:underline t :bold t))))
|
||||||
|
'(custom-variable-tag-face ((t (:underline t :foreground "blue"))))
|
||||||
|
'(ff-paths-non-existant-file-face ((t (:bold t :foreground "NavyBlue"))))
|
||||||
|
'(font-lock-builtin-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(font-lock-comment-face ((t (:bold t :foreground "gray72"))))
|
||||||
|
'(font-lock-constant-face ((t (:bold t :foreground "cyan3"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "#00C000"))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "chartreuse"))))
|
||||||
|
'(font-lock-keyword-face ((t (:bold t :foreground "gold1"))))
|
||||||
|
'(font-lock-other-emphasized-face ((t (:bold t :foreground "gold1"))))
|
||||||
|
'(font-lock-other-type-face ((t (:bold t :foreground "gold1"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "plum"))))
|
||||||
|
'(font-lock-reference-face ((t (:bold t :foreground "orangered"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "tomato"))))
|
||||||
|
'(font-lock-type-face ((t (:bold t :foreground "gold1"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "light yellow"))))
|
||||||
|
'(font-lock-warning-face ((t (:foreground "tomato"))))
|
||||||
|
'(green ((t (:foreground "green"))))
|
||||||
|
'(gui-button-face ((t (:background "grey75" :foreground "black"))))
|
||||||
|
'(gui-element ((t (:size "nil" :background "#e7e3d6" :foreground" #000000"))))
|
||||||
|
'(highlight ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(isearch ((t (:bold t :background "pale turquoise" :foreground "blue"))))
|
||||||
|
'(italic ((t (nil))))
|
||||||
|
'(lazy-highlight-face ((t (:bold t :foreground "dark magenta"))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(list-mode-item-selected ((t (:bold t :background "gray68" :foreground "yellow"))))
|
||||||
|
'(modeline ((t (:background "goldenrod" :foreground "darkblue"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "goldenrod" :foreground "darkblue"))))
|
||||||
|
'(modeline-mousable ((t (:background "goldenrod" :foreground "darkblue"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "goldenrod" :foreground "darkblue"))))
|
||||||
|
'(my-tab-face ((t (:background "SlateBlue1"))))
|
||||||
|
'(p4-depot-added-face ((t (:foreground "steelblue1"))))
|
||||||
|
'(p4-depot-deleted-face ((t (:foreground "red"))))
|
||||||
|
'(p4-depot-unmapped-face ((t (:foreground "grey90"))))
|
||||||
|
'(p4-diff-change-face ((t (:foreground "dark green"))))
|
||||||
|
'(p4-diff-del-face ((t (:bold t :foreground "salmon"))))
|
||||||
|
'(p4-diff-file-face ((t (:background "blue"))))
|
||||||
|
'(p4-diff-head-face ((t (:background "blue"))))
|
||||||
|
'(p4-diff-ins-face ((t (:foreground "steelblue1"))))
|
||||||
|
'(paren-blink-off ((t (:foreground "DodgerBlue4"))))
|
||||||
|
'(paren-match ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(paren-mismatch ((t (:background "DeepPink"))))
|
||||||
|
'(pointer ((t (:background "white"))))
|
||||||
|
'(primary-selection ((t (:bold t :background "medium sea green"))))
|
||||||
|
'(red ((t (:foreground "red"))))
|
||||||
|
'(region ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(right-margin ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "gray91" :foreground "sienna3"))))
|
||||||
|
'(show-paren-match-face ((t (:background "cyan3" :foreground "blue"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "red" :foreground "blue"))))
|
||||||
|
'(show-trailing-whitespace ((t (:background "red" :foreground "blue"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "white"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "gray"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "gold1"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "lightslateblue" :foreground "gold1"))))
|
||||||
|
'(speedbar-selected-face ((t (:underline t :foreground "red"))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "chartreuse"))))
|
||||||
|
'(text-cursor ((t (:background "DarkGoldenrod1" :foreground "DodgerBlue4"))))
|
||||||
|
'(toolbar ((t (:background "#e7e3d6" :foreground "#000000"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(vertical-divider ((t (:background "#e7e3d6" :foreground "#000000"))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "dark green"))))
|
||||||
|
'(widget-field-face ((t (:background "gray85"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "gray85"))))
|
||||||
|
'(yellow ((t (:foreground "yellow"))))
|
||||||
|
'(zmacs-region ((t (:background "white" :foreground "midnightblue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blue-mood)
|
||||||
|
|
||||||
|
;;; blue-mood-theme.el ends here
|
||||||
263
elpa/color-theme-modern-0.0.3/blue-sea-theme.el
Normal file
263
elpa/color-theme-modern-0.0.3/blue-sea-theme.el
Normal file
|
|
@ -0,0 +1,263 @@
|
||||||
|
;;; blue-sea-theme.el --- blue-sea theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2005, 2006 Xavier Maillard <zedek@gnu.org>
|
||||||
|
;; Copyright (C) 2005, 2006 Brian Palmer <bpalmer@gmail.com>
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of blue-sea theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme blue-sea
|
||||||
|
"blue-sea theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'blue-sea
|
||||||
|
|
||||||
|
'(default ((t (:background "MidnightBlue" :foreground "Grey"))))
|
||||||
|
'(mouse ((t (:foreground "Grey"))))
|
||||||
|
'(cursor ((t (:background "Grey"))))
|
||||||
|
'(border ((t (:foreground "Grey"))))
|
||||||
|
|
||||||
|
'(gnus-cite-attribution-face ((t (:lforeground "lemon chiffon" :bold t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "Khaki"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "Coral"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "yellow green"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "bisque"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "peru"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "light coral"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "plum"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:italic t :underline t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "LightSkyBlue3"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-header-name-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-signature-face ((t (:foreground "Grey"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "Black" :foreground "Yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t :foreground "beige"))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "DimGray"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "slate gray"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "Pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:foreground "LightGray"))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "light cyan"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-separator-face ((t (:foreground "chocolate"))))
|
||||||
|
|
||||||
|
'(erc-action-face ((t (nil))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-current-nick-face ((t (:bold t :foreground "yellow"))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(erc-highlight-face ((t (:bold t :foreground "pale green"))))
|
||||||
|
'(erc-input-face ((t (:foreground "light blue"))))
|
||||||
|
'(erc-inverse-face ((t (:background "steel blue"))))
|
||||||
|
'(erc-keyword-face ((t (:foreground "orange" :bold t))))
|
||||||
|
'(erc-notice-face ((t (:foreground "light salmon"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-prompt-face ((t (:foreground "light blue" :bold t))))
|
||||||
|
'(fg:erc-color-face0 ((t (:foreground "white"))))
|
||||||
|
'(fg:erc-color-face1 ((t (:foreground "beige"))))
|
||||||
|
'(fg:erc-color-face2 ((t (:foreground "lemon chiffon"))))
|
||||||
|
'(fg:erc-color-face3 ((t (:foreground "light cyan"))))
|
||||||
|
'(fg:erc-color-face4 ((t (:foreground "powder blue"))))
|
||||||
|
'(fg:erc-color-face5 ((t (:foreground "sky blue"))))
|
||||||
|
'(fg:erc-color-face6 ((t (:foreground "dark sea green"))))
|
||||||
|
'(fg:erc-color-face7 ((t (:foreground "pale green"))))
|
||||||
|
'(fg:erc-color-face8 ((t (:foreground "medium spring green"))))
|
||||||
|
'(fg:erc-color-face9 ((t (:foreground "khaki"))))
|
||||||
|
'(fg:erc-color-face10 ((t (:foreground "pale goldenrod"))))
|
||||||
|
'(fg:erc-color-face11 ((t (:foreground "light goldenrod yellow"))))
|
||||||
|
'(fg:erc-color-face12 ((t (:foreground "light yellow"))))
|
||||||
|
'(fg:erc-color-face13 ((t (:foreground "yellow"))))
|
||||||
|
'(fg:erc-color-face14 ((t (:foreground "light goldenrod"))))
|
||||||
|
'(fg:erc-color-face15 ((t (:foreground "lime green"))))
|
||||||
|
'(bg:erc-color-face0 ((t (nil))))
|
||||||
|
'(bg:erc-color-face1 ((t (nil))))
|
||||||
|
'(bg:erc-color-face2 ((t (nil))))
|
||||||
|
'(bg:erc-color-face3 ((t (nil))))
|
||||||
|
'(bg:erc-color-face4 ((t (nil))))
|
||||||
|
'(bg:erc-color-face5 ((t (nil))))
|
||||||
|
'(bg:erc-color-face6 ((t (nil))))
|
||||||
|
'(bg:erc-color-face7 ((t (nil))))
|
||||||
|
'(bg:erc-color-face8 ((t (nil))))
|
||||||
|
'(bg:erc-color-face9 ((t (nil))))
|
||||||
|
'(bg:erc-color-face10 ((t (nil))))
|
||||||
|
'(bg:erc-color-face11 ((t (nil))))
|
||||||
|
'(bg:erc-color-face12 ((t (nil))))
|
||||||
|
'(bg:erc-color-face13 ((t (nil))))
|
||||||
|
'(bg:erc-color-face14 ((t (nil))))
|
||||||
|
'(bg:erc-color-face15 ((t (nil))))
|
||||||
|
|
||||||
|
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:bold t :foreground "beige"))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(cperl-array-face ((t (:foreground "light salmon" :bold t))))
|
||||||
|
'(cperl-hash-face ((t (:foreground "beige" :bold t :italic t))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(custom-button-face ((t (:foreground "gainsboro"))))
|
||||||
|
'(custom-changed-face ((t (:foreground "white" :background "blue"))))
|
||||||
|
'(custom-documentation-face ((t (:foreground "light blue"))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:foreground "pale turquoise" :bold t))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:foreground "pale turquoise" :underline t))))
|
||||||
|
'(custom-invalid-face ((t (:foreground "yellow" :background "red"))))
|
||||||
|
'(custom-modified-face ((t (:foreground "white" :background "blue"))))
|
||||||
|
'(custom-rogue-face ((t (:foreground "pink" :background "black"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:foreground "blue" :background "white"))))
|
||||||
|
'(custom-state-face ((t (:foreground "light salmon"))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t))))
|
||||||
|
'(custom-variable-tag-face ((t (:foreground "turquoise" :bold t))))
|
||||||
|
'(diary-face ((t (:foreground "red"))))
|
||||||
|
'(dired-face-directory ((t (:bold t :foreground "sky blue"))))
|
||||||
|
'(dired-face-permissions ((t (:foreground "aquamarine"))))
|
||||||
|
'(dired-face-flagged ((t (:foreground "tomato"))))
|
||||||
|
'(dired-face-marked ((t (:foreground "light salmon"))))
|
||||||
|
'(dired-face-executable ((t (:foreground "green yellow"))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "medium purple"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "medium slate blue"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:bold t :foreground "aquamarine"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "violet"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "light steel blue"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "white"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-prompt-face ((t (:foreground "light sky blue" :bold t))))
|
||||||
|
'(excerpt ((t (:italic t))))
|
||||||
|
'(fixed ((t (:bold t))))
|
||||||
|
'(flyspell-duplicate-face ((t (:foreground "Gold3" :bold t :underline t))))
|
||||||
|
'(flyspell-incorrect-face ((t (:foreground "OrangeRed" :bold t :underline t))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "light blue"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "pale green"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "sky blue"))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "aquamarine"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "pale turquoise" :bold t))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "pale green"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "light sky blue"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "sky blue" :bold t))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "turquoise" :bold t))))
|
||||||
|
'(font-lock-warning-face ((t (:foreground "Red" :bold t))))
|
||||||
|
'(fringe ((t (:background "MidnightBlue"))))
|
||||||
|
'(header-line ((t (:background "#002" :foreground "cornflower blue"))))
|
||||||
|
'(highlight ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(highline-face ((t (:background "DeepSkyBlue4"))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:bold t))))
|
||||||
|
'(info-xref ((t (:bold t :foreground "sky blue"))))
|
||||||
|
'(isearch ((t (:background "slate blue"))))
|
||||||
|
'(italic ((t (:foreground "sky blue"))))
|
||||||
|
'(makefile-space-face ((t (:background "hotpink"))))
|
||||||
|
'(menu ((t (:background "MidnightBlue" :foreground "Grey"))))
|
||||||
|
'(modeline ((t (:foreground "wheat" :background "slate blue"))))
|
||||||
|
'(mode-line-inactive ((t (:background "dark slate blue" :foreground "wheat"))))
|
||||||
|
'(modeline-buffer-id ((t (:foreground "beige" :background "slate blue"))))
|
||||||
|
'(modeline-mousable ((t (:foreground "light cyan" :background "slate blue"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:foreground "wheat" :background "slate blue"))))
|
||||||
|
'(region ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(secondary-selection ((t (:background "steel blue"))))
|
||||||
|
'(show-paren-match-face ((t (:foreground "white" :background "light slate blue"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:foreground "white" :background "red"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "seashell2"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "seashell3"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "seashell4"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "dark slate blue" :foreground "wheat"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "seashell1" :underline t))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "antique white"))))
|
||||||
|
'(tool-bar ((t (:background "MidnightBlue" :foreground "Grey" :box (:line-width 1 :style released-button)))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(widget-button-face ((t (:bold t))))
|
||||||
|
'(widget-button-pressed-face ((t (:foreground "red"))))
|
||||||
|
'(widget-documentation-face ((t (:foreground "light blue"))))
|
||||||
|
'(widget-field-face ((t (:background "RoyalBlue4" :foreground "wheat"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "slate blue" :foreground "wheat"))))
|
||||||
|
'(woman-bold-face ((t (:foreground "sky blue" :bold t))))
|
||||||
|
'(woman-italic-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(woman-unknown-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(Man-overstrike-face ((t (:foreground "sky blue" :bold t))))
|
||||||
|
'(Man-underline-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(zmacs-region ((t (:background "DarkSlateBlue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'blue-sea)
|
||||||
|
|
||||||
|
;;; blue-sea-theme.el ends here
|
||||||
174
elpa/color-theme-modern-0.0.3/calm-forest-theme.el
Normal file
174
elpa/color-theme-modern-0.0.3/calm-forest-theme.el
Normal file
|
|
@ -0,0 +1,174 @@
|
||||||
|
;;; calm-forest-theme.el --- calm-forest theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2003 by Artur Hefczyc
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of calm-forest theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme calm-forest
|
||||||
|
"calm-forest theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'calm-forest
|
||||||
|
|
||||||
|
'(default ((t (:background "gray12" :foreground "green"))))
|
||||||
|
'(mouse ((t (:background "yellow"))))
|
||||||
|
'(cursor ((t (:background "orange"))))
|
||||||
|
'(border ((t (:background "black"))))
|
||||||
|
|
||||||
|
'(help-highlight-face ((t (:underline t))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t :weight bold))))
|
||||||
|
'(view-highlight-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(widget-mouse-face ((t (:background "darkolivegreen"))))
|
||||||
|
|
||||||
|
'(Info-title-1-face ((t (:bold t :weight bold :family "helv" :height 1.728))))
|
||||||
|
'(Info-title-2-face ((t (:bold t :family "helv" :weight bold :height 1.44))))
|
||||||
|
'(Info-title-3-face ((t (:bold t :weight bold :family "helv" :height 1.2))))
|
||||||
|
'(Info-title-4-face ((t (:bold t :family "helv" :weight bold))))
|
||||||
|
'(bold ((t (:bold t :weight bold))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :weight bold))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(cparen-around-andor-face ((t (:bold t :foreground "maroon" :weight bold))))
|
||||||
|
'(cparen-around-begin-face ((t (:foreground "maroon"))))
|
||||||
|
'(cparen-around-conditional-face ((t (:bold t :foreground "RoyalBlue" :weight bold))))
|
||||||
|
'(cparen-around-define-face ((t (:bold t :foreground "Blue" :weight bold))))
|
||||||
|
'(cparen-around-lambda-face ((t (:foreground "LightSeaGreen"))))
|
||||||
|
'(cparen-around-letdo-face ((t (:bold t :foreground "LightSeaGreen" :weight bold))))
|
||||||
|
'(cparen-around-quote-face ((t (:foreground "SaddleBrown"))))
|
||||||
|
'(cparen-around-set!-face ((t (:foreground "OrangeRed"))))
|
||||||
|
'(cparen-around-syntax-rules-face ((t (:foreground "Magenta"))))
|
||||||
|
'(cparen-around-vector-face ((t (:foreground "chocolate"))))
|
||||||
|
'(cparen-binding-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(cparen-binding-list-face ((t (:bold t :foreground "ForestGreen" :weight bold))))
|
||||||
|
'(cparen-conditional-clause-face ((t (:foreground "RoyalBlue"))))
|
||||||
|
'(cparen-normal-paren-face ((t (:foreground "grey50"))))
|
||||||
|
'(custom-button-face ((t (:background "lightgrey" :foreground "black"
|
||||||
|
:box (:line-width 2 :style released-button)))))
|
||||||
|
'(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black"
|
||||||
|
:box (:line-width 2 :style pressed-button)))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-comment-face ((t (:background "dim gray"))))
|
||||||
|
'(custom-comment-tag-face ((t (:foreground "gray80"))))
|
||||||
|
'(custom-documentation-face ((t (nil))))
|
||||||
|
'(custom-face-tag-face ((t (:bold t :family "helv" :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face ((t (:bold t :foreground "light blue" :weight bold :height 1.2))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:bold t :family "helv" :foreground "pink" :weight bold :height 1.2))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "lime green"))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(custom-variable-tag-face ((t (:bold t :foreground "light blue" :weight bold :height 1.2))))
|
||||||
|
'(eieio-custom-slot-tag-face ((t (:foreground "light blue"))))
|
||||||
|
'(extra-whitespace-face ((t (:background "pale green"))))
|
||||||
|
'(fixed-pitch ((t (:family "courier"))))
|
||||||
|
'(font-latex-bold-face ((t (:bold t :foreground "OliveDrab" :weight bold))))
|
||||||
|
'(font-latex-italic-face ((t (:italic t :foreground "OliveDrab"))))
|
||||||
|
'(font-latex-math-face ((t (:foreground "burlywood"))))
|
||||||
|
'(font-latex-sedate-face ((t (:foreground "LightGray"))))
|
||||||
|
'(font-latex-string-face ((t (:foreground "RosyBrown"))))
|
||||||
|
'(font-latex-warning-face ((t (:bold t :foreground "Red" :weight bold))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "chocolate1"))))
|
||||||
|
'(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 (:background "grey20" :foreground"grey90"
|
||||||
|
:box (:line-width -1 :style released-button)))))
|
||||||
|
'(highlight ((t (:background "darkolivegreen"))))
|
||||||
|
'(info-header-node ((t (:italic t :bold t :weight bold :foreground "white"))))
|
||||||
|
'(info-header-xref ((t (:bold t :weight bold :foreground "cyan"))))
|
||||||
|
'(info-menu-5 ((t (:foreground "red1"))))
|
||||||
|
'(info-menu-header ((t (:bold t :family "helv" :weight bold))))
|
||||||
|
'(info-node ((t (:italic t :bold t :foreground "white" :weight bold))))
|
||||||
|
'(info-xref ((t (:bold t :foreground "cyan" :weight bold))))
|
||||||
|
'(isearch ((t (:background "palevioletred2" :foreground "brown4"))))
|
||||||
|
'(isearch-lazy-highlight-face ((t (:background "paleturquoise4"))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(jde-bug-breakpoint-cursor ((t (:background "brown" :foreground "cyan"))))
|
||||||
|
'(jde-db-active-breakpoint-face ((t (:background "red" :foreground "black"))))
|
||||||
|
'(jde-db-requested-breakpoint-face ((t (:background "yellow" :foreground "black"))))
|
||||||
|
'(jde-db-spec-breakpoint-face ((t (:background "green" :foreground "black"))))
|
||||||
|
'(jde-java-font-lock-api-face ((t (:foreground "light goldenrod"))))
|
||||||
|
'(jde-java-font-lock-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(jde-java-font-lock-code-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(jde-java-font-lock-doc-tag-face ((t (:foreground "light coral"))))
|
||||||
|
'(jde-java-font-lock-italic-face ((t (:italic t))))
|
||||||
|
'(jde-java-font-lock-link-face ((t (:foreground "blue" :underline t :slant normal))))
|
||||||
|
'(jde-java-font-lock-modifier-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(jde-java-font-lock-number-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(jde-java-font-lock-operator-face ((t (:foreground "medium blue"))))
|
||||||
|
'(jde-java-font-lock-package-face ((t (:foreground "steelblue1"))))
|
||||||
|
'(jde-java-font-lock-pre-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-underline-face ((t (:underline t))))
|
||||||
|
'(menu ((t (nil))))
|
||||||
|
'(mode-line ((t (:background "grey75" :foreground "black"
|
||||||
|
:box (:line-width -1 :style released-button)))))
|
||||||
|
'(region ((t (:background "blue3"))))
|
||||||
|
'(scroll-bar ((t (nil))))
|
||||||
|
'(secondary-selection ((t (:background "SkyBlue4"))))
|
||||||
|
'(semantic-dirty-token-face ((t (:background "gray10"))))
|
||||||
|
'(semantic-unmatched-syntax-face ((t (:underline "red"))))
|
||||||
|
'(senator-intangible-face ((t (:foreground "gray75"))))
|
||||||
|
'(senator-momentary-highlight-face ((t (:background "gray30"))))
|
||||||
|
'(senator-read-only-face ((t (:background "#664444"))))
|
||||||
|
'(show-paren-match-face ((t (:background "turquoise"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "green3"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "light blue"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "cyan"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "sea green"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "red" :underline t))))
|
||||||
|
'(speedbar-separator-face ((t (:background "blue" :foreground "white" :overline "gray"))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "yellow"))))
|
||||||
|
'(tool-bar ((t (:background "grey75" :foreground "black"
|
||||||
|
:box (:line-width 1 :style released-button)))))
|
||||||
|
'(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 'calm-forest)
|
||||||
|
|
||||||
|
;;; calm-forest-theme.el ends here
|
||||||
303
elpa/color-theme-modern-0.0.3/charcoal-black-theme.el
Normal file
303
elpa/color-theme-modern-0.0.3/charcoal-black-theme.el
Normal file
|
|
@ -0,0 +1,303 @@
|
||||||
|
;;; charcoal-black-theme.el --- charcoal-black theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2003 by Lars Chr. Hausmann
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of charcoal-black theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme charcoal-black
|
||||||
|
"charcoal-black theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'charcoal-black
|
||||||
|
|
||||||
|
'(default ((t (:background "Grey15" :foreground "Grey"))))
|
||||||
|
'(mouse ((t (:background "Grey"))))
|
||||||
|
'(cursor ((t (:background "Grey"))))
|
||||||
|
'(border ((t (:background "Grey"))))
|
||||||
|
|
||||||
|
'(display-time-mail-face ((t (:underline t))))
|
||||||
|
'(gnus-article-button-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-article-mouse-face ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(gnus-mouse-face ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(help-highlight-face ((t (:underline t))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t :weight bold))))
|
||||||
|
'(mime-button-face ((t (:bold t :weight bold))))
|
||||||
|
'(mime-button-mouse-face ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(view-highlight-face ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(widget-mouse-face ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
|
||||||
|
'(Info-title-1-face ((t (:bold t :weight bold :family "helv" :height 1.728))))
|
||||||
|
'(Info-title-2-face ((t (:bold t :family "helv" :weight bold :height 1.44))))
|
||||||
|
'(Info-title-3-face ((t (:bold t :weight bold :family "helv" :height 1.2))))
|
||||||
|
'(Info-title-4-face ((t (:bold t :family "helv" :weight bold))))
|
||||||
|
'(bg:erc-color-face0 ((t (nil))))
|
||||||
|
'(bg:erc-color-face1 ((t (nil))))
|
||||||
|
'(bg:erc-color-face10 ((t (nil))))
|
||||||
|
'(bg:erc-color-face11 ((t (nil))))
|
||||||
|
'(bg:erc-color-face12 ((t (nil))))
|
||||||
|
'(bg:erc-color-face13 ((t (nil))))
|
||||||
|
'(bg:erc-color-face14 ((t (nil))))
|
||||||
|
'(bg:erc-color-face15 ((t (nil))))
|
||||||
|
'(bg:erc-color-face2 ((t (nil))))
|
||||||
|
'(bg:erc-color-face3 ((t (nil))))
|
||||||
|
'(bg:erc-color-face4 ((t (nil))))
|
||||||
|
'(bg:erc-color-face5 ((t (nil))))
|
||||||
|
'(bg:erc-color-face6 ((t (nil))))
|
||||||
|
'(bg:erc-color-face7 ((t (nil))))
|
||||||
|
'(bg:erc-color-face8 ((t (nil))))
|
||||||
|
'(bg:erc-color-face9 ((t (nil))))
|
||||||
|
'(bold ((t (:bold t :weight bold))))
|
||||||
|
'(bold-italic ((t (:bold t :foreground "beige" :weight bold))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(cperl-array-face ((t (:bold t :foreground "light salmon" :weight bold))))
|
||||||
|
'(cperl-hash-face ((t (:italic t :bold t :foreground "beige" :slant italic :weight bold))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(custom-button-face ((t (:foreground "gainsboro"))))
|
||||||
|
'(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style pressed-button)))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-comment-face ((t (:background "dim gray"))))
|
||||||
|
'(custom-comment-tag-face ((t (:foreground "gray80"))))
|
||||||
|
'(custom-documentation-face ((t (:foreground "light blue"))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:bold t :foreground "pale turquoise" :weight bold))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:foreground "pale turquoise" :underline t))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "light salmon"))))
|
||||||
|
'(custom-variable-button-face ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(custom-variable-tag-face ((t (:bold t :foreground "turquoise" :weight bold))))
|
||||||
|
'(diary-face ((t (:foreground "red"))))
|
||||||
|
'(dired-face-directory ((t (:bold t :foreground "sky blue" :weight bold))))
|
||||||
|
'(dired-face-executable ((t (:foreground "green yellow"))))
|
||||||
|
'(dired-face-flagged ((t (:foreground "tomato"))))
|
||||||
|
'(dired-face-marked ((t (:foreground "light salmon"))))
|
||||||
|
'(dired-face-permissions ((t (:foreground "aquamarine"))))
|
||||||
|
'(erc-action-face ((t (nil))))
|
||||||
|
'(erc-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "IndianRed" :weight bold))))
|
||||||
|
'(erc-highlight-face ((t (:bold t :foreground "pale green" :weight bold))))
|
||||||
|
'(erc-input-face ((t (:foreground "light blue"))))
|
||||||
|
'(erc-inverse-face ((t (:background "steel blue"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "light salmon"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-prompt-face ((t (:bold t :foreground "light blue" :weight bold))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "medium purple" :weight bold))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "medium slate blue" :weight bold))))
|
||||||
|
'(eshell-ls-executable-face ((t (:bold t :foreground "aquamarine" :weight bold))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "violet"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "light steel blue"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "white"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "dim gray"))))
|
||||||
|
'(eshell-prompt-face ((t (:bold t :foreground "light sky blue" :weight bold))))
|
||||||
|
'(excerpt ((t (:italic t :slant italic))))
|
||||||
|
'(fg:erc-color-face0 ((t (:foreground "white"))))
|
||||||
|
'(fg:erc-color-face1 ((t (:foreground "beige"))))
|
||||||
|
'(fg:erc-color-face10 ((t (:foreground "pale goldenrod"))))
|
||||||
|
'(fg:erc-color-face11 ((t (:foreground "light goldenrod yellow"))))
|
||||||
|
'(fg:erc-color-face12 ((t (:foreground "light yellow"))))
|
||||||
|
'(fg:erc-color-face13 ((t (:foreground "yellow"))))
|
||||||
|
'(fg:erc-color-face14 ((t (:foreground "light goldenrod"))))
|
||||||
|
'(fg:erc-color-face15 ((t (:foreground "lime green"))))
|
||||||
|
'(fg:erc-color-face2 ((t (:foreground "lemon chiffon"))))
|
||||||
|
'(fg:erc-color-face3 ((t (:foreground "light cyan"))))
|
||||||
|
'(fg:erc-color-face4 ((t (:foreground "powder blue"))))
|
||||||
|
'(fg:erc-color-face5 ((t (:foreground "sky blue"))))
|
||||||
|
'(fg:erc-color-face6 ((t (:foreground "dark sea green"))))
|
||||||
|
'(fg:erc-color-face7 ((t (:foreground "pale green"))))
|
||||||
|
'(fg:erc-color-face8 ((t (:foreground "medium spring green"))))
|
||||||
|
'(fg:erc-color-face9 ((t (:foreground "khaki"))))
|
||||||
|
'(fixed ((t (:bold t :weight bold))))
|
||||||
|
'(fixed-pitch ((t (:family "courier"))))
|
||||||
|
'(flyspell-duplicate-face ((t (:bold t :foreground "Gold3" :underline t :weight bold))))
|
||||||
|
'(flyspell-incorrect-face ((t (:bold t :foreground "OrangeRed" :underline t :weight bold))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "aquamarine"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "light blue"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "pale green"))))
|
||||||
|
'(font-lock-doc-face ((t (:foreground "light sky blue"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "sky blue"))))
|
||||||
|
'(font-lock-function-name-face ((t (:bold t :foreground "aquamarine" :weight bold))))
|
||||||
|
'(font-lock-keyword-face ((t (:bold t :foreground "pale turquoise" :weight bold))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "pale green"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "light sky blue"))))
|
||||||
|
'(font-lock-type-face ((t (:bold t :foreground "sky blue" :weight bold))))
|
||||||
|
'(font-lock-variable-name-face ((t (:bold t :foreground "turquoise" :weight bold))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "Red" :weight bold))))
|
||||||
|
'(fringe ((t (:background "Grey15"))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "Khaki"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "Coral"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "yellow green"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "bisque"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "peru"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "light coral"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "plum"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t :slant italic :weight bold))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t :slant italic))))
|
||||||
|
'(gnus-emphasis-strikethru ((t (nil))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:bold t :underline t :weight bold))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t :slant italic :weight bold))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:italic t :underline t :slant italic))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "White" :weight bold))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "LightBlue" :weight bold))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "Aquamarine" :weight bold))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "White" :weight bold))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :foreground "LightBlue" :weight bold))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :foreground "Aquamarine" :weight bold))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :foreground "MediumAquamarine" :weight bold))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :foreground "MediumAquamarine" :weight bold))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "MediumAquamarine" :weight bold))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "LightSkyBlue3"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(gnus-header-name-face ((t (:bold t :foreground "LightBlue" :weight bold))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:italic t :bold t :foreground "MediumAquamarine" :slant italic :weight bold))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(gnus-server-agent-face ((t (:bold t :foreground "PaleTurquoise" :weight bold))))
|
||||||
|
'(gnus-server-closed-face ((t (:italic t :foreground "Light Steel Blue" :slant italic))))
|
||||||
|
'(gnus-server-denied-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(gnus-server-offline-face ((t (:bold t :foreground "Yellow" :weight bold))))
|
||||||
|
'(gnus-server-opened-face ((t (:bold t :foreground "Green1" :weight bold))))
|
||||||
|
'(gnus-signature-face ((t (:foreground "Grey"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "Black" :foreground "Yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "MediumAquamarine" :weight bold))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "Aquamarine" :weight bold))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "LightSalmon" :weight bold))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:italic t :bold t :foreground "beige" :slant italic :weight bold))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:italic t :foreground "DimGray" :slant italic))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "slate gray"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "Pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:foreground "LightGray"))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(header-line ((t (:box (:line-width -1 :style released-button) :background "grey20" :foreground "grey90" :box nil))))
|
||||||
|
'(highlight ((t (:background "dark slate blue" :foreground "light blue"))))
|
||||||
|
'(highline-face ((t (:background "DeepSkyBlue4"))))
|
||||||
|
'(holiday-face ((t (:background "pink"))))
|
||||||
|
'(info-header-node ((t (:bold t :weight bold))))
|
||||||
|
'(info-header-xref ((t (:bold t :weight bold :foreground "sky blue"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-menu-header ((t (:bold t :family "helv" :weight bold))))
|
||||||
|
'(info-node ((t (:bold t :weight bold))))
|
||||||
|
'(info-xref ((t (:bold t :foreground "sky blue" :weight bold))))
|
||||||
|
'(isearch ((t (:background "slate blue"))))
|
||||||
|
'(isearch-lazy-highlight-face ((t (:background "paleturquoise4"))))
|
||||||
|
'(italic ((t (:foreground "sky blue"))))
|
||||||
|
'(jde-bug-breakpoint-cursor ((t (:background "brown" :foreground "cyan"))))
|
||||||
|
'(jde-bug-breakpoint-marker ((t (:background "yellow" :foreground "red"))))
|
||||||
|
'(jde-java-font-lock-api-face ((t (:foreground "light goldenrod"))))
|
||||||
|
'(jde-java-font-lock-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(jde-java-font-lock-code-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(jde-java-font-lock-doc-tag-face ((t (:foreground "light coral"))))
|
||||||
|
'(jde-java-font-lock-italic-face ((t (:italic t :slant italic))))
|
||||||
|
'(jde-java-font-lock-link-face ((t (:foreground "blue" :underline t :slant normal))))
|
||||||
|
'(jde-java-font-lock-modifier-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(jde-java-font-lock-number-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(jde-java-font-lock-package-face ((t (:foreground "steelblue1"))))
|
||||||
|
'(jde-java-font-lock-pre-face ((t (nil))))
|
||||||
|
'(jde-java-font-lock-underline-face ((t (:underline t))))
|
||||||
|
'(makefile-space-face ((t (:background "hotpink"))))
|
||||||
|
'(menu ((t (:background "MidnightBlue" :foreground "Grey"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "light cyan"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "MediumAquamarine" :slant italic :weight bold))))
|
||||||
|
'(message-header-other-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "light cyan" :weight bold))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "chocolate"))))
|
||||||
|
'(mode-line ((t (:background "grey75" :foreground "black" :box (:line-width -1 :style released-button)))))
|
||||||
|
'(region ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(scroll-bar ((t (:background "grey75"))))
|
||||||
|
'(secondary-selection ((t (:background "steel blue"))))
|
||||||
|
'(semantic-dirty-token-face ((t (:background "gray10"))))
|
||||||
|
'(semantic-unmatched-syntax-face ((t (:underline "red"))))
|
||||||
|
'(show-paren-match-face ((t (:background "light slate blue" :foreground "white"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "red" :foreground "white"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "seashell2"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "seashell3"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "seashell4"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "dark slate blue" :foreground "wheat"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "seashell1" :underline t))))
|
||||||
|
'(speedbar-separator-face ((t (:background "blue" :foreground "white" :overline "gray"))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "antique 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 "light blue"))))
|
||||||
|
'(widget-field-face ((t (:background "RoyalBlue4" :foreground "wheat"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "dim gray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:background "slate blue" :foreground "wheat"))))
|
||||||
|
'(woman-bold-face ((t (:bold t :foreground "sky blue" :weight bold))))
|
||||||
|
'(woman-italic-face ((t (:foreground "deep sky blue"))))
|
||||||
|
'(woman-unknown-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(zmacs-region ((t (:background "DarkSlateBlue")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'charcoal-black)
|
||||||
|
|
||||||
|
;;; charcoal-black-theme.el ends here
|
||||||
119
elpa/color-theme-modern-0.0.3/clarity-theme.el
Normal file
119
elpa/color-theme-modern-0.0.3/clarity-theme.el
Normal file
|
|
@ -0,0 +1,119 @@
|
||||||
|
;;; clarity-theme.el --- clarity theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2003 by Richard Wellum
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of clarity theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme clarity
|
||||||
|
"clarity theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'clarity
|
||||||
|
|
||||||
|
'(default ((t (:background "black" :foreground "white"))))
|
||||||
|
'(mouse ((t (:background "white"))))
|
||||||
|
'(cursor ((t (:background "yellow"))))
|
||||||
|
'(border ((t (:background "white"))))
|
||||||
|
|
||||||
|
'(help-highlight-face ((t (:underline t))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t :weight bold))))
|
||||||
|
'(view-highlight-face ((t (:background "darkolivegreen"))))
|
||||||
|
'(widget-mouse-face ((t (:background "darkolivegreen"))))
|
||||||
|
|
||||||
|
'(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))))
|
||||||
|
'(clearcase-dired-checkedout-face ((t (:foreground "red"))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(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))))
|
||||||
|
'(ibuffer-dired-buffer-face ((t (:foreground "LightSkyBlue"))))
|
||||||
|
'(ibuffer-help-buffer-face ((t (:foreground "OrangeRed"))))
|
||||||
|
'(ibuffer-hidden-buffer-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(ibuffer-occur-match-face ((t (:bold t :foreground "Pink" :weight bold))))
|
||||||
|
'(ibuffer-read-only-buffer-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(ibuffer-special-buffer-face ((t (:foreground "Cyan"))))
|
||||||
|
'(ibuffer-title-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(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)))))
|
||||||
|
'(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
|
||||||
208
elpa/color-theme-modern-0.0.3/classic-theme.el
Normal file
208
elpa/color-theme-modern-0.0.3/classic-theme.el
Normal file
|
|
@ -0,0 +1,208 @@
|
||||||
|
;;; classic-theme.el --- classic theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2000 by Frederic Giroud
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of classic theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme classic
|
||||||
|
"classic theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'classic
|
||||||
|
|
||||||
|
'(default ((t (:background "darkslategrey" :foreground "AntiqueWhite"))))
|
||||||
|
;; avoid ugly random fringe color
|
||||||
|
'(fringe ((t (:background "darkslategrey"))))
|
||||||
|
|
||||||
|
'(mouse ((t (:foreground "Grey"))))
|
||||||
|
'(cursor ((t (:background "Red"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(gnus-cite-attribution-face ((t (:lforeground "lemon chiffon" :bold t))))
|
||||||
|
'(gnus-cite-face-1 ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-cite-face-2 ((t (:foreground "Khaki"))))
|
||||||
|
'(gnus-cite-face-3 ((t (:foreground "Coral"))))
|
||||||
|
'(gnus-cite-face-4 ((t (:foreground "yellow green"))))
|
||||||
|
'(gnus-cite-face-5 ((t (:foreground "dark khaki"))))
|
||||||
|
'(gnus-cite-face-6 ((t (:foreground "bisque"))))
|
||||||
|
'(gnus-cite-face-7 ((t (:foreground "peru"))))
|
||||||
|
'(gnus-cite-face-8 ((t (:foreground "light coral"))))
|
||||||
|
'(gnus-cite-face-9 ((t (:foreground "plum"))))
|
||||||
|
'(gnus-emphasis-bold ((t (:bold t))))
|
||||||
|
'(gnus-emphasis-bold-italic ((t (:italic t :bold t))))
|
||||||
|
'(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-emphasis-italic ((t (:italic t))))
|
||||||
|
'(gnus-emphasis-underline ((t (:underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold ((t (:bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t))))
|
||||||
|
'(gnus-emphasis-underline-italic ((t (:italic t :underline t))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "White"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-content-face ((t (:foreground "LightSkyBlue3"))))
|
||||||
|
'(gnus-header-from-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-header-name-face ((t (:bold t :foreground "LightBlue"))))
|
||||||
|
'(gnus-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(gnus-signature-face ((t (:foreground "Grey"))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "Black" :foreground "Yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t :foreground "beige"))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:foreground "DimGray"))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:foreground "slate gray"))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:foreground "Pink"))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:foreground "LightGray"))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:background "DarkSlateBlue"))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(message-header-cc-face ((t (:foreground "light cyan"))))
|
||||||
|
'(message-header-name-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-other-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-header-subject-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(message-separator-face ((t (:foreground "chocolate"))))
|
||||||
|
|
||||||
|
'(apropos-keybinding-face ((t (:underline t))))
|
||||||
|
'(apropos-label-face ((t (:italic t))))
|
||||||
|
'(apropos-match-face ((t (:background "Aquamarine" :foreground "SlateBlue"))))
|
||||||
|
'(apropos-property-face ((t (:italic t :bold t :foreground "beige"))))
|
||||||
|
'(apropos-symbol-face ((t (:underline t :foreground "DodgerBlue1"))))
|
||||||
|
'(goto-address-mail-face ((t (:bold t :foreground "light cyan"))))
|
||||||
|
'(goto-address-mail-mouse-face ((t (:background "Aquamarine" :foreground "SlateBlue"))))
|
||||||
|
'(goto-address-url-face ((t (:underline t :foreground "DodgerBlue1"))))
|
||||||
|
'(goto-address-url-mouse-face ((t (:background "PaleGreen" :foreground "DarkGreen"))))
|
||||||
|
'(list-matching-lines-face ((t (:bold t))))
|
||||||
|
'(view-highlight-face ((t (:background "PaleGreen" :foreground "DarkGreen"))))
|
||||||
|
|
||||||
|
'(bold ((t (:bold t))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :foreground "beige"))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(cperl-array-face ((t (:foreground "Yellow"))))
|
||||||
|
'(cperl-hash-face ((t (:foreground "White"))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(custom-button-face ((t (:underline t :foreground "MediumSlateBlue"))))
|
||||||
|
'(custom-documentation-face ((t (:foreground "Grey"))))
|
||||||
|
'(custom-group-tag-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(custom-state-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(custom-variable-tag-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(diary-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(erc-action-face ((t (:bold t))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(erc-input-face ((t (:foreground "Beige"))))
|
||||||
|
'(erc-inverse-face ((t (:background "wheat" :foreground "darkslategrey"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "pale green"))))
|
||||||
|
'(erc-prompt-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-underline-face ((t (:underline t))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "Grey"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "MediumSlateBlue"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:foreground "Coral"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:foreground "black"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "Violet"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(eshell-ls-special-face ((t (:foreground "Gold"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:foreground "White"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "DimGray"))))
|
||||||
|
'(eshell-prompt-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(font-lock-builtin-face ((t (:bold t :foreground "PaleGreen"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "tomato3"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "LightSalmon3"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "SteelBlue1"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "cyan1"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "LightSalmon2"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "LightSalmon3"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "PaleGreen3"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "khaki1"))))
|
||||||
|
'(font-lock-warning-face ((t (:bold t :foreground "IndianRed"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "SkyBlue3"))))
|
||||||
|
'(widget-field-face ((t (:background "DarkCyan"))))
|
||||||
|
'(custom-group-tag-face ((t(:foreground "brown" :underline t))))
|
||||||
|
'(custom-state-face ((t (:foreground "khaki"))))
|
||||||
|
'(highlight ((t (:background "PaleGreen" :foreground "DarkGreen"))))
|
||||||
|
'(highline-face ((t (:background "SeaGreen"))))
|
||||||
|
'(holiday-face ((t (:background "DimGray"))))
|
||||||
|
'(info-menu-5 ((t (:underline t))))
|
||||||
|
'(info-node ((t (:underline t :bold t :foreground "DodgerBlue1"))))
|
||||||
|
'(info-xref ((t (:underline t :foreground "DodgerBlue1"))))
|
||||||
|
'(isearch ((t (:foreground "red" :background "CornflowerBlue"))))
|
||||||
|
'(italic ((t (:italic t))))
|
||||||
|
'(modeline ((t (:background "LightSlateGray" :foreground "AntiqueWhite"))))
|
||||||
|
'(modeline-buffer-id ((t (:background "LightSlateGray" :foreground "DarkBlue"))))
|
||||||
|
'(modeline-mousable ((t (:background "LightSlateGray" :foreground "firebrick"))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "LightSlateGray" :foreground "wheat"))))
|
||||||
|
'(region ((t (:background "dark cyan" :foreground "cyan"))))
|
||||||
|
'(secondary-selection ((t (:background "Aquamarine" :foreground "SlateBlue"))))
|
||||||
|
'(show-paren-match-face ((t (:background "Aquamarine" :foreground "SlateBlue"))))
|
||||||
|
'(show-paren-mismatch-face ((t (:background "Red" :foreground "White"))))
|
||||||
|
'(underline ((t (:underline t))))
|
||||||
|
'(widget-field-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(widget-inactive-face ((t (:foreground "DimGray"))))
|
||||||
|
'(widget-single-line-field-face ((t (:foreground "LightBlue"))))
|
||||||
|
'(woman-bold-face ((t (:bold t))))
|
||||||
|
'(woman-italic-face ((t (:foreground "beige"))))
|
||||||
|
'(woman-unknown-face ((t (:foreground "LightSalmon")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'classic)
|
||||||
|
|
||||||
|
;;; classic-theme.el ends here
|
||||||
82
elpa/color-theme-modern-0.0.3/cobalt-theme.el
Normal file
82
elpa/color-theme-modern-0.0.3/cobalt-theme.el
Normal file
|
|
@ -0,0 +1,82 @@
|
||||||
|
;;; cobalt-theme.el --- cobalt theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2012 by Nick Ewing
|
||||||
|
;; Copyright (C) 2014 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Nick Ewing
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of cobalt theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme cobalt
|
||||||
|
"cobalt theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'cobalt
|
||||||
|
|
||||||
|
'(default ((t (:background "#09223F" :foreground "#F8F8F8"))))
|
||||||
|
'(cursor ((t (:background "#A7A7A7"))))
|
||||||
|
'(border ((t (:foreground "black"))))
|
||||||
|
|
||||||
|
'(buffers-tab ((t (:background "#09223F" :foreground "white"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "#40FFB9"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "#008AFF"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "#FF518C"))))
|
||||||
|
'(font-lock-doc-face ((t (:foreground "#008AFF"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "#FFDD00"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "#FA9E18"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "#8090A2"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "#CCCCCC"))))
|
||||||
|
'(font-lock-regexp-grouping-backslash ((t (:foreground "#E9C062"))))
|
||||||
|
'(font-lock-regexp-grouping-construct ((t (:foreground "red"))))
|
||||||
|
'(font-lock-string-face ((t (:foreground "#42D915"))))
|
||||||
|
'(font-lock-type-face ((t (:foreground "#FFEF79"))))
|
||||||
|
'(font-lock-variable-name-face ((t (:foreground "#CCCCCC"))))
|
||||||
|
'(font-lock-warning-face ((t (:foreground "Pink"))))
|
||||||
|
'(hl-line ((t (:background "#00162A"))))
|
||||||
|
'(linum ((t (:background "#111111" :foreground "#888888"
|
||||||
|
:underline nil))))
|
||||||
|
'(gui-element ((t (:background "#303030" :foreground "black"))))
|
||||||
|
'(region ((t (:background "#444444"))))
|
||||||
|
'(highlight ((t (:background "#26425D"))))
|
||||||
|
'(show-paren-match ((t (:background "#26425D"))))
|
||||||
|
'(show-paren-mismatch ((t (:background "#FF0000"))))
|
||||||
|
'(ecb-default-highlight-face ((t (:background "#26425D"))))
|
||||||
|
'(minibuffer-prompt ((t (:foreground "#008AFF"))))
|
||||||
|
'(modeline ((t (:background "#111111" :foreground "#888888"))))
|
||||||
|
'(modeline-inactive ((t (:background "#222222" :foreground "#888888"))))
|
||||||
|
'(italic ((t (nil))))
|
||||||
|
'(left-margin ((t (nil))))
|
||||||
|
'(toolbar ((t (nil))))
|
||||||
|
'(ido-subdir ((t (:foreground "#008AFF"))))
|
||||||
|
'(ido-only-match ((t (:foreground "#42D915"))))
|
||||||
|
'(mumamo-background-chunk-major ((t (:background nil))))
|
||||||
|
'(mumamo-background-chunk-submode1 ((t (:background nil))))
|
||||||
|
'(underline ((nil (:underline nil)))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'cobalt)
|
||||||
|
|
||||||
|
;;; cobalt-theme.el ends here
|
||||||
1052
elpa/color-theme-modern-0.0.3/color-theme-modern-autoloads.el
Normal file
1052
elpa/color-theme-modern-0.0.3/color-theme-modern-autoloads.el
Normal file
File diff suppressed because it is too large
Load diff
10
elpa/color-theme-modern-0.0.3/color-theme-modern-pkg.el
Normal file
10
elpa/color-theme-modern-0.0.3/color-theme-modern-pkg.el
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
(define-package "color-theme-modern" "0.0.3" "Reimplement colortheme with Emacs 24 theme framework."
|
||||||
|
'((emacs "24"))
|
||||||
|
:commit "4f7da6f955f7c584c5dfab2dc170f9a3debd80f8" :authors
|
||||||
|
'(("Syohei YOSHIDA" . "syohex@gmail.com"))
|
||||||
|
:maintainer
|
||||||
|
'("Syohei YOSHIDA" . "syohex@gmail.com")
|
||||||
|
:url "https://github.com/emacs-jp/replace-colorthemes")
|
||||||
|
;; Local Variables:
|
||||||
|
;; no-byte-compile: t
|
||||||
|
;; End:
|
||||||
30
elpa/color-theme-modern-0.0.3/color-theme-modern.el
Normal file
30
elpa/color-theme-modern-0.0.3/color-theme-modern.el
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
;;; color-theme-modern.el --- ports of color-theme themes to deftheme
|
||||||
|
|
||||||
|
;; Copyright (C) 2013-2016 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; This package ports many `color-theme' themes to `deftheme' themes.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(provide 'color-theme-modern)
|
||||||
|
|
||||||
|
;;; color-theme-modern.el ends here
|
||||||
193
elpa/color-theme-modern-0.0.3/comidia-theme.el
Normal file
193
elpa/color-theme-modern-0.0.3/comidia-theme.el
Normal file
|
|
@ -0,0 +1,193 @@
|
||||||
|
;;; comidia-theme.el --- comidia theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 by Marcelo Dias
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of comidia theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme comidia
|
||||||
|
"comidia theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'comidia
|
||||||
|
|
||||||
|
'(default ((t (:background "black" :foreground "SteelBlue"))))
|
||||||
|
'(mouse ((t (:background "SteelBlue"))))
|
||||||
|
'(cursor ((t (:background "SteelBlue"))))
|
||||||
|
'(border ((t (:background "black"))))
|
||||||
|
|
||||||
|
'(bg:erc-color-face0 ((t (:background "White"))))
|
||||||
|
'(bg:erc-color-face1 ((t (:background "black"))))
|
||||||
|
'(bg:erc-color-face10 ((t (:background "lightblue1"))))
|
||||||
|
'(bg:erc-color-face11 ((t (:background "cyan"))))
|
||||||
|
'(bg:erc-color-face12 ((t (:background "blue"))))
|
||||||
|
'(bg:erc-color-face13 ((t (:background "deeppink"))))
|
||||||
|
'(bg:erc-color-face14 ((t (:background "gray50"))))
|
||||||
|
'(bg:erc-color-face15 ((t (:background "gray90"))))
|
||||||
|
'(bg:erc-color-face2 ((t (:background "blue4"))))
|
||||||
|
'(bg:erc-color-face3 ((t (:background "green4"))))
|
||||||
|
'(bg:erc-color-face4 ((t (:background "red"))))
|
||||||
|
'(bg:erc-color-face5 ((t (:background "brown"))))
|
||||||
|
'(bg:erc-color-face6 ((t (:background "purple"))))
|
||||||
|
'(bg:erc-color-face7 ((t (:background "orange"))))
|
||||||
|
'(bg:erc-color-face8 ((t (:background "yellow"))))
|
||||||
|
'(bg:erc-color-face9 ((t (:background "green"))))
|
||||||
|
'(bold ((t (:bold t :weight bold))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :slant italic :weight bold))))
|
||||||
|
'(comint-highlight-input ((t (:bold t :weight bold))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(erc-action-face ((t (:bold t :weight bold))))
|
||||||
|
'(erc-bold-face ((t (:bold t :weight bold))))
|
||||||
|
'(erc-dangerous-host-face ((t (:foreground "red"))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "IndianRed"))))
|
||||||
|
'(erc-error-face ((t (:background "Red" :foreground "White"))))
|
||||||
|
'(erc-fool-face ((t (:foreground "dim gray"))))
|
||||||
|
'(erc-input-face ((t (:foreground "brown"))))
|
||||||
|
'(erc-inverse-face ((t (:background "Black" :foreground "White"))))
|
||||||
|
'(erc-keyword-face ((t (:bold t :foreground "pale green" :weight bold))))
|
||||||
|
'(erc-notice-face ((t (:bold t :foreground "SlateBlue" :weight bold))))
|
||||||
|
'(erc-pal-face ((t (:bold t :foreground "Magenta" :weight bold))))
|
||||||
|
'(erc-prompt-face ((t (:bold t :background "lightBlue2" :foreground "Black" :weight bold))))
|
||||||
|
'(erc-timestamp-face ((t (:bold t :foreground "green" :weight bold))))
|
||||||
|
'(erc-underline-face ((t (:underline t))))
|
||||||
|
'(fg:erc-color-face0 ((t (:foreground "White"))))
|
||||||
|
'(fg:erc-color-face1 ((t (:foreground "black"))))
|
||||||
|
'(fg:erc-color-face10 ((t (:foreground "lightblue1"))))
|
||||||
|
'(fg:erc-color-face11 ((t (:foreground "cyan"))))
|
||||||
|
'(fg:erc-color-face12 ((t (:foreground "blue"))))
|
||||||
|
'(fg:erc-color-face13 ((t (:foreground "deeppink"))))
|
||||||
|
'(fg:erc-color-face14 ((t (:foreground "gray50"))))
|
||||||
|
'(fg:erc-color-face15 ((t (:foreground "gray90"))))
|
||||||
|
'(fg:erc-color-face2 ((t (:foreground "blue4"))))
|
||||||
|
'(fg:erc-color-face3 ((t (:foreground "green4"))))
|
||||||
|
'(fg:erc-color-face4 ((t (:foreground "red"))))
|
||||||
|
'(fg:erc-color-face5 ((t (:foreground "brown"))))
|
||||||
|
'(fg:erc-color-face6 ((t (:foreground "purple"))))
|
||||||
|
'(fg:erc-color-face7 ((t (:foreground "orange"))))
|
||||||
|
'(fg:erc-color-face8 ((t (:foreground "yellow"))))
|
||||||
|
'(fg:erc-color-face9 ((t (:foreground "green"))))
|
||||||
|
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(font-lock-comment-face ((t (:foreground "chocolate1"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(font-lock-doc-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(font-lock-doc-string-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(font-lock-function-name-face ((t (:foreground "LightSkyBlue"))))
|
||||||
|
'(font-lock-keyword-face ((t (:foreground "Cyan"))))
|
||||||
|
'(font-lock-preprocessor-face ((t (:foreground "Aquamarine"))))
|
||||||
|
'(font-lock-reference-face ((t (:foreground "LightSteelBlue"))))
|
||||||
|
'(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"))))
|
||||||
|
'(gnus-group-mail-1-empty-face ((t (:foreground "aquamarine1"))))
|
||||||
|
'(gnus-group-mail-1-face ((t (:bold t :foreground "aquamarine1" :weight bold))))
|
||||||
|
'(gnus-group-mail-2-empty-face ((t (:foreground "aquamarine2"))))
|
||||||
|
'(gnus-group-mail-2-face ((t (:bold t :foreground "aquamarine2" :weight bold))))
|
||||||
|
'(gnus-group-mail-3-empty-face ((t (:foreground "aquamarine3"))))
|
||||||
|
'(gnus-group-mail-3-face ((t (:bold t :foreground "aquamarine3" :weight bold))))
|
||||||
|
'(gnus-group-mail-low-empty-face ((t (:foreground "aquamarine4"))))
|
||||||
|
'(gnus-group-mail-low-face ((t (:bold t :foreground "aquamarine4" :weight bold))))
|
||||||
|
'(gnus-group-news-1-empty-face ((t (:foreground "PaleTurquoise"))))
|
||||||
|
'(gnus-group-news-1-face ((t (:bold t :foreground "PaleTurquoise" :weight bold))))
|
||||||
|
'(gnus-group-news-2-empty-face ((t (:foreground "turquoise"))))
|
||||||
|
'(gnus-group-news-2-face ((t (:bold t :foreground "turquoise" :weight bold))))
|
||||||
|
'(gnus-group-news-3-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-3-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-4-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-4-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-5-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-5-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-6-empty-face ((t (nil))))
|
||||||
|
'(gnus-group-news-6-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-group-news-low-empty-face ((t (:foreground "DarkTurquoise"))))
|
||||||
|
'(gnus-group-news-low-face ((t (:bold t :foreground "DarkTurquoise" :weight bold))))
|
||||||
|
'(gnus-splash-face ((t (:foreground "Brown"))))
|
||||||
|
'(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
|
||||||
|
'(gnus-summary-high-ancient-face ((t (:bold t :foreground "SkyBlue" :weight bold))))
|
||||||
|
'(gnus-summary-high-read-face ((t (:bold t :foreground "PaleGreen" :weight bold))))
|
||||||
|
'(gnus-summary-high-ticked-face ((t (:bold t :foreground "pink" :weight bold))))
|
||||||
|
'(gnus-summary-high-unread-face ((t (:bold t :weight bold))))
|
||||||
|
'(gnus-summary-low-ancient-face ((t (:italic t :foreground "SkyBlue" :slant italic))))
|
||||||
|
'(gnus-summary-low-read-face ((t (:italic t :foreground "PaleGreen" :slant italic))))
|
||||||
|
'(gnus-summary-low-ticked-face ((t (:italic t :foreground "pink" :slant italic))))
|
||||||
|
'(gnus-summary-low-unread-face ((t (:italic t :slant italic))))
|
||||||
|
'(gnus-summary-normal-ancient-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(gnus-summary-normal-read-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(gnus-summary-normal-ticked-face ((t (:foreground "pink"))))
|
||||||
|
'(gnus-summary-normal-unread-face ((t (nil))))
|
||||||
|
'(gnus-summary-selected-face ((t (:underline t))))
|
||||||
|
'(header-line ((t (:width condensed :box (:line-width 1 :style none) :background "grey20" :foreground "grey90" :box nil))))
|
||||||
|
'(highlight ((t (:background "darkolivegreen"))))
|
||||||
|
'(isearch ((t (:background "palevioletred2" :foreground "brown4"))))
|
||||||
|
'(isearch-lazy-highlight-face ((t (:background "paleturquoise4"))))
|
||||||
|
'(italic ((t (:italic t :slant italic))))
|
||||||
|
'(menu ((t (nil))))
|
||||||
|
'(message-cited-text-face ((t (:foreground "red"))))
|
||||||
|
'(message-header-cc-face ((t (:bold t :foreground "green4" :weight bold))))
|
||||||
|
'(message-header-name-face ((t (:foreground "DarkGreen"))))
|
||||||
|
'(message-header-newsgroups-face ((t (:italic t :bold t :foreground "yellow" :slant italic :weight bold))))
|
||||||
|
'(message-header-other-face ((t (:foreground "#b00000"))))
|
||||||
|
'(message-header-subject-face ((t (:foreground "green3"))))
|
||||||
|
'(message-header-to-face ((t (:bold t :foreground "green2" :weight bold))))
|
||||||
|
'(message-header-xheader-face ((t (:foreground "blue"))))
|
||||||
|
'(message-mml-face ((t (:foreground "ForestGreen"))))
|
||||||
|
'(message-separator-face ((t (:foreground "blue3"))))
|
||||||
|
'(modeline ((t (:background "Gray10" :foreground "SteelBlue" :box (:line-width 1 :style none) :width condensed))))
|
||||||
|
'(modeline-buffer-id ((t (:background "Gray10" :foreground "SteelBlue" :box (:line-width 1 :style none) :width condensed))))
|
||||||
|
'(modeline-mousable-minor-mode ((t (:background "Gray10" :foreground "SteelBlue" :box (:line-width 1 :style none) :width condensed))))
|
||||||
|
'(modeline-mousable ((t (:background "Gray10" :foreground "SteelBlue" :box (:line-width 1 :style none) :width condensed))))
|
||||||
|
'(primary-selection ((t (:background "blue3"))))
|
||||||
|
'(region ((t (:background "blue3"))))
|
||||||
|
'(scroll-bar ((t (:background "grey75"))))
|
||||||
|
'(secondary-selection ((t (:background "SkyBlue4"))))
|
||||||
|
'(speedbar-button-face ((t (:foreground "green3"))))
|
||||||
|
'(speedbar-directory-face ((t (:foreground "light blue"))))
|
||||||
|
'(speedbar-file-face ((t (:foreground "cyan"))))
|
||||||
|
'(speedbar-highlight-face ((t (:background "sea green"))))
|
||||||
|
'(speedbar-selected-face ((t (:foreground "red" :underline t))))
|
||||||
|
'(speedbar-tag-face ((t (:foreground "yellow"))))
|
||||||
|
'(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))))
|
||||||
|
|
||||||
|
'(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"))))
|
||||||
|
'(zmacs-region ((t (:background "blue3")))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(when load-file-name
|
||||||
|
(add-to-list 'custom-theme-load-path
|
||||||
|
(file-name-as-directory (file-name-directory load-file-name))))
|
||||||
|
|
||||||
|
(provide-theme 'comidia)
|
||||||
|
|
||||||
|
;;; comidia-theme.el ends here
|
||||||
439
elpa/color-theme-modern-0.0.3/dark-blue-theme.el
Normal file
439
elpa/color-theme-modern-0.0.3/dark-blue-theme.el
Normal file
|
|
@ -0,0 +1,439 @@
|
||||||
|
;;; subtle-blue-theme.el --- dark-blue theme
|
||||||
|
|
||||||
|
;; Copyright (C) 2001 by Chris McMahan
|
||||||
|
;; Copyright (C) 2013 by Syohei YOSHIDA
|
||||||
|
|
||||||
|
;; Author: Syohei YOSHIDA <syohex@gmail.com>
|
||||||
|
;; URL: https://github.com/emacs-jp/replace-colorthemes
|
||||||
|
;; Version: 0.01
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
;;
|
||||||
|
;; Port of dark-blue theme from `color-themes'
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(deftheme dark-blue
|
||||||
|
"dark-blue theme")
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'dark-blue
|
||||||
|
|
||||||
|
'(default ((t (:background "#537182" :foreground "AntiqueWhite2"))))
|
||||||
|
'(mouse ((t (:background "Grey"))))
|
||||||
|
'(cursor ((t (:background "LightGray"))))
|
||||||
|
'(border ((t (:background "black"))))
|
||||||
|
|
||||||
|
'(bbdb-company ((t (:italic t))))
|
||||||
|
'(bbdb-field-name ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(bbdb-field-value ((t (nil))))
|
||||||
|
'(bbdb-name ((t (:underline t))))
|
||||||
|
'(blank-space-face ((t (:background "LightGray"))))
|
||||||
|
'(blank-tab-face ((t (:background "Wheat" :foreground "DarkSlateGray"))))
|
||||||
|
'(blue ((t (:foreground "blue"))))
|
||||||
|
'(bold ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(bold-italic ((t (:italic t :bold t :foreground "SkyBlue"))))
|
||||||
|
'(border-glyph ((t (nil))))
|
||||||
|
'(calendar-today-face ((t (:underline t))))
|
||||||
|
'(comint-highlight-input ((t (:bold t))))
|
||||||
|
'(comint-highlight-prompt ((t (:foreground "cyan"))))
|
||||||
|
'(comint-input-face ((t (:foreground "deepskyblue"))))
|
||||||
|
'(cperl-array-face ((t (:bold t :foreground "Yellow"))))
|
||||||
|
'(cperl-hash-face ((t (:italic t :bold t :foreground "White"))))
|
||||||
|
'(cperl-nonoverridable-face ((t (:foreground "SkyBlue"))))
|
||||||
|
'(custom-button-face ((t (:underline t :bold t :foreground "MediumAquaMarine"))))
|
||||||
|
'(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black"))))
|
||||||
|
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-comment-face ((t (:background "dim gray"))))
|
||||||
|
'(custom-comment-tag-face ((t (:foreground "gray80"))))
|
||||||
|
'(custom-documentation-face ((t (:foreground "Grey"))))
|
||||||
|
'(custom-face-tag-face ((t (:underline t))))
|
||||||
|
'(custom-group-tag-face ((t (:bold t :foreground "MediumAquamarine"))))
|
||||||
|
'(custom-group-tag-face-1 ((t (:foreground "MediumAquaMarine"))))
|
||||||
|
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
|
||||||
|
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
|
||||||
|
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
|
||||||
|
'(custom-saved-face ((t (:underline t))))
|
||||||
|
'(custom-set-face ((t (:background "white" :foreground "blue"))))
|
||||||
|
'(custom-state-face ((t (:foreground "yellow"))))
|
||||||
|
'(custom-variable-button-face ((t (:underline t :bold t))))
|
||||||
|
'(custom-variable-tag-face ((t (:bold t :foreground "Aquamarine"))))
|
||||||
|
'(cvs-filename-face ((t (:foreground "blue4"))))
|
||||||
|
'(cvs-handled-face ((t (:foreground "pink"))))
|
||||||
|
'(cvs-header-face ((t (:bold t :foreground "blue4"))))
|
||||||
|
'(cvs-marked-face ((t (:bold t :foreground "green3"))))
|
||||||
|
'(cvs-msg-face ((t (:italic t))))
|
||||||
|
'(cvs-need-action-face ((t (:foreground "orange"))))
|
||||||
|
'(cvs-unknown-face ((t (:foreground "red"))))
|
||||||
|
'(diary-face ((t (:bold t :foreground "cyan"))))
|
||||||
|
'(dired-face-boring ((t (:foreground "Gray65"))))
|
||||||
|
'(dired-face-directory ((t (:bold t :foreground "sky blue"))))
|
||||||
|
'(dired-face-executable ((t (:foreground "green yellow"))))
|
||||||
|
'(dired-face-flagged ((t (:foreground "tomato"))))
|
||||||
|
'(dired-face-marked ((t (:foreground "light salmon"))))
|
||||||
|
'(dired-face-permissions ((t (:foreground "aquamarine"))))
|
||||||
|
'(dired-face-setuid ((t (:foreground "Red"))))
|
||||||
|
'(dired-face-socket ((t (:foreground "magenta"))))
|
||||||
|
'(dired-face-symlink ((t (:foreground "gray95"))))
|
||||||
|
'(display-time-mail-balloon-enhance-face ((t (:background "orange"))))
|
||||||
|
'(display-time-mail-balloon-gnus-group-face ((t (:foreground "blue"))))
|
||||||
|
'(display-time-time-balloon-face ((t (:foreground "red"))))
|
||||||
|
'(ecb-sources-face ((t (:foreground "LightBlue1"))))
|
||||||
|
'(ediff-current-diff-face-A ((t (:background "pale green" :foreground "firebrick"))))
|
||||||
|
'(ediff-current-diff-face-Ancestor ((t (:background "VioletRed" :foreground "Black"))))
|
||||||
|
'(ediff-current-diff-face-B ((t (:background "Yellow" :foreground "DarkOrchid"))))
|
||||||
|
'(ediff-current-diff-face-C ((t (:background "indianred" :foreground "white"))))
|
||||||
|
'(ediff-even-diff-face-A ((t (:background "light gray" :foreground "Black"))))
|
||||||
|
'(ediff-even-diff-face-Ancestor ((t (:background "Gray" :foreground "White"))))
|
||||||
|
'(ediff-even-diff-face-B ((t (:background "Gray" :foreground "White"))))
|
||||||
|
'(ediff-even-diff-face-C ((t (:background "light gray" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-A ((t (:background "sky blue" :foreground "Navy"))))
|
||||||
|
'(ediff-fine-diff-face-Ancestor ((t (:background "Green" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-B ((t (:background "cyan" :foreground "Black"))))
|
||||||
|
'(ediff-fine-diff-face-C ((t (:background "Turquoise" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-A ((t (:background "Gray" :foreground "White"))))
|
||||||
|
'(ediff-odd-diff-face-Ancestor ((t (:background "light gray" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-B ((t (:background "light gray" :foreground "Black"))))
|
||||||
|
'(ediff-odd-diff-face-C ((t (:background "Gray" :foreground "White"))))
|
||||||
|
'(erc-action-face ((t (:bold t))))
|
||||||
|
'(erc-bold-face ((t (:bold t))))
|
||||||
|
'(erc-default-face ((t (nil))))
|
||||||
|
'(erc-direct-msg-face ((t (:foreground "LightSalmon"))))
|
||||||
|
'(erc-error-face ((t (:bold t :foreground "yellow"))))
|
||||||
|
'(erc-input-face ((t (:foreground "Beige"))))
|
||||||
|
'(erc-inverse-face ((t (:background "wheat" :foreground "darkslategrey"))))
|
||||||
|
'(erc-notice-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-pal-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(erc-prompt-face ((t (:foreground "MediumAquamarine"))))
|
||||||
|
'(erc-underline-face ((t (:underline t))))
|
||||||
|
'(eshell-ls-archive-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(eshell-ls-backup-face ((t (:foreground "Grey"))))
|
||||||
|
'(eshell-ls-clutter-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(eshell-ls-directory-face ((t (:bold t :foreground "Yellow"))))
|
||||||
|
'(eshell-ls-executable-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(eshell-ls-missing-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(eshell-ls-picture-face ((t (:foreground "wheat"))))
|
||||||
|
'(eshell-ls-product-face ((t (:foreground "wheat"))))
|
||||||
|
'(eshell-ls-readonly-face ((t (:foreground "wheat"))))
|
||||||
|
'(eshell-ls-special-face ((t (:bold t :foreground "wheat"))))
|
||||||
|
'(eshell-ls-symlink-face ((t (:bold t :foreground "White"))))
|
||||||
|
'(eshell-ls-text-face ((t (:foreground "wheat"))))
|
||||||
|
'(eshell-ls-todo-face ((t (:foreground "wheat"))))
|
||||||
|
'(eshell-ls-unreadable-face ((t (:foreground "wheat3"))))
|
||||||
|
'(eshell-prompt-face ((t (:bold t :foreground "PaleGreen"))))
|
||||||
|
'(eshell-test-failed-face ((t (:bold t :foreground "OrangeRed"))))
|
||||||
|
'(eshell-test-ok-face ((t (:bold t :foreground "Green"))))
|
||||||
|
'(excerpt ((t (:italic t))))
|
||||||
|
'(ff-paths-non-existant-file-face ((t (:bold t :foreground "NavyBlue"))))
|
||||||
|
'(fixed ((t (:bold t))))
|
||||||
|
'(flyspell-duplicate-face ((t (:underline t :bold t :foreground "Gold3"))))
|
||||||
|
'(flyspell-incorrect-face ((t (:underline t :bold t :foreground "OrangeRed"))))
|
||||||
|
'(font-latex-italic-face ((t (nil))))
|
||||||
|
'(font-latex-math-face ((t (nil))))
|
||||||
|
'(font-latex-sedate-face ((t (:foreground "Gray85"))))
|
||||||
|
'(font-latex-string-face ((t (:foreground "orange"))))
|
||||||
|
'(font-latex-warning-face ((t (:foreground "gold"))))
|
||||||
|
'(font-lock-builtin-face ((t (:foreground "PaleGreen"))))
|
||||||
|
'(font-lock-comment-face ((t (:italic t :foreground "Gray80"))))
|
||||||
|
'(font-lock-constant-face ((t (:foreground "LightBlue"))))
|
||||||
|
|||||||