mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 08:56:15 +02:00
21 lines
811 B
C#
21 lines
811 B
C#
using DesktopMagicPluginAPI;
|
|
|
|
using System.Drawing;
|
|
|
|
namespace DesktopMagic.Plugins
|
|
{
|
|
internal class Theme : ITheme
|
|
{
|
|
public Color PrimaryColor { get; set; } = Color.White;
|
|
public Color SecondaryColor { get; set; } = Color.White;
|
|
public Color BackgroundColor { get; set; } = Color.Transparent;
|
|
|
|
public string Font { get; set; } = "Segoe UI";
|
|
public int CornerRadius { get; set; }
|
|
public int Margin { get; set; }
|
|
|
|
public System.Windows.Media.Brush PrimaryBrush { get; set; } = System.Windows.Media.Brushes.White;
|
|
public System.Windows.Media.Brush SecondaryBrush { get; set; } = System.Windows.Media.Brushes.White;
|
|
public System.Windows.Media.Brush BackgroundBrush { get; set; } = System.Windows.Media.Brushes.Transparent;
|
|
}
|
|
} |