using System.Drawing;
namespace DesktopMagicPluginAPI
{
///
/// The theme settings of the main application.
///
public interface ITheme
{
///
/// Gets the primary color of the current theme.
///
Color PrimaryColor { get; }
///
/// Gets the secondary color of the current theme.
///
Color SecondaryColor { get; }
///
/// Gets the background color of the current theme.
///
Color BackgroundColor { get; }
///
/// Gets the font of the current theme.
///
string Font { get; }
///
/// Gets the corner radius of the current theme.
///
int CornerRadius { get; }
///
/// Gets the corner radius of the current theme.
///
int Margin { get; }
}
}