12 lines
316 B
Python
12 lines
316 B
Python
def getThemes(self):
|
|
themes = {
|
|
"black_orange" : {
|
|
"fg_color" : "#000000",
|
|
"bg_color" : "#14213D",
|
|
"bg_deep" : "#121e37",
|
|
"border_color" : "#14213D",
|
|
"highlight_color" : '#FCA311',
|
|
"text_color" : ""
|
|
}
|
|
}
|
|
return themes |