java - Highlighter addHighlight not changing text color -
i have jtextarea in highlight text using addhighlight method of highlighter jtextarea. highlights text not change text color of highlighted text selectedtextcolor have set. here example: import java.awt.color; import javax.swing.jframe; import javax.swing.jscrollpane; import javax.swing.jtextarea; import javax.swing.swingutilities; import javax.swing.text.badlocationexception; import javax.swing.text.defaulthighlighter; import javax.swing.text.highlighter; import javax.swing.text.highlighter.highlightpainter; public class sscce { private jframe frame; private jtextarea textarea; public sscce() { frame = new jframe(); frame.settitle("huge text"); frame.setdefaultcloseoperation(jframe.exit_on_close); textarea = new jtextarea("abcd abcd abcd"); textarea.setbackground(color.dark_gray); textarea.setforeground(color.light_gray); textarea.setselectioncolor(color.light_gray); textarea.s...