showmessage(IntToStr(label2.Font.Color)); //--> 7632896 a variant of green
What are the values of other green colors around 7632896 , it apears they are not simply in range +100, -100 or something ?
They're not necessarily linearly adjacent because TColor is really hex values for the BGR components in the color.
So 7632896 is TColor($747800) or RGBToColor($00, $78, $74).
A shade with slightly more blue is TColor($807800) or RGBToColor($00, $78, $80).