RichTextFx 更改选定文本颜色和行号背景

RichTextFx change selected text color and line number background

我想更改所选文本的颜色或更改突出显示颜色, 和 RichTextFx 行号中的背景,但我不知道该怎么做,我需要你的帮助!

.styled-text-area .selection {
    -fx-fill: pink;
}

将其另存为文件说 styled-text-area.css

将此文件与您的应用程序放在同一包中class

在您的 class 中,像

一样导入此文件
area.getStylesheets().add(getClass().getResource("styled-text-area.css").toExternalForm());

这将使选择颜色变为粉红色

通过遵循here并在styled-text-area.css中添加相关样式规则,您可以实现您的其他需求。