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
4 changes: 3 additions & 1 deletion src/main/java/core/packetproxy/gui/GUIOption.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@

public class GUIOption {

private static final Color TITLE_FOREGROUND_COLOR = new Color(0, 238, 208);

private JFrame owner;

public GUIOption(JFrame owner) {
Expand All @@ -50,7 +52,7 @@ public GUIOption(JFrame owner) {

private JComponent createTitle(String title) throws Exception {
JLabel label = new JLabel(title);
label.setForeground(Color.decode("61136"));
label.setForeground(TITLE_FOREGROUND_COLOR);
label.setBackground(Color.WHITE);
label.setFont(FontManager.getInstance().getUICaptionFont());
label.setMaximumSize(new Dimension(Short.MAX_VALUE, label.getMinimumSize().height));
Expand Down