commit 286fa4e58b7cd884c650ae805ba14b7d3cec27d3
parent b7a48d3db2b42cdfcbb0b8b47ccdf6536eeb3e44
Author: Hunter
Date:   Sun, 17 Nov 2024 12:41:57 -0500

attempt to set taskbar color programmatically

Diffstat:
Mindex.html | 3+--
Mmanifest.json | 4++--
2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/index.html b/index.html @@ -4,8 +4,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="manifest" href="manifest.json"> - <meta name="theme-color" content="var(--background)"> - <meta name="background_color" content="var(--background)"> + <meta id="themeColor" name="theme-color" content="var(--background)"> <!-- favicon --> <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🪆</text></svg>"> diff --git a/manifest.json b/manifest.json @@ -10,6 +10,6 @@ ], "start_url": "/matryoshka/", "display": "standalone", - "background_color": "transparent", - "theme_color": "transparent" + "background_color": "#000000", + "theme_color": "#ccff00" }