-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Console Colors FunctionSignatureDialogue
- Loading branch information
Showing
7 changed files
with
67 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/Ghidra/Features/Base/src/main/java/ghidra/framework/main/ConsoleTextPane.java b/Ghidra/Features/Base/src/main/java/ghidra/framework/main/ConsoleTextPane.java | ||
index 8457f2e2d..e013db510 100644 | ||
--- a/Ghidra/Features/Base/src/main/java/ghidra/framework/main/ConsoleTextPane.java | ||
+++ b/Ghidra/Features/Base/src/main/java/ghidra/framework/main/ConsoleTextPane.java | ||
@@ -200,7 +200,7 @@ public class ConsoleTextPane extends JTextPane implements OptionsChangeListener | ||
outputAttributeSet.addAttribute(StyleConstants.FontSize, font.getSize()); | ||
outputAttributeSet.addAttribute(StyleConstants.Italic, font.isItalic()); | ||
outputAttributeSet.addAttribute(StyleConstants.Bold, font.isBold()); | ||
- outputAttributeSet.addAttribute(StyleConstants.Foreground, Color.BLACK); | ||
+ outputAttributeSet.addAttribute(StyleConstants.Foreground, Color.WHITE); | ||
|
||
errorAttributeSet = new SimpleAttributeSet(); | ||
errorAttributeSet.addAttribute(CUSTOM_ATTRIBUTE_KEY, ERROR_ATTRIBUTE_VALUE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/Ghidra/Framework/Docking/src/main/java/docking/widgets/DropDownTextField.java b/Ghidra/Framework/Docking/src/main/java/docking/widgets/DropDownTextField.java | ||
index 2aca644a8..e057ea354 100644 | ||
--- a/Ghidra/Framework/Docking/src/main/java/docking/widgets/DropDownTextField.java | ||
+++ b/Ghidra/Framework/Docking/src/main/java/docking/widgets/DropDownTextField.java | ||
@@ -63,7 +63,7 @@ public class DropDownTextField<T> extends JTextField implements GComponent { | ||
private static final int DEFAULT_MAX_UPDATE_DELAY = 2000; | ||
private static final int MIN_HEIGHT = 300; | ||
private static final int MIN_WIDTH = 200; | ||
- protected static final Color TOOLTIP_WINDOW_BGCOLOR = new Color(255, 255, 225); | ||
+ protected static final Color TOOLTIP_WINDOW_BGCOLOR = new Color(0x32, 0x32, 0x32); | ||
|
||
private JWindow toolTipWindow; // delayed initialization for parenting | ||
private JWindow matchingWindow; // delayed initialization for parenting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/function/editor/FunctionSignatureTextField.java b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/function/editor/FunctionSignatureTextField.java | ||
index d42c13976..f0c61a24d 100644 | ||
--- a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/function/editor/FunctionSignatureTextField.java | ||
+++ b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/function/editor/FunctionSignatureTextField.java | ||
@@ -34,7 +34,7 @@ class FunctionSignatureTextField extends JTextPane { | ||
private static final String ENTER_ACTION_NAME = "ENTER"; | ||
private static final String ESCAPE_ACTION_NAME = "ESCAPE"; | ||
private static final String TAB_ACTION_NAME = "TAB"; | ||
- public static Color DEFAULT_COLOR = Color.black; | ||
+ public static Color DEFAULT_COLOR = Color.white; | ||
public static Color PARAMETER_NAME_COLOR = new Color(155, 50, 155); | ||
public static Color FUNCTION_NAME_COLOR = blue; | ||
public static Color ERROR_NAME_COLOR = red; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/interpreter/InterpreterPanel.java b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/interpreter/InterpreterPanel.java | ||
index 933189da1..2cc03fe6c 100644 | ||
--- a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/interpreter/InterpreterPanel.java | ||
+++ b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/interpreter/InterpreterPanel.java | ||
@@ -43,7 +43,7 @@ public class InterpreterPanel extends JPanel implements OptionsChangeListener { | ||
"This is the font that will be used in the Console. " + | ||
"Double-click the font example to change it."; | ||
|
||
- private static final Color NORMAL_COLOR = Color.black; | ||
+ private static final Color NORMAL_COLOR = Color.WHITE; | ||
private static final Color ERROR_COLOR = Color.red; | ||
|
||
public enum TextType { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters