ShiftOS-Rewind/ShiftOS.Engine/WindowManager/ShiftSkinData.cs
AShifter e9a8a6df70 More Skinning
You can now set a skin and it will persist throughout all windows -
though there is a bug where hovering over a context button will change
it's color and leaving it will change it back to black. Will fix
soon™️.
2017-10-14 09:27:27 -06:00

20 lines
796 B
C#

using System.Drawing;
namespace ShiftOS.Engine.WindowManager
{
public abstract class ShiftSkinData
{
// ColorData
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 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;
}
}