Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
 
3
Style with support for rainbow parens
4
 
5
*/
6
 
7
.hljs {
8
  display: block; padding: 0.5em;
9
  background: #474949; color: #D1D9E1;
10
}
11
 
12
 
13
.hljs-body,
14
.hljs-collection {
15
   color: #D1D9E1;
16
}
17
 
18
.hljs-comment,
19
.hljs-template_comment,
20
.diff .hljs-header,
21
.hljs-doctype,
22
.lisp .hljs-string,
23
.hljs-javadoc {
24
  color: #969896;
25
  font-style: italic;
26
}
27
 
28
.hljs-keyword,
29
.clojure .hljs-attribute,
30
.hljs-winutils,
31
.javascript .hljs-title,
32
.hljs-addition,
33
.css .hljs-tag {
34
  color: #cc99cc;
35
}
36
 
37
.hljs-number { color: #f99157; }
38
 
39
.hljs-command,
40
.hljs-string,
41
.hljs-tag .hljs-value,
42
.hljs-phpdoc,
43
.tex .hljs-formula,
44
.hljs-regexp,
45
.hljs-hexcolor {
46
  color: #8abeb7;
47
}
48
 
49
.hljs-title,
50
.hljs-localvars,
51
.hljs-function .hljs-title,
52
.hljs-chunk,
53
.hljs-decorator,
54
.hljs-built_in,
55
.lisp .hljs-title,
56
.hljs-identifier
57
{
58
  color: #b5bd68;
59
}
60
 
61
.hljs-class .hljs-keyword
62
{
63
  color: #f2777a;
64
}
65
 
66
.hljs-variable,
67
.lisp .hljs-body,
68
.smalltalk .hljs-number,
69
.hljs-constant,
70
.hljs-class .hljs-title,
71
.hljs-parent,
72
.haskell .hljs-label,
73
.hljs-id,
74
.lisp .hljs-title,
75
.clojure .hljs-title .hljs-built_in {
76
   color: #ffcc66;
77
}
78
 
79
.hljs-tag .hljs-title,
80
.hljs-rules .hljs-property,
81
.django .hljs-tag .hljs-keyword,
82
.clojure .hljs-title .hljs-built_in {
83
  font-weight: bold;
84
}
85
 
86
.hljs-attribute,
87
.clojure .hljs-title {
88
  color: #81a2be;
89
}
90
 
91
.hljs-preprocessor,
92
.hljs-pragma,
93
.hljs-pi,
94
.hljs-shebang,
95
.hljs-symbol,
96
.hljs-symbol .hljs-string,
97
.diff .hljs-change,
98
.hljs-special,
99
.hljs-attr_selector,
100
.hljs-important,
101
.hljs-subst,
102
.hljs-cdata {
103
  color: #f99157;
104
}
105
 
106
.hljs-deletion {
107
  color: #dc322f;
108
}
109
 
110
.tex .hljs-formula {
111
  background: #eee8d5;
112
}