Skip to content

Commit 7eeb496

Browse files
committed
Set the same color and marker styles between figures
1 parent d6835bf commit 7eeb496

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/figures/generalFigure.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def __init__(self, title: str, y_label: str, x_label: str = "Time (s)") -> None:
1515
"#ff0000",
1616
"#00ff00",
1717
"#0000ff",
18-
"#ffffff",
1918
"#ff00cc",
2019
"#ffcc00",
2120
]
@@ -25,7 +24,6 @@ def __init__(self, title: str, y_label: str, x_label: str = "Time (s)") -> None:
2524
"diamond",
2625
"triangle-up",
2726
"hexagon",
28-
"y-down",
2927
]
3028
self.line_width = 2
3129

src/figures/platformFigures.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ def __init__(
2525

2626
# Plot style variables
2727
self.colors = [
28+
"#ff0000",
2829
"#00ff00",
2930
"#0000ff",
30-
"#ffffff",
3131
"#ff00cc",
3232
"#ffcc00",
3333
]
@@ -37,7 +37,6 @@ def __init__(
3737
"diamond",
3838
"triangle-up",
3939
"hexagon",
40-
"y-down",
4140
]
4241
self.line_width = 1
4342
self.total_line_width = 2

0 commit comments

Comments
 (0)