Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html set theme color

<!-- for a singular color regardless of theme -->
<meta name="theme-color" content="#ffffff">

<!--Different ones for light and dark theme if your website supports them: -->
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">

<!--source: https://developer.apple.com/forums/thread/683403 -->
Comment

html theme color

<meta name="theme-color" content="#ffffff">
Comment

theme color in html

<!-- Theme-color is use to set the background to your favorite/Branding color
Add two attribute in meta tag first 'name="theme-color"' and second 'content="Your Hexadecimal Code"'
Add Below Meta property to your HTML code in HEAD Section -->
Example:
<head>
  ...
  <meta name="theme-color" content="#444444">
  ...
</head>
Comment

PREVIOUS NEXT
Code Example
Html :: disable an anchor tag 
Html :: strong tag html 
Html :: can i use the input tag without the form tag 
Html :: html headings 
Html :: vue if echo class 
Html :: html image size 50 percent 
Html :: ul html 
Html :: create a container in html 
Html :: xss commands 
Html :: twig array keys and values 
Html :: use variable in input value vuejs 
Html :: shopify custom html image tag src attribute 
Html :: insert html in html 
Html :: html5 select 
Html :: html how to play gifs 
Html :: name attribute in html 
Html :: iframe render html in angular 
Html :: Simple example of using external file javascript in html 
Html :: icheck js 
Html :: bootstrap 5 cdn 
Html :: horizontal form in html bootstrap 
Html :: bulma cdn 
Html :: full height div inside td 
Html :: boostrap input tag 
Html :: html img max tam 
Html :: angular nested if else 
Html :: boostrap card 
Html :: html <nav element 
Html :: convert html datetime-local to java LocalDateTime 
Html :: html open all links in new tab 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =