Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ICPCColors {
public static final Color YELLOW = new Color(255, 223, 54);
public static final Color RED = new Color(196, 58, 36);

public static final Color PENDING_COLOR = new Color(230, 230, 0);
public static final Color PENDING_COLOR = new Color(66, 114, 245);
public static final Color SOLVED_COLOR = new Color(0, 230, 0);
public static final Color FIRST_TO_SOLVE_COLOR = new Color(0, 100, 0);
public static final Color FAILED_COLOR = new Color(240, 0, 0);
Expand Down Expand Up @@ -88,4 +88,4 @@ else if (status == Status.FAILED)

return ICPCColors.PENDING2[k];
}
}
}