There\'s a method for altering background color but not font. Any ideas?
I had to put it in the onPageFinished method.
_webView.setWebViewClient(new WebViewClient() { public void onPageFinished(WebView view, String url) { _webView.loadUrl( "javascript:document.body.style.setProperty(\"color\", \"white\");" ); } });