-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgui_theme.py
More file actions
33 lines (30 loc) · 1021 Bytes
/
gui_theme.py
File metadata and controls
33 lines (30 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
UI 主题配置文件 - 极客风格
"""
# 颜色定义
COLORS = {
'bg_dark': '#1e1e1e', # 深色背景
'bg_lighter': '#2d2d2d', # 稍浅的背景(用于卡片/面板)
'fg_primary': '#00ff00', # 主文字颜色(黑客绿)
'fg_secondary': '#00ffff', # 次要文字颜色(青色)
'fg_danger': '#ff3333', # 警告/错误颜色
'fg_white': '#ffffff', # 普通文本
'fg_warning': '#ffaa00', # 警告橙色
'fg_success': '#00ff00', # 成功绿色
'border': '#333333', # 边框颜色
'btn_bg': '#3e3e3e', # 按钮背景
'btn_hover': '#4e4e4e', # 按钮悬停
'progress_bg': '#333333', # 进度条背景
'progress_fill': '#00ff00', # 进度条填充
}
# 字体定义
FONTS = {
'h1': ('Consolas', 20, 'bold'),
'h2': ('Consolas', 14, 'bold'),
'body': ('Consolas', 10),
'mono': ('Consolas', 10),
'status': ('Consolas', 12, 'bold'),
'small': ('Consolas', 8),
}
# 布局常量
PADDING = 10