13 lines
352 B
C#
13 lines
352 B
C#
using System.Drawing;
|
|
|
|
namespace ntfysh_client.Themes
|
|
{
|
|
internal abstract class BaseTheme
|
|
{
|
|
public abstract Color BackgroundColor {get; }
|
|
public abstract Color ControlBackGroundColor {get; }
|
|
public abstract Color ControlMouseOverBackgroundColor { get; }
|
|
public abstract Color ForegroundColor { get; }
|
|
}
|
|
}
|