Let Slate be the default theme.
Hooray for dark mode. Sorry classic turquoise.
This commit is contained in:
parent
90e7f6b6e1
commit
6b71af307c
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ def render_template(request, template_name, **kwargs):
|
||||||
|
|
||||||
old_theme = request.cookies.get('etiquette_theme', None)
|
old_theme = request.cookies.get('etiquette_theme', None)
|
||||||
new_theme = request.args.get('theme', None)
|
new_theme = request.args.get('theme', None)
|
||||||
theme = new_theme or old_theme or 'turquoise'
|
theme = new_theme or old_theme or 'slate'
|
||||||
|
|
||||||
response = flask.render_template(
|
response = flask.render_template(
|
||||||
template_name,
|
template_name,
|
||||||
|
|
Loading…
Reference in a new issue