Question
What defines color of the browser tab in Bootstrap?
I failed to find it in Bootstrap documentation. And searching Stackoverflow didn't bring a result either.
I guess it's something like main theme color. It demonstrates itself differently in different browsers, typically tinting the tab bar.
In Safari, you have to select Compact in Preferences > Tabs > Tab layout, and have Show color in compact tab bar selected in Preferences > Advanced.
If the setting is off, the color shows when pulling the page down, like a color behind the background.
A good example is the GetBootstrap.com website which tints the browser with rgb(115, 84, 173) or #7354AD, but I cannot find the colour in CSS - it might have an alpha applied.
I thought it might be using a manifest.json
file with theme_color
or background_color
parameter, where I could finally get rid of the tint of Bootstrap in one of the examples, but I wasn't able to choose another color.
Thanks!