summaryrefslogtreecommitdiff
path: root/gtk2_ardour/base_colors.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/base_colors.h')
-rw-r--r--gtk2_ardour/base_colors.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/gtk2_ardour/base_colors.h b/gtk2_ardour/base_colors.h
deleted file mode 100644
index db54518949..0000000000
--- a/gtk2_ardour/base_colors.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- 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 */
-
-/* Meter colors */
-
-CANVAS_BASE_COLOR(MeterColor0, "meterColor0", 0x008800FF)
-CANVAS_BASE_COLOR(MeterColor1, "meterColor1", 0x00AA00FF)
-CANVAS_BASE_COLOR(MeterColor2, "meterColor2", 0x00FF00FF)
-CANVAS_BASE_COLOR(MeterColor3, "meterColor3", 0x00FF00FF)
-CANVAS_BASE_COLOR(MeterColor4, "meterColor4", 0xFFF000ff)
-CANVAS_BASE_COLOR(MeterColor5, "meterColor5", 0xFFF000ff)
-CANVAS_BASE_COLOR(MeterColor6, "meterColor6", 0xFF8800ff)
-CANVAS_BASE_COLOR(MeterColor7, "meterColor7", 0xFF8800ff)
-CANVAS_BASE_COLOR(MeterColor8, "meterColor8", 0xFF0000ff)
-CANVAS_BASE_COLOR(MeterColor9, "meterColor9", 0xFF0000ff)