renderbug/firmware/colors.h
2021-03-27 18:19:55 -07:00

11 lines
198 B
C

#pragma once
#include "FastLED/FastLED.h"
typedef struct ColorInfo {
const char *name;
NSFastLED::CRGB rgb;
} ColorInfo;
ColorInfo colorForName(const char *name);
const ColorInfo* allColors();