1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
;;; 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
|