Apple Safari has started supporting theme-color Meta Tag from Safari 15 release.
Here is how to Implement theme-color meta tag in HTML.
You have to copy-paste theme-color meta tag in section of your website. It will look something like this:
<head> <meta name="theme-color" content="#ff0000"/> </head>
You can use the following code to implement theme color specific to system light mode or dark mode.
<meta name="theme-color" content="#ff0000" media="(prefers-color-scheme: light)"> <meta name="theme-color" content="#ff0000" media="(prefers-color-scheme: dark)">(more…)