From bd91d47b9e5ef326a16ff30653d58a569bf68035 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 4 Dec 2021 17:44:12 +0000 Subject: [PATCH] Theme colors in table --- webapp_themeDesigner.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/webapp_themeDesigner.py b/webapp_themeDesigner.py index 4189c77e3..e7561be5e 100644 --- a/webapp_themeDesigner.py +++ b/webapp_themeDesigner.py @@ -41,6 +41,7 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str, '' + \ '\n' themeForm += '
\n' @@ -51,16 +52,25 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str, themeForm += '
\n' + themeForm += ' \n' + themeForm += ' \n' + themeForm += ' \n' + themeForm += ' \n' + themeForm += ' \n' + themeForm += ' \n' + for variableName, value in themeJson.items(): if variableName.endswith('-color') or \ variableName.endswith('-text'): themeForm += \ - '

' + '

' themeForm += \ - '

' + '\n' + themeForm += '

\n' themeForm += '
\n' themeForm += '
\n' themeForm += htmlFooter()