From ab50ba461f84a7cd3b6f5ce04790af80cc706b84 Mon Sep 17 00:00:00 2001 From: kkaris Date: Fri, 22 Mar 2024 09:20:10 -0700 Subject: [PATCH] Update colors --- mira/metamodel/comparison.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mira/metamodel/comparison.py b/mira/metamodel/comparison.py index bece5894..a53c7593 100644 --- a/mira/metamodel/comparison.py +++ b/mira/metamodel/comparison.py @@ -19,9 +19,9 @@ from .utils import safe_parse_expr -TAG1_COLOR = "orange" -TAG2_COLOR = "blue" -MERGE_COLOR = "red" +TAG1_COLOR = "blue" +TAG2_COLOR = "green" +MERGE_COLOR = "orange" class DataNode(BaseModel): @@ -433,11 +433,11 @@ def __init__( tag2 : The tag for the second template model. Default: "2" tag1_color : - The color for the first template model. Default: "orange" + The color for the first template model. Default: "blue" tag2_color : - The color for the second template model. Default: "blue" + The color for the second template model. Default: "green" merge_color : - The color for the merged template model. Default: "red" + The color for the merged template model. Default: "orange" """ self.refinement_func = refinement_function self.template_model1 = template_model1