Files
abysmal-isle/Scripts/SubSystem/TownHouses/Gumps/Gumps Plus Light/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

17 lines
900 B
C#

namespace Knives.TownHouses
{
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>"; } }
}
}