Files
abysmal-isle/Scripts/SubSystem/Utilities v1.03/Gumps Plus/HTML.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

20 lines
913 B
C#

using System;
using Server;
namespace Knives.Utils
{
public class HTML
{
public static string White{ get { return "<BASEFONT COLOR=#FFFFFF>"; } }
public static string Red{ get { return "<BASEFONT COLOR=#FF0000>"; } }
public static string AshRed{ get { return "<BASEFONT COLOR=#FF9999>"; } }
public static string Green{ get { return "<BASEFONT COLOR=#00FF00>"; } }
public static string Blue{ get { return "<BASEFONT COLOR=#0000FF>"; } }
public static string Gray{ get { return "<BASEFONT COLOR=#999999>"; } }
public static string DarkGray{ get { return "<BASEFONT COLOR=#222222>"; } }
public static string Black{ get { return "<BASEFONT COLOR=#111111>"; } }
public static string Yellow{ get { return "<BASEFONT COLOR=#FFFF00>"; } }
public static string Purple{ get { return "<BASEFONT COLOR=#990099>"; } }
public static string LightPurple{ get { return "<BASEFONT COLOR=#CC00FF>"; } }
}
}