Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2cb42fdc766891d930c3971947177eb619a903c0 (plain) (blame)
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
/* 
   code highlight CSS resembling the Eclipse IDE default color schema and the EclipseRT Virgo Website
   @author Christopher Frost
*/

.hl-keyword {
  color: #7F0055;
  font-weight: bold; 
}

.hl-comment {
  color: #646571;
  font-style: italic;
}

.hl-multiline-comment {
  color: #646571;
  font-style: italic;
}

.hl-tag {
  color: #646571;
}

.hl-attribute {
  color: #7F0055;
}

.hl-value {
  color: #0093CF;
}

.hl-string {
  color: #0093CF;
}

Back to the top