Improve color contrast

This commit is contained in:
Max Nuding 2023-04-01 20:14:37 +02:00
parent 963bcbf889
commit 3764e1d912
Signed by: phlaym
GPG Key ID: A06651BAB6777237
3 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,8 @@
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link rel="stylesheet" href="%sveltekit.assets%/style.css" />
<meta name="viewport" content="width=device-width" />
<meta name="theme-color" content="#17063B" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">

View File

@ -35,6 +35,9 @@ onMount(async () => {
}
})
</script>
<svelte:head>
<title>Metalhead.club music list</title>
</svelte:head>
<h2>Metalhead.club music list</h2>
<div class="wrapper">
<div></div>

View File

@ -21,5 +21,7 @@ a:visited {
--color-text: white;
--color-bg: #17063B;
--color-border: white;
--color-link: #8A9BF0;
--color-link-visited: #C384FB;
}
}