namespace NexusReader.UI.Shared.Services; public interface IThemeService { bool IsLightMode { get; } event Action? OnThemeChanged; void ToggleTheme(); }