add simple-dark and simple-light themes

This commit is contained in:
Vladimir Mandic
2024-01-21 09:37:45 -05:00
parent f2b99d61f6
commit ddae9872a4
5 changed files with 464 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ def writefile(data, filename, mode='w', silent=False, atomic=False):
# early select backend
default_backend = 'original'
default_backend = 'diffusers'
early_opts = readfile(cmd_opts.config, silent=True)
early_backend = early_opts.get('sd_backend', default_backend)
backend = Backend.DIFFUSERS if early_backend.lower() == 'diffusers' else Backend.ORIGINAL