user7476956
user7476956

Reputation:

How to change Chrome App Caption Bar color in Windows 10

Google Earth as in Chrome App Window

You can see how the caption/title bar has the same color as the navigation menu on the left.
Though as far as I know this only works on Android/IOS/Windows Phone, but this is first time I see it in Chrome.

Version is: 69.0.3497.81 (Official Build) (64-bit) (cohort: 69_win_81)

How do I accomplish this? I tried several options I've found on Stackoverflow, but none of them worked. Such as:

<meta name="theme-color" content="#999999" />
<meta name="msapplication-navbutton-color" content="#4285f4">

The first only appears to work on Chrome browsers that are running on Android. The second option I'm not sure for what that is.

So! How do I do it?? myApp.html Chrome App Window

Chrome parameters for launching .html documents as Chrome App Window:

"...\chrome.exe" -app="file:\\\\...\myApp.html"

Upvotes: 1

Views: 2161

Answers (1)

Ahmad Ali
Ahmad Ali

Reputation: 46

Simple do this in head tags. It would work as tested already

<meta name="theme-color" content="#1c307d">

Upvotes: 3

Related Questions