答案 0 :(得分:0)
最简单的方法是加载XML主题。由于您的应用程序已经有一个黑暗的主题,这将适合您
try {
InputStream in = getClass().getResourceAsStream("/org/fife/ui/rsyntaxtextarea/themes/dark.xml");
Theme theme = Theme.load(in);
theme.apply(txaIDE);//WHERE txaIDE IS YOUR RSYNTAXTEXTAREA INSTANCE
} catch (Exception e) {
JOptionPane.showMessageDialog(rootPane, e.toString());
}
我希望这会有所帮助