Skip to main content
summaryrefslogtreecommitdiffstats
blob: b25d35036ec9e312908fae9645cce756a77d6165 (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 .kotlin.kotlin_default {
	-styled-text-color: -source-editor-code;
}

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

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

.styled-text-area .kotlin.kotlin_doc_default {
	-styled-text-color: -source-editor-doc;
}

.styled-text-area .kotlin.kotlin_string {
	-styled-text-color: -source-editor-string;
}

.styled-text-area .kotlin.kotlin_annotation {
	-styled-text-color: -source-editor-annotation;
	-fx-font-weight: bold;
}

.styled-text-area .kotlin.kotlin_api_doc_default {
	-styled-text-color: -source-editor-api-doc;
}

Back to the top