Skin Color Remote Event

hello I’m creating a script to change the skin color, and I need to Fire a RemoteEvent with the code of the color used also by the DataStore, but I don’t know how to make the code with a color number, someone can help me ?

Local Script:

local Button = script.Parent
local RemoteEvent = game:GetService("ReplicatedStorage").CharacterColor


Button.MouseButton1Click:Connect(function()
	RemoteEvent:FireServer("Brown", "86, 66, 54" ) 
end)

Server Script:

RemoteEvent.OnServerEvent:Connect(function(x, argument, newColor)
	if argument == "Brown" then
		x.Character["Body Colors"].HeadColor3 = newColor
		x.Character["Body Colors"].LeftArmColor3 = newColor
		x.Character["Body Colors"].RightArmColor3 = newColor
		x.Character["Body Colors"].LeftLegColor3 = newColor
		x.Character["Body Colors"].RightLegColor3 = newColor
		x.Character["Body Colors"].TorsoColor3 = newColor
	end
	if argument == "Boy" then
		x.Character["Body Colors"].HeadColor3 = newColor
		x.Character["Body Colors"].LeftArmColor3 = newColor
		x.Character["Body Colors"].RightArmColor3 = newColor
		x.Character["Body Colors"].LeftLegColor3 = newColor
		x.Character["Body Colors"].RightLegColor3 = newColor
		x.Character["Body Colors"].TorsoColor3 = newColor
	end
	if argument == "MidBoy" then
		x.Character["Body Colors"].HeadColor3 = newColor
		x.Character["Body Colors"].LeftArmColor3 = newColor
		x.Character["Body Colors"].RightArmColor3 = newColor
		x.Character["Body Colors"].LeftLegColor3 = newColor
		x.Character["Body Colors"].RightLegColor3 = newColor
		x.Character["Body Colors"].TorsoColor3 = newColor
	end
	if argument == "Adult" then
		x.Character["Body Colors"].HeadColor3 = newColor
		x.Character["Body Colors"].LeftArmColor3 = newColor
		x.Character["Body Colors"].RightArmColor3 = newColor
		x.Character["Body Colors"].LeftLegColor3 = newColor
		x.Character["Body Colors"].RightLegColor3 = newColor
		x.Character["Body Colors"].TorsoColor3 = newColor
	end
	_G.clothes[x.UserId]["Color"] = newColor
end)

I don’t see the use of the argument value in the server script necessary due to all of the ‘if’ conditions leading to the same place in the code, I’d say remove all of the "if argument == “something” " lines and just have what’s inside the ‘if’ functions if there’s no other use for the argument value.

no I meant the newColor variable. When I Fire the Event, I have to write for exaple: (“Hello”, value) and then in the Server Script I have to write: Name = value. So I need to know how to write a color value as a value that the script can send to the server script, cause if I write: 60,50,14 the script gives to me error

Color3.fromRGB(255,255,255)

you most likely need to actually give it a color3 value instead of just making it as a string.