How to use Color3 in a rich text

I can’t figure out why my rich text isn’t working. I basically wanna incorporate a teams color

local Color = info.TaggedTeam.R * 255 .. "," .. info.TaggedTeam.G * 255 .. "," .. info.TaggedTeam.B * 255 .. ","

NewAward.Info.Text = "Tagged <font color='rgb(" .. Color .. ")'><stroke thickness='0'>" .. info.TaggedPlayer .. "</stroke></font>"	

This is probably because the each of the RGB values aren’t whole numbers. I tried this in studio, and apparently they need to be whole numbers for the rich text to work. So I guess consider doing this?

math.floor(info.TaggedTeam.B * 255 + 0.5))
-- etc