Hi @kullurumanoj ,
Do you want to save the RGBA Color value into your SQL Table from your app?
I agree with @RandyHayes 's thought almost. The RGBA() function returns a color value based on Red, Green, and Blue color components rather than a Text String value.
Currently, within SQL table, there is no column type supported to store the RGBA color value.
As an alternative solution, you could consider create three separated Text type columns (e.g. nvarchar(50) type ) to store the Red color component value, Green color component value and Blue color component value individually. When you want to display the RGBA color value within your app based on the three component values from your SQL Table, please take a try with the following formula:
RGBA(
ColorValue(RedColumn), /* <-- RedColumn used to store the Red color component value */
ColorValue(GreenColumn), /* <-- GreenColumn used to store the Green color component value */
ColorValue(BlueColumn), /* <-- BlueColumn used to store the Blue color component value */
1
)
More details about RGBA function and ColorValue function, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-colors
Best regards,