diff --git a/swing/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorSelectionPanel.java b/swing/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorSelectionPanel.java index 60f4eff46..fb964c80e 100644 --- a/swing/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorSelectionPanel.java +++ b/swing/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorSelectionPanel.java @@ -609,7 +609,12 @@ public class ThrustCurveMotorSelectionPanel extends JPanel implements MotorSelec public static Color getColor(int index) { - return (Color) CURVE_COLORS[index % CURVE_COLORS.length]; + Color color = (Color) CURVE_COLORS[index % CURVE_COLORS.length]; + if (UITheme.isLightTheme(GUIUtil.getUITheme())) { + return color; + } else { + return color.brighter().brighter(); + } }