Problem with color text in new TextChatService

I have a problem, I want to make the text color in the server script, but in the local script it is already sent to the chat, help me solve the problem!

game:GetService("ReplicatedStorage").Remotes.Server.CommandMessage:FireAllClients("<font color='#CA0202'>Banned</font>")

Local script

local TextChatService = game:GetService("TextChatService")
local Players = game:GetService("Players")

local SystemChannel: TextChannel = TextChatService:FindFirstChild("RBXSystem", true)

game:GetService("ReplicatedStorage").Remotes.Server:WaitForChild("CommandMessage").OnClientEvent:Connect(function(message)
	SystemChannel:SendAsync(message)
end)