Skip to main content
summaryrefslogtreecommitdiffstats
blob: 06b8cfa716aff78d16c67f19e274e9230610be60 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.styled-text-area .dart.dart_default {
	-styled-text-color: -source-editor-code;
}

.styled-text-area .dart.dart_operator {
	-styled-text-color: -source-editor-operator;
}

.styled-text-area .dart.dart_bracket {
	-styled-text-color: -source-editor-bracket;
}

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

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

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

.styled-text-area .dart.dart_single_line_comment {
	-styled-text-color: -source-editor-doc;
}

.styled-text-area .dart.dart_multi_line_comment {
	-styled-text-color: -source-editor-doc;
}

.styled-text-area .dart.dart_string {
	-styled-text-color: -source-editor-string;
}

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

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

.styled-text-area .dart.dart_doc {
	-styled-text-color: -source-editor-api-doc;
}

.styled-text-area .dart.dart_doc_reference {
	-styled-text-color: -source-editor-api-doc;
	-fx-font-weight: bold;
}

.dart-element-name {

}

.dart-type-info {
	-fx-fill: -type-info-color;
}

.styled-text-area .dart.dart_number {
	-styled-text-color: -source-editor-number;
}

Back to the top