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>
11 lines
302 B
Go
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"`
|
|
}
|