sneed
This commit is contained in:
parent
1adad0403f
commit
b9d51332e5
2 changed files with 9 additions and 4 deletions
|
@ -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;
|
||||
|
@ -119,3 +119,7 @@ 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
|
||||
}
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue