summaryrefslogtreecommitdiff
path: root/themes/Adwaita/portions.css
blob: 3c5c582ecad97a0d9d784b7d37fba87e0b26e91b (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65



@define-color binportion-raw-color #808080;

@define-color binportion-code-color #4150ae;

@define-color binportion-data-color #ae4141;

@define-color binportion-data-ro-color #aeaa41;

@define-color binportion-disassembly-error #000000;




.binportion-raw {

    background-color: @binportion-raw-color;

    border-color: darker(@binportion-raw-color);
    border-width: 1px;
    border-style: solid;

}

.binportion-code {

    background-color: @binportion-code-color;

    border-color: darker(@binportion-code-color);
    border-width: 1px;
    border-style: solid;

}

.binportion-data {

    background-color: @binportion-data-color;

    border-color: darker(@binportion-data-color);
    border-width: 1px;
    border-style: solid;

}

.binportion-data-ro {

    background-color: @binportion-data-ro-color;

    border-color: darker(@binportion-data-ro-color);
    border-width: 1px;
    border-style: solid;

}

.binportion-disassembly-error {

    background-color: @binportion-disassembly-error-color;

    border-color: darker(@binportion-disassembly-error-color);
    border-width: 1px;
    border-style: solid;

}