-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.css
63 lines (58 loc) · 972 Bytes
/
console.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
body{
background-color: #3a0027;
}
#console{
color: white;
font-size: large;
font-family: serif;
}
/* The inner console element. */
.jqconsole {
padding: 10px;
}
/* The cursor. */
.jqconsole-cursor {
background-color: white;
}
/* The cursor color when the console looses focus. */
.jqconsole-blurred .jqconsole-cursor {
background-color: #666;
}
/* The current prompt text color */
.jqconsole-prompt {
color: #0d0;
}
/* The command history */
.jqconsole-old-prompt {
color: #0b0;
font-weight: normal;
}
/* The text color when in input mode. */
.jqconsole-input {
color: #dd0;
}
/* Previously entered input. */
.jqconsole-old-input {
color: #bb0;
font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
color: white;
}
.errorMessage{
color: red;
}
.brace {
color: #00FFFF;
}
.paren {
color: #FF00FF;
}
.bracket {
color: #FFFF00;
}
pre{
white-space:pre-wrap;
word-wrap:break-word;
}