aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/WindowManager/ShiftSkinData.cs
blob: 9f4bf4569f51217a6b17196b8f7c524bcfb04864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
}