summaryrefslogtreecommitdiff
path: root/lisp/stekene-light-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/stekene-light-theme.el')
-rw-r--r--lisp/stekene-light-theme.el101
1 files changed, 0 insertions, 101 deletions
diff --git a/lisp/stekene-light-theme.el b/lisp/stekene-light-theme.el
deleted file mode 100644
index eee54c7..0000000
--- a/lisp/stekene-light-theme.el
+++ /dev/null
@@ -1,101 +0,0 @@
-;;; stekene-light-theme.el --- Light version of the stekene theme -*- lexical-binding: t -*-
-
-;; Author: Fanael Linithien <fanael4@gmail.com>
-;; URL: https://github.com/Fanael/stekene-theme
-
-;; This file is NOT part of GNU Emacs.
-
-;; Copyright (c) 2014, Fanael Linithien
-;; All rights reserved.
-;;
-;; Redistribution and use in source and binary forms, with or without
-;; modification, are permitted provided that the following conditions are
-;; met:
-;;
-;; * Redistributions of source code must retain the above copyright
-;; notice, this list of conditions and the following disclaimer.
-;; * Redistributions in binary form must reproduce the above copyright
-;; notice, this list of conditions and the following disclaimer in the
-;; documentation and/or other materials provided with the distribution.
-;;
-;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-;; IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-;; TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-;; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-;; OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-;; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-;; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-;; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-;; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-;;; Code:
-
-(eval-when-compile (require 'stekene-theme-common))
-
-(deftheme stekene-light "The light version of the stekene theme.")
-
-(stekene-theme--set-faces
- stekene-light
- ((foreground "#242424")
- (background "#f8f8f8")
- (region "#bbbbbb")
- (helmselection "#cccccc")
- (hlline "#dddddd")
- (highlight "#aaccaa")
- (modelinebg "#dddddd")
- (gray1 "#919191")
- (gray2 "#666666")
- (dullgreen "#557755")
- (dullred "#775555")
- (dullyellow "#777755")
- (red "#ba2727")
- (orange1 "#ba4727")
- (orange2 "#b86833")
- (yellow1 "#777722")
- (yellow2 "#777722")
- (blue1 "#336688")
- (blue2 "#666699")
- (blue3 "#555588")
- (fringebg "#dddddd")
- (whitespaceline "#fac9c0")
- (whitespacetrailing "#fa8980")
- (symbol1 "#934748")
- (symbol2 "#8b4e34")
- (symbol3 "#7d5626")
- (symbol4 "#695e22")
- (symbol5 "#51642a")
- (symbol6 "#35693b")
- (symbol7 "#006b51")
- (symbol8 "#006c69")
- (symbol9 "#006b7f")
- (symbol10 "#00688f")
- (symbol11 "#0d6396")
- (symbol12 "#4c5b94")
- (symbol13 "#6f5288")
- (symbol14 "#854976")
- (symbol15 "#91455f")
- (delim1 "#7c544a")
- (delim2 "#6e5b3e")
- (delim3 "#586241")
- (delim4 "#3f6652")
- (delim5 "#2a6768")
- (delim6 "#32647a")
- (delim7 "#505d7e")
- (delim8 "#6d5673")
- (delim9 "#7d525e")
- (identifierlightness 25)
- (identifiersaturation 40)
- (block1 "#f8f0f0")
- (block2 "#f0f8f0")
- (block3 "#f0f0f8")
- (block4 "#f8f8f0")
- (block5 "#f0f8f8")
- (block6 "#f8f0f8")
- (block7 "#efe5e5")
- (block8 "#e5efe5")
- (block9 "#e5e5ef")))
-
-(provide-theme 'stekene-light)
-;;; stekene-light-theme.el ends here