From 83c59af1dd87d5bb00b7fdea83a1c694e29fdc0e Mon Sep 17 00:00:00 2001 From: Thomas Faour Date: Wed, 22 Jul 2026 01:33:56 -0400 Subject: [PATCH] Update server/app/image_pipeline.py Fix pallette defaults --- server/app/image_pipeline.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/app/image_pipeline.py b/server/app/image_pipeline.py index a94133e..f7044aa 100644 --- a/server/app/image_pipeline.py +++ b/server/app/image_pipeline.py @@ -53,12 +53,12 @@ def logical_to_native(x: float, y: float, orientation: str) -> tuple[int, int]: # a rendered test image against the real panel; different panel units # can vary enough to be worth calibrating per frame). DEFAULT_PALETTE_RGB = [ - (0, 0, 0), # BLACK - (255, 255, 255), # WHITE - (255, 243, 56), # YELLOW - (191, 0, 0), # RED - (100, 64, 255), # BLUE - (67, 138, 28), # GREEN + (0, 0, 0), # BLACK + (255, 255, 255), # WHITE + (255, 219, 0), # YELLOW + (207, 0, 15), # RED + (0, 39, 133), # BLUE + (0, 133, 55), # GREEN ] PALETTE_LABELS = ["Black", "White", "Yellow", "Red", "Blue", "Green"]