summaryrefslogtreecommitdiff
path: root/gtk2_ardour/base_colors.h
blob: c52d632ef736773959351e0ae3c05e3ffeaab1fc (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
/*
    Copyright (C) 2014 Paul Davis 

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

/* no guard #ifdef's - this file is intended to be included many times */

/* note that because the integer values are interpreted as RGBA, we must include a A component, which is just 0xff
   for all colors here. The alpha component is not used.
*/

/* purely aesthetic color definitions */


CANVAS_BASE_COLOR(colorA,"colorA", 0xff0000ff) /* red */
CANVAS_BASE_COLOR(colorAlight,"colorAlight", 0xff00e6ff) /* pink */

/* oranges */

CANVAS_BASE_COLOR(colorAB,"colorAB", 0xff4d00ff) /* redder/darker orange */
CANVAS_BASE_COLOR(colorABlight,"colorABlight", 0xff9900ff) /* lighter orange */

/* yellows */
CANVAS_BASE_COLOR(colorB,"colorB", 0xffe600ff) /* bright yellow */

/* greens */
CANVAS_BASE_COLOR(colorA2,"colorC", 0x00ff1aff) /* darker green */
CANVAS_BASE_COLOR(colorClight,"colorClight", 0x80ff00ff) /* light green */

/* cyan */
CANVAS_BASE_COLOR(colorCD,"colorCD", 0x00ffb3ff) /* cyan */

/* blues */
CANVAS_BASE_COLOR(colorD,"colorD", 0x00ffffff) /* light blue */
CANVAS_BASE_COLOR(colorDdark,"colorDdark", 0x001affff) /* darkest blue */
CANVAS_BASE_COLOR(colorDlight,"colorDlight", 0x00b3ffff) /* lightest blue */

/* purple */
CANVAS_BASE_COLOR(colorDA,"colorDA", 0x8000ffff) /* purple */

/* achromatics */

CANVAS_BASE_COLOR(colorDarkGray,"colorDarkGray", 0x171717ff) /* darkest gray/black */
CANVAS_BASE_COLOR(colorMidGray,"colorMidGray", 0x222222ff) /* midtone */
CANVAS_BASE_COLOR(colorLightGray,"colorLightGray", 0x7f7f7fff) /* light gray */
CANVAS_BASE_COLOR(colorLightest,"colorLightest", 0xffffffff) /* white */