mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 10:12:16 +00:00
e9a8a6df70
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™️.
20 lines
796 B
C#
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;
|
|
}
|
|
}
|