blob: 37a861f755e0a31ab3c9d80aadb0aa4c01b4fe81 (
plain)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
|
(jao-define-custom-theme jao-light
(:names (dimm-background "#F4F4F4")
(string-green "#00552a")
(func-green "#005555")
(greyish "#626262")
(blueish "#d4d4aa"))
(:palette (fg unspecified "black")
(bg unspecified "white")
(box "grey80" "antiquewhite3")
(button ((c 13 nil) nbf nul) ((c string-green) nit))
(hilite ((c nil "grey90")) ((c nil dimm-background)))
(strike-through ((c 1)) (st))
(italic (it))
(link ((c 22) nul nbf nit) ((c string-green) nul nbf))
(visited-link ((c 3) nul nbf))
(tab-sel ((~ mode-line)))
(tab-unsel ((~ mode-line-inactive)))
(comment ((c greyish) it :family "Inconsolata LGC" :height 90)
((c greyish) it))
(keyword ((c "lightsteelblue4" nil) bf))
(type ((c 59) nbf nul nit) ((c "#223142") nbf))
(function ((c func-green nil) nbf))
(variable-name ((c 0)) ((c "black")))
(constant ((c 23)))
(string ((c 58)) ((c string-green)))
(warning ((c 9)) ((c "orangered4")))
(error ((c 1) (c "sienna3")))
(dimm ((c 102)) ((c "lemonchiffon4")))
(gnus-mail ((c 232)) ((c "black")))
(gnus-news ((c 232)) ((c "black")))
(outline ((c "black")))
(f00 ((c func-green)) ((c 23))) ;; 14
(f01 ((c 31)) ((c 24)))
(f02 ((c 37)) ((c func-green))) ;; 8
;; (f00 ((c 8))) ;; 14
;; (f01 ((c 14)))
;; (f02 ((c 10))) ;; 8
(f10 ((p f00)))
(f11 ((p f01)))
(f12 ((p f02))))
(:faces (bold bf)
(button (c 13 nil) nbf nul)
(company-tooltip-common (c 1 6) nbf)
(company-tooltip-common-selection (~ company-tooltip-selection)
(c nil 6) bf)
(company-tooltip-selection (~ company-tooltip) bf nul)
(compilation-info (c nil nil) bf)
(diary (c 14) bf)
(gnus-summary-selected (c 240 nil) nul)
(gnus-summary-cancelled (c nil 230) nul)
(gnus-summary-normal-unread (c 0 nil))
(header-line (c nil 15) nul)
(italic it)
(mode-line (c 0 "grey90") nbf nul)
(mode-line-inactive (c 11 "grey90") nbf nul)
(org-hide (c 15 15))
(powerline-active1 nil)
(powerline-active2 nil)
(powerline-inactive1 nil)
(powerline-inactive2 nil)
(vertical-border (c 252 nil) :inherit nil)
(w3m-tab-selected (c 9 nil) bf)
(w3m-link-numbering (c 12))
(w3m-bold (c nil nil) bf)
(w3m-image (c 94))
(w3m-tab-background (c 12 15)))
(:x-faces (bold (c "#223142") bf)
(gnus-button (p f01) it)
(compilation-info (c "#223142" nil) nbf)
(company-scrollbar-bg (c nil "grey95"))
(company-scrollbar-fg (c nil "grey90"))
(cursor (c "sienna3" "sienna3"))
(diary (p error) nbf)
(diff-hl-change (c "white" "lightsteelblue1"))
(diff-hl-insert (c "white" "honeydew2"))
(diff-hl-delete (c "white" "wheat1"))
(fill-column-indicator (c "grey80"))
(fringe (c "grey70" nil))
(gnus-summary-selected (c "#597B59") nbf)
(gnus-summary-cancelled (c "sienna3") st)
(header-line (c nil "#efebe7"))
(lui-track-bar (p dimm) :height 0.2 nul nil ex)
(magit-diff-context-highlight (c nil "cornsilk") ex)
(magit-diff-hunk-heading-highlight (c nil "cornsilk") it bf)
(mode-line (c "grey15" "grey98")
:box (:line-width 1 :color "grey90"))
(mode-line-inactive (c "grey40" "grey95")
:box (:line-width 1 :color "grey90"))
;; (mode-line (c "grey10" "grey95") :box nil)
;; (mode-line-inactive (c "grey55" "grey90") :box nil)
(mode-line-buffer-id (c "orange4") nbf nit)
(spaceline-read-only (c nil "white") bf)
(spaceline-modified (c "darkorange3" "white") bf nit)
(spaceline-unmodified (c "royalblue4" "white") bf)
(org-hide (c "white" "white"))
(scroll-bar (c "grey80"))
(vertical-border (c "grey70" nil))
(w3m-image (c "midnightblue" "azure2"))
(w3m-bold (c "darkslategray") bf)
(w3m-tab-selected (c "orangered4" "white") bf)
(w3m-tab-selected-retrieving (~ w3m-tab-selected) (c 1))
(w3m-tab-background (c "white" "white") nul))
(:x-colors "black"
"darkslategrey"
"lightcyan4"
"cadetblue4"
"lightgoldenrod3"
"darkseagreen4"
"sienna3"
"lemonchiffon3"))
;; (enable-theme 'jao-light)
(provide 'jao-light-theme)
|