mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 02:02:15 +00:00
9c31cf53be
Almost fixed the contect button glitch and i'm using Newtonsoft.JSON to save skins!
23 lines
978 B
C#
23 lines
978 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 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;
|
|
}
|
|
}
|