mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 02:02:15 +00:00
24 lines
No EOL
879 B
C#
24 lines
No EOL
879 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;
|
|
}
|
|
} |