mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 23:39:29 +02:00
40 lines
1007 B
C#
40 lines
1007 B
C#
using System.Drawing;
|
|
|
|
namespace DesktopMagicPluginAPI
|
|
{
|
|
/// <summary>
|
|
/// The theme settings of the main application.
|
|
/// </summary>
|
|
public interface ITheme
|
|
{
|
|
/// <summary>
|
|
/// Gets the primary color of the current theme.
|
|
/// </summary>
|
|
Color PrimaryColor { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the secondary color of the current theme.
|
|
/// </summary>
|
|
Color SecondaryColor { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the background color of the current theme.
|
|
/// </summary>
|
|
Color BackgroundColor { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the font of the current theme.
|
|
/// </summary>
|
|
string Font { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the corner radius of the current theme.
|
|
/// </summary>
|
|
int CornerRadius { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the corner radius of the current theme.
|
|
/// </summary>
|
|
int Margin { get; }
|
|
}
|
|
} |