Adjust manifest
This commit is contained in:
parent
5aca62e586
commit
e75c33b71d
3 changed files with 16 additions and 9 deletions
|
@ -1,19 +1,22 @@
|
|||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"name": "GoDash: A blazing fast start-page written in Go",
|
||||
"short_name": "GoDash",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"src": "/static/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"src": "/static/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
"theme_color": "#d07915",
|
||||
"background_color": "#d07915",
|
||||
"display": "standalone",
|
||||
"description": "A blazing fast start page for your services written with Go and TailwindCSS",
|
||||
"start_url": "/",
|
||||
"scope": "/"
|
||||
}
|
||||
|
|
|
@ -10,10 +10,13 @@ module.exports = {
|
|||
{
|
||||
light: {
|
||||
...require("daisyui/src/colors/themes")["[data-theme=light]"],
|
||||
primary: "#0047af",
|
||||
primary: "#d07915",
|
||||
},
|
||||
halloween: {
|
||||
...require("daisyui/src/colors/themes")["[data-theme=halloween]"],
|
||||
primary: "#d07915",
|
||||
},
|
||||
},
|
||||
"halloween",
|
||||
],
|
||||
darkTheme: "halloween",
|
||||
},
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<title>{{ template "title" . }}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="A blazing fast start-page for services written in Go " />
|
||||
<meta name="theme-color" content="#d07915" />
|
||||
|
||||
<link rel="icon" type="image/x-icon" href="/static/favicon/favicon.ico" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png" />
|
||||
|
|
Loading…
Add table
Reference in a new issue