summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/Color.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/utils/Color.h')
-rw-r--r--xbmc/utils/Color.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/xbmc/utils/Color.h b/xbmc/utils/Color.h
new file mode 100644
index 0000000..5036ccd
--- /dev/null
+++ b/xbmc/utils/Color.h
@@ -0,0 +1,32 @@
1/*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
4 *
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
8
9#pragma once
10
11#include <stdint.h>
12
13namespace UTILS
14{
15
16 typedef uint32_t Color;
17
18namespace COLOR
19{
20 static const Color NONE = 0x00000000;
21 static const Color BLACK = 0xFF000000;
22 static const Color YELLOW = 0xFFFFFF00;
23 static const Color WHITE = 0xFFFFFFFF;
24 static const Color LIGHTGREY = 0xFFE5E5E5;
25 static const Color GREY = 0xFFC0C0C0;
26 static const Color BLUE = 0xFF0099FF;
27 static const Color BRIGHTGREEN = 0xFF00FF00;
28 static const Color YELLOWGREEN = 0xFFCCFF00;
29 static const Color CYAN = 0xFF00FFFF;
30 static const Color DARKGREY = 0xFF808080;
31} // namespace COLOR
32} // namespace UTILS