summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/Color.h
blob: 5036ccd2cbee91725b0cd56fc5d465c80bd94f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 <stdint.h>

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