- Add Corner Radius option

- Improved API documentation
- Fix updater check time
- Fix logging
This commit is contained in:
Stone-Red-Code
2021-10-27 22:01:20 +02:00
parent b69bba68bb
commit 8f650ac35a
20 changed files with 394 additions and 290 deletions
+9 -4
View File
@@ -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; }
}
}