mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
52 lines
2.6 KiB
Go
52 lines
2.6 KiB
Go
|
|
// SiYuan - Build Your Eternal Digital Garden
|
|||
|
|
// Copyright (c) 2020-present, b3log.org
|
|||
|
|
//
|
|||
|
|
// This program is free software: you can redistribute it and/or modify
|
|||
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|||
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|||
|
|
// (at your option) any later version.
|
|||
|
|
//
|
|||
|
|
// This program is distributed in the hope that it will be useful,
|
|||
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
|
|
// GNU Affero General Public License for more details.
|
|||
|
|
//
|
|||
|
|
// You should have received a copy of the GNU Affero General Public License
|
|||
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||
|
|
|
|||
|
|
package conf
|
|||
|
|
|
|||
|
|
type Appearance struct {
|
|||
|
|
Mode int `json:"mode"` // 模式:0:明亮,1:暗黑,2:随日出日落自动切换
|
|||
|
|
DarkThemes []string `json:"darkThemes"` // 暗黑模式外观主题列表
|
|||
|
|
LightThemes []string `json:"lightThemes"` // 明亮模式外观主题列表
|
|||
|
|
ThemeDark string `json:"themeDark"` // 选择的暗黑模式外观主题
|
|||
|
|
ThemeLight string `json:"themeLight"` // 选择的明亮模式外观主题
|
|||
|
|
ThemeVer string `json:"themeVer"` // 选择的主题版本
|
|||
|
|
Icons []string `json:"icons"` // 图标列表
|
|||
|
|
Icon string `json:"icon"` // 选择的图标
|
|||
|
|
IconVer string `json:"iconVer"` // 选择的图标版本
|
|||
|
|
NativeEmoji bool `json:"nativeEmoji"` // 文档图标是否使用系统原生 Emoji
|
|||
|
|
CodeBlockThemeLight string `json:"codeBlockThemeLight"` // 明亮模式下代码块主题
|
|||
|
|
CodeBlockThemeDark string `json:"codeBlockThemeDark"` // 暗黑模式下代码块主题
|
|||
|
|
Lang string `json:"lang"` // 选择的界面语言,同 AppConf.Lang
|
|||
|
|
CustomCSS bool `json:"customCSS"` // 是否启用自定义主题
|
|||
|
|
ThemeJS bool `json:"themeJS"` // 是否启用了主题 JavaScript
|
|||
|
|
CloseButtonBehavior int `json:"closeButtonBehavior"` // 关闭按钮行为,0:退出,1:最小化到托盘
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func NewAppearance() *Appearance {
|
|||
|
|
return &Appearance{
|
|||
|
|
Mode: 0,
|
|||
|
|
ThemeDark: "midnight",
|
|||
|
|
ThemeLight: "daylight",
|
|||
|
|
Icon: "material",
|
|||
|
|
NativeEmoji: true,
|
|||
|
|
CodeBlockThemeLight: "github",
|
|||
|
|
CodeBlockThemeDark: "base16/dracula",
|
|||
|
|
Lang: "en_US",
|
|||
|
|
CustomCSS: false,
|
|||
|
|
CloseButtonBehavior: 0,
|
|||
|
|
}
|
|||
|
|
}
|