1 /*
2  * Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3  *           (C) 2020 Vladimir Sadovnikov <sadko4u@gmail.com>
4  *
5  * This file is part of lsp-plugins
6  * Created on: 25 авг. 2016 г.
7  *
8  * lsp-plugins is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * any later version.
12  *
13  * lsp-plugins is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with lsp-plugins. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef CORE_COLORS_H_
23 #define CORE_COLORS_H_
24 
25 #define CV_BACKGROUND           0x000000
26 #define CV_DISABLED             0x444444
27 #define CV_YELLOW               0xffff00
28 #define CV_WHITE                0xffffff
29 #define CV_MAGENTA              0xff00ff
30 #define CV_SILVER               0xcccccc
31 #define CV_GRAY                 0x888888
32 #define CV_MEDIUM_GREEN         0x008800
33 #define CV_GREEN                0x00ff00
34 #define CV_RED                  0xff0000
35 #define CV_MESH                 0x00c0ff
36 #define CV_LEFT_CHANNEL         0xff0000
37 #define CV_RIGHT_CHANNEL        0x00ffff
38 #define CV_MIDDLE_CHANNEL       0x00c0ff
39 #define CV_SIDE_CHANNEL         0x00cc00
40 #define CV_LEFT_CHANNEL_IN      0xaa0000
41 #define CV_RIGHT_CHANNEL_IN     0x00aaaa
42 #define CV_MIDDLE_CHANNEL_IN    0x0080aa
43 #define CV_SIDE_CHANNEL_IN      0x008000
44 #define CV_BRIGHT_GREEN         0x80ff80
45 #define CV_BRIGHT_MAGENTA       0xff80ff
46 #define CV_BRIGHT_BLUE          0x8080ff
47 
48 
49 #endif /* CORE_COLORS_H_ */
50