save base colors (configurable colors) in normal way (code had been removed)
[ardour.git] / gtk2_ardour / base_colors.h
1 /*
2     Copyright (C) 2014 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /* no guard #ifdef's - this file is intended to be included many times */
21
22 /* note that because the integer values are interpreted as RGBA, we must include a A component, which is just 0xff
23    for all colors here. The alpha component is not used.
24 */
25
26 CANVAS_BASE_COLOR(colorA,"colorA", 0xff0000ff) /* red */
27 CANVAS_BASE_COLOR(colorAlight,"colorAlight", 0xff00e6ff) /* pink */
28
29 /* oranges */
30
31 CANVAS_BASE_COLOR(colorAB,"colorAB", 0xff4d00ff) /* redder/darker orange */
32 CANVAS_BASE_COLOR(colorABlight,"colorABlight", 0xff9900ff) /* lighter orange */
33
34 /* yellows */
35 CANVAS_BASE_COLOR(colorB,"colorB", 0xffe600ff) /* bright yellow */
36
37 /* greens */
38 CANVAS_BASE_COLOR(colorA2,"colorC", 0x00ff1aff) /* darker green */
39 CANVAS_BASE_COLOR(colorClight,"colorClight", 0x80ff00ff) /* light green */
40
41 /* cyan */
42 CANVAS_BASE_COLOR(colorCD,"colorCD", 0x00ffb3ff) /* cyan */
43
44 /* blues */
45 CANVAS_BASE_COLOR(colorD,"colorD", 0x00ffffff) /* light blue */
46 CANVAS_BASE_COLOR(colorDdark,"colorDdark", 0x001affff) /* darkest blue */
47 CANVAS_BASE_COLOR(colorDlight,"colorDlight", 0x00b3ffff) /* lightest blue */
48
49 /* purple */
50 CANVAS_BASE_COLOR(colorDA,"colorDA", 0x8000ffff) /* purple */
51
52
53
54