]> git.vomp.tv Git - vompclient.git/blob - colour.cc
Channel schedules in live banner
[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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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::VIDEOBLUE(0, 0, 150);
29 Colour Colour::VIEWBACKGROUND(0, 0, 100);
30 Colour Colour::TITLEBARBACKGROUND(0, 0, 200);
31 Colour Colour::SELECTHIGHLIGHT(240, 250, 80);
32 Colour Colour::LIGHTTEXT(255, 255, 255);
33 Colour Colour::DARKTEXT(0, 0, 100);
34 Colour Colour::DANGER(200, 0, 0);
35 Colour Colour::BUTTONBACKGROUND(0, 0, 150);
36
37
38 /*
39 Silly colours
40
41 Colour Colour::VIDEOBLUE(250, 0, 0);
42 Colour Colour::VIEWBACKGROUND(100, 0, 100);
43 Colour Colour::TITLEBARBACKGROUND(100, 0, 200);
44 Colour Colour::SELECTHIGHLIGHT(240, 250, 180);
45 Colour Colour::LIGHTTEXT(255, 0, 255);
46 Colour Colour::DARKTEXT(0, 0, 255);
47 Colour Colour::DANGER(200, 200, 0);
48 Colour Colour::BUTTONBACKGROUND(255, 255, 255);
49 */