From be933ef2241d79558f91796cc5b3a161f72ebf9c Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 19 Oct 2020 00:52:24 +0200 Subject: sync with upstream --- xbmc/utils/Color.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 xbmc/utils/Color.h (limited to 'xbmc/utils/Color.h') 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 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include + +namespace UTILS +{ + + typedef uint32_t Color; + +namespace COLOR +{ + static const Color NONE = 0x00000000; + static const Color BLACK = 0xFF000000; + static const Color YELLOW = 0xFFFFFF00; + static const Color WHITE = 0xFFFFFFFF; + static const Color LIGHTGREY = 0xFFE5E5E5; + static const Color GREY = 0xFFC0C0C0; + static const Color BLUE = 0xFF0099FF; + static const Color BRIGHTGREEN = 0xFF00FF00; + static const Color YELLOWGREEN = 0xFFCCFF00; + static const Color CYAN = 0xFF00FFFF; + static const Color DARKGREY = 0xFF808080; +} // namespace COLOR +} // namespace UTILS -- cgit v1.2.3