-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprism.css
More file actions
44 lines (36 loc) · 861 Bytes
/
prism.css
File metadata and controls
44 lines (36 loc) · 861 Bytes
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
/* See prism.js for explanation */
/* Used to set the colour of the text box which the code sits inside of */
.codeBox {
background-color: #272822;
color: #f8f8f2;
}
/* For keywords which are reserved by the respective language */
.codeKeyword {
color: #66d9ef;
font-weight: bold;
}
/* For object types and members */
.codeType {
color: #f8f8f2;
}
/* For instances of objects */
.codeOrdinary {
color: #f8f8f2;
}
/* For elements of the code that are part of a comment */
.codeComment {
color: #8292a2;
}
/* Used for literals ie. strings */
.codeLiteral {
color: #afe22e;
font-style: italic;
}
/* For object values of integers, floating point numbers and hexidecimal representations */
.codeNumber {
color: #ae81ff;
}
/* For functions in the code as well as highlighting brackets */
.codeFunction {
color: #e6db74;
}