mirror of
https://github.com/CompeyDev/blog.devcomp.xyz.git
synced 2024-12-12 12:50:41 +00:00
Fix too high saturation level for hex calculation in theme color
This commit is contained in:
parent
8c07757c7a
commit
723dc5755a
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ const siteLang = siteConfig.lang.replace("_", "-");
|
|||
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<meta name="theme-color" content={hslToHex(siteConfig.themeColor.hue, 100, 100)}>
|
||||
<meta name="theme-color" content={hslToHex(siteConfig.themeColor.hue, 74, 100)}>
|
||||
|
||||
{favicons.map(favicon => (
|
||||
<link rel="icon"
|
||||
|
|
Loading…
Reference in a new issue