6

The default color for this header at the top with the link URL is blue, does anyone know how to change the color of it ?

enter image description here

Ahmed ibrahim
  • 905
  • 9
  • 16

2 Answers2

5

Put this meta tag between "head" tag in index.html file.

<meta name="theme-color" content="#393557">

It will change your mobile browser's top menu color.

Christopher Moore
  • 15,626
  • 10
  • 42
  • 52
macosta
  • 66
  • 3
3

You can set it for dark and light theme by adding following code to web/index.html file.

<meta name="theme-color" media="(prefers-color-scheme: light)" content="#FFFFFF">
<meta name="theme-color" media="(prefers-color-scheme: dark)"  content="#000000">
Hossein
  • 3,755
  • 2
  • 29
  • 39