20 lines
913 B
C#
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>"; } }
|
|
}
|
|
} |