]> git.vomp.tv Git - vompclient.git/blob - colour.cc
FSF address change
[vompclient.git] / colour.cc
1 /*
2     Copyright 2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #include "colour.h"
22
23 /*
24 Real colours
25 */
26 Colour Colour::BLACK(0, 0, 0);
27 Colour Colour::RED(255, 0, 0);
28 Colour Colour::GREEN(0, 255, 0);
29 Colour Colour::BLUE(0, 0, 255);
30 Colour Colour::YELLOW(255, 255, 0);
31 Colour Colour::VIDEOBLUE(0, 0, 150);
32 Colour Colour::VIEWBACKGROUND(0, 0, 100);
33 Colour Colour::TABVIEWBACKGROUND(0, 0, 120);
34 Colour Colour::TITLEBARBACKGROUND(0, 0, 200);
35 Colour Colour::SELECTHIGHLIGHT(240, 250, 80);
36 Colour Colour::LIGHTTEXT(255, 255, 255);
37 Colour Colour::DARKTEXT(0, 0, 100);
38 Colour Colour::DANGER(200, 0, 0);
39 Colour Colour::BUTTONBACKGROUND(0, 0, 200);
40 Colour Colour::PROGRAMMEB(80, 80, 240); // two colours used as alterating backgrounds for individual programmes in EPG
41 Colour Colour::PROGRAMMEA(40, 40, 120); // TODO fit epg style (colours) in with rest of application
42 Colour Colour::NOPROGRAMME(180, 180, 180); // no programme details colour
43
44
45 /*
46 Silly colours
47
48 Colour Colour::VIDEOBLUE(250, 0, 0);
49 Colour Colour::VIEWBACKGROUND(100, 0, 100);
50 Colour Colour::TITLEBARBACKGROUND(100, 0, 200);
51 Colour Colour::SELECTHIGHLIGHT(240, 250, 180);
52 Colour Colour::LIGHTTEXT(255, 0, 255);
53 Colour Colour::DARKTEXT(0, 0, 255);
54 Colour Colour::DANGER(200, 200, 0);
55 Colour Colour::BUTTONBACKGROUND(255, 255, 255);
56 */