Set dark mode to true and migration (#348)
* Default to dark mode for application
This commit is contained in:
parent
f18285db93
commit
9534618f4b
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue