From dca4590ede026ccd25f31306e14684960097daf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=97=E5=AE=B8=C2=B7=E8=B0=A2=E5=B0=94=E6=AF=94?= <88515720+ChinaRan0@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:41:47 +0800 Subject: [PATCH] Add files via upload --- config.py | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 47f3aae..e6a856d 100644 --- a/config.py +++ b/config.py @@ -1 +1,23 @@ -DEEPSEEK_API_KEY="" \ No newline at end of file +DEEPSEEK_API_KEY="" + +# 主题配色方案 +THEMES = { + "深色主题": { + "main_bg": "#1e1e1e", + "secondary_bg": "#2d2d2d", + "text_color": "#ffffff", + "accent_color": "#007acc", + "border_color": "#404040", + "button_hover": "#005999", + "button_pressed": "#004c80" + }, + "浅色主题": { + "main_bg": "#f5f5f5", + "secondary_bg": "#ffffff", + "text_color": "#333333", + "accent_color": "#2196f3", + "border_color": "#e0e0e0", + "button_hover": "#1976d2", + "button_pressed": "#1565c0" + } +} \ No newline at end of file