HiddenEye-Legacy/Defs/ThemesManager.py
Artur Tretiak a892d1b73f Created Simple Theme Manager
New option in Settings.ini
New console argument
Ability to set theme as default
New theme "ocean"
2019-05-05 16:20:45 +03:00

30 lines
1.4 KiB
Python

# Themes Manager
import sys
from Defs.Configurations import readConfig, ifSettingsNotExists
color = [0, 0, 0, 0, 0]
config = readConfig()
def colorSelector():
ifSettingsNotExists()
for arg in sys.argv:
if arg in ['--theme']:
for arg in sys.argv:
if arg in ['anaglyph', '3danaglyph', '3Danaglyph', '3DAnaglyph']:
color = ['\033[91m', '\033[46m', '\033[36m', '\033[32m', '\033[0m'] # LightRed, BackgroundCyan, Cyan, Green, ResetAll
if arg in ['--default']:
config.set("Defaults", "theme", "anaglyph")
return color
if arg in ['ocean', 'breeze', 'blue']:
color = ['\033[36m', '\033[46m', '\033[34m', '\033[30m', '\033[0m'] # Cyan, BackgroundCyan, BrightBlue, DarkGray, ResetAll
if arg in ['--default']:
config.set("Defaults", "theme", "ocean")
return color
if config.get("Defaults", "theme") == "anaglyph":
color = ['\033[91m', '\033[46m', '\033[36m', '\033[32m', '\033[0m'] # LightRed, BackgroundCyan, Cyan, Green, ResetAll
return color
elif config.get("Defaults", "theme") == "ocean":
color = ['\033[36m', '\033[46m', '\033[34m', '\033[30m', '\033[0m'] # Cyan, BackgroundCyan, BrightBlue, DarkGray, ResetAll
return color