From 8a238feb708cf963b2abe5aab78d40fc202a6984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Tue, 27 May 2025 21:44:50 +0200 Subject: [PATCH] More decent highlight color --- .../decompiler/flash/gui/action/ActionVariableMarker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/gui/action/ActionVariableMarker.java b/src/com/jpexs/decompiler/flash/gui/action/ActionVariableMarker.java index f2c15f09b..5a66ee8e0 100644 --- a/src/com/jpexs/decompiler/flash/gui/action/ActionVariableMarker.java +++ b/src/com/jpexs/decompiler/flash/gui/action/ActionVariableMarker.java @@ -50,9 +50,9 @@ import jsyntaxpane.util.Configuration; public class ActionVariableMarker implements SyntaxComponent, CaretListener, PropertyChangeListener, DocumentListener { public static final String DEFAULT_TOKENTYPES = "IDENTIFIER, REGEX"; - public static final String PROPERTY_COLOR = "TokenMarker.Color"; + public static final String PROPERTY_COLOR = "ActionVariableMarker.Color"; public static final String PROPERTY_TOKENTYPES = "ActionVariableMarker.TokenTypes"; - private static final Color DEFAULT_COLOR = new Color(0xFFEE66); + private static final Color DEFAULT_COLOR = new Color(0xf8e7d6); private JEditorPane pane; private final Set tokenTypes = new HashSet<>(); private Markers.SimpleMarker marker;