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 :: html entity double quote 
Html :: disable-html-form-input-autocomplete-autofill 
Html :: input type file accept only images 
Html :: success green color code 
Html :: tab in html 
Html :: html center image vertically bootstrap 
Html :: html video autoplay IPHONE 
Html :: where to use .target command in html 
Html :: box shadow svg css 
Html :: bootstrap 5 div center 
Html :: bsc chain rpc 
Html :: youtube autoplay video 
Html :: make div clickable 
Html :: input datetime 
Html :: script src tag in html 
Html :: meta icon html 
Html :: ck editor cdn 
Html :: html pi 
Html :: font awesome src 
Html :: linear gradient with image 
Html :: html tabulation 
Html :: audio tag disable download 
Html :: email link html 
Html :: @keyup.enter vue 
Html :: textarea angular onfocus 
Html :: angular check active route 
Html :: html input autofocus 
Html :: html button with action link 
Html :: how do you make a partial hr line in html 
Html :: html h1 not show 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =