This repository has been archived by the owner on May 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kod.css
88 lines (78 loc) · 2.59 KB
/
kod.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
/*
* This is the default style of Kod. If you wish to modify this to your liking,
* make a copy and put it in ~/.kod/mystyle.css then tell Kod where to find it
* by setting a configuration key:
*
* $ defaults write se.hunch.kod style/url ~/.kod/mystyle.css
*
* You might need to restart Kod for changes to take effect. Then, simply open
* your ~/.kod/mystyle.css in Kod -- when edited and saved Kod will
* automatically reload the style, thus you see the effect of your alterations.
*/
body {
font-family: "M+ 1m", monospace;
font-size: 11px;
background-color:#222;
color: #eee;
font-family: "TH Niramit AS", monospace;
font-family: "KaniGa", monospace;
font-size: 24px;
background-color:#fff;
color: #000;
}
/* color of the caret and selection range */
caret { color: #ff3319; }
selection { background-color: #2F3F52; }
/* the color for context lines (when specified with line ranges) */
metaruler {
color: #666;
background: #333;
border-right: 2px solid #444;
font-size: 11px;
}
keyword { color: #66c8ef; }
type { color: lightsalmon; }
usertype { color: #CAC059; }
classname { color: #eb7962; }
string { color:#9aca7e; background-color:#212A24; }
specialchar { color: #C0D164; background-color:#2B2F26; }
regexp { color: #FFB14B; background-color:#342C22; }
comment { color: #666; font-style: italic; }
number { color: #C969B6; }
preproc { color: #9C8B7C; }
symbol { color: #A19DBF; }
function { color: #85FFDF; background-color: #1F2B31; }
cbracket { color: #ddd; }
todo { color: #946B57; font-weight: bold; }
/* Internet related */
url {
color: #77B5FF; 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: #cda869; }
italics { text-decoration: underline; font-style: italic; }
bold { color: #fff; font-weight: bold; }
/* for LaTeX, markdown, etc */
underline { color: #3C7E5B; text-decoration: underline; }
fixed { color: #bbeecc; background-color: #2c2c2c; }
argument, optionalargument { color: #9194BB; }
math { color: orange; }
bibtex { color: #8D86EE; }
h1,h2,h3,h4,h5,h6 { color: lightsalmon; }
ul, ol { color: yellow; }
/* for diffs */
oldfile { color: #f7bfb6; background-color:#42201C; }
newfile { color: #cff7bf; background-color:#13340C; }
difflines { color: white; background-color:#3D96DE; }
/* for css */
selector { color: #cda869; }
property { color: #c4af75; }
value { color: #f9ed97; }
/* for Oz, Erlang, etc */
atom { color: orange; }
meta { font-style: italic; }