Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8ea161a8c49fb9df5c1a3e7f7c9c56d8b85bcb03 (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
.styled-text-area .groovy.groovy_default {
	-styled-text-color: -source-editor-code;
}

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

.styled-text-area .groovy.groovy_builtin_type {
	-styled-text-color: -source-editor-buitin-type;
	-fx-font-weight: bold;
}

.styled-text-area .groovy.groovy_string {
	-styled-text-color: -source-editor-string;
}

.styled-text-area .groovy.groovy_string_inter {
	-styled-text-color: -source-editor-string;
	-fx-font-weight: bold;
}

.styled-text-area .groovy.groovy_api_doc_default {
	-styled-text-color: -source-editor-api-doc;
}

.styled-text-area .groovy.groovy_doc_default {
	-styled-text-color: -source-editor-doc
}

Back to the top