1
0

add metadata to index html file

This commit is contained in:
Adrian Wannenmacher 2026-03-10 21:28:24 +01:00
parent d3ed57227e
commit c74395548b
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5
2 changed files with 12 additions and 1 deletions

View File

@ -5,6 +5,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Watterblock</title>
<link rel="stylesheet" href="/vendored/normalize-8.0.1.css">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/vendored/material-icons.css" />
@ -15,6 +16,14 @@
</script>
<script src="/vendored/mithril-2.3.8.js" defer></script>
<script src="/index.js" type="module"></script>
<meta name="application-name" content="Watterblock">
<meta name="author" content="Adrian Wannenmacher">
<meta name="description" lang="de-AT"
content="Einfach zu verwendender Watterblock, der die Daten lokal im Browser speichert.">
<meta name="keywords" content="Watten,Block,Spiel,Mitschrift">
<meta name="theme-color" content="lch(86 84 71)" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="lch(14 77 304)" media="(prefers-color-scheme: light)">
</head>
<body class="wb-layout">

View File

@ -30,6 +30,7 @@ html {
/* regular main colors */
--color-regular-text: lch(100 0 0);
--color-regular-background: lch(10 0 0);
/* also in index.html as meta theme-color, update there too */
--color-regular-accent: lch(86 84 71);
/* regular derived colors */
@ -59,6 +60,7 @@ html {
/* regular main colors */
--color-regular-text: lch(0 0 0);
--color-regular-background: lch(100 0 0);
/* also in index.html as meta theme-color, update there too */
--color-regular-accent: lch(14 77 304);
/* regular derived colors */
@ -204,4 +206,4 @@ h6 {
._sticky-bottom {
position: sticky;
bottom: 0;
}
}