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
|
#------------------------------------------------------------------------------
# Copyright (c) 2017-2024, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
FRUITY_THEME = {
"python": {
"comment": {
"color": "#008800",
"paper": "#0f140f",
"font-style": "italic"
},
"single_quoted_string": {
"color": "#0086d2"
},
"class_name": {
"color": "#ffffff"
},
"function_method_name": {
"color": "#ff0086",
"font-weight": "bold"
},
"operator": {
"color": "#ffffff"
},
"double_quoted_string": {
"color": "#0086d2"
},
"triple_double_quoted_string": {
"color": "#0086d2"
},
"decorator": {
"color": "#ffffff"
},
"comment_block": {
"color": "#008800",
"paper": "#0f140f",
"font-style": "italic"
},
"keyword": {
"color": "#fb660a",
"font-weight": "bold"
},
"triple_single_quoted_string": {
"color": "#0086d2"
},
"unclosed_string": {
"color": "#ffffff"
},
"highlighted_identifier": {
"paper": "#333333"
}
},
"settings": {
"caret": "#ffffff",
"color": "#ffffff",
"paper": "#111111",
"name": "fruity"
}
}
FRUITY_THEME['enaml'] = FRUITY_THEME['python']
|