mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-06 07:46:13 +02:00
- Rename src to _src
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user