Big Update

This update will need to get cleaned up, but for right now we are doing testing.
This commit is contained in:
2025-06-01 12:38:41 -07:00
parent ddd596e053
commit 9f3484dff2
13 changed files with 3741 additions and 685 deletions

19
config.py Normal file
View File

@@ -0,0 +1,19 @@
# Configuration and constants for MacroPad Server
VERSION = "0.5.4 Beta"
DEFAULT_PORT = 40000
# 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"
}
# File extensions for images
IMAGE_EXTENSIONS = [".jpg", ".jpeg", ".png", ".gif", ".bmp"]