-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.css
More file actions
82 lines (61 loc) · 1.25 KB
/
java.css
File metadata and controls
82 lines (61 loc) · 1.25 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
a { text-decoration: none; }
a:link { color: #0066cc; }
a:hover { color: red; text-decoration: underline; }
body {
color:#00000f; /* make off-black to cut-and-pasting into powerpoint */
background-color: white;
}
/* for language keywords */
.keyword {
color: #0066cc;
}
/* for basic types */
.type {
color: #0066cc;
font-family: monospace
}
/* for strings and chars */
.string {
color: #116611;
}
/* for special chars, e.g., \n, \t \\ */
.specialchar {
color: pink;
}
/* for comments */
.comment {
color: #666666;
font-style: italic;
}
/* for literal numbers */
.number {
color:purple;
}
/* for preprocesing directives, e.g., import */
.preproc {
color:darkblue;
font-weight: bold;
}
/* for symbols, e.g., <, >, + */
.symbol {
color:darkred;
}
/* for function calls and declarations */
.function {
color:#00000f;
font-weight: bold;
}
/* for block brackets, e.g., {, } */
.cbracket {
color:#00000f;
}
/* TODO and FIXME */
.todo {
font-weight: bold;
}
a { text-decoration: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a:active { color: black; }
h1 { color:black; }