Skip to content

Commit

Permalink
change colors in the ScoreViewer
Browse files Browse the repository at this point in the history
  • Loading branch information
ahgamut committed Aug 13, 2024
1 parent ff1c1ca commit 1b65e0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ScoreViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class ScoreViewer {
static final float[] dash1 = {10.0f};
static final BasicStroke dashed =
new BasicStroke(2.5f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER, 10.0f, dash1, 0.0f);
static Color MATCH_COLOR = new Color(255, 0, 0, 77);
static Color NONMATCH_COLOR = new Color(0, 0, 255, 77);
static Color MATCH_COLOR = new Color(207, 10, 44, 150);
static Color NONMATCH_COLOR = new Color(0, 58, 112, 150);
double[] match_scores;
double[] nonmatch_scores;
String name;
Expand Down

0 comments on commit 1b65e0c

Please sign in to comment.