❔ Cannot deserialize System.Drawing.Color from JSON
It seems like the System.Text.Json library is not able to deserialize a Color from a JSON string it serialized before.
Code I used for testing:
Code I used for testing:

public static void TestSerialisation()
{
Color toJson = Color.FromArgb(0xFF, 0xF, 0x36);
string inJson = JsonSerializer.Serialize(toJson);
Color fromJson = JsonSerializer.Deserialize<Color>(inJson);
}