FastLED 3.9.15
Loading...
Searching...
No Matches

◆ ColorTemperature

Color temperature values.

These color values are separated into two groups: black body radiators and gaseous light sources.

Black body radiators emit a (relatively) continuous spectrum, and can be described as having a Kelvin 'temperature'. This includes things like candles, tungsten lightbulbs, and sunlight.

Gaseous light sources emit discrete spectral bands, and while we can approximate their aggregate hue with RGB values, they don't actually have a proper Kelvin temperature.

See also
https://en.wikipedia.org/wiki/Color_temperature
Enumerator
Candle 

1900 Kelvin

Tungsten40W 

2600 Kelvin

Tungsten100W 

2850 Kelvin

Halogen 

3200 Kelvin

CarbonArc 

5200 Kelvin

HighNoonSun 

5400 Kelvin

DirectSunlight 

6000 Kelvin

OvercastSky 

7000 Kelvin

ClearBlueSky 

20000 Kelvin

WarmFluorescent 

Warm (yellower) flourescent light bulbs.

StandardFluorescent 

Standard flourescent light bulbs.

CoolWhiteFluorescent 

Cool white (bluer) flourescent light bulbs.

FullSpectrumFluorescent 

Full spectrum flourescent light bulbs.

GrowLightFluorescent 

Grow light flourescent light bulbs.

BlackLightFluorescent 

Black light flourescent light bulbs.

MercuryVapor 

Mercury vapor light bulbs.

SodiumVapor 

Sodium vapor light bulbs.

MetalHalide 

Metal-halide light bulbs.

HighPressureSodium 

High-pressure sodium light bulbs.

UncorrectedTemperature 

Uncorrected temperature (0xFFFFFF)

Definition at line 46 of file color.h.

46 {
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 */
ColorTemperature
Color temperature values.
Definition color.h:46
@ 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