summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/Color.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2020-10-19 00:52:24 +0200
committermanuel <manuel@mausz.at>2020-10-19 00:52:24 +0200
commitbe933ef2241d79558f91796cc5b3a161f72ebf9c (patch)
treefe3ab2f130e20c99001f2d7a81d610c78c96a3f4 /xbmc/utils/Color.h
parent5f8335c1e49ce108ef3481863833c98efa00411b (diff)
downloadkodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.tar.gz
kodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.tar.bz2
kodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.zip
sync with upstream
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