Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,20 @@
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>"; } }
}
}