Skip to main content
summaryrefslogtreecommitdiffstats
blob: b1f910d23404a3841ccd0672e8dc47f861e85b74 (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
34
35
36
37
38
39
40
41
.styled-text-area .rust.rust_default {
	-styled-text-color: -source-editor-code;
}

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

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

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

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

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

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

.styled-text-area .rust.rust_doc_default {
	-styled-text-color: -source-editor-doc;
}

.styled-text-area .rust.rust_string {
	-styled-text-color: -source-editor-string;
}

Back to the top