Merge remote-tracking branch 'origin/GP-2853_Dan_debuggerDarkTheme--SQUASHED'

This commit is contained in:
Ryan Kurtz 2022-11-30 12:14:23 -05:00
commit f816a844d5
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<>();