1 Star 0 Fork 0

GitSharp/fetch-github-hosts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gui_theme.go 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
Licoy 提交于 2023-06-01 12:27 . feat: 增加启动自动获取及优化UI
package main
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/theme"
"image/color"
)
type fghGuiTheme struct {
}
func (f *fghGuiTheme) Font(s fyne.TextStyle) fyne.Resource {
font, err := assetsFs.ReadFile("assets/" + GuiFontName)
if err != nil {
return theme.DefaultTheme().Font(s)
}
return fyne.NewStaticResource("fgh-font", font)
}
func (*fghGuiTheme) Color(c fyne.ThemeColorName, _ fyne.ThemeVariant) color.Color {
switch c {
case theme.ColorNamePrimary, theme.ColorNameButton:
//#009966
return color.RGBA{G: 0x99, B: 0x66, A: 0xff}
case theme.ColorNameBackground:
//#191b2c
return color.RGBA{R: 0x19, G: 0x1b, B: 0x2c, A: 0xff}
case theme.ColorNameMenuBackground, theme.ColorNameInputBackground, theme.ColorNameOverlayBackground:
//#1f2437
return color.RGBA{R: 0x1f, G: 0x24, B: 0x37, A: 0xff}
case theme.ColorNameDisabledButton:
//#629181
return color.RGBA{R: 0x62, G: 0x91, B: 0x81, A: 0xff}
case theme.ColorNameDisabled:
//#34364a
return color.RGBA{R: 0x34, G: 0x36, B: 0x4a, A: 0xff}
default:
return theme.DefaultTheme().Color(c, theme.VariantDark)
}
}
func (*fghGuiTheme) Icon(n fyne.ThemeIconName) fyne.Resource {
return theme.DefaultTheme().Icon(n)
}
func (*fghGuiTheme) Size(n fyne.ThemeSizeName) float32 {
return theme.DefaultTheme().Size(n)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitsharp/fetch-github-hosts.git
git@gitee.com:gitsharp/fetch-github-hosts.git
gitsharp
fetch-github-hosts
fetch-github-hosts
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385