diff --git a/files/routes/settings.py b/files/routes/settings.py index 9f75400a8..d7936dc10 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -140,8 +140,9 @@ def settings_profile_post(v): theme = request.values.get("theme") if theme: v.theme = theme - if theme == "coffee": v.themecolor = "38a169" + if theme == "coffee" or theme == "4chan": v.themecolor = "38a169" elif theme == "tron": v.themecolor = "80ffff" + elif theme == "win98": v.themecolor = "30409f" g.db.add(v) return "", 204