Since Chrome version 29 the option for using a dark theme in developer tools has been added.
When having it enabled and opening ember inspector the following issues appear:

Now that chrome 50 is launched I feel this issue will affect more people
I wonder what the best way to address this is. I want to help, but I'm popping in without a ton of knowledge of developing chrome extensions.
So, the first question is: why?
Since in the former case, it would actually require a ton of work to make the DOM structure more standardized, the best short term approach might be to have a separate "Dark" version of this Ember inspector.
A good first step in that direction might be to create a styles/colors.scss that would set up current colors as variables, with an eye towards making the existing color palate as consistent as possible (if it isn't already).
Thoughts?
Perhaps I should open a separate issue to see if such a pull request would be welcome.
Ember-extension does not receive any styles from chrome, the existing light theme was had tuned to look as it does. I suspect the missing piece of info here is that the chrome inspector allows frames to run foreign code which is where the ember extension runs. Resulting in no style leak or inheritance.
What this means, is a dark theme will need to be made specifically for this extension(good idea, but some extra work) and we will need some what of detecting which theme is active.
Curious if there's any update to this. I love using the dark theme, it's easier on my eyes, it's always a bit of an "aah!" when I switch to the Ember Inspector tab.
@tonedef are you able to work on the dark theme and figuring out a detection mechanism?
@stefanpenner Are you saying it would be worth it to create a dark theme specifically for the Ember Inspector as well as a mechanism for toggling between the dark and light themes for the Ember Inspector? Something like a 'Settings' tab or something?
This seems to no longer be an issue. The dark theme is still not applied to inspector, but it shows up completely light, without those hard to read elements shown in the original screenshot.

@locks @teddyzeenny what are your thoughts? I think it is fine to keep inspector always the same theme, personally, unless someone has an easy way to implement it.
@rwwagner90 Agreed. I guess, if anything, this issue could be changed to something like "create dark theme"
Closing this in favor of https://github.com/emberjs/ember-inspector/issues/771
Most helpful comment
Ember-extension does not receive any styles from chrome, the existing light theme was had tuned to look as it does. I suspect the missing piece of info here is that the chrome inspector allows frames to run foreign code which is where the ember extension runs. Resulting in no style leak or inheritance.
What this means, is a dark theme will need to be made specifically for this extension(good idea, but some extra work) and we will need some what of detecting which theme is active.