I want to switch from firefox to chrome, but after having a black theme for so long it's hard to adjust.

Here's what I mean

enter image description here enter image description here

Is it possible to change the color from white to black? If yes, how?

link|improve this question

33% accept rate
I looked in Windows Color and Appearance which changed a part of the address bar, but, not everything - i.imgur.com/ukGkB.png - If this is not available in any theme file you have already tried, I do not think it is possible. – William Hilsum Oct 1 '11 at 4:25
1  
Another reason chrome is so fast, no frills, all business. – Moab Oct 1 '11 at 4:30
feedback

2 Answers

up vote 1 down vote accepted

This isn't possible. Glancing at this source code shows what parts of Chrome are themeable:

// The image resources we will allow people to theme.
const int kThemeableImages[] = {
  IDR_THEME_FRAME,
  IDR_THEME_FRAME_INACTIVE,
  IDR_THEME_FRAME_INCOGNITO,
  IDR_THEME_FRAME_INCOGNITO_INACTIVE,
  IDR_THEME_TOOLBAR,
  IDR_THEME_TAB_BACKGROUND,
  IDR_THEME_TAB_BACKGROUND_INCOGNITO,
  IDR_THEME_TAB_BACKGROUND_V,
  IDR_THEME_NTP_BACKGROUND,
  IDR_THEME_FRAME_OVERLAY,
  IDR_THEME_FRAME_OVERLAY_INACTIVE,
  IDR_THEME_BUTTON_BACKGROUND,
  IDR_THEME_NTP_ATTRIBUTION,
  IDR_THEME_WINDOW_CONTROL_BACKGROUND
};  

You can see that the address box isn't present in the list and consequently, cannot be changed.

link|improve this answer
feedback

You could try browsing the Chrome Themes, you might not be able to reproduce the Firefox theme exactly but should be able to find something close.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.