mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-05 07:46:15 +02:00
- Add Corner Radius option
- Improved API documentation - Fix updater check time - Fix logging
This commit is contained in:
@@ -8,23 +8,28 @@ namespace DesktopMagicPluginAPI
|
||||
public interface ITheme
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the primary color of the main application.
|
||||
/// Gets the primary color of the current theme.
|
||||
/// </summary>
|
||||
Color PrimaryColor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the secondary color of the main application.
|
||||
/// Gets the secondary color of the current theme.
|
||||
/// </summary>
|
||||
Color SecondaryColor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the background color of the main application.
|
||||
/// Gets the background color of the current theme.
|
||||
/// </summary>
|
||||
Color BackgroundColor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the font of the main application.
|
||||
/// Gets the font of the current theme.
|
||||
/// </summary>
|
||||
string Font { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the corner radius of the current theme.
|
||||
/// </summary>
|
||||
int CornerRadius { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user