c29582b7b63a2132fbc1ccf8227c82bcfa3a4d5b
[supertux.git] / src / unison / src / video / Color.cpp
1 //          Copyright Timothy Goya 2007.
2 // Distributed under the Boost Software License, Version 1.0.
3 //    (See accompanying file LICENSE_1_0.txt or copy at
4 //          http://www.boost.org/LICENSE_1_0.txt)
5
6 #include <unison/video/Color.hpp>
7
8 namespace Unison
9 {
10    namespace Video
11    {
12       const Color Color::BLACK(0, 0, 0);
13       const Color Color::RED(0xff, 0, 0);
14       const Color Color::GREEN(0, 0xff, 0);
15       const Color Color::BLUE(0, 0, 0xff);
16       const Color Color::CYAN(0, 0xff, 0xff);
17       const Color Color::MAGENTA(0xff, 0, 0xff);
18       const Color Color::YELLOW(0xff, 0xff, 0);
19       const Color Color::WHITE(0xff, 0xff, 0xff);
20    }
21 }