Files
MP-Server/config.py
T

23 lines
567 B
Python
Raw Normal View History

2025-06-01 12:38:41 -07:00
# Configuration and constants for MacroPad Server
VERSION = "1.1.0"
2025-06-01 12:38:41 -07:00
DEFAULT_PORT = 40000
SETTINGS_FILE = "settings.json"
2025-06-01 12:38:41 -07:00
# UI Theme colors
THEME = {
'bg_color': "#2e2e2e",
'fg_color': "#ffffff",
'highlight_color': "#3e3e3e",
'accent_color': "#007acc",
'button_bg': "#505050",
'button_fg': "#ffffff",
'tab_bg': "#404040",
'tab_selected': "#007acc",
'accent_hover': "#0096ff",
'danger_color': "#dc3545",
'danger_hover': "#c82333"
2025-06-01 12:38:41 -07:00
}
# File extensions for images
IMAGE_EXTENSIONS = [".jpg", ".jpeg", ".png", ".gif", ".bmp"]