GP-2853: Specify Debugger dark theme colors

This commit is contained in:
Dan 2022-11-30 11:16:07 -05:00
parent 5b1eb8ef32
commit caeaff6374
4 changed files with 81 additions and 20 deletions

View file

@ -35,7 +35,7 @@ import ghidra.trace.model.program.TraceProgramView;
import ghidra.util.ColorUtils;
public class MemoryStateListingBackgroundColorModel implements ListingBackgroundColorModel {
private Color defaultBackgroundColor = new GColor("color.bg.debugger.memory.state");
private Color defaultBackgroundColor = new GColor("color.bg");
private AddressIndexMap addressIndexMap;
private TraceProgramView view;

View file

@ -27,7 +27,7 @@ import ghidra.app.util.viewer.listingpanel.ListingPanel;
import ghidra.util.ColorUtils.ColorBlender;
public class MultiBlendedListingBackgroundColorModel implements ListingBackgroundColorModel {
private static final Color BG_COLOR_EMPTY = new GColor("color.bg.debugger.listing.blended");
private static final Color BG_COLOR_EMPTY = new GColor("color.bg");
private final List<BackgroundColorModel> models = new ArrayList<>();