Hello people, bring playing with fastled and just wondering is there a way to

Hello people, bring playing with fastled and just wondering is there a way to save a CRGB colour into a variable to be used later.
Something like
Colour1 = (255,125,200);

Then later in the program…
leds[n]=CRGB(Colour1);

Can this be done? I’ve tried all sorts of combinations and can’t seem to get the syntax right. Any help would be appreciated.

Here’s the color red in HSV and RGB.

CHSV colorOne(0,255,255); //custom hsv color.
CRGB colorTwo(255,0,0); //custom rgb color.

leds[i] = colorOne; //sets pixel to custom color

Any of these work:

CRGB color = CRGB(255, 125, 200);
CRGB color = { 255, 125, 200 };
CRGB color = CRGB::SkyBlue

More info: https://github.com/FastLED/FastLED/wiki/Pixel-reference