Skip to content

Commit

Permalink
Update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
kkaris committed Mar 22, 2024
1 parent 0895c6d commit ab50ba4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mira/metamodel/comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ab50ba4

Please sign in to comment.