финальная версия Finance Control

This commit is contained in:
2026-05-25 22:06:16 +03:00
parent 7dcb1a23a7
commit 5890e4ae64
22 changed files with 1441 additions and 927 deletions

View File

@@ -1,5 +1,16 @@
APP_TITLE = "Персональный менеджер финансов и подписок"
DB_NAME = "finance_manager.db"
WINDOW_SIZE = "1280x760"
MIN_WIDTH = 1100
MIN_HEIGHT = 700
from pathlib import Path
APP_TITLE = "Finance Control — персональный менеджер финансов"
APP_SUBTITLE = "финальная версия курсового проекта"
BASE_DIR = Path(__file__).resolve().parent.parent
DB_NAME = str(BASE_DIR / "finance_manager.db")
WINDOW_SIZE = "1320x820"
MIN_WIDTH = 1180
MIN_HEIGHT = 760
PRIMARY_COLOR = "#2563eb"
PRIMARY_HOVER_COLOR = "#1d4ed8"
DANGER_COLOR = "#b91c1c"
DANGER_HOVER_COLOR = "#991b1b"
SUCCESS_COLOR = "#15803d"
WARNING_COLOR = "#ca8a04"