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