Require a 'theme-color' meta tag with a valid value (meta-theme-color
)
meta-theme-color
hint checks if a single theme-color
meta tag
is specified in the <head>
with a valid value supported by all user
agents.
Why is this important?
The theme-color
meta tag provides a way to
suggest a color that browsers should use to customize the display
of the page or of the surrounding user interface. For example,
browsers might use the color for the page's title bar, or use it
as a color highlight in a tab bar or task switcher.
In the context of progressive web apps, for a more app-like
feel, providing a theme color is essential.
Here is an example of browser UI when the theme-color
meta tag is
not specified and when it is:
Note that:
What does the hint check?
The hint checks if a single theme-color
meta tag is specified
in the <head>
and the value of its content
attribute is a
valid CSS color supported by all the targeted
browsers(targeted browsers).
Examples that trigger the hint
The theme-color
meta tag is not specified:
<!doctype html>
<html lang="en">
<head>
<title>example</title>
...
</head>
<body>...</body>
</html>
The theme-color
meta tag is wrongly specified as <space>theme-color
:
<meta name=" theme-color" content="#f00">
The theme-color
meta tag is specified with an invalid value:
<meta name="theme-color" content="invalid">
<meta name="theme-color" content="currentcolor">
The theme-color
meta tag is specified with value that is not
supported by all the targeted browsers(targeted browsers) (e.g.:
Samsung Internet v5
is targeted).
<meta name="theme-color" content="#f00a">
<meta name="theme-color" content="#ff0000aa">
The theme-color
meta tag is not specified in the <head>
:
<!doctype html>
<html lang="en">
<head>
<title>example</title>
...
</head>
<body>
<meta name="theme-color" content="#f00">
...
</body>
</html>
Multiple theme-color
meta tags are specified:
<!doctype html>
<html lang="en">
<head>
<title>example</title>
<meta name="theme-color" content="#f00">
<meta name="theme-color" content="#f0f">
...
</head>
<body>...</body>
</html>
Examples that pass the hint
A single theme-color
meta tag is specified in the <head>
and
the value of its content
attribute is a valid CSS color supported by all the targeted browsers(targeted browsers).
<!doctype html>
<html lang="en">
<head>
<title>example</title>
<meta name="theme-color" content="#f00">
...
</head>
<body>...</body>
</html>
The content
attribute value ca be specified as:
-
a color name
<meta name="theme-color" content="red">
-
hex
using 3 or 6 digits
<meta name="theme-color" content="#f00">
<meta name="theme-color" content="#ff0000">
-
hsl
/ hsla
<meta name="theme-color" content="hsl(0, 50%, 50%)">
<meta name="theme-color" content="hsla(0, 50%, 50%, 1)">
-
rgb
/ rgba
<meta name="theme-color" content="rgb(255, 0, 0)">
<meta name="theme-color" content="rgba(255, 0, 0, 1)">
And, depending on the targeted browsers(targeted browsers):
-
hex
using 4 or 8 digits
<meta name="theme-color" content="#f000">
<meta name="theme-color" content="#ff000000">
How to use this hint?
To use it you will have to install it via npm
:
npm install @hint/hint-meta-theme-color
Note: You can make npm
install it as a devDependency
using the
--save-dev
parameter, or to install it globally, you can use the
-g
parameter. For other options see npm
's
documentation.
And then activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": [...],
"hints": {
"meta-theme-color": "error",
...
},
"parsers": [...],
...
}
Further Reading