How can i style the inappbrowser?

Hello, I am interested in knowing how can i style the inappbrowser plugin?

the regular browser comes with a grey color, and i want it to be blue, is this possible?

Any help would be much appreciated.

Thanks,
Shaul.

Maybe the FireFox OS Quirks can help you as described on https://github.com/apache/cordova-plugin-inappbrowser/blob/master/doc/index.md.

.inAppBrowserWrap {
  background-color: rgba(0,0,0,0.75);
  color: rgba(235,235,235,1.0);
}
.inAppBrowserWrap menu {
  overflow: auto;
  list-style-type: none;
  padding-left: 0;
}
.inAppBrowserWrap menu li {
  font-size: 25px;
  height: 25px;
  float: left;
  margin: 0 10px;
  padding: 3px 10px;
  text-decoration: none;
  color: #ccc;
  display: block;
  background: rgba(30,30,30,0.50);
}
.inAppBrowserWrap menu li.disabled {
	color: #777;
}

It did not work for me. I am working with android.

I’ve seen a thread with someone saying he could do it, but it’s a lot of work:

https://software.intel.com/es-es/forums/intel-xdk/topic/562651