@using BTCPayServer.Abstractions.Contracts @model BTCPayServer.Services.ThemeSettings @inject IFileService FileService @{ ViewData.SetActivePage(ServerNavPages.Theme, "Theme"); var canUpload = await FileService.IsAvailable(); } @section PageFootContent { }

@ViewData["Title"]

Use the default Light or Dark Themes, or provide a CSS theme file below.

Branding

@if (!string.IsNullOrEmpty(Model.LogoFileId)) { }
@if (canUpload) {
@if (!string.IsNullOrEmpty(Model.LogoFileId)) { Logo }
} else {

In order to upload a logo, a file storage must be configured.

}