diff options
author | 2021-11-10 11:15:51 -0600 | |
---|---|---|
committer | 2021-11-10 18:15:51 +0100 | |
commit | 6e3b11ec22530abe89821422751c0a870d657c24 (patch) | |
tree | 0d57995b1ec39ef0b6ed0b9f53c15a6fa37cda0c /docs/src | |
parent | 27200e379fbfcbb1a2458614956aba8c1e773e1c (diff) | |
download | astro-6e3b11ec22530abe89821422751c0a870d657c24.tar.gz astro-6e3b11ec22530abe89821422751c0a870d657c24.tar.zst astro-6e3b11ec22530abe89821422751c0a870d657c24.zip |
Add `theme-color` meta tag to sites (#1777)
This both lets browsers reflect this color + provides Discord embeds a nice accent color
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/components/HeadCommon.astro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/src/components/HeadCommon.astro b/docs/src/components/HeadCommon.astro index 9687c32a5..222c17ac2 100644 --- a/docs/src/components/HeadCommon.astro +++ b/docs/src/components/HeadCommon.astro @@ -1,6 +1,7 @@ <!-- Global Metadata --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width"> +<meta name="theme-color" content="#ff5e00"/> <link rel="icon" type="image/svg+xml" href="/favicon.svg"/> <link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> <link rel="sitemap" href="/sitemap.xml"/> |