mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
163 lines
5.3 KiB
C
163 lines
5.3 KiB
C
/*---------------------------------------------------------*\
|
|
| Colors.h |
|
|
| |
|
|
| List of named color constants |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#ifndef COLORS_H
|
|
#define COLORS_H
|
|
|
|
#define COLOR_BLACK 0x000000
|
|
#define COLOR_NAVY 0x000080
|
|
#define COLOR_DARKBLUE 0x00008b
|
|
#define COLOR_MEDIUMBLUE 0x0000cd
|
|
#define COLOR_BLUE 0x0000ff
|
|
#define COLOR_DARKGREEN 0x006400
|
|
#define COLOR_GREEN 0x008000
|
|
#define COLOR_TEAL 0x008080
|
|
#define COLOR_DARKCYAN 0x008b8b
|
|
#define COLOR_DEEPSKYBLUE 0x00bfff
|
|
#define COLOR_DARKTURQUOISE 0x00ced1
|
|
#define COLOR_MEDIUMSPRINGGREEN 0x00fa9a
|
|
#define COLOR_LIME 0x00ff00
|
|
#define COLOR_SPRINGGREEN 0x00ff7f
|
|
#define COLOR_AQUA 0x00ffff
|
|
#define COLOR_CYAN 0x00ffff
|
|
#define COLOR_MIDNIGHTBLUE 0x191970
|
|
#define COLOR_DODGERBLUE 0x1e90ff
|
|
#define COLOR_LIGHTSEAGREEN 0x20b2aa
|
|
#define COLOR_FORESTGREEN 0x228b22
|
|
#define COLOR_SEAGREEN 0x2e8b57
|
|
#define COLOR_DARKSLATEGRAY 0x2f4f4f
|
|
#define COLOR_DARKSLATEGREY 0x2f4f4f
|
|
#define COLOR_LIMEGREEN 0x32cd32
|
|
#define COLOR_MEDIUMSEAGREEN 0x3cb371
|
|
#define COLOR_TURQUOISE 0x40e0d0
|
|
#define COLOR_ROYALBLUE 0x4169e1
|
|
#define COLOR_STEELBLUE 0x4682b4
|
|
#define COLOR_DARKSLATEBLUE 0x483d8b
|
|
#define COLOR_MEDIUMTURQUOISE 0x48d1cc
|
|
#define COLOR_INDIGO 0x4b0082
|
|
#define COLOR_DARKOLIVEGREEN 0x556b2f
|
|
#define COLOR_CADETBLUE 0x5f9ea0
|
|
#define COLOR_CORNFLOWERBLUE 0x6495ed
|
|
#define COLOR_MEDIUMAQUAMARINE 0x66cdaa
|
|
#define COLOR_DIMGRAY 0x696969
|
|
#define COLOR_DIMGREY 0x696969
|
|
#define COLOR_SLATEBLUE 0x6a5acd
|
|
#define COLOR_OLIVEDRAB 0x6b8e23
|
|
#define COLOR_SLATEGRAY 0x708090
|
|
#define COLOR_SLATEGREY 0x708090
|
|
#define COLOR_LIGHTSLATEGRAY 0x778899
|
|
#define COLOR_LIGHTSLATEGREY 0x778899
|
|
#define COLOR_MEDIUMSLATEBLUE 0x7b68ee
|
|
#define COLOR_LAWNGREEN 0x7cfc00
|
|
#define COLOR_CHARTREUSE 0x7fff00
|
|
#define COLOR_AQUAMARINE 0x7fffd4
|
|
#define COLOR_MAROON 0x800000
|
|
#define COLOR_PURPLE 0x800080
|
|
#define COLOR_ELECTRIC_ULTRAMARINE 0x4000FF
|
|
#define COLOR_OLIVE 0x808000
|
|
#define COLOR_GRAY 0x808080
|
|
#define COLOR_GREY 0x808080
|
|
#define COLOR_SKYBLUE 0x87ceeb
|
|
#define COLOR_LIGHTSKYBLUE 0x87cefa
|
|
#define COLOR_BLUEVIOLET 0x8a2be2
|
|
#define COLOR_DARKRED 0x8b0000
|
|
#define COLOR_DARKMAGENTA 0x8b008b
|
|
#define COLOR_SADDLEBROWN 0x8b4513
|
|
#define COLOR_DARKSEAGREEN 0x8fbc8f
|
|
#define COLOR_LIGHTGREEN 0x90ee90
|
|
#define COLOR_MEDIUMPURPLE 0x9370db
|
|
#define COLOR_DARKVIOLET 0x9400d3
|
|
#define COLOR_PALEGREEN 0x98fb98
|
|
#define COLOR_DARKORCHID 0x9932cc
|
|
#define COLOR_YELLOWGREEN 0x9acd32
|
|
#define COLOR_SIENNA 0xa0522d
|
|
#define COLOR_BROWN 0xa52a2a
|
|
#define COLOR_DARKGRAY 0xa9a9a9
|
|
#define COLOR_DARKGREY 0xa9a9a9
|
|
#define COLOR_LIGHTBLUE 0xadd8e6
|
|
#define COLOR_GREENYELLOW 0xadff2f
|
|
#define COLOR_PALETURQUOISE 0xafeeee
|
|
#define COLOR_LIGHTSTEELBLUE 0xb0c4de
|
|
#define COLOR_POWDERBLUE 0xb0e0e6
|
|
#define COLOR_FIREBRICK 0xb22222
|
|
#define COLOR_DARKGOLDENROD 0xb8860b
|
|
#define COLOR_MEDIUMORCHID 0xba55d3
|
|
#define COLOR_ROSYBROWN 0xbc8f8f
|
|
#define COLOR_DARKKHAKI 0xbdb76b
|
|
#define COLOR_SILVER 0xc0c0c0
|
|
#define COLOR_MEDIUMVIOLETRED 0xc71585
|
|
#define COLOR_INDIANRED 0xcd5c5c
|
|
#define COLOR_PERU 0xcd853f
|
|
#define COLOR_CHOCOLATE 0xd2691e
|
|
#define COLOR_TAN 0xd2b48c
|
|
#define COLOR_LIGHTGRAY 0xd3d3d3
|
|
#define COLOR_LIGHTGREY 0xd3d3d3
|
|
#define COLOR_THISTLE 0xd8bfd8
|
|
#define COLOR_ORCHID 0xda70d6
|
|
#define COLOR_GOLDENROD 0xdaa520
|
|
#define COLOR_PALEVIOLETRED 0xdb7093
|
|
#define COLOR_CRIMSON 0xdc143c
|
|
#define COLOR_GAINSBORO 0xdcdcdc
|
|
#define COLOR_PLUM 0xdda0dd
|
|
#define COLOR_BURLYWOOD 0xdeb887
|
|
#define COLOR_LIGHTCYAN 0xe0ffff
|
|
#define COLOR_LAVENDER 0xe6e6fa
|
|
#define COLOR_DARKSALMON 0xe9967a
|
|
#define COLOR_VIOLET 0xee82ee
|
|
#define COLOR_PALEGOLDENROD 0xeee8aa
|
|
#define COLOR_LIGHTCORAL 0xf08080
|
|
#define COLOR_KHAKI 0xf0e68c
|
|
#define COLOR_ALICEBLUE 0xf0f8ff
|
|
#define COLOR_HONEYDEW 0xf0fff0
|
|
#define COLOR_AZURE 0xf0ffff
|
|
#define COLOR_SANDYBROWN 0xf4a460
|
|
#define COLOR_WHEAT 0xf5deb3
|
|
#define COLOR_BEIGE 0xf5f5dc
|
|
#define COLOR_WHITESMOKE 0xf5f5f5
|
|
#define COLOR_MINTCREAM 0xf5fffa
|
|
#define COLOR_GHOSTWHITE 0xf8f8ff
|
|
#define COLOR_SALMON 0xfa8072
|
|
#define COLOR_ANTIQUEWHITE 0xfaebd7
|
|
#define COLOR_LINEN 0xfaf0e6
|
|
#define COLOR_LIGHTGOLDENRODYELLOW 0xfafad2
|
|
#define COLOR_OLDLACE 0xfdf5e6
|
|
#define COLOR_RED 0xff0000
|
|
#define COLOR_FUCHSIA 0xff00ff
|
|
#define COLOR_MAGENTA 0xff00ff
|
|
#define COLOR_DEEPPINK 0xff1493
|
|
#define COLOR_ORANGERED 0xff4500
|
|
#define COLOR_TOMATO 0xff6347
|
|
#define COLOR_HOTPINK 0xff69b4
|
|
#define COLOR_CORAL 0xff7f50
|
|
#define COLOR_DARKORANGE 0xff8c00
|
|
#define COLOR_LIGHTSALMON 0xffa07a
|
|
#define COLOR_ORANGE 0xffa500
|
|
#define COLOR_LIGHTPINK 0xffb6c1
|
|
#define COLOR_PINK 0xffc0cb
|
|
#define COLOR_GOLD 0xffd700
|
|
#define COLOR_PEACHPUFF 0xffdab9
|
|
#define COLOR_NAVAJOWHITE 0xffdead
|
|
#define COLOR_MOCCASIN 0xffe4b5
|
|
#define COLOR_BISQUE 0xffe4c4
|
|
#define COLOR_MISTYROSE 0xffe4e1
|
|
#define COLOR_BLANCHEDALMOND 0xffebcd
|
|
#define COLOR_PAPAYAWHIP 0xffefd5
|
|
#define COLOR_LAVENDERBLUSH 0xfff0f5
|
|
#define COLOR_SEASHELL 0xfff5ee
|
|
#define COLOR_CORNSILK 0xfff8dc
|
|
#define COLOR_LEMONCHIFFON 0xfffacd
|
|
#define COLOR_FLORALWHITE 0xfffaf0
|
|
#define COLOR_SNOW 0xfffafa
|
|
#define COLOR_YELLOW 0xffff00
|
|
#define COLOR_LIGHTYELLOW 0xffffe0
|
|
#define COLOR_IVORY 0xfffff0
|
|
#define COLOR_WHITE 0xffffff
|
|
|
|
#endif // COLORS_H
|