-
Notifications
You must be signed in to change notification settings - Fork 0
/
solarizedkodlight.css
189 lines (189 loc) · 3.11 KB
/
solarizedkodlight.css
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* Solarized Light Kod Style by Ritwik Roy
* This is the light version of the solarized style for the Kod text editor
* It is based of the default style, with colors changed.
* It should be saved in ~/.kod/solarizedkoddark.css
* To use it, run the following command
*
* $ defaults write se.hunch.kod style/url ~/.kod/solarizedkodlight.css
*
* Kod needs to be restarted after this for the change to take effect.
* Hopefully future versions of Kod will incorporate a simpler way to add user styles
* and this style will be updated for that.
*
* The Solarized style project can be found at: http://ethanschoonover.com/solarized
* The Kod text editor can be found at: https://github.com/rsms/kod
* This project can be found at: https://github.com/ritwik/kod-colors-solarized
*
*/
body {
font-family: "Monaco", "M+ 1m", monospace;
font-size: 11px;
background-color: #fdf6e3;
color: #657b83;
}
/* color of the caret and selection range */
caret {
color: #657b83;
}
selection {
background-color: #eee8d5;
}
column-guide {
color: #93a1a1;
/*width:4px; background: @base2;*/
}
/* the color for context lines (when specified with line ranges) */
metaruler {
color: #93a1a1;
background: #eee8d5;
border-right: 2px solid #eee8d5;
font-size: 11px;
}
keyword {
color: #859900;
}
type {
color: #b58900;
}
usertype {
color: #586e75;
}
classname {
color: #b58900;
}
string {
color: #2aa198;
background-color: #fdf6e3;
}
specialchar {
color: #859900;
background-color: #fdf6e3;
}
regexp {
color: #859900;
background-color: #fdf6e3;
}
comment {
color: #93a1a1;
font-style: italic;
}
number {
color: #2aa198;
}
preproc {
color: #cb4b16;
}
symbol {
color: #657b83;
}
function {
color: #268bd2;
background-color: #fdf6e3;
}
cbracket {
color: #657b83;
}
todo {
color: #d33682;
font-weight: bold;
}
/* Internet related */
url {
color: #268bd2;
text-decoration: underline;
cursor: pointer;
}
/* other elements for ChangeLog and Log files */
date {
color: #F09C9F;
font-weight: bold;
}
time, file {
color: #A78AB0;
font-weight: bold;
}
ip, name {
color: #8CB194;
}
/* for Prolog, Perl, lang */
variable {
color: #2aa198;
}
italics {
text-decoration: underline;
font-style: italic;
}
bold {
color: #93a1a1;
font-weight: bold;
}
/* for LaTeX, markdown, etc */
underline {
color: #268bd2;
text-decoration: underline;
}
fixed {
color: #93a1a1;
background-color: #eee8d5;
}
argument, optionalargument {
color: #dc322f;
}
math {
color: #cb4b16;
}
bibtex {
color: #859900;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #6c71c4;
}
ul, ol {
color: #b58900;
}
/* for diffs */
oldfile {
color: #f7bfb6;
background-color: #42201C;
}
newfile {
color: #cff7bf;
background-color: #13340C;
}
difflines {
color: white;
background-color: #3D96DE;
}
/* for css */
selector {
color: #cb4b16;
}
property {
color: #2aa198;
}
value {
color: #859900;
}
/* for Oz, Erlang, etc */
atom {
color: #cb4b16;
}
meta {
font-style: italic;
}
/* CSS v2 tests */
value > string {
color: #2aa198;
}
object.json > pair > value > string {
color: #b58900;
}
array.json value > string {
color: #859900;
}