using WPFluent.Appearance;
namespace WPFluent;
///
/// Represents a contract with a service that provides tools for manipulating the theme.
///
public interface IThemeService
{
///
/// Gets current application theme.
///
/// Currently set application theme.
ApplicationTheme GetTheme();
///
/// Sets current application accent.
///
/// if the operation succeeds. otherwise.
bool SetAccent(Color accentColor);
///
/// Sets current application accent.
///
/// if the operation succeeds. otherwise.
bool SetAccent(SolidColorBrush accentSolidBrush);
///
/// Sets current application theme.
///
/// Theme type to set.
/// if the operation succeeds. otherwise.
bool SetTheme(ApplicationTheme applicationTheme);
}