Files
EdgeCommon/pkg/systemconfigs/theme_config.go
2024-05-17 18:28:59 +08:00

26 lines
532 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
package systemconfigs
func DefaultThemeBackgroundColors() []string {
return []string{
"14539A",
"276AC6",
"0081AF",
"473BF0",
"ACADBC",
"9B9ECE",
"C96480",
"B47978",
"B1AE91",
"49A078",
"46237A",
"000500",
}
}
// ThemeConfig 风格模板设置
type ThemeConfig struct {
BackgroundColor string `yaml:"backgroundColor" json:"backgroundColor"` // 背景色16进制不需要带井号#
}