From 222dbdc6bd2dd2d3b9a7f04801986881bb47f026 Mon Sep 17 00:00:00 2001 From: xuchen-amd Date: Sat, 28 Jun 2025 10:38:28 -0400 Subject: [PATCH] Remove cell backgrouund colors. (#778) --- src/utils/gui.py | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/utils/gui.py b/src/utils/gui.py index b391e2dfad..d129aa34b7 100644 --- a/src/utils/gui.py +++ b/src/utils/gui.py @@ -365,32 +365,6 @@ def build_table_chart( style_data_conditional=( [ {"if": {"row_index": "odd"}, "backgroundColor": "rgb(60, 60, 60)"}, - { - "if": {"column_id": "PoP", "filter_query": "{PoP} > 50"}, - "backgroundColor": "#ffa90a", - "color": "white", - }, - { - "if": {"column_id": "PoP", "filter_query": "{PoP} > 80"}, - "backgroundColor": "#ff120a", - "color": "white", - }, - { - "if": { - "column_id": "Avg", - "filter_query": "{Unit} = Pct && {Avg} > 50", - }, - "backgroundColor": "#ffa90a", - "color": "white", - }, - { - "if": { - "column_id": "Avg", - "filter_query": "{Unit} = Pct && {Avg} > 80", - }, - "backgroundColor": "#ff120a", - "color": "white", - }, ] if IS_DARK else []