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