private void AddColor(string name, int colorNum)
        {
            string color = MessagePrinter.IntToRGB(colorNum);

            if (color.Length != 0)
            {
                Attributes.Add(name, color);
            }
        }