blob: 03914665faba38c4591ed6fdd81e89ce3089f881 (
plain)
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
|
/* Assembly views */
.segment-label {
color: @blue;
}
.segment-register {
color: @violet;
}
.segment-immediate {
color: @orange;
}
.segment-string {
color: @yellow;
}
.segment-keyword {
font-style: italic;
}
.segment-punct {
color: @cyan;
}
.segment-hooks,
.segment-ltgt,
.segment-signs {
color: @cyan;
font-weight: bold;
}
|