boothifier/src/ColorPalettes.cpp
2025-08-25 23:38:53 -07:00

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
);
}