forked from davidedc/livecodelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
night.css
59 lines (51 loc) · 2.04 KB
/
night.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
/* Loosely based on the Midnight Textmate theme */
/*give the body height:100% so that its child
elements can have percentage heights*/
body{ height:100% }
/*this is what we want the div to look like*/
div.fullscreen{
display:block;
/*set the div in the top-left corner of the screen*/
position:absolute;
top:0;
left:0;
/*set the width and height to 100% of the screen*/
width:100%;
height:100%;
}
.cm-tab:after {
/* content: "\25A3"; */
display: -moz-inline-block;
display: -webkit-inline-block;
display: inline-block;
width: 0px;
position: relative;
overflow: visible;
left: -0.6em;
color: #FF0000;
}
.cm-s-night { background: transparent; color: white; }
.cm-s-night span.CodeMirror-selected { background: #a8f !important; }
.cm-s-night .CodeMirror-gutter { background: #0a001f; border-right: 1px solid #aaa; }
.cm-s-night .CodeMirror-gutter-text { color: #f8f8f8; }
.cm-s-night .CodeMirror-cursor {
border-left: 2px solid black !important;
}
.cm-s-night span { background: yellow; color: #ffdd00;}
.cm-s-night span.cm-comment { color: #6900a1; }
.cm-s-night span.cm-atom { color: #845dc4; }
.cm-s-night span.cm-number, .cm-s-night span.cm-attribute { color: #ff0000; }
.cm-s-night span.cm-keyword { color: #599eff; }
.cm-s-night span.cm-punctuation { color: #009900; }
.cm-s-night span.cm-string { color: #599eff; }
.cm-s-night span.cm-string-2 { color: #599eff; }
.cm-s-night span.cm-meta { color: #7678e2; }
.cm-s-night span.cm-operator { color: #009900; }
.cm-s-night span.cm-variable { color: #0000ff; }
.cm-s-night span.cm-variable-2, .cm-s-night span.cm-tag { color: #99b2ff; }
.cm-s-night span.cm-variable-3, .cm-s-night span.cm-def { color: white; }
.cm-s-night span.cm-error { color: #9d1e15; }
.cm-s-night span.cm-bracket { color: #8da6ce; }
.cm-s-night span.cm-comment { color: #6900a1; }
.cm-s-night span.cm-builtin, .cm-s-night span.cm-special { color: #ff9e59; }
.cm-s-night span.cm-link { color: #845dc4; cursor: pointer; }