So FastLED supports palettes of size 16, 32, and 256. If you want to put all 211 colors in one palette, that’ll would have to be one single large 256-entry palette.
I think right now only 16-color palettes can be (automatically) stored in PROGMEM, but that’s not too hard once you have to hex values loaded into your source code.
So, if you just want to define a 16-entry RAM-based (not PROGMEM) palette with hex values, you do this:
const CRGBPalette16 myPalette = {
0x49538E, 0x242565, 0x362247, 0x231609,
0x49538E, 0x242565, 0x362247, 0x231609,
0x49538E, 0x242565, 0x362247, 0x231609,
0x49538E, 0x242565, 0x362247, 0x231609
};
I’ve repeated your example colors four times, but you would just put the actual 16 colors you wanted. Note: no comma after the last hex value.
To define 256-entry palette, it’s almost exactly the same:
const CRGBPalette256 myPalette = {
0x49538E, 0x242565, 0x362247, 0x231609,
0x49538E, 0x242565, 0x362247, 0x231609,
{…continue until exactly 256 colors…}
0x49538E, 0x242565, 0x362247, 0x231609
};
How many LED pixels are there going to be in this piece total, and specifically what kind of microcontroller are you using (e.g. Arduino UNO, Teensy 3.2, etc.) ?