18 lines
556 B
C++
18 lines
556 B
C++
#include "ColorPalettes.h"
|
|
|
|
|
|
extern const COLOR_PACK combo_colorPacks[] PROGMEM;
|
|
extern const COLOR_PACK single_colorPacks[] PROGMEM;
|
|
extern const COLOR_PACK fireColorPacks[] PROGMEM;
|
|
|
|
void Create_Red_Yellow_Violet_Palette(CRGBPalette16& customPalette) {
|
|
customPalette = CRGBPalette16(
|
|
CRGB::Red, CRGB::Yellow, CRGB::Violet,
|
|
CRGB::Red, CRGB::Yellow, CRGB::Violet,
|
|
CRGB::Red, CRGB::Yellow, CRGB::Violet,
|
|
CRGB::Red, CRGB::Yellow, CRGB::Violet,
|
|
CRGB::Red, CRGB::Yellow, CRGB::Violet,
|
|
CRGB::Red
|
|
);
|
|
}
|