filebrowser/settings/branding.go
bekcpear b37b622d24
make theme_color of Manifest can be set
The 'theme_color' of Manifest affects the color of status bar
of mobile view, however it's statc before. Make it can be set
via `filebrowser config set --branding.color "<hex-color-code>"`.

Signed-off-by: bekcpear <i@bitbili.net>
2021-09-07 15:15:24 +08:00

11 lines
302 B
Go

package settings
// Branding contains the branding settings of the app.
type Branding struct {
Name string `json:"name"`
DisableExternal bool `json:"disableExternal"`
Files string `json:"files"`
Theme string `json:"theme"`
Color string `json:"color"`
}