From 2c5deb261dfd1c14ba3e632110f8f4132b18df74 Mon Sep 17 00:00:00 2001 From: Hui Wan Date: Wed, 8 Apr 2026 15:32:48 -0700 Subject: [PATCH] Change again the seq. of colors used for var groups. In a recent conversation with a colleague, I realized that having red as the first color (and with a very red close button) could lead to the misunderstanding that the variable group tab was indicating that something had gone wrong :-) hence I'm suggesting a new sequence. --- src/e3sm_quickview/utils/colors.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/e3sm_quickview/utils/colors.py b/src/e3sm_quickview/utils/colors.py index fad6705..bda82e8 100644 --- a/src/e3sm_quickview/utils/colors.py +++ b/src/e3sm_quickview/utils/colors.py @@ -1,16 +1,16 @@ TYPE_COLORS = [ - "red", - "yellow", - "purple", - "cyan", "brown", + "amber", + "cyan", + "purple", + "blue-gray", + "green", + "deep-orange", "indigo", + "pink", + "teal", "gray", - "orange", - "green", - "orange", - "lime", - "deep-purple", + "red", ]