Switch to a less bright theme-color since base0A didn't work so well

This commit is contained in:
Danielle McLean 2018-06-28 11:23:56 +10:00
parent bc8d7923b4
commit dee64f130e
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
<link rel="token_endpoint" href="{{ url('lemonauth:token') }}" />
<meta name="generator" content="{{ package.name }} {{ package.version }}" />
<meta name="theme-color" content="{{ theme_color(10) }}" />
<meta name="theme-color" content="{{ theme_color(3) }}" />
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">

View File

@ -24,7 +24,7 @@ def manifest(request):
'start_url': urljoin(base, start_url),
'background_color': color(0),
'theme_color': color(10),
'theme_color': color(3),
}
return JsonResponse(app, content_type='application/manifest+json')