fix incorrect color scheme default in the settings
This commit is contained in:
parent
5a88ee2d2c
commit
ea7066ae93
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ namespace blazingconsole.Types
|
||||||
public class SiteSettings
|
public class SiteSettings
|
||||||
{
|
{
|
||||||
public string ApiURL { get; set; } = "https://blazing-api.bedcrab.dev";
|
public string ApiURL { get; set; } = "https://blazing-api.bedcrab.dev";
|
||||||
public DesignThemeModes ThemeMode { get; set; } = DesignThemeModes.Dark;
|
public DesignThemeModes ThemeMode { get; set; } = DesignThemeModes.System;
|
||||||
public OfficeColor AccentColor { get; set; } = OfficeColor.OneNote;
|
public OfficeColor AccentColor { get; set; } = OfficeColor.OneNote;
|
||||||
|
|
||||||
public SiteSettings Clone() {
|
public SiteSettings Clone() {
|
||||||
|
|
Loading…
Reference in a new issue