Set dark mode to true and migration (#348)

* Default to dark mode for application
This commit is contained in:
Robbie Davis 2021-06-30 13:40:04 -04:00 committed by GitHub
parent f18285db93
commit 9534618f4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,10 +57,11 @@ namespace API.Entities
/// Book Reader Option: What direction should the next/prev page buttons go
/// </summary>
public ReadingDirection BookReaderReadingDirection { get; set; } = ReadingDirection.LeftToRight;
/// <summary>
/// UI Site Global Setting: Whether the UI should render in Dark mode or not.
/// </summary>
public bool SiteDarkMode { get; set; }
public bool SiteDarkMode { get; set; } = true;