mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 11:21:45 -05:00
8ec044f8c9
let's see if this works
23 lines
No EOL
878 B
C#
23 lines
No EOL
878 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;
|
|
}
|
|
} |