FastLED 3.9.3
Loading...
Searching...
No Matches
color.h
Go to the documentation of this file.
1#pragma once
2
3#include "namespace.h"
4
5FASTLED_NAMESPACE_BEGIN
6
9
13
15typedef enum {
17 TypicalSMD5050=0xFFB0F0 /* 255, 176, 240 */,
19 TypicalLEDStrip=0xFFB0F0 /* 255, 176, 240 */,
20
23 Typical8mmPixel=0xFFE08C /* 255, 224, 140 */,
25 TypicalPixelString=0xFFE08C /* 255, 224, 140 */,
26
28 UncorrectedColor=0xFFFFFF /* 255, 255, 255 */
29
31
32
46typedef enum {
47 // Black Body Radiators
48 // @{
50 Candle=0xFF9329 /* 1900 K, 255, 147, 41 */,
52 Tungsten40W=0xFFC58F /* 2600 K, 255, 197, 143 */,
54 Tungsten100W=0xFFD6AA /* 2850 K, 255, 214, 170 */,
56 Halogen=0xFFF1E0 /* 3200 K, 255, 241, 224 */,
58 CarbonArc=0xFFFAF4 /* 5200 K, 255, 250, 244 */,
60 HighNoonSun=0xFFFFFB /* 5400 K, 255, 255, 251 */,
62 DirectSunlight=0xFFFFFF /* 6000 K, 255, 255, 255 */,
64 OvercastSky=0xC9E2FF /* 7000 K, 201, 226, 255 */,
66 ClearBlueSky=0x409CFF /* 20000 K, 64, 156, 255 */,
67 // @}
68
69 // Gaseous Light Sources
70 // @{
72 WarmFluorescent=0xFFF4E5 /* 0 K, 255, 244, 229 */,
74 StandardFluorescent=0xF4FFFA /* 0 K, 244, 255, 250 */,
76 CoolWhiteFluorescent=0xD4EBFF /* 0 K, 212, 235, 255 */,
78 FullSpectrumFluorescent=0xFFF4F2 /* 0 K, 255, 244, 242 */,
80 GrowLightFluorescent=0xFFEFF7 /* 0 K, 255, 239, 247 */,
82 BlackLightFluorescent=0xA700FF /* 0 K, 167, 0, 255 */,
84 MercuryVapor=0xD8F7FF /* 0 K, 216, 247, 255 */,
86 SodiumVapor=0xFFD1B2 /* 0 K, 255, 209, 178 */,
88 MetalHalide=0xF2FCFF /* 0 K, 242, 252, 255 */,
90 HighPressureSodium=0xFFB74C /* 0 K, 255, 183, 76 */,
91 // @}
92
94 UncorrectedTemperature=0xFFFFFF /* 255, 255, 255 */
96
97FASTLED_NAMESPACE_END
98
ColorTemperature
Color temperature values.
Definition color.h:46
LEDColorCorrection
Color correction starting points.
Definition color.h:15
@ Candle
1900 Kelvin
Definition color.h:50
@ CoolWhiteFluorescent
Cool white (bluer) flourescent light bulbs.
Definition color.h:76
@ Tungsten100W
2850 Kelvin
Definition color.h:54
@ HighPressureSodium
High-pressure sodium light bulbs.
Definition color.h:90
@ FullSpectrumFluorescent
Full spectrum flourescent light bulbs.
Definition color.h:78
@ DirectSunlight
6000 Kelvin
Definition color.h:62
@ Tungsten40W
2600 Kelvin
Definition color.h:52
@ SodiumVapor
Sodium vapor light bulbs.
Definition color.h:86
@ WarmFluorescent
Warm (yellower) flourescent light bulbs.
Definition color.h:72
@ BlackLightFluorescent
Black light flourescent light bulbs.
Definition color.h:82
@ CarbonArc
5200 Kelvin
Definition color.h:58
@ StandardFluorescent
Standard flourescent light bulbs.
Definition color.h:74
@ HighNoonSun
5400 Kelvin
Definition color.h:60
@ ClearBlueSky
20000 Kelvin
Definition color.h:66
@ MetalHalide
Metal-halide light bulbs.
Definition color.h:88
@ OvercastSky
7000 Kelvin
Definition color.h:64
@ UncorrectedTemperature
Uncorrected temperature (0xFFFFFF)
Definition color.h:94
@ Halogen
3200 Kelvin
Definition color.h:56
@ GrowLightFluorescent
Grow light flourescent light bulbs.
Definition color.h:80
@ MercuryVapor
Mercury vapor light bulbs.
Definition color.h:84
@ TypicalPixelString
Typical values for 8 mm "pixels on a string".
Definition color.h:25
@ TypicalLEDStrip
Typical values for SMD5050 LEDs.
Definition color.h:19
@ TypicalSMD5050
Typical values for SMD5050 LEDs.
Definition color.h:17
@ Typical8mmPixel
Typical values for 8 mm "pixels on a string".
Definition color.h:23
@ UncorrectedColor
Uncorrected color (0xFFFFFF)
Definition color.h:28