Add more themes and styles

This commit is contained in:
2025-04-18 11:59:55 +08:00
parent e73adf408e
commit db271eedf7
16 changed files with 332 additions and 1 deletions

32
theme/ghost_theme.go Normal file
View File

@@ -0,0 +1,32 @@
package theme
// GhostTheme 幽灵风格主题
var GhostTheme = Theme{
// 第一部分 - 经典幽灵风格
ThemePart{
"env": {"1a1a1a"},
"clo": {"ffffff", "ffffff"},
"head": {"ffffff"},
"mouth": {"000000"},
"eyes": {"000000"},
"top": {"ffffff"},
},
// 第二部分 - 蓝色幽灵风格
ThemePart{
"env": {"000033"},
"clo": {"aaddff", "aaddff"},
"head": {"aaddff"},
"mouth": {"000000"},
"eyes": {"000000"},
"top": {"aaddff"},
},
// 第三部分 - 绿色幽灵风格
ThemePart{
"env": {"002211"},
"clo": {"aaeecc", "aaeecc"},
"head": {"aaeecc"},
"mouth": {"000000"},
"eyes": {"000000"},
"top": {"aaeecc"},
},
}