blob: bdb92543f572bc97a5bee1f798c74abe9c6183a4 (
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
|
#ifndef __BAGS_R_H
#define __BAGS_R_H
namespace bags {
namespace R {
namespace style {
enum {
Theme_Two = 0x61020000, // default
Theme_Three = 0x61020001, // default
Overlay = 0x61020002, // default
};
}
namespace color {
enum {
app_color = 0x61030000, // default
magenta = 0x61030001, // default
cyan = 0x61030002, // default
};
}
} // namespace R
} // namespace bags
#endif // __BAGS_R_H
|