Files
renderbug-cpp/src/colors.h
2021-03-29 01:10:55 -07:00

11 lines
179 B
C

#pragma once
#include <FastLED.h>
typedef struct ColorInfo {
const char *name;
CRGB rgb;
} ColorInfo;
ColorInfo colorForName(const char *name);
const ColorInfo* allColors();