Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3924a5af104c4db40ae2d9ff5e8bcbf3a05796cb (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
.styled-text-area .python.python_default {
	-styled-text-color: -source-editor-code;
}

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

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

.styled-text-area .python.python_string {
	-styled-text-color: -source-editor-string;
}

.styled-text-area .python.python_api_doc_default {
	-styled-text-color: -source-editor-api-doc;
}

.styled-text-area .python.python_doc_default {
	-styled-text-color: -source-editor-doc
}

Back to the top