diff --git a/epicyon-profile.css b/epicyon-profile.css index 02499014..55d6ef13 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -86,6 +86,8 @@ --column-right-icon-size: 20%; --newswire-date-color: white; --newswire-voted-background-color: black; + --login-button-color: #2965; + --login-button-fg-color: black; } @font-face { @@ -579,8 +581,8 @@ input[type=submit] { } .loginButton { - background-color: #2965; - color: #000; + background-color: var(--login-button-color); + color: var(--login-button-fg-color); float: none; margin: 0px 10px; padding: 12px 40px; diff --git a/theme.py b/theme.py index e236af71..97910fa5 100644 --- a/theme.py +++ b/theme.py @@ -310,7 +310,9 @@ def setThemeIndymedia(baseDir: str): "column-left-width": "10vw", "column-center-width": "70vw", "column-right-width": "20vw", - "column-right-icon-size": "11%" + "column-right-icon-size": "11%", + "login-button-color": "red" + "login-button-fg-color": "white" } setThemeFromDict(baseDir, name, themeParams, bgParams)