2017-10-03 20:44:54 -06:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace ShiftOS.Engine.WindowManager
|
|
|
|
|
{
|
2017-11-21 15:55:27 -07:00
|
|
|
|
public abstract class ShiftSkinData
|
|
|
|
|
{
|
|
|
|
|
// ColorData
|
2017-11-05 18:47:46 -05:00
|
|
|
|
public static Color LeftTopCornerColor = Color.Empty;
|
|
|
|
|
public static Color TitleBarColor = Color.Empty;
|
|
|
|
|
public static Color RightTopCornerColor = Color.Empty;
|
|
|
|
|
public static Color BtnCloseColor = Color.Empty;
|
|
|
|
|
public static Color BtnMaxColor = Color.Empty;
|
|
|
|
|
public static Color BtnMinColor = Color.Empty;
|
|
|
|
|
public static Color BtnCloseHoverColor = Color.Empty;
|
|
|
|
|
public static Color BtnMaxHoverColor = Color.Empty;
|
|
|
|
|
public static Color BtnMinHoverColor = Color.Empty;
|
|
|
|
|
public static Color LeftSideColor = Color.Empty;
|
|
|
|
|
public static Color RightSideColor = Color.Empty;
|
|
|
|
|
public static Color LeftBottomCornerColor = Color.Empty;
|
|
|
|
|
public static Color BottomSideColor = Color.Empty;
|
|
|
|
|
public static Color RightBottomCornerColor = Color.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|