diff --git a/files/assets/style/win98.scss b/files/assets/style/win98.scss index 12309deee..96bd9db89 100644 --- a/files/assets/style/win98.scss +++ b/files/assets/style/win98.scss @@ -11,7 +11,7 @@ $success: #38A169; $muted: #404040; $info: #168EEA; -$purple: #47a3ff; +$purple: #ff66ac; $red: #E53E3E; $gray: #2B353D; $green: #38A169; @@ -26,9 +26,9 @@ $gray-700: #c0c0c0; $gray-800: #07090A; $gray-900: #000000; -$upvote: #47a3ff; +$upvote: #ff66ac; $downvote: #38B2AC; -$admin: #47a3ff; +$admin: #ff66ac; $banned: #960000; $deleted: #969600; $deletedandbanned: #964000; @@ -118,4 +118,8 @@ blockquote { .navbar-light .navbar-nav .nav-link .fa, .navbar-light .navbar-nav .nav-link .fas, .navbar-light .navbar-nav .nav-link .far, .navbar-light .navbar-nav .nav-link .fab { color: #000 !important +} + +.stretched-link { + color: #000 !important } \ No newline at end of file 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