Skip to main content
summaryrefslogtreecommitdiffstats
blob: 01095afc3b4f2ff37c504439020954c667bac7b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.styled-text-area .js.js_default {
	-styled-text-color: -source-editor-code;
}

.styled-text-area .js.js_operator {
	-styled-text-color: -source-editor-operator;
}

.styled-text-area .js.js_bracket {
	-styled-text-color: -source-editor-bracket;
}

.styled-text-area .js.js_keyword {
	-styled-text-color: -source-editor-keyword;
	-fx-font-weight: bold;
}

.styled-text-area .js.js_doc_default {
	-styled-text-color: -source-editor-doc;
}

.styled-text-area .js.js_string {
	-styled-text-color: -source-editor-string;
}

.styled-text-area .js.js_constant {
	-styled-text-color: -source-editor-keyword;
	-fx-font-weight: bold;
}

.styled-text-area .js.js_number {
	-styled-text-color: -source-editor-number;
}

Back to the top