-
Notifications
You must be signed in to change notification settings - Fork 0
/
monokai.css
60 lines (60 loc) · 1.37 KB
/
monokai.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
/* As close to Monokai as possible */
body {
background: #19191b;
color: #c3c3c3;
}
pre {
background-color: #282923;
font-family: consolas;
padding: 1em;
border-radius: 15px;
line-height: 1.3em;
font-size: 13px;
color: #f8f8f2;
}
pre code {
color: #f8f8f2;
font-family: consolas;
}
.n, .nn, .p, .vm, .go { /* normal names */
color: #f8f8f2; /* white */
}
.k, .kn, .o, .ow, .sr, .nt, .gr { /* normal keyword; "import", "as"; operator.word; special regex */
color: #f92b50; /* red */
}
.gr {
font-style: italic;
}
.kd, .kt, .ne, .sa, .kl, .gt {/* "class" and "def"; type; exception; r''; lambda */
color: #67d8da; /* blue */
font-style: italic
}
.nd, .nb, .nfc, .fm { /* decorator; builtins; function called */
color: #67d8da; /* blue */
}
.sd, .c1, .c, .cp, .gp, .ch { /* hash comment */
color: #747053; /* grey */
}
.m, .mi, .mf, .mh, .kc, .se, .si, .srb { /* integers, floats, constant keyword, string.escape */
color: #ac80ff; /* purple */
}
.s, .s1, .s2 { /* str */
color: #e7db74; /* yellow */
}
.n.n-File {
color: #e7db74; /* yellow */
}
.bp, .ka { /* "self", keyword arguments */
color: #fd7e2f; /* orange */
font-style: italic;
}
.nc, .nf, .na { /* name of class; function; htmlTagAttribute */
color: #a6e22f; /* green */
}
.nci {
font-style: italic;
}
.err {
background: #f92b50;
color: #f8f8f2;
}