You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
584 B
24 lines
584 B
namespace Connected
|
|
{
|
|
public class Theme
|
|
{
|
|
//public Breakpoints Breakpoints { get; set; }
|
|
public Palette Palette { get; set; }
|
|
public Palette PaletteDark { get; set; }
|
|
public Shadow Shadows { get; set; }
|
|
public Typography Typography { get; set; }
|
|
public LayoutProperties LayoutProperties { get; set; }
|
|
public ZIndex ZIndex { get; set; }
|
|
|
|
public Theme()
|
|
{
|
|
Palette = new Palette();
|
|
PaletteDark = new PaletteDark();
|
|
Shadows = new Shadow();
|
|
Typography = new Typography();
|
|
LayoutProperties = new LayoutProperties();
|
|
ZIndex = new ZIndex();
|
|
}
|
|
}
|
|
}
|